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 +4 -4
- data/CHANGELOG.md +39 -1
- data/lib/structured_params/version.rb +1 -1
- metadata +21 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f6e173ab053f1e2c0663487baef3cf54059b6f9a49a6e9a5f83583036d3761e9
|
4
|
+
data.tar.gz: 2cde9e164e2a44671af8f087cfd0dc1f7b5306ee2a21f3b252425d40260c1ff7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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
|
|
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.
|
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:
|
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:
|
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:
|
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:
|
51
|
+
version: '9.0'
|
40
52
|
description: ''
|
41
53
|
email:
|
42
54
|
- mizuki-y@syati.info
|