html-pipeline 3.0.2 → 3.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/README.md +1 -1
- data/lib/html_pipeline/sanitization_filter.rb +2 -0
- data/lib/html_pipeline/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 22c3391b770c24cbed1ea42f396fabfa399935416c8d01a8ce8727094c456fe4
|
|
4
|
+
data.tar.gz: 6936f1943d251689b0bef19f43348ac46e2027d658ec7544dc4799ab98600602
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dce1a303621b079f2e482007ad77761d745ca0bdec98bf405cedeb5d4f1b6a097b7c28bf96e919ae2b2b5129cc1bf0f528dd6d4e617eafb2767f760a24079a6e
|
|
7
|
+
data.tar.gz: 821a0b306d7cc440069ae38ca857f7ed157d1ec5c3decbbbcfc3a4fd05b5c17e975e493e9017ac1eaed5a216de0b00dfc3bed405e64e40b2d1e03a04b44b14cb
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## [v3.0.2] - 08-01-2024
|
|
2
|
+
## What's Changed
|
|
3
|
+
* README.md: Fix example code by @grekko in https://github.com/gjtorikian/html-pipeline/pull/390
|
|
4
|
+
* Allow pipeline to run without node filters by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/392
|
|
5
|
+
|
|
6
|
+
## New Contributors
|
|
7
|
+
* @grekko made their first contribution in https://github.com/gjtorikian/html-pipeline/pull/390
|
|
8
|
+
|
|
9
|
+
**Full Changelog**: https://github.com/gjtorikian/html-pipeline/compare/v3.0.1...v3.0.2
|
|
1
10
|
## [v3.0.1] - 28-12-2023
|
|
2
11
|
## What's Changed
|
|
3
12
|
* Handle odd numbers of NodeFilters to be configured by @stevehill1981 in https://github.com/gjtorikian/html-pipeline/pull/389
|
data/README.md
CHANGED
|
@@ -375,7 +375,7 @@ you to add additional elements. You can either modify the constant's value, or
|
|
|
375
375
|
re-define your own config and pass that in, such as:
|
|
376
376
|
|
|
377
377
|
```ruby
|
|
378
|
-
config = HTMLPipeline::
|
|
378
|
+
config = HTMLPipeline::SanitizationFilter::DEFAULT_CONFIG.dup
|
|
379
379
|
config[:elements] << "iframe" # sure, whatever you want
|
|
380
380
|
```
|
|
381
381
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: html-pipeline
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Garen J. Torikian
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-02-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: selma
|
|
@@ -111,7 +111,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
111
111
|
- !ruby/object:Gem::Version
|
|
112
112
|
version: 3.3.22
|
|
113
113
|
requirements: []
|
|
114
|
-
rubygems_version: 3.5.
|
|
114
|
+
rubygems_version: 3.5.5
|
|
115
115
|
signing_key:
|
|
116
116
|
specification_version: 4
|
|
117
117
|
summary: Helpers for processing content through a chain of filters
|