-
Notifications
You must be signed in to change notification settings - Fork 1
Bump html-pipeline from 3.0.3 to 3.2.0 #623
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
Closed
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Contributor
Contributor
gem compare html-pipeline 3.0.3 3.2.0Compared versions: ["3.0.3", "3.2.0"]
DIFFERENT date:
3.0.3: 2024-02-02 00:00:00 UTC
3.2.0: 2024-04-30 00:00:00 UTC
DIFFERENT rubygems_version:
3.0.3: 3.5.5
3.2.0: 3.4.6
DIFFERENT version:
3.0.3: 3.0.3
3.2.0: 3.2.0
DIFFERENT files:
3.0.3->3.2.0:
* Changed:
CHANGELOG.md +91/-52
Gemfile +0/-2
README.md +23/-10
UPGRADING.md +0/-2
lib/html_pipeline.rb +6/-5
lib/html_pipeline/convert_filter/markdown_filter.rb +3/-3
lib/html_pipeline/filter.rb +1/-1
lib/html_pipeline/node_filter.rb +2/-0
lib/html_pipeline/text_filter.rb +7/-7
lib/html_pipeline/text_filter/image_filter.rb +2/-2
lib/html_pipeline/text_filter/plain_text_input_filter.rb +2/-2
lib/html_pipeline/version.rb +1/-1
DIFFERENT Gemfile dependencies
3.0.3->3.2.0:
* Deleted
github_changelog_generator ["~> 1.16"] (runtime) |
Contributor
gem compare --diff html-pipeline 3.0.3 3.2.0Compared versions: ["3.0.3", "3.2.0"]
DIFFERENT files:
3.0.3->3.2.0:
* Changed:
CHANGELOG.md
--- /tmp/d20240501-1846-gcar7z/html-pipeline-3.0.3/CHANGELOG.md 2024-05-01 02:19:33.133418850 +0000
+++ /tmp/d20240501-1846-gcar7z/html-pipeline-3.2.0/CHANGELOG.md 2024-05-01 02:19:33.137418893 +0000
@@ -0,0 +1,29 @@
+## [v3.1.1] - 09-04-2024
+## What's Changed
+* Correct missing method implementation by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/401
+
+
+**Full Changelog**: https://github.com/gjtorikian/html-pipeline/compare/v3.1.0...v3.1.1
+## [v3.1.0] - 28-02-2024
+## What's Changed
+* UPGRADING: not removed by @dentarg in https://github.com/gjtorikian/html-pipeline/pull/397
+* [BREAKING] now requires instantiation by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/398
+
+## New Contributors
+* @dentarg made their first contribution in https://github.com/gjtorikian/html-pipeline/pull/397
+
+**Full Changelog**: https://github.com/gjtorikian/html-pipeline/compare/v3.0.3...v3.1.0
+## [v3.0.3] - 02-02-2024
+
+## What's Changed
+
+- Fix typo in README by @ppworks in https://github.com/gjtorikian/html-pipeline/pull/394
+- Prevent exception by @ppworks in https://github.com/gjtorikian/html-pipeline/pull/395
+- Cut 3.0.3 by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/396
+
+## New Contributors
+
+- @ppworks made their first contribution in https://github.com/gjtorikian/html-pipeline/pull/394
+
+**Full Changelog**: https://github.com/gjtorikian/html-pipeline/compare/v3.0.2...v3.0.3
+
@@ -1,0 +31 @@
+
@@ -3,2 +33,3 @@
-* README.md: Fix example code by @grekko in https://github.com/gjtorikian/html-pipeline/pull/390
-* Allow pipeline to run without node filters by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/392
+
+- README.md: Fix example code by @grekko in https://github.com/gjtorikian/html-pipeline/pull/390
+- Allow pipeline to run without node filters by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/392
@@ -7 +38,2 @@
-* @grekko made their first contribution in https://github.com/gjtorikian/html-pipeline/pull/390
+
+- @grekko made their first contribution in https://github.com/gjtorikian/html-pipeline/pull/390
@@ -9,0 +42 @@
+
@@ -10,0 +44 @@
+
@@ -12 +46,2 @@
-* Handle odd numbers of NodeFilters to be configured by @stevehill1981 in https://github.com/gjtorikian/html-pipeline/pull/389
+
+- Handle odd numbers of NodeFilters to be configured by @stevehill1981 in https://github.com/gjtorikian/html-pipeline/pull/389
@@ -15 +50,2 @@
-* @stevehill1981 made their first contribution in https://github.com/gjtorikian/html-pipeline/pull/389
+
+- @stevehill1981 made their first contribution in https://github.com/gjtorikian/html-pipeline/pull/389
@@ -17,0 +54 @@
+
@@ -18,0 +56 @@
+
@@ -20,20 +58,21 @@
-* Switch to GitHub Actions by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/346
-* add truffleruby-head by @gogainda in https://github.com/gjtorikian/html-pipeline/pull/348
-* Add Rubocop by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/349
-* Support multiple dependencies per filter by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/351
-* Split filters up by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/360
-* Migrate from Nokogiri to Selma by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/368
-* You shall pass by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/369
-* Update Selma signatures by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/370
-* Close sanitization-related issues by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/371
-* Drop SyntaxHighlightFilter by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/372
-* V3 Release by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/347
-* Use emoji from commonmarker by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/373
-* req convert_filter if filter present by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/375
-* Update selma requirement from ~> 0.0.1 to >= 0.0.1, < 0.2.0 by @dependabot in https://github.com/gjtorikian/html-pipeline/pull/377
-* Add the AssetProxyFilter by @digitalmoksha in https://github.com/gjtorikian/html-pipeline/pull/379
-* Update rouge requirement from ~> 3.1 to ~> 4.1 by @dependabot in https://github.com/gjtorikian/html-pipeline/pull/381
-* Update gemoji requirement from ~> 3.0 to ~> 4.1 by @dependabot in https://github.com/gjtorikian/html-pipeline/pull/382
-* Have Zeitwerk not automatically load filters by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/383
-* Bump the github-actions group with 1 update by @dependabot in https://github.com/gjtorikian/html-pipeline/pull/384
-* :gem: 3.0.0 by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/386
+
+- Switch to GitHub Actions by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/346
+- add truffleruby-head by @gogainda in https://github.com/gjtorikian/html-pipeline/pull/348
+- Add Rubocop by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/349
+- Support multiple dependencies per filter by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/351
+- Split filters up by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/360
+- Migrate from Nokogiri to Selma by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/368
+- You shall pass by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/369
+- Update Selma signatures by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/370
+- Close sanitization-related issues by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/371
+- Drop SyntaxHighlightFilter by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/372
+- V3 Release by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/347
+- Use emoji from commonmarker by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/373
+- req convert_filter if filter present by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/375
+- Update selma requirement from ~> 0.0.1 to >= 0.0.1, < 0.2.0 by @dependabot in https://github.com/gjtorikian/html-pipeline/pull/377
+- Add the AssetProxyFilter by @digitalmoksha in https://github.com/gjtorikian/html-pipeline/pull/379
+- Update rouge requirement from ~> 3.1 to ~> 4.1 by @dependabot in https://github.com/gjtorikian/html-pipeline/pull/381
+- Update gemoji requirement from ~> 3.0 to ~> 4.1 by @dependabot in https://github.com/gjtorikian/html-pipeline/pull/382
+- Have Zeitwerk not automatically load filters by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/383
+- Bump the github-actions group with 1 update by @dependabot in https://github.com/gjtorikian/html-pipeline/pull/384
+- :gem: 3.0.0 by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/386
@@ -42,3 +81,4 @@
-* @gogainda made their first contribution in https://github.com/gjtorikian/html-pipeline/pull/348
-* @dependabot made their first contribution in https://github.com/gjtorikian/html-pipeline/pull/377
-* @digitalmoksha made their first contribution in https://github.com/gjtorikian/html-pipeline/pull/379
+
+- @gogainda made their first contribution in https://github.com/gjtorikian/html-pipeline/pull/348
+- @dependabot made their first contribution in https://github.com/gjtorikian/html-pipeline/pull/377
+- @digitalmoksha made their first contribution in https://github.com/gjtorikian/html-pipeline/pull/379
@@ -46,0 +87 @@
+
@@ -47,0 +89 @@
+
@@ -48,0 +91 @@
+
@@ -79 +122 @@
-- req convert\_filter if `text/node`filter present [\#375](https://github.com/gjtorikian/html-pipeline/pull/375) ([gjtorikian](https://github.com/gjtorikian))
+- req convert_filter if `text/node`filter present [\#375](https://github.com/gjtorikian/html-pipeline/pull/375) ([gjtorikian](https://github.com/gjtorikian))
@@ -140 +183 @@
-- Replace EscapeUtils.escape\_html with CGI.escape\_html [\#365](https://github.com/gjtorikian/html-pipeline/pull/365) ([ramhoj](https://github.com/ramhoj))
+- Replace EscapeUtils.escape_html with CGI.escape_html [\#365](https://github.com/gjtorikian/html-pipeline/pull/365) ([ramhoj](https://github.com/ramhoj))
@@ -312 +355 @@
-- New feature request for hashtags \# filter [\#301](https://github.com/gjtorikian/html-pipeline/issues/301)
+- New feature request for hashtags \# filter [\#301](https://github.com/gjtorikian/html-pipeline/issues/301)
@@ -415 +458 @@
-- add korgi to 3rd party extensions \[ci skip\] [\#271](https://github.com/gjtorikian/html-pipeline/pull/271) ([jodeci](https://github.com/jodeci))
+- add korgi to 3rd party extensions \[ci skip\] [\#271](https://github.com/gjtorikian/html-pipeline/pull/271) ([jodeci](https://github.com/jodeci))
@@ -424 +467 @@
-- Missing context keys for HTML::Pipeline::EmojiFilter: :asset\_root [\#262](https://github.com/gjtorikian/html-pipeline/issues/262)
+- Missing context keys for HTML::Pipeline::EmojiFilter: :asset_root [\#262](https://github.com/gjtorikian/html-pipeline/issues/262)
@@ -507,2 +550,2 @@
-- Fix for calling mention\_link\_filter with only one argument [\#230](https://github.com/gjtorikian/html-pipeline/pull/230) ([benbalter](https://github.com/benbalter))
-- Add html-pipeline-linkify\_github to 3rd Party Extensions \[ci skip\] [\#228](https://github.com/gjtorikian/html-pipeline/pull/228) ([JuanitoFatas](https://github.com/JuanitoFatas))
+- Fix for calling mention_link_filter with only one argument [\#230](https://github.com/gjtorikian/html-pipeline/pull/230) ([benbalter](https://github.com/benbalter))
+- Add html-pipeline-linkify_github to 3rd Party Extensions \[ci skip\] [\#228](https://github.com/gjtorikian/html-pipeline/pull/228) ([JuanitoFatas](https://github.com/JuanitoFatas))
@@ -564 +607 @@
-- MentionFilter base\_url config question [\#161](https://github.com/gjtorikian/html-pipeline/issues/161)
+- MentionFilter base_url config question [\#161](https://github.com/gjtorikian/html-pipeline/issues/161)
@@ -576,2 +619,2 @@
-- Add 3rd party gem: html-pipeline-rouge\_filter. [\#174](https://github.com/gjtorikian/html-pipeline/pull/174) ([JuanitoFatas](https://github.com/JuanitoFatas))
-- MentionFilter\#link\_to\_mentioned\_user: Replace String introspection with Regexp match [\#172](https://github.com/gjtorikian/html-pipeline/pull/172) ([simeonwillbanks](https://github.com/simeonwillbanks))
+- Add 3rd party gem: html-pipeline-rouge_filter. [\#174](https://github.com/gjtorikian/html-pipeline/pull/174) ([JuanitoFatas](https://github.com/JuanitoFatas))
+- MentionFilter\#link_to_mentioned_user: Replace String introspection with Regexp match [\#172](https://github.com/gjtorikian/html-pipeline/pull/172) ([simeonwillbanks](https://github.com/simeonwillbanks))
@@ -579 +622 @@
-- Implement new context option: ignored\_ancestor\_tags to accept more ignored tags. [\#170](https://github.com/gjtorikian/html-pipeline/pull/170) ([JuanitoFatas](https://github.com/JuanitoFatas))
+- Implement new context option: ignored_ancestor_tags to accept more ignored tags. [\#170](https://github.com/gjtorikian/html-pipeline/pull/170) ([JuanitoFatas](https://github.com/JuanitoFatas))
@@ -596 +639 @@
-- @mention\_filter should not replace mentions in style blocks. [\#143](https://github.com/gjtorikian/html-pipeline/issues/143)
+- @mention_filter should not replace mentions in style blocks. [\#143](https://github.com/gjtorikian/html-pipeline/issues/143)
@@ -603 +646 @@
-- Prefer http\_url in HttpsFilter [\#142](https://github.com/gjtorikian/html-pipeline/pull/142) ([bkeepers](https://github.com/bkeepers))
+- Prefer http_url in HttpsFilter [\#142](https://github.com/gjtorikian/html-pipeline/pull/142) ([bkeepers](https://github.com/bkeepers))
@@ -635 +678 @@
-- Remove RUBY\_VERSION conditionals from gemspec [\#130](https://github.com/gjtorikian/html-pipeline/pull/130) ([mislav](https://github.com/mislav))
+- Remove RUBY_VERSION conditionals from gemspec [\#130](https://github.com/gjtorikian/html-pipeline/pull/130) ([mislav](https://github.com/mislav))
@@ -662 +705 @@
-- AutolinkFilter link\_attr doesn't seem to work [\#114](https://github.com/gjtorikian/html-pipeline/issues/114)
+- AutolinkFilter link_attr doesn't seem to work [\#114](https://github.com/gjtorikian/html-pipeline/issues/114)
@@ -750 +793 @@
-- Add link\_attr option to Autolink filter [\#89](https://github.com/gjtorikian/html-pipeline/pull/89) ([excid3](https://github.com/excid3))
+- Add link_attr option to Autolink filter [\#89](https://github.com/gjtorikian/html-pipeline/pull/89) ([excid3](https://github.com/excid3))
@@ -752 +795 @@
-- use xml\_mini extracted from activesupport [\#85](https://github.com/gjtorikian/html-pipeline/pull/85) ([mojavelinux](https://github.com/mojavelinux))
+- use xml_mini extracted from activesupport [\#85](https://github.com/gjtorikian/html-pipeline/pull/85) ([mojavelinux](https://github.com/mojavelinux))
@@ -820 +863 @@
-- Allow passing skip\_tags in autolink filter context [\#65](https://github.com/gjtorikian/html-pipeline/pull/65) ([pengwynn](https://github.com/pengwynn))
+- Allow passing skip_tags in autolink filter context [\#65](https://github.com/gjtorikian/html-pipeline/pull/65) ([pengwynn](https://github.com/pengwynn))
@@ -873 +916 @@
-- add result\[:mentioned\_usernames\] for MentionFilter [\#42](https://github.com/gjtorikian/html-pipeline/pull/42) ([fahchen](https://github.com/fahchen))
+- add result\[:mentioned_usernames\] for MentionFilter [\#42](https://github.com/gjtorikian/html-pipeline/pull/42) ([fahchen](https://github.com/fahchen))
@@ -889 +932 @@
-- Bump escape\_utils [\#41](https://github.com/gjtorikian/html-pipeline/pull/41) ([brianmario](https://github.com/brianmario))
+- Bump escape_utils [\#41](https://github.com/gjtorikian/html-pipeline/pull/41) ([brianmario](https://github.com/brianmario))
@@ -981,4 +1023,0 @@
-
-
-
-\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
Gemfile
--- /tmp/d20240501-1846-gcar7z/html-pipeline-3.0.3/Gemfile 2024-05-01 02:19:33.133418850 +0000
+++ /tmp/d20240501-1846-gcar7z/html-pipeline-3.2.0/Gemfile 2024-05-01 02:19:33.137418893 +0000
@@ -13,2 +12,0 @@
-gem "github_changelog_generator", "~> 1.16"
-
README.md
--- /tmp/d20240501-1846-gcar7z/html-pipeline-3.0.3/README.md 2024-05-01 02:19:33.133418850 +0000
+++ /tmp/d20240501-1846-gcar7z/html-pipeline-3.2.0/README.md 2024-05-01 02:19:33.137418893 +0000
@@ -3,3 +2,0 @@
-> **Note**
-> This README refers to the behavior in the new 3.0.0.pre gem.
-
@@ -63 +60 @@
-As an example, suppose we want to transform Commonmark source text into Markdown HTML. With the content, we also want to:
+As an example, suppose we want to transform Commonmark source text into Markdown HTML:
@@ -65 +62,7 @@
-- change every instance of `$NAME` to "`Johnny"
+```
+Hey there, @gjtorikian
+```
+
+With the content, we also want to:
+
+- change every instance of `Hey` to `Hello`
@@ -76 +79 @@
- text.gsub("$NAME", "Johnny")
+ text.gsub("Hey", "Hello")
@@ -107 +110 @@
-context = { markdown: { extensions: { footnotes: false } } }
+context = { markdown: { extensions: { footnotes: false } } }
@@ -111,0 +115,10 @@
+Alternatively, you can construct a pipeline, and pass in a context during the call:
+
+```ruby
+pipeline = HTMLPipeline.new(
+ convert_filter: HTMLPipeline::ConvertFilter::MarkdownFilter.new,
+ node_filters: [HTMLPipeline::NodeFilter::MentionFilter.new]
+)
+pipeline.call(user_supplied_text, context: { markdown: { extensions: { footnotes: false } } })
+```
+
@@ -174 +187 @@
- HTMLPipeline::MarkdownFilter,
+ HTMLPipeline::TextFilter::ImageFilter.new,
@@ -202 +215 @@
- HTMLPipeline::MarkdownFilter,
+ HTMLPipeline::TextFilter::ImageFilter.new,
@@ -378 +391 @@
-config = HTMLPipeline::SanitizationFilter::DEFAULT_CONFIG.dup
+config = HTMLPipeline::SanitizationFilter::DEFAULT_CONFIG.deep_dup
UPGRADING.md
--- /tmp/d20240501-1846-gcar7z/html-pipeline-3.0.3/UPGRADING.md 2024-05-01 02:19:33.133418850 +0000
+++ /tmp/d20240501-1846-gcar7z/html-pipeline-3.2.0/UPGRADING.md 2024-05-01 02:19:33.137418893 +0000
@@ -17 +16,0 @@
-
@@ -20 +18,0 @@
-- `TextFilter`
lib/html_pipeline.rb
--- /tmp/d20240501-1846-gcar7z/html-pipeline-3.0.3/lib/html_pipeline.rb 2024-05-01 02:19:33.133418850 +0000
+++ /tmp/d20240501-1846-gcar7z/html-pipeline-3.2.0/lib/html_pipeline.rb 2024-05-01 02:19:33.141418936 +0000
@@ -156 +156 @@
- text_filters: @text_filters.map(&:name),
+ text_filters: @text_filters.map { |f| f.class.name },
@@ -163 +163 @@
- perform_filter(filter, doc, context: context, result: result)
+ perform_filter(filter, doc, context: (filter.context || {}).merge(context), result: result)
@@ -174 +174 @@
- html = @convert_filter.call(text)
+ html = @convert_filter.call(text, context: (@convert_filter.context || {}).merge(context))
@@ -179,0 +180 @@
+ @node_filters.each { |filter| filter.context = (filter.context || {}).merge(context) }
@@ -190 +191 @@
- instrument("html_pipeline.sanitization", payload) do
+ instrument("sanitization.html_pipeline", payload) do
@@ -207 +208 @@
- filter: filter.name,
+ filter: filter.class.name,
lib/html_pipeline/convert_filter/markdown_filter.rb
--- /tmp/d20240501-1846-gcar7z/html-pipeline-3.0.3/lib/html_pipeline/convert_filter/markdown_filter.rb 2024-05-01 02:19:33.133418850 +0000
+++ /tmp/d20240501-1846-gcar7z/html-pipeline-3.2.0/lib/html_pipeline/convert_filter/markdown_filter.rb 2024-05-01 02:19:33.141418936 +0000
@@ -6 +6 @@
- class ConvertFilter
+ class ConvertFilter < Filter
@@ -19,2 +19,2 @@
- def call(text)
- options = @context.fetch(:markdown, {})
+ def call(text, context: @context)
+ options = context.fetch(:markdown, {})
lib/html_pipeline/filter.rb
--- /tmp/d20240501-1846-gcar7z/html-pipeline-3.0.3/lib/html_pipeline/filter.rb 2024-05-01 02:19:33.133418850 +0000
+++ /tmp/d20240501-1846-gcar7z/html-pipeline-3.2.0/lib/html_pipeline/filter.rb 2024-05-01 02:19:33.141418936 +0000
@@ -30 +30 @@
- attr_reader :context
+ attr_accessor :context
lib/html_pipeline/node_filter.rb
--- /tmp/d20240501-1846-gcar7z/html-pipeline-3.0.3/lib/html_pipeline/node_filter.rb 2024-05-01 02:19:33.133418850 +0000
+++ /tmp/d20240501-1846-gcar7z/html-pipeline-3.2.0/lib/html_pipeline/node_filter.rb 2024-05-01 02:19:33.141418936 +0000
@@ -6,0 +7,2 @@
+ attr_accessor :context
+
lib/html_pipeline/text_filter.rb
--- /tmp/d20240501-1846-gcar7z/html-pipeline-3.0.3/lib/html_pipeline/text_filter.rb 2024-05-01 02:19:33.137418893 +0000
+++ /tmp/d20240501-1846-gcar7z/html-pipeline-3.2.0/lib/html_pipeline/text_filter.rb 2024-05-01 02:19:33.141418936 +0000
@@ -7,5 +7 @@
- def initialize(text, context: {}, result: {})
- raise TypeError, "text must be a String" unless text.is_a?(String)
-
- # Ensure that this is always a string
- @text = text.respond_to?(:to_str) ? text.to_str : text.to_s
+ def initialize(context: {}, result: {})
@@ -16,2 +12,6 @@
- def call(input, context: {}, result: {})
- new(input, context: context, result: result).call
+ def call(text, context: {}, result: {})
+ raise TypeError, "text must be a String" unless text.is_a?(String)
+
+ # Ensure that this is always a string
+ text = text.respond_to?(:to_str) ? text.to_str : text.to_s
+ new(context: context, result: result).call(text)
lib/html_pipeline/text_filter/image_filter.rb
--- /tmp/d20240501-1846-gcar7z/html-pipeline-3.0.3/lib/html_pipeline/text_filter/image_filter.rb 2024-05-01 02:19:33.137418893 +0000
+++ /tmp/d20240501-1846-gcar7z/html-pipeline-3.2.0/lib/html_pipeline/text_filter/image_filter.rb 2024-05-01 02:19:33.141418936 +0000
@@ -12,2 +12,2 @@
- def call
- @text.gsub(%r{(https|http)?://.+\.(jpg|jpeg|bmp|gif|png)(\?\S+)?}i) do |match|
+ def call(text, context: {}, result: {})
+ text.gsub(%r{(https|http)?://.+\.(jpg|jpeg|bmp|gif|png)(\?\S+)?}i) do |match|
lib/html_pipeline/text_filter/plain_text_input_filter.rb
--- /tmp/d20240501-1846-gcar7z/html-pipeline-3.0.3/lib/html_pipeline/text_filter/plain_text_input_filter.rb 2024-05-01 02:19:33.137418893 +0000
+++ /tmp/d20240501-1846-gcar7z/html-pipeline-3.2.0/lib/html_pipeline/text_filter/plain_text_input_filter.rb 2024-05-01 02:19:33.141418936 +0000
@@ -8,2 +8,2 @@
- def call
- "<div>#{CGI.escapeHTML(@text)}</div>"
+ def call(text, context: {}, result: {})
+ "<div>#{CGI.escapeHTML(text)}</div>"
lib/html_pipeline/version.rb
--- /tmp/d20240501-1846-gcar7z/html-pipeline-3.0.3/lib/html_pipeline/version.rb 2024-05-01 02:19:33.137418893 +0000
+++ /tmp/d20240501-1846-gcar7z/html-pipeline-3.2.0/lib/html_pipeline/version.rb 2024-05-01 02:19:33.141418936 +0000
@@ -4 +4 @@
- VERSION = "3.0.3"
+ VERSION = "3.2.0" |
Contributor
gem compare rb_sys 0.9.88 0.9.97Compared versions: ["0.9.88", "0.9.97"]
DIFFERENT cert_chain:
0.9.88: ["-----BEGIN CERTIFICATE-----\nMIIDfDCCAmSgAwIBAgIBATANBgkqhkiG9w0BAQsFADBCMRQwEgYDVQQDDAtpLmtl\ncnNleW1lcjEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPyLGQBGRYD\nY29tMB4XDTIzMDQxNDEzMzYxNVoXDTI0MDQxMzEzMzYxNVowQjEUMBIGA1UEAwwL\naS5rZXJzZXltZXIxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixk\nARkWA2NvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMJ2pG+er4cP\nPasxsMIKL9/tmLL4gh80EMuF3SCS0qZoh+Oo8dkvRYxW8NXdwEIcp3cCNgE+5G+J\nTCMOVF8S15n1Z1P7xxXiXxa/BIofKKbtatVRngm14uR/6pjdkvLXqlrWdS57bNwv\n7LtpzYVfDHfsl/qRWaEi4jq00PNCRSWjcva8teqswjBg8KlwGtyygpezPbVSWP8Y\nvzWZmVF7fqRBXU78Ah0+pNOhslBXDTvI3xJdN4hQ3H7rLjpD/qxKWq/8o+Qvx6cX\ndNZ3ugH/Pr3BAsqt4JFLXin9AK7PO9GDMH5JXJrUb+hAt2VNIZqpz9VlKA6BA0jN\neWGea+yCZkECAwEAAaN9MHswCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0O\nBBYEFOkrF6hsocaIMOjR/K3JBzyXCLJPMCAGA1UdEQQZMBeBFWkua2Vyc2V5bWVy\nQGdtYWlsLmNvbTAgBgNVHRIEGTAXgRVpLmtlcnNleW1lckBnbWFpbC5jb20wDQYJ\nKoZIhvcNAQELBQADggEBAMAohCl0cdVlYrJl9viGtzbEyLV/Krn0ZD/LM9d2cIRj\nWBu7HRkP6AfYVzhZwdgUgDYw67d715kOMpLNGeWQw3QGEHFqbVzRML64jL8IxuTz\nJ8ttZVqM8f4GrHyISJnL92u6iP4WzdbVqx89EFjrrHd14OJXK+ZpdRh0YvnN/vMJ\nt2EcDweRHkN/MEdrwbH+PbYjELnKcTIEZqcCWTk8pgssGrNyjkMhxGSsSUo9qTz0\nDIZ6NVmpBvohJVCCCDxQQxFKLXZp1ivoxjN+m7eJSW7yzIz062pH4u8pPNQsiVSb\nI5rgRPbDr2rAFGXKoQ0+u6CLkRxqrVsITl/OPfZhBQI=\n-----END CERTIFICATE-----\n"]
0.9.97: ["-----BEGIN CERTIFICATE-----\nMIIDODCCAiCgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBCMRQwEgYDVQQDDAtpLmtl\ncnNleW1lcjEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPyLGQBGRYD\nY29tMB4XDTI0MDQxODA1MzY0N1oXDTI1MDQxODA1MzY0N1owQjEUMBIGA1UEAwwL\naS5rZXJzZXltZXIxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixk\nARkWA2NvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMJ2pG+er4cP\nPasxsMIKL9/tmLL4gh80EMuF3SCS0qZoh+Oo8dkvRYxW8NXdwEIcp3cCNgE+5G+J\nTCMOVF8S15n1Z1P7xxXiXxa/BIofKKbtatVRngm14uR/6pjdkvLXqlrWdS57bNwv\n7LtpzYVfDHfsl/qRWaEi4jq00PNCRSWjcva8teqswjBg8KlwGtyygpezPbVSWP8Y\nvzWZmVF7fqRBXU78Ah0+pNOhslBXDTvI3xJdN4hQ3H7rLjpD/qxKWq/8o+Qvx6cX\ndNZ3ugH/Pr3BAsqt4JFLXin9AK7PO9GDMH5JXJrUb+hAt2VNIZqpz9VlKA6BA0jN\neWGea+yCZkECAwEAAaM5MDcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0O\nBBYEFOkrF6hsocaIMOjR/K3JBzyXCLJPMA0GCSqGSIb3DQEBCwUAA4IBAQARHgco\nyCxWUqN+HBGewmSB7T4oq6YS2FtU62K+GuWWCTqjl5byLKMXQW8HPDja9TC1My1m\n2r0uDshtUvUjuB/Vfe9jVMTjnPBspHZYo0MRuMPc7owJaahjkqD3l7w9aa8Ci5aC\nYU4Aj71Sc8s7YIxgHn/yIUdCe1yu6cC0+h+Ss9r/Yjr53NNXwjGQlDmH1eHcVQGZ\nmEoVcZO1uWNtRPPsn1gfvKLPjRe5pclXQnGviS5DiH0Du+8QMxQGBJnYz2zSMW7G\nLvd35BNvZkhFzs9xfykhurpkT2TiP2F3ZFn9dwLXMFe41pwrtEYLIWhYi8mUG4Ek\n6aR8M/tqIpChVV39\n-----END CERTIFICATE-----\n"]
DIFFERENT date:
0.9.88: 1980-01-01 00:00:00 UTC
0.9.97: 2024-04-20 00:00:00 UTC
DIFFERENT required_ruby_version:
0.9.88: >= 2.3.0
0.9.97: >= 2.5.0
DIFFERENT rubygems_version:
0.9.88: 3.5.5
0.9.97: 3.5.3
DIFFERENT version:
0.9.88: 0.9.88
0.9.97: 0.9.97
DIFFERENT files:
0.9.88->0.9.97:
* Changed:
certs/ianks.pem +10/-11
exe/rb-sys-dock +11/-5
lib/rb_sys/cargo/metadata.rb +30/-0
lib/rb_sys/cargo_builder.rb +20/-6
lib/rb_sys/extensiontask.rb +1/-1
lib/rb_sys/mkmf.rb +9/-6
lib/rb_sys/mkmf/config.rb +6/-1
lib/rb_sys/toolchain_info.rb +7/-0
lib/rb_sys/toolchain_info/data.rb +1/-1
lib/rb_sys/version.rb +1/-1 |
Contributor
gem compare --diff rb_sys 0.9.88 0.9.97Compared versions: ["0.9.88", "0.9.97"]
DIFFERENT files:
0.9.88->0.9.97:
* Changed:
certs/ianks.pem
--- /tmp/d20240501-1934-a7az59/rb_sys-0.9.88/certs/ianks.pem 2024-05-01 02:19:39.529528161 +0000
+++ /tmp/d20240501-1934-a7az59/rb_sys-0.9.97/certs/ianks.pem 2024-05-01 02:19:39.533528215 +0000
@@ -2 +2 @@
-MIIDfDCCAmSgAwIBAgIBATANBgkqhkiG9w0BAQsFADBCMRQwEgYDVQQDDAtpLmtl
+MIIDODCCAiCgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBCMRQwEgYDVQQDDAtpLmtl
@@ -4 +4 @@
-Y29tMB4XDTIzMDQxNDEzMzYxNVoXDTI0MDQxMzEzMzYxNVowQjEUMBIGA1UEAwwL
+Y29tMB4XDTI0MDQxODA1MzY0N1oXDTI1MDQxODA1MzY0N1owQjEUMBIGA1UEAwwL
@@ -12,9 +12,8 @@
-eWGea+yCZkECAwEAAaN9MHswCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0O
-BBYEFOkrF6hsocaIMOjR/K3JBzyXCLJPMCAGA1UdEQQZMBeBFWkua2Vyc2V5bWVy
-QGdtYWlsLmNvbTAgBgNVHRIEGTAXgRVpLmtlcnNleW1lckBnbWFpbC5jb20wDQYJ
-KoZIhvcNAQELBQADggEBAMAohCl0cdVlYrJl9viGtzbEyLV/Krn0ZD/LM9d2cIRj
-WBu7HRkP6AfYVzhZwdgUgDYw67d715kOMpLNGeWQw3QGEHFqbVzRML64jL8IxuTz
-J8ttZVqM8f4GrHyISJnL92u6iP4WzdbVqx89EFjrrHd14OJXK+ZpdRh0YvnN/vMJ
-t2EcDweRHkN/MEdrwbH+PbYjELnKcTIEZqcCWTk8pgssGrNyjkMhxGSsSUo9qTz0
-DIZ6NVmpBvohJVCCCDxQQxFKLXZp1ivoxjN+m7eJSW7yzIz062pH4u8pPNQsiVSb
-I5rgRPbDr2rAFGXKoQ0+u6CLkRxqrVsITl/OPfZhBQI=
+eWGea+yCZkECAwEAAaM5MDcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0O
+BBYEFOkrF6hsocaIMOjR/K3JBzyXCLJPMA0GCSqGSIb3DQEBCwUAA4IBAQARHgco
+yCxWUqN+HBGewmSB7T4oq6YS2FtU62K+GuWWCTqjl5byLKMXQW8HPDja9TC1My1m
+2r0uDshtUvUjuB/Vfe9jVMTjnPBspHZYo0MRuMPc7owJaahjkqD3l7w9aa8Ci5aC
+YU4Aj71Sc8s7YIxgHn/yIUdCe1yu6cC0+h+Ss9r/Yjr53NNXwjGQlDmH1eHcVQGZ
+mEoVcZO1uWNtRPPsn1gfvKLPjRe5pclXQnGviS5DiH0Du+8QMxQGBJnYz2zSMW7G
+Lvd35BNvZkhFzs9xfykhurpkT2TiP2F3ZFn9dwLXMFe41pwrtEYLIWhYi8mUG4Ek
+6aR8M/tqIpChVV39
exe/rb-sys-dock
--- /tmp/d20240501-1934-a7az59/rb_sys-0.9.88/exe/rb-sys-dock 2024-05-01 02:19:39.529528161 +0000
+++ /tmp/d20240501-1934-a7az59/rb_sys-0.9.97/exe/rb-sys-dock 2024-05-01 02:19:39.533528215 +0000
@@ -21 +21,7 @@
- @cargo_metadata ||= RbSys::Cargo::Metadata.new("rb-sys-dock", deps: true)
+ return @cargo_metadata if defined?(@cargo_metadata)
+
+ @cargo_metadata = begin
+ RbSys::Cargo::Metadata.inferred(deps: true)
+ rescue
+ nil
+ end
@@ -175 +181 @@
- return File.join(ENV["XDG_CACHE_HOME"], "rb-sys-dock") if ENV["XDG_CACHE_HOME"]
+ return File.join(ENV["XDG_CACHE_HOME"], "rb-sys") if ENV["XDG_CACHE_HOME"]
@@ -177 +183 @@
- File.join(ENV["HOME"], ".cache", "rb-sys-dock")
+ File.join(ENV["HOME"], ".cache", "rb-sys")
@@ -362 +368 @@
- -v #{working_directory}:#{working_directory} \
+ -v $(pwd):$(pwd) \
@@ -424 +430 @@
- cargo_version = cargo_metadata.rb_sys_version
+ cargo_version = cargo_metadata&.rb_sys_version || RbSys::VERSION
lib/rb_sys/cargo/metadata.rb
--- /tmp/d20240501-1934-a7az59/rb_sys-0.9.88/lib/rb_sys/cargo/metadata.rb 2024-05-01 02:19:39.529528161 +0000
+++ /tmp/d20240501-1934-a7az59/rb_sys-0.9.97/lib/rb_sys/cargo/metadata.rb 2024-05-01 02:19:39.533528215 +0000
@@ -11,0 +12,20 @@
+ class << self
+ # Infers the Cargo project's name from the Cargo.toml file.
+ #
+ # @return [RbSys::Cargo::Metadata]
+ def inferred(deps: false)
+ new(File.read("Cargo.toml").match(/^name = "(.*)"/)[1], deps: deps)
+ rescue
+ new(File.basename(Dir.pwd), deps: deps)
+ end
+
+ # Initializes a new Cargo::Metadata instance or infers the Cargo project's name.
+ #
+ # @param name [String] the name of the Cargo project
+ def new_or_inferred(name, deps: false)
+ new(name, deps: deps).load!
+ rescue CargoMetadataError
+ inferred
+ end
+ end
+
@@ -94,0 +115,2 @@
+ #
+ # @return [String]
@@ -98,0 +121,8 @@
+ end
+
+ # Eagerly run `cargo metadata`, raising a RbSys::CargoCargoMetadataError` if it fails.
+ #
+ # @return [RbSys::Cargo::Metadata]
+ def load!
+ cargo_metadata
+ self
lib/rb_sys/cargo_builder.rb
--- /tmp/d20240501-1934-a7az59/rb_sys-0.9.88/lib/rb_sys/cargo_builder.rb 2024-05-01 02:19:39.529528161 +0000
+++ /tmp/d20240501-1934-a7az59/rb_sys-0.9.97/lib/rb_sys/cargo_builder.rb 2024-05-01 02:19:39.533528215 +0000
@@ -12 +12 @@
- :extra_cargo_args
+ :extra_cargo_args, :config
@@ -69 +69,5 @@
- cmd += ["cargo", "rustc"]
+ cmd += if config.use_cargo_build
+ ["cargo", "build"]
+ else
+ ["cargo", "rustc"]
+ end
@@ -77,3 +81,5 @@
- cmd += ["--"]
- cmd += [*rustc_args(dest_path)]
- cmd += extra_rustc_args
+ if !config.use_cargo_build
+ cmd += ["--"]
+ cmd += [*rustc_args(dest_path)]
+ cmd += extra_rustc_args
+ end
@@ -144,0 +151,4 @@
+ if musl?
+ flags += ["-C", "target-feature=-crt-static"]
+ end
+
@@ -331 +341,5 @@
- ENV.key?("SOURCE_DATE_EPOCH") && !ENV["RB_SYS_TEST"] == "1"
+ ENV.key?("SOURCE_DATE_EPOCH") && ENV["RB_SYS_TEST"] != "1"
+ end
+
+ def musl?
+ RbConfig::CONFIG["target_os"] == "linux-musl" || RbConfig::CONFIG["CC"]&.include?("musl-gcc")
lib/rb_sys/extensiontask.rb
--- /tmp/d20240501-1934-a7az59/rb_sys-0.9.88/lib/rb_sys/extensiontask.rb 2024-05-01 02:19:39.533528215 +0000
+++ /tmp/d20240501-1934-a7az59/rb_sys-0.9.97/lib/rb_sys/extensiontask.rb 2024-05-01 02:19:39.533528215 +0000
@@ -60 +60 @@
- @cargo_metadata ||= Cargo::Metadata.new(@name)
+ @cargo_metadata ||= Cargo::Metadata.new_or_inferred(@name)
lib/rb_sys/mkmf.rb
--- /tmp/d20240501-1934-a7az59/rb_sys-0.9.88/lib/rb_sys/mkmf.rb 2024-05-01 02:19:39.533528215 +0000
+++ /tmp/d20240501-1934-a7az59/rb_sys-0.9.97/lib/rb_sys/mkmf.rb 2024-05-01 02:19:39.533528215 +0000
@@ -13,3 +12,0 @@
- # @api private
- GLOBAL_RUSTFLAGS = ["--cfg=rb_sys_gem"]
-
@@ -35 +32 @@
- # r.rustflags = %w[--cfg=foo]
+ # r.extra_rustflags = %w[--cfg=foo]
@@ -56 +53,3 @@
- global_rustflags = GLOBAL_RUSTFLAGS.dup
+
+ global_rustflags = []
+ global_rustflags << "--cfg=rb_sys_gem" unless builder.use_cargo_build
@@ -172 +171,5 @@
- cmd.gsub!(/\Acargo rustc/, "$(CARGO) rustc $(RB_SYS_EXTRA_CARGO_ARGS) --manifest-path $(RB_SYS_CARGO_MANIFEST_DIR)/Cargo.toml")
+ if builder.use_cargo_build
+ cmd.gsub!(/\Acargo rustc/, "$(CARGO) build $(RB_SYS_EXTRA_CARGO_ARGS) --manifest-path $(RB_SYS_CARGO_MANIFEST_DIR)/Cargo.toml")
+ else
+ cmd.gsub!(/\Acargo rustc/, "$(CARGO) rustc $(RB_SYS_EXTRA_CARGO_ARGS) --manifest-path $(RB_SYS_CARGO_MANIFEST_DIR)/Cargo.toml")
+ end
lib/rb_sys/mkmf/config.rb
--- /tmp/d20240501-1934-a7az59/rb_sys-0.9.88/lib/rb_sys/mkmf/config.rb 2024-05-01 02:19:39.533528215 +0000
+++ /tmp/d20240501-1934-a7az59/rb_sys-0.9.97/lib/rb_sys/mkmf/config.rb 2024-05-01 02:19:39.533528215 +0000
@@ -27,0 +28,4 @@
+ # Instead of the default `cargo rustc` behaviour, just call `cargo build`.
+ # Requires manually setting relevant rb-sys environment (default: false)
+ attr_accessor :use_cargo_build
+
@@ -29,0 +34 @@
+ @builder.config = self
@@ -58 +63 @@
- ENV.key?("SOURCE_DATE_EPOCH") && !ENV["RB_SYS_TEST"] == "1"
+ ENV.key?("SOURCE_DATE_EPOCH") && ENV["RB_SYS_TEST"] != "1"
lib/rb_sys/toolchain_info.rb
--- /tmp/d20240501-1934-a7az59/rb_sys-0.9.88/lib/rb_sys/toolchain_info.rb 2024-05-01 02:19:39.533528215 +0000
+++ /tmp/d20240501-1934-a7az59/rb_sys-0.9.97/lib/rb_sys/toolchain_info.rb 2024-05-01 02:19:39.537528270 +0000
@@ -30,0 +31,7 @@
+ # Get all supported toolchain names, as strings.
+ #
+ # @return [Array<String>]
+ def supported_ruby_platforms
+ supported.map(&:platform)
+ end
+
lib/rb_sys/toolchain_info/data.rb
--- /tmp/d20240501-1934-a7az59/rb_sys-0.9.88/lib/rb_sys/toolchain_info/data.rb 2024-05-01 02:19:39.533528215 +0000
+++ /tmp/d20240501-1934-a7az59/rb_sys-0.9.97/lib/rb_sys/toolchain_info/data.rb 2024-05-01 02:19:39.537528270 +0000
@@ -8 +8 @@
- DATA = {"arm-linux" => {"rust-target" => "arm-unknown-linux-gnueabihf", "rake-compiler-dock" => {"cc" => "arm-linux-gnueabihf-gcc"}, "docker-platform" => "linux/arm/v7", "supported" => true}, "aarch64-linux" => {"rust-target" => "aarch64-unknown-linux-gnu", "rake-compiler-dock" => {"cc" => "aarch64-linux-gnu-gcc"}, "docker-platform" => "linux/arm64/v8", "supported" => true}, "arm64-darwin" => {"rust-target" => "aarch64-apple-darwin", "rake-compiler-dock" => {"cc" => "aarch64-apple-darwin-clang"}, "docker-platform" => "linux/arm64/v8", "supported" => true}, "x64-mingw-ucrt" => {"rust-target" => "x86_64-pc-windows-gnu", "rake-compiler-dock" => {"cc" => "x86_64-windows-gnu-gcc"}, "docker-platform" => "linux/amd64", "supported" => true}, "x64-mingw32" => {"rust-target" => "x86_64-pc-windows-gnu", "rake-compiler-dock" => {"cc" => "x86_64-windows-gnu-gcc"}, "docker-platform" => "linux/amd64", "supported" => true}, "x86-linux" => {"rust-target" => "i686-unknown-linux-gnu", "rake-compiler-dock" => {"cc" => "i686-redhat-linux-gcc"}, "docker-platform" => "linux/i386", "supported" => false}, "x86-mingw32" => {"rust-target" => "i686-pc-windows-gnu", "rake-compiler-dock" => {"cc" => "i686-w64-mingw32-gcc"}, "docker-platform" => "linux/i386", "supported" => false}, "x86_64-darwin" => {"rust-target" => "x86_64-apple-darwin", "rake-compiler-dock" => {"cc" => "x86_64-apple-darwin-clang"}, "docker-platform" => "linux/amd64", "supported" => true}, "x86_64-linux" => {"rust-target" => "x86_64-unknown-linux-gnu", "rake-compiler-dock" => {"cc" => "x86_64-redhat-linux-gcc"}, "docker-platform" => "linux/amd64", "supported" => true}, "x86_64-linux-musl" => {"rust-target" => "x86_64-unknown-linux-musl", "rake-compiler-dock" => {"cc" => "x86_64-unknown-linux-musl-gcc"}, "docker-platform" => "linux/amd64", "supported" => true}}
+ DATA = {"arm-linux" => {"rust-target" => "arm-unknown-linux-gnueabihf", "rake-compiler-dock" => {"cc" => "arm-linux-gnueabihf-gcc"}, "docker-platform" => "linux/arm/v7", "supported" => true}, "aarch64-linux" => {"rust-target" => "aarch64-unknown-linux-gnu", "rake-compiler-dock" => {"cc" => "aarch64-linux-gnu-gcc"}, "docker-platform" => "linux/arm64/v8", "supported" => true}, "aarch64-linux-musl" => {"rust-target" => "aarch64-unknown-linux-musl", "rake-compiler-dock" => {"cc" => "aarch64-linux-musl-gcc"}, "docker-platform" => "linux/arm64/v8", "supported" => true}, "arm64-darwin" => {"rust-target" => "aarch64-apple-darwin", "rake-compiler-dock" => {"cc" => "aarch64-apple-darwin-clang"}, "docker-platform" => "linux/arm64/v8", "supported" => true}, "x64-mingw-ucrt" => {"rust-target" => "x86_64-pc-windows-gnu", "rake-compiler-dock" => {"cc" => "x86_64-windows-gnu-gcc"}, "docker-platform" => "linux/amd64", "supported" => true}, "x64-mingw32" => {"rust-target" => "x86_64-pc-windows-gnu", "rake-compiler-dock" => {"cc" => "x86_64-windows-gnu-gcc"}, "docker-platform" => "linux/amd64", "supported" => true}, "x86-linux" => {"rust-target" => "i686-unknown-linux-gnu", "rake-compiler-dock" => {"cc" => "i686-redhat-linux-gcc"}, "docker-platform" => "linux/i386", "supported" => false}, "x86-mingw32" => {"rust-target" => "i686-pc-windows-gnu", "rake-compiler-dock" => {"cc" => "i686-w64-mingw32-gcc"}, "docker-platform" => "linux/i386", "supported" => false}, "x86_64-darwin" => {"rust-target" => "x86_64-apple-darwin", "rake-compiler-dock" => {"cc" => "x86_64-apple-darwin-clang"}, "docker-platform" => "linux/amd64", "supported" => true}, "x86_64-linux" => {"rust-target" => "x86_64-unknown-linux-gnu", "rake-compiler-dock" => {"cc" => "x86_64-redhat-linux-gcc"}, "docker-platform" => "linux/amd64", "supported" => true}, "x86_64-linux-musl" => {"rust-target" => "x86_64-unknown-linux-musl", "rake-compiler-dock" => {"cc" => "x86_64-unknown-linux-musl-gcc"}, "docker-platform" => "linux/amd64", "supported" => true}}
lib/rb_sys/version.rb
--- /tmp/d20240501-1934-a7az59/rb_sys-0.9.88/lib/rb_sys/version.rb 2024-05-01 02:19:39.533528215 +0000
+++ /tmp/d20240501-1934-a7az59/rb_sys-0.9.97/lib/rb_sys/version.rb 2024-05-01 02:19:39.537528270 +0000
@@ -4 +4 @@
- VERSION = "0.9.88"
+ VERSION = "0.9.97" |
07c171b to
fb29d1a
Compare
Bumps [html-pipeline](https://github.com/gjtorikian/html-pipeline) from 3.0.3 to 3.2.0. - [Release notes](https://github.com/gjtorikian/html-pipeline/releases) - [Changelog](https://github.com/gjtorikian/html-pipeline/blob/main/CHANGELOG.md) - [Commits](gjtorikian/html-pipeline@v3.0.3...v3.2.0) --- updated-dependencies: - dependency-name: html-pipeline dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
fb29d1a to
6cf3e66
Compare
Contributor
Author
|
Superseded by #656. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bumps html-pipeline from 3.0.3 to 3.2.0.
Release notes
Sourced from html-pipeline's releases.
Changelog
Sourced from html-pipeline's changelog.
Commits
bfc4c98[auto-docs][skip test]: update changelogd4a5269Merge pull request #403 from gjtorikian/pass-context-along-fully22e96b9whoops!c412896:version: 3.1.22241a54remove outdated notee35f5b9Make sure every filter can work withcontext6f51e52Let Convert/Node filters to use context at calltime5b16b24rename sanitization instrumentation keyec6ff5bremove erroneous testaec775c[auto-docs][skip test]: update changelogYou can trigger a rebase of this PR by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)