Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade sanitize to 6.0 to remove dependency on nokogumbo #7

Open
wants to merge 1 commit into
base: linuxfr
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions html-pipeline-linuxfr.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ require File.expand_path("../lib/html/pipeline/version", __FILE__)
Gem::Specification.new do |gem|
gem.name = "html-pipeline-linuxfr"
gem.version = HTML::Pipeline::VERSION
gem.license = "MIT"
gem.licenses = ["MIT"]
gem.authors = ["Ryan Tomayko", "Jerry Cheung", "Bruno Michel"]
gem.email = ["[email protected]", "[email protected]", "[email protected]"]
gem.description = %q{LinuxFr.org HTML processing filters and utilities, adapted from those of GitHub}
gem.summary = %q{Helpers for processing content through a chain of filters}
gem.homepage = "https://github.com/nono/html-pipeline-linuxfr"
gem.metadata = { "source_code_uri" => "https://github.com/nono/html-pipeline-linuxfr"}

gem.files = `git ls-files`.split $/
gem.test_files = gem.files.grep(%r{^test})
Expand All @@ -18,7 +19,7 @@ Gem::Specification.new do |gem|
gem.add_dependency "nokogiri", "~> 1.6"
gem.add_dependency "redcarpet", "~> 3.4"
gem.add_dependency "pygments.rb", "~> 1.1"
gem.add_dependency "sanitize", "~> 5.0"
gem.add_dependency "sanitize", "~> 6.1"
gem.add_dependency "escape_utils", "~> 1.2"
gem.add_dependency "activesupport", "~> 7.0"
gem.add_dependency "patron", "~> 0.8"
Expand Down
2 changes: 1 addition & 1 deletion lib/html/pipeline/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module HTML
class Pipeline
VERSION = "0.17.0"
VERSION = "0.17.1"
end
end