-
Notifications
You must be signed in to change notification settings - Fork 1
Bump html-pipeline from 3.0.3 to 3.2.3 #751
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
gem compare html-pipeline 3.0.3 3.2.3Compared versions: ["3.0.3", "3.2.3"]
DIFFERENT date:
3.0.3: 2024-02-02 00:00:00 UTC
3.2.3: 2025-04-24 00:00:00 UTC
DIFFERENT rubygems_version:
3.0.3: 3.5.5
3.2.3: 3.4.6
DIFFERENT version:
3.0.3: 3.0.3
3.2.3: 3.2.3
DIFFERENT files:
3.0.3->3.2.3:
* Changed:
.github/workflows/publish.yml +7/-2
.gitignore +1/-1
.rubocop.yml +3/-0
CHANGELOG.md +113/-52
Gemfile +1/-3
README.md +26/-41
UPGRADING.md +0/-2
html-pipeline.gemspec +1/-1
lib/html_pipeline.rb +26/-20
lib/html_pipeline/convert_filter.rb +1/-1
lib/html_pipeline/convert_filter/markdown_filter.rb +4/-4
lib/html_pipeline/filter.rb +1/-1
lib/html_pipeline/node_filter.rb +2/-0
lib/html_pipeline/node_filter/mention_filter.rb +2/-1
lib/html_pipeline/node_filter/syntax_highlight_filter.rb +1/-1
lib/html_pipeline/node_filter/team_mention_filter.rb +2/-1
lib/html_pipeline/text_filter.rb +8/-8
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 runtime dependencies:
3.0.3->3.2.3:
* Updated:
selma from: ["~> 0.1"] to: ["~> 0.4"]
DIFFERENT Gemfile dependencies
3.0.3->3.2.3:
* Deleted
github_changelog_generator ["~> 1.16"] (runtime)
* Updated
commonmarker from: ["~> 1.0.0.pre7"] to: ["~> 2.0.1"] |
Contributor
gem compare --diff html-pipeline 3.0.3 3.2.3Compared versions: ["3.0.3", "3.2.3"]
DIFFERENT files:
3.0.3->3.2.3:
* Changed:
.github/workflows/publish.yml
--- /tmp/d20250425-2094-ciloa4/html-pipeline-3.0.3/.github/workflows/publish.yml 2025-04-25 02:44:54.552325204 +0000
+++ /tmp/d20250425-2094-ciloa4/html-pipeline-3.2.3/.github/workflows/publish.yml 2025-04-25 02:44:54.559325288 +0000
@@ -1 +1 @@
-name: Release
+name: Tag and Release
@@ -9,0 +10,3 @@
+ pull_request_target:
+ types:
+ - closed
@@ -16 +19 @@
- gh_token: ${{ secrets.PUBLIC_PUSH_TO_PROTECTED_BRANCH }}
+ gh_token: ${{ secrets.GITHUB_TOKEN }}
@@ -19,0 +23,2 @@
+ prepare: ${{ github.event_name == 'push' }}
+ release: ${{ github.event_name == 'workflow_dispatch' || ((github.event.pull_request.merged == true) && (contains(github.event.pull_request.labels.*.name, 'release'))) }}
.gitignore
--- /tmp/d20250425-2094-ciloa4/html-pipeline-3.0.3/.gitignore 2025-04-25 02:44:54.553325216 +0000
+++ /tmp/d20250425-2094-ciloa4/html-pipeline-3.2.3/.gitignore 2025-04-25 02:44:54.559325288 +0000
@@ -20 +20 @@
-vendor/gems
\ No newline at end of file
+vendor/cache/
.rubocop.yml
--- /tmp/d20250425-2094-ciloa4/html-pipeline-3.0.3/.rubocop.yml 2025-04-25 02:44:54.553325216 +0000
+++ /tmp/d20250425-2094-ciloa4/html-pipeline-3.2.3/.rubocop.yml 2025-04-25 02:44:54.559325288 +0000
@@ -17,0 +18,3 @@
+
+ThreadSafety/ClassAndModuleAttributes:
+ Enabled: false
CHANGELOG.md
--- /tmp/d20250425-2094-ciloa4/html-pipeline-3.0.3/CHANGELOG.md 2025-04-25 02:44:54.554325228 +0000
+++ /tmp/d20250425-2094-ciloa4/html-pipeline-3.2.3/CHANGELOG.md 2025-04-25 02:44:54.560325300 +0000
@@ -0,0 +1,51 @@
+# [v3.2.2] - 09-08-2024
+## What's Changed
+* Add support for @ prefix on MentionFilter base_url by @jeremysmithco in https://github.com/gjtorikian/html-pipeline/pull/411
+* Bugfix: sanitization-only filters should still work by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/414
+
+## New Contributors
+* @jeremysmithco made their first contribution in https://github.com/gjtorikian/html-pipeline/pull/411
+
+**Full Changelog**: https://github.com/gjtorikian/html-pipeline/compare/v3.2.1...v3.2.2
+# [v3.2.1] - 16-07-2024
+## What's Changed
+* Update commonmarker requirement from ~> 1.0.0.pre7 to ~> 1.1.2 in the bundler-dependencies group by @dependabot in https://github.com/gjtorikian/html-pipeline/pull/404
+* Remove superfluous sanitization by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/408
+
+
+**Full Changelog**: https://github.com/gjtorikian/html-pipeline/compare/v3.2.0...v3.2.1
+## [v3.2.0] - 30-04-2024
+## What's Changed
+* Pass context along to every part of the pipeline by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/403
+
+
+**Full Changelog**: https://github.com/gjtorikian/html-pipeline/compare/v3.1.1...v3.2.0
+## [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 +53 @@
+
@@ -3,2 +55,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 +60,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 +64 @@
+
@@ -10,0 +66 @@
+
@@ -12 +68,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 +72,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 +76 @@
+
@@ -18,0 +78 @@
+
@@ -20,20 +80,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 +103,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 +109 @@
+
@@ -47,0 +111 @@
+
@@ -48,0 +113 @@
+
@@ -79 +144 @@
-- 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 +205 @@
-- 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 +377 @@
-- 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 +480 @@
-- 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 +489 @@
-- 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 +572,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 +629 @@
-- 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 +641,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 +644 @@
-- 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 +661 @@
-- @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 +668 @@
-- 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 +700 @@
-- 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 +727 @@
-- 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 +815 @@
-- 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 +817 @@
-- 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 +885 @@
-- 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 +938 @@
-- 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 +954 @@
-- 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 +1045,0 @@
-
-
-
-\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
Gemfile
--- /tmp/d20250425-2094-ciloa4/html-pipeline-3.0.3/Gemfile 2025-04-25 02:44:54.554325228 +0000
+++ /tmp/d20250425-2094-ciloa4/html-pipeline-3.2.3/Gemfile 2025-04-25 02:44:54.560325300 +0000
@@ -13,2 +12,0 @@
-gem "github_changelog_generator", "~> 1.16"
-
@@ -30 +28 @@
- gem "commonmarker", "~> 1.0.0.pre7", require: false
+ gem "commonmarker", "~> 2.0.1", require: false
README.md
--- /tmp/d20250425-2094-ciloa4/html-pipeline-3.0.3/README.md 2025-04-25 02:44:54.554325228 +0000
+++ /tmp/d20250425-2094-ciloa4/html-pipeline-3.2.3/README.md 2025-04-25 02:44:54.560325300 +0000
@@ -3,3 +2,0 @@
-> **Note**
-> This README refers to the behavior in the new 3.0.0.pre gem.
-
@@ -63 +60,7 @@
-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:
+
+```
+Hey there, @gjtorikian
+```
+
+With the content, we also want to:
@@ -65 +68 @@
-- change every instance of `$NAME` to "`Johnny"
+- 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 } } })
+```
+
@@ -161 +174 @@
-Because the web can be a scary place, HTML is automatically sanitized after the `ConvertFilter` runs and before the `NodeFilter`s are processed. This is to prevent malicious or unexpected input from entering the pipeline.
+Because the web can be a scary place, **HTML is automatically sanitized** after the `ConvertFilter` runs and before the `NodeFilter`s are processed. This is to prevent malicious or unexpected input from entering the pipeline.
@@ -163 +176 @@
-The sanitization process takes a hash configuration of settings. See the [Selma](https://www.github.com/gjtorikian/selma) documentation for more information on how to configure these settings.
+The sanitization process takes a hash configuration of settings. See the [Selma](https://www.github.com/gjtorikian/selma) documentation for more information on how to configure these settings. Note that users must correctly configure the sanitization configuration if they expect to use it correctly in conjunction with handlers which manipulate HTML.
@@ -174 +187 @@
- HTMLPipeline::MarkdownFilter,
+ HTMLPipeline::TextFilter::ImageFilter.new,
@@ -202 +215 @@
- HTMLPipeline::MarkdownFilter,
+ HTMLPipeline::TextFilter::ImageFilter.new,
@@ -214 +227 @@
-`NodeFilter` also has an optional method, `after_initialize`, which is run after the filter initializes. This can be useful in setting up a custom state for `result` to take advantage of.
+`NodeFilter` also has an optional method, `after_initialize`, which is run after the filter initializes. This can be useful in setting up a fresh custom state for `result` to start from each time the pipeline is called.
@@ -333,28 +345,0 @@
-## Third Party Extensions
-
-If you have an idea for a filter, propose it as
-[an issue](https://github.com/gjtorikian/html-pipeline/issues) first. This allows us to discuss
-whether the filter is a common enough use case to belong in this gem, or should be
-built as an external gem.
-
-Here are some extensions people have built:
-
-- [html-pipeline-asciidoc_filter](https://github.com/asciidoctor/html-pipeline-asciidoc_filter)
-- [jekyll-html-pipeline](https://github.com/gjtorikian/jekyll-html-pipeline)
-- [nanoc-html-pipeline](https://github.com/burnto/nanoc-html-pipeline)
-- [html-pipeline-bitly](https://github.com/dewski/html-pipeline-bitly)
-- [html-pipeline-cite](https://github.com/lifted-studios/html-pipeline-cite)
-- [tilt-html-pipeline](https://github.com/bradgessler/tilt-html-pipeline)
-- [html-pipeline-wiki-link'](https://github.com/lifted-studios/html-pipeline-wiki-link) - WikiMedia-style wiki links
-- [task_list](https://github.com/github/task_list) - GitHub flavor Markdown Task List
-- [html-pipeline-nico_link](https://github.com/rutan/html-pipeline-nico_link) - An HTMLPipeline filter for [niconico](http://www.nicovideo.jp) description links
-- [html-pipeline-gitlab](https://gitlab.com/gitlab-org/html-pipeline-gitlab) - This gem implements various filters for html-pipeline used by GitLab
-- [html-pipeline-youtube](https://github.com/st0012/html-pipeline-youtube) - An HTMLPipeline filter for YouTube links
-- [html-pipeline-flickr](https://github.com/st0012/html-pipeline-flickr) - An HTMLPipeline filter for Flickr links
-- [html-pipeline-vimeo](https://github.com/dlackty/html-pipeline-vimeo) - An HTMLPipeline filter for Vimeo links
-- [html-pipeline-hashtag](https://github.com/mr-dxdy/html-pipeline-hashtag) - An HTMLPipeline filter for hashtags
-- [html-pipeline-linkify_github](https://github.com/jollygoodcode/html-pipeline-linkify_github) - An HTMLPipeline filter to autolink GitHub urls
-- [html-pipeline-redcarpet_filter](https://github.com/bmikol/html-pipeline-redcarpet_filter) - Render Markdown source text into Markdown HTML using Redcarpet
-- [html-pipeline-typogruby_filter](https://github.com/bmikol/html-pipeline-typogruby_filter) - Add Typogruby text filters to your HTMLPipeline
-- [korgi](https://github.com/jodeci/korgi) - HTMLPipeline filters for links to Rails resources
-
@@ -378 +363 @@
-config = HTMLPipeline::SanitizationFilter::DEFAULT_CONFIG.dup
+config = HTMLPipeline::SanitizationFilter::DEFAULT_CONFIG.deep_dup
UPGRADING.md
--- /tmp/d20250425-2094-ciloa4/html-pipeline-3.0.3/UPGRADING.md 2025-04-25 02:44:54.554325228 +0000
+++ /tmp/d20250425-2094-ciloa4/html-pipeline-3.2.3/UPGRADING.md 2025-04-25 02:44:54.560325300 +0000
@@ -17 +16,0 @@
-
@@ -20 +18,0 @@
-- `TextFilter`
html-pipeline.gemspec
--- /tmp/d20250425-2094-ciloa4/html-pipeline-3.0.3/html-pipeline.gemspec 2025-04-25 02:44:54.555325240 +0000
+++ /tmp/d20250425-2094-ciloa4/html-pipeline-3.2.3/html-pipeline.gemspec 2025-04-25 02:44:54.560325300 +0000
@@ -28 +28 @@
- gem.add_dependency("selma", "~> 0.1")
+ gem.add_dependency("selma", "~> 0.4")
lib/html_pipeline.rb
--- /tmp/d20250425-2094-ciloa4/html-pipeline-3.0.3/lib/html_pipeline.rb 2025-04-25 02:44:54.555325240 +0000
+++ /tmp/d20250425-2094-ciloa4/html-pipeline-3.2.3/lib/html_pipeline.rb 2025-04-25 02:44:54.561325312 +0000
@@ -125 +125 @@
- if @convert_filter.nil? && (!@text_filters.empty? && !@node_filters.empty?)
+ if @convert_filter.nil? && !@text_filters.empty? && !@node_filters.empty?
@@ -156,3 +156,3 @@
- text_filters: @text_filters.map(&:name),
- context: context,
- result: result,
+ text_filters: @text_filters.map { |f| f.class.name },
+ context:,
+ result:,
@@ -163 +163 @@
- perform_filter(filter, doc, context: context, result: result)
+ perform_filter(filter, doc, context: (filter.context || {}).merge(context), result:)
@@ -174 +174 @@
- html = @convert_filter.call(text)
+ html = @convert_filter.call(text, context: (@convert_filter.context || {}).merge(context))
@@ -178 +178,11 @@
- unless @node_filters.empty?
+ rewriter_options = {
+ memory: {
+ max_allowed_memory_usage: 5242880, # arbitrary limit of 5MB
+ },
+ }
+
+ if @node_filters.empty? && !@sanitization_config.nil?
+ instrument("sanitization.html_pipeline", payload) do
+ result[:output] = Selma::Rewriter.new(sanitizer: @sanitization_config, options: rewriter_options).rewrite(html)
+ end
+ elsif @node_filters.any?
@@ -180,2 +190,2 @@
- result[:output] = Selma::Rewriter.new(sanitizer: @sanitization_config, handlers: @node_filters).rewrite(html)
- html = result[:output]
+ @node_filters.each { |filter| filter.context = (filter.context || {}).merge(context) }
+ result[:output] = Selma::Rewriter.new(sanitizer: @sanitization_config, handlers: @node_filters, options: rewriter_options).rewrite(html)
@@ -184,2 +194,2 @@
- context: context,
- result: result,
+ context:,
+ result:,
@@ -190,4 +199,0 @@
- instrument("html_pipeline.sanitization", payload) do
- result[:output] = Selma::Rewriter.new(sanitizer: @sanitization_config, handlers: @node_filters).rewrite(html)
- end
-
@@ -207,3 +213,3 @@
- filter: filter.name,
- context: context,
- result: result,
+ filter: filter.class.name,
+ context:,
+ result:,
@@ -213 +219 @@
- filter.call(doc, context: context, result: result)
+ filter.call(doc, context:, result:)
@@ -219 +225 @@
- result = call(input, context: context, result: result)
+ result = call(input, context:, result:)
lib/html_pipeline/convert_filter.rb
--- /tmp/d20250425-2094-ciloa4/html-pipeline-3.0.3/lib/html_pipeline/convert_filter.rb 2025-04-25 02:44:54.555325240 +0000
+++ /tmp/d20250425-2094-ciloa4/html-pipeline-3.2.3/lib/html_pipeline/convert_filter.rb 2025-04-25 02:44:54.561325312 +0000
@@ -8 +8 @@
- super(context: context, result: result)
+ super
lib/html_pipeline/convert_filter/markdown_filter.rb
--- /tmp/d20250425-2094-ciloa4/html-pipeline-3.0.3/lib/html_pipeline/convert_filter/markdown_filter.rb 2025-04-25 02:44:54.555325240 +0000
+++ /tmp/d20250425-2094-ciloa4/html-pipeline-3.2.3/lib/html_pipeline/convert_filter/markdown_filter.rb 2025-04-25 02:44:54.561325312 +0000
@@ -6 +6 @@
- class ConvertFilter
+ class ConvertFilter < Filter
@@ -15 +15 @@
- super(context: context, result: result)
+ super
@@ -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/d20250425-2094-ciloa4/html-pipeline-3.0.3/lib/html_pipeline/filter.rb 2025-04-25 02:44:54.555325240 +0000
+++ /tmp/d20250425-2094-ciloa4/html-pipeline-3.2.3/lib/html_pipeline/filter.rb 2025-04-25 02:44:54.561325312 +0000
@@ -30 +30 @@
- attr_reader :context
+ attr_accessor :context
lib/html_pipeline/node_filter.rb
--- /tmp/d20250425-2094-ciloa4/html-pipeline-3.0.3/lib/html_pipeline/node_filter.rb 2025-04-25 02:44:54.556325252 +0000
+++ /tmp/d20250425-2094-ciloa4/html-pipeline-3.2.3/lib/html_pipeline/node_filter.rb 2025-04-25 02:44:54.561325312 +0000
@@ -6,0 +7,2 @@
+ attr_accessor :context
+
lib/html_pipeline/node_filter/mention_filter.rb
--- /tmp/d20250425-2094-ciloa4/html-pipeline-3.0.3/lib/html_pipeline/node_filter/mention_filter.rb 2025-04-25 02:44:54.557325264 +0000
+++ /tmp/d20250425-2094-ciloa4/html-pipeline-3.2.3/lib/html_pipeline/node_filter/mention_filter.rb 2025-04-25 02:44:54.562325324 +0000
@@ -118 +118,2 @@
- url << "/" unless %r{[/~]\z}.match?(url)
+ excluded_prefixes = %r{[/(?:~|@]\z}
+ url << "/" unless excluded_prefixes.match?(url)
lib/html_pipeline/node_filter/syntax_highlight_filter.rb
--- /tmp/d20250425-2094-ciloa4/html-pipeline-3.0.3/lib/html_pipeline/node_filter/syntax_highlight_filter.rb 2025-04-25 02:44:54.557325264 +0000
+++ /tmp/d20250425-2094-ciloa4/html-pipeline-3.2.3/lib/html_pipeline/node_filter/syntax_highlight_filter.rb 2025-04-25 02:44:54.562325324 +0000
@@ -18 +18 @@
- super(context: context, result: result)
+ super
lib/html_pipeline/node_filter/team_mention_filter.rb
--- /tmp/d20250425-2094-ciloa4/html-pipeline-3.0.3/lib/html_pipeline/node_filter/team_mention_filter.rb 2025-04-25 02:44:54.557325264 +0000
+++ /tmp/d20250425-2094-ciloa4/html-pipeline-3.2.3/lib/html_pipeline/node_filter/team_mention_filter.rb 2025-04-25 02:44:54.562325324 +0000
@@ -97 +97,2 @@
- url << "/" unless %r{[/~]\z}.match?(url)
+ excluded_prefixes = %r{[/(?:~|@]\z}
+ url << "/" unless excluded_prefixes.match?(url)
lib/html_pipeline/text_filter.rb
--- /tmp/d20250425-2094-ciloa4/html-pipeline-3.0.3/lib/html_pipeline/text_filter.rb 2025-04-25 02:44:54.557325264 +0000
+++ /tmp/d20250425-2094-ciloa4/html-pipeline-3.2.3/lib/html_pipeline/text_filter.rb 2025-04-25 02:44:54.563325336 +0000
@@ -7,6 +7,2 @@
- 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
- super(context: context, result: result)
+ def initialize(context: {}, result: {})
+ super
@@ -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/d20250425-2094-ciloa4/html-pipeline-3.0.3/lib/html_pipeline/text_filter/image_filter.rb 2025-04-25 02:44:54.557325264 +0000
+++ /tmp/d20250425-2094-ciloa4/html-pipeline-3.2.3/lib/html_pipeline/text_filter/image_filter.rb 2025-04-25 02:44:54.563325336 +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/d20250425-2094-ciloa4/html-pipeline-3.0.3/lib/html_pipeline/text_filter/plain_text_input_filter.rb 2025-04-25 02:44:54.558325276 +0000
+++ /tmp/d20250425-2094-ciloa4/html-pipeline-3.2.3/lib/html_pipeline/text_filter/plain_text_input_filter.rb 2025-04-25 02:44:54.563325336 +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/d20250425-2094-ciloa4/html-pipeline-3.0.3/lib/html_pipeline/version.rb 2025-04-25 02:44:54.558325276 +0000
+++ /tmp/d20250425-2094-ciloa4/html-pipeline-3.2.3/lib/html_pipeline/version.rb 2025-04-25 02:44:54.563325336 +0000
@@ -4 +4 @@
- VERSION = "3.0.3"
+ VERSION = "3.2.3" |
Contributor
gem compare rb_sys 0.9.105 0.9.111Compared versions: ["0.9.105", "0.9.111"]
DIFFERENT date:
0.9.105: 2024-12-28 00:00:00 UTC
0.9.111: 2025-02-28 00:00:00 UTC
DIFFERENT rubygems_version:
0.9.105: 3.5.22
0.9.111: 3.6.2
DIFFERENT version:
0.9.105: 0.9.105
0.9.111: 0.9.111
DIFFERENT files:
0.9.105->0.9.111:
* Changed:
exe/rb-sys-dock +24/-2
lib/rb_sys/mkmf.rb +5/-2
lib/rb_sys/toolchain_info/data.rb +1/-1
lib/rb_sys/version.rb +1/-1
DIFFERENT runtime dependencies:
0.9.105->0.9.111:
* Added:
rake-compiler-dock ["= 1.9.1"] (runtime) |
Contributor
gem compare --diff rb_sys 0.9.105 0.9.111Compared versions: ["0.9.105", "0.9.111"]
DIFFERENT files:
0.9.105->0.9.111:
* Changed:
exe/rb-sys-dock
--- /tmp/d20250425-2368-yc9vyn/rb_sys-0.9.105/exe/rb-sys-dock 2025-04-25 02:45:15.955585378 +0000
+++ /tmp/d20250425-2368-yc9vyn/rb_sys-0.9.111/exe/rb-sys-dock 2025-04-25 02:45:15.959585429 +0000
@@ -6,0 +7 @@
+require "rake_compiler_dock"
@@ -102,0 +104,4 @@
+ override = RakeCompilerDock.cross_rubies[v]
+
+ next override if override
+
@@ -362 +367 @@
- docker_options = []
+ docker_options = ["--pid=host"]
@@ -364,0 +370,2 @@
+ ruby_versions = ENV["RUBY_CC_VERSION"] || RakeCompilerDock.cross_rubies.values.join(":")
+
@@ -386 +393,3 @@
- #{ENV["RUBY_CC_VERSION"] ? "-e RUBY_CC_VERSION=#{ENV["RUBY_CC_VERSION"]}" : ""} \
+ -e RUBY_CC_VERSION="#{ruby_versions}" \
+ -e RUBY_TARGET="#{OPTIONS.fetch(:platform)}" \
+ -e SOURCE_DATE_EPOCH="#{source_date_epoch}" \
@@ -402,0 +412,13 @@
+end
+
+def source_date_epoch
+ return ENV["SOURCE_DATE_EPOCH"] if ENV.key?("SOURCE_DATE_EPOCH")
+
+ stdout, status = Open3.capture2("git log -1 --pretty=%ct")
+
+ if status.success?
+ stdout.strip
+ else
+ logger.warn("Could not determine SOURCE_DATE_EPOCH from git log, using current time")
+ Time.now.to_i.to_s
+ end
lib/rb_sys/mkmf.rb
--- /tmp/d20250425-2368-yc9vyn/rb_sys-0.9.105/lib/rb_sys/mkmf.rb 2025-04-25 02:45:15.957585403 +0000
+++ /tmp/d20250425-2368-yc9vyn/rb_sys-0.9.111/lib/rb_sys/mkmf.rb 2025-04-25 02:45:15.960585441 +0000
@@ -252,0 +253,3 @@
+ rustup_default_cmd = "$(Q) $(CARGO_HOME)/bin/rustup default $(RB_SYS_DEFAULT_TOOLCHAIN)"
+ rustup_toolchain_cmd = "$(Q) $(CARGO_HOME)/bin/rustup toolchain install $(RB_SYS_DEFAULT_TOOLCHAIN) --profile $(RB_SYS_RUSTUP_PROFILE)"
+
@@ -263,2 +266,2 @@
- \t$(Q) $(CARGO_HOME)/bin/rustup toolchain install $(RB_SYS_DEFAULT_TOOLCHAIN) --profile $(RB_SYS_RUSTUP_PROFILE)
- \t$(Q) $(CARGO_HOME)/bin/rustup default $(RB_SYS_DEFAULT_TOOLCHAIN)
+ \t#{rustup_toolchain_cmd} || (sleep 5; #{rustup_toolchain_cmd}) || (sleep 5; #{rustup_toolchain_cmd})
+ \t#{rustup_default_cmd} || (sleep 5; #{rustup_default_cmd}) || (sleep 5; #{rustup_default_cmd})
lib/rb_sys/toolchain_info/data.rb
--- /tmp/d20250425-2368-yc9vyn/rb_sys-0.9.105/lib/rb_sys/toolchain_info/data.rb 2025-04-25 02:45:15.957585403 +0000
+++ /tmp/d20250425-2368-yc9vyn/rb_sys-0.9.111/lib/rb_sys/toolchain_info/data.rb 2025-04-25 02:45:15.961585454 +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}, "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}}
+ 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" => {"aliases" => ["aarch64-linux-gnu", "aarch64-unknown-linux-gnu"], "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" => {"aliases" => ["x86_64-linux-gnu", "x86_64-unknown-linux-gnu"], "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/d20250425-2368-yc9vyn/rb_sys-0.9.105/lib/rb_sys/version.rb 2025-04-25 02:45:15.957585403 +0000
+++ /tmp/d20250425-2368-yc9vyn/rb_sys-0.9.111/lib/rb_sys/version.rb 2025-04-25 02:45:15.961585454 +0000
@@ -4 +4 @@
- VERSION = "0.9.105"
+ VERSION = "0.9.111" |
4588539 to
323fa9d
Compare
550e5e0 to
318bd9e
Compare
Bumps [html-pipeline](https://github.com/gjtorikian/html-pipeline) from 3.0.3 to 3.2.3. - [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.3) --- updated-dependencies: - dependency-name: html-pipeline dependency-version: 3.2.3 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
318bd9e to
692230d
Compare
Contributor
Author
|
Superseded by #868. |
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.3.
Release notes
Sourced from html-pipeline's releases.
... (truncated)
Changelog
Sourced from html-pipeline's changelog.
Commits
3a2356bMerge pull request #418 from gjtorikian/allow-for-text-pipeline959defclintbdea438Allow for "just text" pipelines713f663Merge pull request #417 from gjtorikian/dependabot/bundler/bundler-dependenci...0cb820dupdate for commonmarkerf3695bfignore cache56037b4Update commonmarker requirement from ~> 1.1.2 to ~> 2.0.13e9be8dMerge pull request #412 from jeremysmithco/bug-combining-mention-filtersbf9d961lintcd9749dliterally none of these have been updatedYou 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)