attr_json 2.4.0 → 2.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +3 -0
- data/Appraisals +7 -0
- data/CHANGELOG.md +8 -5
- data/attr_json.gemspec +1 -1
- data/gemfiles/rails_8_0.gemfile +18 -0
- data/lib/attr_json/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e21592e154d496f3d17ac762b029e0f94e2e05e537183ae28d7739961285695e
|
4
|
+
data.tar.gz: 665aa5b38773df1980a1472186deb9f7b6125001eb2dcfbf6346249160593c53
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab500628baea9ee71e6160a9eac6e08a498aebbb42887492a92c2d13bdc52e9d8b967a85abda82adc9a0493973c325a02b619f59425f8c738d467b1bc0cd5f65
|
7
|
+
data.tar.gz: c1189f75fabc8aea03e8dc5099c621b2e92214058ddd3fa6379ddef0721681081ab96364b1179be6da3c23050848408a06e9cbac7e504895c25f651639c40e74
|
data/.github/workflows/ci.yml
CHANGED
data/Appraisals
CHANGED
@@ -44,6 +44,13 @@ appraise "rails-7-2" do
|
|
44
44
|
gem "pg", "~> 1.0"
|
45
45
|
end
|
46
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
|
+
|
47
54
|
|
48
55
|
appraise "rails-edge" do
|
49
56
|
# need combustion edge to work with rails edge, will no longer
|
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.
|
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,13 +29,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
31
29
|
|
32
30
|
*
|
33
31
|
|
34
|
-
## [2.
|
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)
|
35
39
|
|
36
40
|
### Added
|
37
41
|
|
38
42
|
* Allow Rails 7.2 in gemspec (no code changes required to support) https://github.com/jrochkind/attr_json/pull/228
|
39
43
|
|
40
|
-
|
41
44
|
## [2.3.1](https://github.com/jrochkind/attr_json/compare/v2.3.0...v2.3.1)
|
42
45
|
|
43
46
|
### Fixed
|
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", "<
|
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", "~> 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: "../"
|
data/lib/attr_json/version.rb
CHANGED
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.
|
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-
|
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: '
|
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: '
|
32
|
+
version: '8.1'
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: bundler
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -166,6 +166,7 @@ files:
|
|
166
166
|
- gemfiles/rails_7_0.gemfile
|
167
167
|
- gemfiles/rails_7_1.gemfile
|
168
168
|
- gemfiles/rails_7_2.gemfile
|
169
|
+
- gemfiles/rails_8_0.gemfile
|
169
170
|
- gemfiles/rails_edge.gemfile
|
170
171
|
- lib/attr_json.rb
|
171
172
|
- lib/attr_json/attribute_definition.rb
|