html-pipeline 3.0.0 → 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: 248d46dd59af87c501118e123ac1ffa5e16447942ca892a9b4985e0fa43c6548
4
- data.tar.gz: 48a75cb97c189f4da648df25121e96efd4a9a278081c6ddd75c129c86f4fcbdd
3
+ metadata.gz: ca6ca26f7072957b016a32ac4f88923b1f7a34da25b91646612783bae9fd0cef
4
+ data.tar.gz: 44c0de334401dbdb58cbfc68f398311beb61b135f6fc3931c63818f063c0fc7d
5
5
  SHA512:
6
- metadata.gz: f2fb4d1b8097e9c0af8eb9621701484a5701a12183fcabe13729f19f42f4648bfebf4d76830c90611d734ff5d9d93b5253f8a269b011cac0b5c38aa7e48bfffc
7
- data.tar.gz: e0721ac24b36925bf40b63fbae758f7c649b36c501bcb0769219551500f586d2c3643922be3588aaf65e6393dd064bf382a64ade7f31cebba3d7a2a58b6c92bc
6
+ metadata.gz: e582606d24060d6e54387df1014182c8b7952d3f84fbe7d68fd135ac0e3c93826241810cf9fa5eb36c8c9f864f4fffa9935d36f1813b9604bf7307a360d52132
7
+ data.tar.gz: c7c1e2bfd59d9607f877c1134ffe05a4da93f070763240c88fac61316fb861f61e80ea93df3400bc9fe353dc6411de24194ef2e3e4e3f2131ca6a0fb0a96d87d
data/CHANGELOG.md CHANGED
@@ -1,3 +1,32 @@
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
1
30
  ## [v3.0.0.pre6] - 16-08-2023
2
31
  null
3
32
  # Changelog
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class HTMLPipeline
4
- VERSION = "3.0.0"
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
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-12-24 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