structured_params 0.2.0 → 0.3.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: 6194009fbc5383add9717e12380cea940598248d52e395acf0abaa6045cea93e
4
- data.tar.gz: 9d5298274672938c883872ef1595d7609d0a13dc8971b395a90efef2c265dbcb
3
+ metadata.gz: f6e173ab053f1e2c0663487baef3cf54059b6f9a49a6e9a5f83583036d3761e9
4
+ data.tar.gz: 2cde9e164e2a44671af8f087cfd0dc1f7b5306ee2a21f3b252425d40260c1ff7
5
5
  SHA512:
6
- metadata.gz: 37c7d0ead65ced25e00fb82d34ebd0b8d6a049ae3ec966a9cb296769fb611c95c0381dbaa8ccdb5aca0c2760296b56a57de6dce030d348d4b88a587fc1cb5b1e
7
- data.tar.gz: 266f140f0d76a90003223e8bb52a6092fa3ce49ca3a9c3eee32881a0f053baee4150802176f6418e13a4ee84bdd884dbe239bdd413061f6f34e7b2a0788685a0
6
+ metadata.gz: d84113eb2dbd70e8fbbcb0bae0109dfae9f4d4e3c7314370ac30a22456aa6ae29bfeadbfc73628190a72ce47a699219ec3a71d5531b9e282e6db3c5687fa0000
7
+ data.tar.gz: cd094fa7736d631982474a7eaa03b41df44122c532434c0a4fc75b0ef406e4e06997c70d2aaf2cd9ffd106626fcc4e3e63a8fbf9b91d4de98cafc281df895d00
data/CHANGELOG.md CHANGED
@@ -1,11 +1,49 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.3.0] - 2025-09-06
4
+
5
+ ## What's Changed
6
+ * Expand Rails compatibility to support Rails 7.2+ through 8.x
7
+
8
+
9
+ **Full Changelog**: https://github.com/Syati/structured_params/compare/v0.2.0...v0.3.0
10
+
11
+ ## [0.2.1] - 2025-09-06
12
+
13
+ ## What's Changed
14
+ * Bump version to 0.2.0 by @Syati in https://github.com/Syati/structured_params/pull/2
15
+ * Update project documentation by @Syati in https://github.com/Syati/structured_params/pull/3
16
+ * Add comparison document for StructuredParams and similar gems by @Syati in https://github.com/Syati/structured_params/pull/4
17
+ * Update Gemfile and CI configuration to support multiple Rails versions by @Syati in https://github.com/Syati/structured_params/pull/5
18
+ * Refactor release workflow to update version and CHANGELOG handling by @Syati in https://github.com/Syati/structured_params/pull/6
19
+
20
+
21
+ **Full Changelog**: https://github.com/Syati/structured_params/compare/v0.2.0...v0.2.1
22
+
23
+ ## What's Changed
24
+ * Bump version to 0.2.0 by @Syati in https://github.com/Syati/structured_params/pull/2
25
+ * Update project documentation by @Syati in https://github.com/Syati/structured_params/pull/3
26
+ * Add comparison document for StructuredParams and similar gems by @Syati in https://github.com/Syati/structured_params/pull/4
27
+ * Update Gemfile and CI configuration to support multiple Rails versions by @Syati in https://github.com/Syati/structured_params/pull/5
28
+ * Refactor release workflow to update version and CHANGELOG handling by @Syati in https://github.com/Syati/structured_params/pull/6
29
+
30
+
31
+ **Full Changelog**: https://github.com/Syati/structured_params/compare/v0.2.0...v0.2.1
32
+
3
33
  All notable changes to this project will be documented in this file.
4
34
 
5
35
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
36
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
37
 
8
- ## [0.1.4] - 2025-09-04
38
+ ## [0.2.0] - 2025-09-05
39
+
40
+ ## What's Changed
41
+ * Improve error handling and serialization features by @Syati in https://github.com/Syati/structured_params/pull/1
42
+
43
+
44
+ **Full Changelog**: https://github.com/Syati/structured_params/compare/v0.1.4...v0.2.0
45
+
46
+
9
47
 
10
48
  **Full Changelog**: https://github.com/Syati/structured_params/compare/v0.1.3...v0.1.4
11
49
 
@@ -2,5 +2,5 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module StructuredParams
5
- VERSION = '0.2.0' #: string
5
+ VERSION = '0.3.0' #: string
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: structured_params
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mizuki Yamamoto
@@ -13,30 +13,42 @@ dependencies:
13
13
  name: actionpack
14
14
  requirement: !ruby/object:Gem::Requirement
15
15
  requirements:
16
- - - "~>"
16
+ - - ">="
17
17
  - !ruby/object:Gem::Version
18
- version: 8.0.0
18
+ version: '7.2'
19
+ - - "<"
20
+ - !ruby/object:Gem::Version
21
+ version: '9.0'
19
22
  type: :runtime
20
23
  prerelease: false
21
24
  version_requirements: !ruby/object:Gem::Requirement
22
25
  requirements:
23
- - - "~>"
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ version: '7.2'
29
+ - - "<"
24
30
  - !ruby/object:Gem::Version
25
- version: 8.0.0
31
+ version: '9.0'
26
32
  - !ruby/object:Gem::Dependency
27
33
  name: activemodel
28
34
  requirement: !ruby/object:Gem::Requirement
29
35
  requirements:
30
- - - "~>"
36
+ - - ">="
31
37
  - !ruby/object:Gem::Version
32
- version: 8.0.0
38
+ version: '7.2'
39
+ - - "<"
40
+ - !ruby/object:Gem::Version
41
+ version: '9.0'
33
42
  type: :runtime
34
43
  prerelease: false
35
44
  version_requirements: !ruby/object:Gem::Requirement
36
45
  requirements:
37
- - - "~>"
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '7.2'
49
+ - - "<"
38
50
  - !ruby/object:Gem::Version
39
- version: 8.0.0
51
+ version: '9.0'
40
52
  description: ''
41
53
  email:
42
54
  - mizuki-y@syati.info