html-pipeline 3.0.0.pre6 → 3.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 06b43ddecf342ddc9817d1017c57a11cdb211089b6d067813e6da83fdee6a1a0
4
- data.tar.gz: 889220f89a4818453caefd9878830a1ff451ecceb7ed6a2051e556c0bcd0fd2f
3
+ metadata.gz: ca6ca26f7072957b016a32ac4f88923b1f7a34da25b91646612783bae9fd0cef
4
+ data.tar.gz: 44c0de334401dbdb58cbfc68f398311beb61b135f6fc3931c63818f063c0fc7d
5
5
  SHA512:
6
- metadata.gz: 430ef34d42cd91998e71aef5f247769c7c332bcb682541a0974c0ef1f2f019b7083b81d385fa77525fdce0efe583e0a8d9733ce076c3ef3edf79052a9d963233
7
- data.tar.gz: 9eb94f3b775c1b13ac66044bb7da5f696cb9eb8684eda9f5a81a601d5d02ac3a1d5b376ca4addab733be480bb6252535e1e4e9ce33e028247a81ecb90b41cb9f
6
+ metadata.gz: e582606d24060d6e54387df1014182c8b7952d3f84fbe7d68fd135ac0e3c93826241810cf9fa5eb36c8c9f864f4fffa9935d36f1813b9604bf7307a360d52132
7
+ data.tar.gz: c7c1e2bfd59d9607f877c1134ffe05a4da93f070763240c88fac61316fb861f61e80ea93df3400bc9fe353dc6411de24194ef2e3e4e3f2131ca6a0fb0a96d87d
@@ -11,7 +11,7 @@ jobs:
11
11
  runs-on: ubuntu-latest
12
12
 
13
13
  steps:
14
- - uses: actions/checkout@v3
14
+ - uses: actions/checkout@v4
15
15
 
16
16
  - name: Set up Ruby
17
17
  uses: yettoapp/actions/setup-languages@main
@@ -12,7 +12,7 @@ jobs:
12
12
  test:
13
13
  runs-on: ubuntu-latest
14
14
  steps:
15
- - uses: actions/checkout@v3
15
+ - uses: actions/checkout@v4
16
16
 
17
17
  - name: Set up Ruby
18
18
  uses: yettoapp/actions/setup-languages@main
data/CHANGELOG.md CHANGED
@@ -1,3 +1,34 @@
1
+ ## [v3.0.0] - 24-12-2023
2
+ ## What's Changed
3
+ * Switch to GitHub Actions by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/346
4
+ * add truffleruby-head by @gogainda in https://github.com/gjtorikian/html-pipeline/pull/348
5
+ * Add Rubocop by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/349
6
+ * Support multiple dependencies per filter by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/351
7
+ * Split filters up by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/360
8
+ * Migrate from Nokogiri to Selma by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/368
9
+ * You shall pass by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/369
10
+ * Update Selma signatures by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/370
11
+ * Close sanitization-related issues by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/371
12
+ * Drop SyntaxHighlightFilter by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/372
13
+ * V3 Release by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/347
14
+ * Use emoji from commonmarker by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/373
15
+ * req convert_filter if filter present by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/375
16
+ * 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
17
+ * Add the AssetProxyFilter by @digitalmoksha in https://github.com/gjtorikian/html-pipeline/pull/379
18
+ * Update rouge requirement from ~> 3.1 to ~> 4.1 by @dependabot in https://github.com/gjtorikian/html-pipeline/pull/381
19
+ * Update gemoji requirement from ~> 3.0 to ~> 4.1 by @dependabot in https://github.com/gjtorikian/html-pipeline/pull/382
20
+ * Have Zeitwerk not automatically load filters by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/383
21
+ * Bump the github-actions group with 1 update by @dependabot in https://github.com/gjtorikian/html-pipeline/pull/384
22
+ * :gem: 3.0.0 by @gjtorikian in https://github.com/gjtorikian/html-pipeline/pull/386
23
+
24
+ ## New Contributors
25
+ * @gogainda made their first contribution in https://github.com/gjtorikian/html-pipeline/pull/348
26
+ * @dependabot made their first contribution in https://github.com/gjtorikian/html-pipeline/pull/377
27
+ * @digitalmoksha made their first contribution in https://github.com/gjtorikian/html-pipeline/pull/379
28
+
29
+ **Full Changelog**: https://github.com/gjtorikian/html-pipeline/compare/v2.14.3...v3.0.0
30
+ ## [v3.0.0.pre6] - 16-08-2023
31
+ null
1
32
  # Changelog
2
33
 
3
34
  ## [v3.0.0.pre5](https://github.com/gjtorikian/html-pipeline/tree/v3.0.0.pre5) (2023-06-05)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class HTMLPipeline
4
- VERSION = "3.0.0.pre6"
4
+ VERSION = "3.0.1"
5
5
  end
data/lib/html_pipeline.rb CHANGED
@@ -178,7 +178,7 @@ class HTMLPipeline
178
178
  end
179
179
  end
180
180
 
181
- result = result.merge(Hash[*@node_filters.collect(&:result).flatten])
181
+ result = result.merge(@node_filters.collect(&:result).reduce({}, :merge))
182
182
  @node_filters.each(&:reset!)
183
183
 
184
184
  result
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.0.pre6
4
+ version: 3.0.1
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: 2023-08-16 00:00:00.000000000 Z
11
+ date: 2023-12-28 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.4.18
114
+ rubygems_version: 3.5.3
115
115
  signing_key:
116
116
  specification_version: 4
117
117
  summary: Helpers for processing content through a chain of filters