attr_json 2.3.1 → 2.5.0

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: 5a2727136aa434d698d6c54612f529c3765c2603012725161850be4cfd7f317f
4
- data.tar.gz: 0da797831a4a0a7c904c15b31bdb37dff2afaec49ae35caec993f85cfd23a31e
3
+ metadata.gz: e21592e154d496f3d17ac762b029e0f94e2e05e537183ae28d7739961285695e
4
+ data.tar.gz: 665aa5b38773df1980a1472186deb9f7b6125001eb2dcfbf6346249160593c53
5
5
  SHA512:
6
- metadata.gz: a7e88ae65b9a417c00cee127fa8a90c46566698bd3835a74d5de941bbc9a64e0fdce9af72c1dd6adbb3fda29e02bc0817fccfc6b419b75088f1666e8a7c8ddc8
7
- data.tar.gz: 9bad39be885c3e8ce0065259713c17aebb96cb498098d25540ef3cc8239b56fc41a616f34353d4d21f1eea103d6ff87a084a36ce8812769389daf4598acc0c1a
6
+ metadata.gz: ab500628baea9ee71e6160a9eac6e08a498aebbb42887492a92c2d13bdc52e9d8b967a85abda82adc9a0493973c325a02b619f59425f8c738d467b1bc0cd5f65
7
+ data.tar.gz: c1189f75fabc8aea03e8dc5099c621b2e92214058ddd3fa6379ddef0721681081ab96364b1179be6da3c23050848408a06e9cbac7e504895c25f651639c40e74
@@ -65,10 +65,16 @@ jobs:
65
65
  - gemfile: rails_7_1
66
66
  ruby: 3.3
67
67
 
68
+ - gemfile: rails_7_2
69
+ ruby: 3.3
70
+
71
+ - gemfile: rails_8_0
72
+ ruby: 3.3
73
+
68
74
  name: ${{ matrix.gemfile }}, ruby ${{ matrix.ruby }}
69
75
 
70
76
  steps:
71
- - uses: actions/checkout@v3
77
+ - uses: actions/checkout@v4
72
78
 
73
79
  - name: Set up Ruby
74
80
  uses: ruby/setup-ruby@v1
data/Appraisals CHANGED
@@ -37,6 +37,21 @@ appraise "rails-7-1" do
37
37
  gem "pg", "~> 1.0"
38
38
  end
39
39
 
40
+ appraise "rails-7-2" do
41
+ gem 'combustion', "~> 1.0"
42
+
43
+ gem "rails", "~> 7.2.0"
44
+ gem "pg", "~> 1.0"
45
+ end
46
+
47
+ appraise "rails-8-0" do
48
+ gem 'combustion', "~> 1.0"
49
+
50
+ gem "rails", "~> 8.0.0"
51
+ gem "pg", "~> 1.0"
52
+ end
53
+
54
+
40
55
  appraise "rails-edge" do
41
56
  # need combustion edge to work with rails edge, will no longer
42
57
  # be true on next combustion release, probably no later than Rails 7.1
data/CHANGELOG.md CHANGED
@@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
7
 
8
- ## [Unreleased](https://github.com/jrochkind/attr_json/compare/v2.3.1...HEAD)
8
+ ## [Unreleased](https://github.com/jrochkind/attr_json/compare/v2.4.0...HEAD)
9
9
 
10
10
  ### Fixed
11
11
 
@@ -21,8 +21,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
21
21
 
22
22
  *
23
23
 
24
- *
25
-
26
24
  ### Changed
27
25
 
28
26
  *
@@ -31,7 +29,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
31
29
 
32
30
  *
33
31
 
34
- ## [2.3.1](https://github.com/jrochkind/attr_json/compare/v2.3.0...2.3.1)
32
+ ## [2.5.0](https://github.com/jrochkind/attr_json/compare/v2.4.0...v2.5.0)
33
+
34
+ ## Added
35
+
36
+ * Allow Rails 8.0 in gemspec (no code changes required to support) https://github.com/jrochkind/attr_json/pull/236
37
+
38
+ ## [2.4.0](https://github.com/jrochkind/attr_json/compare/v2.3.1...v2.4.0)
39
+
40
+ ### Added
41
+
42
+ * Allow Rails 7.2 in gemspec (no code changes required to support) https://github.com/jrochkind/attr_json/pull/228
43
+
44
+ ## [2.3.1](https://github.com/jrochkind/attr_json/compare/v2.3.0...v2.3.1)
35
45
 
36
46
  ### Fixed
37
47
 
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # AttrJson
2
- [![CI Status](https://github.com/jrochkind/attr_json/workflows/CI/badge.svg?branch=master)](https://github.com/jrochkind/attr_json/actions?query=workflow%3ACI+branch%3Amaster)
3
- [![CI Status](https://github.com/jrochkind/attr_json/workflows/CI%20on%20Future%20Rails%20Versions/badge.svg?branch=master)](https://github.com/jrochkind/attr_json/actions?query=workflow%3A%22CI+on+Future+Rails+Versions%22+branch%3Amaster)
2
+ [![CI Status](https://github.com/jrochkind/attr_json/workflows/CI/badge.svg?branch=master)](https://github.com/jrochkind/attr_json/actions/workflows/ci.yml?query=workflow%3ACI+branch%3Amaster)
3
+ [![CI Status](https://github.com/jrochkind/attr_json/workflows/CI%20on%20Future%20Rails%20Versions/badge.svg?branch=master)](https://github.com/jrochkind/attr_json/actions/workflows/future_rails_ci.yml?query=workflow%3ACI+branch%3Amaster)
4
4
  [![Gem Version](https://badge.fury.io/rb/attr_json.svg)](https://badge.fury.io/rb/attr_json)
5
5
 
6
6
  ActiveRecord attributes stored serialized in a json column, super smooth. For Rails 6.0.x through 7.0.x. Ruby 2.7+.
data/attr_json.gemspec CHANGED
@@ -47,7 +47,7 @@ attributes use as much of the existing ActiveRecord architecture as we can.}
47
47
  # dependency included just as it is here, should never be released
48
48
  # from an env tht has any of these variables set.
49
49
  unless ENV['APPRAISAL_INITIALIZED'] || ENV["TRAVIS"] || ENV['CI']
50
- spec.add_runtime_dependency "activerecord", ">= 6.0.0", "< 7.2"
50
+ spec.add_runtime_dependency "activerecord", ">= 6.0.0", "< 8.1"
51
51
  end
52
52
 
53
53
  spec.add_development_dependency "bundler"
@@ -0,0 +1,18 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "combustion", "~> 1.0"
6
+ gem "rails", "~> 7.2.0"
7
+ gem "pg", "~> 1.0"
8
+ gem "rspec-rails", "~> 6.0"
9
+ gem "simple_form", ">= 4.0"
10
+ gem "cocoon", ">= 1.2"
11
+ gem "jquery-rails"
12
+ gem "coffee-rails"
13
+ gem "sprockets-rails"
14
+ gem "capybara", "~> 3.0"
15
+ gem "selenium-webdriver"
16
+ gem "byebug"
17
+
18
+ gemspec path: "../"
@@ -0,0 +1,18 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "combustion", "~> 1.0"
6
+ gem "rails", "~> 8.0.0"
7
+ gem "pg", "~> 1.0"
8
+ gem "rspec-rails", "~> 6.0"
9
+ gem "simple_form", ">= 4.0"
10
+ gem "cocoon", ">= 1.2"
11
+ gem "jquery-rails"
12
+ gem "coffee-rails"
13
+ gem "sprockets-rails"
14
+ gem "capybara", "~> 3.0"
15
+ gem "selenium-webdriver"
16
+ gem "byebug"
17
+
18
+ gemspec path: "../"
@@ -1,3 +1,3 @@
1
1
  module AttrJson
2
- VERSION = "2.3.1"
2
+ VERSION = "2.5.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: attr_json
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.1
4
+ version: 2.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Rochkind
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-05-30 00:00:00.000000000 Z
11
+ date: 2024-11-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: 6.0.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '7.2'
22
+ version: '8.1'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: 6.0.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '7.2'
32
+ version: '8.1'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: bundler
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -165,6 +165,8 @@ files:
165
165
  - gemfiles/rails_6_1.gemfile
166
166
  - gemfiles/rails_7_0.gemfile
167
167
  - gemfiles/rails_7_1.gemfile
168
+ - gemfiles/rails_7_2.gemfile
169
+ - gemfiles/rails_8_0.gemfile
168
170
  - gemfiles/rails_edge.gemfile
169
171
  - lib/attr_json.rb
170
172
  - lib/attr_json/attribute_definition.rb
@@ -208,7 +210,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
208
210
  - !ruby/object:Gem::Version
209
211
  version: '0'
210
212
  requirements: []
211
- rubygems_version: 3.4.19
213
+ rubygems_version: 3.2.33
212
214
  signing_key:
213
215
  specification_version: 4
214
216
  summary: ActiveRecord attributes stored serialized in a json column, super smooth.