page_structured_data 1.0.5 → 1.0.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5edbf7a0036c6b78d602900b3910cdeb8ee5a16920b47ac9ddaf2411a90f68c9
4
- data.tar.gz: ae1930791919d1fecd18c525a5b01eb3bb782caf197604461bb17d882d508fd2
3
+ metadata.gz: 3158329319534cff0f6011223d8ae6d16f6979742ded26e443633f45f2a9aaaf
4
+ data.tar.gz: 9dc54a0d21f0e8567b1957e69fc86220771c4e0eeee04bdcb21238fb56c579b0
5
5
  SHA512:
6
- metadata.gz: 5f116fb5b5a52658001b8a39fd5820885a8aa71bd0403d901c0f316b0f0541470d9274d55e67f1ee16d53400dcb31aba40364b60e6a1fed3574d7871679c78b0
7
- data.tar.gz: 23d1d8e077b2b3780b7826a892b7a1636814941e0fbd339f8421a905d5b1d3d4bb6191da0cc529db428c8534da1f3818818da1048d11b7d876a26d32b8b85f45
6
+ metadata.gz: 6f7dd3da1c510fea597608fc15473d9f79970f827de8a53576ae9574a3bd0f6aef8c6e015b03406aa0b7d48ac1c9fc65f1de6288fe520e8a673fc2bc357cf1f8
7
+ data.tar.gz: bfaa6dc28249dcf07cebeb8c8faf4c42af521f181030fd2712c0520abf922092eda33c0cccd598c8a00bd15485bee9247d321d9f10855768ecc8d8bcc4d7325f
data/CHANGELOG.md CHANGED
@@ -4,7 +4,7 @@ All notable changes to this project are documented here.
4
4
 
5
5
  ## Unreleased
6
6
 
7
- ## 1.0.5 - 2026-05-06
7
+ ## 1.0.6 - 2026-05-06
8
8
 
9
9
  - Add tests for HTML escaping in rendered meta tags.
10
10
  - Add tests for script-breaking content in JSON-LD output.
@@ -16,6 +16,12 @@ All notable changes to this project are documented here.
16
16
  - Add GitHub Actions CI for tests, require verification, and gem build verification.
17
17
  - Constrain the Rails dependency to Rails 7.x, matching the tested support baseline.
18
18
  - Add `render_default_breadcrumb_json_ld` config to opt out of current-page-only breadcrumb JSON-LD.
19
+ - Add CI coverage for Rails 7.0, 7.1, 7.2, 8.0, and 8.1.
20
+ - Widen the Rails dependency to support Rails 7.x and 8.x.
21
+
22
+ ## 1.0.5 - 2026-05-06
23
+
24
+ - Previous public release.
19
25
 
20
26
  ## 1.0.4 - 2026-05-06
21
27
 
data/README.md CHANGED
@@ -17,10 +17,10 @@ It helps Rails applications render:
17
17
 
18
18
  ## Requirements
19
19
 
20
- - Rails 7.x
20
+ - Rails 7.x or 8.x
21
21
  - Ruby 2.7 or newer
22
22
 
23
- Rails 7.0 requires Ruby 2.7 or newer, so this gem follows that same baseline. Rails 8 is not declared as supported yet; add CI coverage before widening the Rails dependency.
23
+ Rails 7.0 requires Ruby 2.7 or newer, so this gem follows that same baseline. Rails 8 requires Ruby 3.2 or newer, so Rails 8 applications must use a Ruby version supported by Rails 8.
24
24
 
25
25
  ## Installation
26
26
 
@@ -1,3 +1,3 @@
1
1
  module PageStructuredData
2
- VERSION = "1.0.5"
2
+ VERSION = "1.0.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: page_structured_data
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jey Geethan
@@ -14,22 +14,22 @@ dependencies:
14
14
  name: rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: '7.0'
20
17
  - - ">="
21
18
  - !ruby/object:Gem::Version
22
19
  version: 7.0.0
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '9.0'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
- - - "~>"
28
- - !ruby/object:Gem::Version
29
- version: '7.0'
30
27
  - - ">="
31
28
  - !ruby/object:Gem::Version
32
29
  version: 7.0.0
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '9.0'
33
33
  description: PageStructuredData gives Rails applications a small page object and view
34
34
  partial for rendering page titles, basic meta tags, Open Graph tags, Twitter card
35
35
  tags, breadcrumb JSON-LD, and article JSON-LD.