hanami-validations 2.1.0.rc3 → 2.2.0.beta1

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: 652ffdb89f9ef80f7e42fa29ecf2bf913119bc4227cfcd56bd7b769424fae94f
4
- data.tar.gz: a3708e3c4a701b000edc655e81616a93f206ef6a4c5ca4522f8f515464cbcb3e
3
+ metadata.gz: 55c78752af3331e752218f72726d6dae84d27dd51b25e8f6e91d81e2a9354396
4
+ data.tar.gz: f45d2142477ae448b8d69114b26500e3b05f21041ca754cc972de554727a9325
5
5
  SHA512:
6
- metadata.gz: 2b219e6864b15deb9e4f15e5418378a0fcaadcaf66aca80459a260de51749995fa7c0535bd9c551130d075dd6070e33c62a9769531373635bdcaafdc6b07d285
7
- data.tar.gz: 4e11f8a797670a4b297473a06a333a7eca86bfafab697e4ccb77b2718c8268145d524cdc161b637ae73e7b33a4cc01754a54cd2f50772c64fb800fac3c9e20cf
6
+ metadata.gz: 9b29741bca88f9691e5e2ca9aacca765315436aa52996080a6c2234a4707810b7367c77ff45bf636ba7cd11380fb7996b2c8da7ca6300cc160c5b8a9681f975b
7
+ data.tar.gz: 8fc8fc74919ff686d536a5f3b9d8fdf3900cd08786f90c4fe2e36dad0d69c2ce0e7c6893d9c9e379f1162fab7b46b068332094c5db7ac7cda366639475bcd8c0
data/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  Validations mixin for Ruby objects
4
4
 
5
+ ## v2.2.0.beta1 - 2024-07-16
6
+
7
+ ### Changed
8
+
9
+ - Drop support for Ruby 3.0
10
+
11
+ ## v2.1.0 - 2024-02-27
12
+
5
13
  ## v2.1.0.rc3 - 2024-02-16
6
14
 
7
15
  ## v2.1.0.rc2 - 2023-11-08
data/README.md CHANGED
@@ -5,14 +5,9 @@ Internal support gem for `Hanami::Action` params validation.
5
5
  ## Status
6
6
 
7
7
  [![Gem Version](https://badge.fury.io/rb/hanami-validations.svg)](https://badge.fury.io/rb/hanami-validations)
8
- [![CI](https://github.com/hanami/validations/workflows/ci/badge.svg?branch=main)](https://github.com/hanami/validations/actions?query=workflow%3Aci+branch%3Amain)
8
+ [![CI](https://github.com/hanami/validations/actions/workflows/ci.yml/badge.svg)](https://github.com/hanami/validations/actions?query=workflow%3Aci+branch%3Amain)
9
9
  [![Test Coverage](https://codecov.io/gh/hanami/validations/branch/main/graph/badge.svg)](https://codecov.io/gh/hanami/validations)
10
10
  [![Depfu](https://badges.depfu.com/badges/af6c6be539d9d587c7541ae7a013c9ff/overview.svg)](https://depfu.com/github/hanami/validations?project=Bundler)
11
- [![Inline Docs](http://inch-ci.org/github/hanami/validations.svg)](http://inch-ci.org/github/hanami/validations)
12
-
13
- ## Version
14
-
15
- **This branch contains the code for `hanami-validations` 2.x.**
16
11
 
17
12
  ## Contact
18
13
 
@@ -20,17 +15,14 @@ Internal support gem for `Hanami::Action` params validation.
20
15
  * Community: http://hanamirb.org/community
21
16
  * Guides: https://guides.hanamirb.org
22
17
  * Mailing List: http://hanamirb.org/mailing-list
23
- * API Doc: http://rdoc.info/gems/hanami-validations
18
+ * API Doc: http://rubydoc.info/gems/hanami-validations
24
19
  * Bugs/Issues: https://github.com/hanami/validations/issues
25
- * Support: http://stackoverflow.com/questions/tagged/hanami
26
20
  * Chat: http://chat.hanamirb.org
27
21
 
28
- ## Rubies
29
-
30
- __Hanami::Validations__ supports Ruby (MRI) 3.0+
31
-
32
22
  ## Installation
33
23
 
24
+ __Hanami::Validations__ supports Ruby (MRI) 3.1+
25
+
34
26
  Add this line to your application's Gemfile:
35
27
 
36
28
  ```ruby
@@ -86,4 +78,4 @@ See [hanami-controller][controller] for more detail on params validation.
86
78
 
87
79
  ## Copyright
88
80
 
89
- Copyright © 2014 Hanami Team – Released under MIT License
81
+ Copyright © 2014–2024 Hanami Team – Released under MIT License
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
19
19
  spec.require_paths = ["lib"]
20
20
  spec.metadata["rubygems_mfa_required"] = "true"
21
- spec.required_ruby_version = ">= 3.0"
21
+ spec.required_ruby_version = ">= 3.1"
22
22
 
23
23
  spec.add_dependency "dry-validation", ">= 1.10", "< 2"
24
24
  spec.add_dependency "zeitwerk", "~> 2.6.0"
@@ -6,6 +6,6 @@ module Hanami
6
6
  #
7
7
  # @since 0.1.0
8
8
  # @api public
9
- VERSION = "2.1.0.rc3"
9
+ VERSION = "2.2.0.beta1"
10
10
  end
11
11
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hanami-validations
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0.rc3
4
+ version: 2.2.0.beta1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luca Guidi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-16 00:00:00.000000000 Z
11
+ date: 2024-07-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-validation
@@ -135,14 +135,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
135
135
  requirements:
136
136
  - - ">="
137
137
  - !ruby/object:Gem::Version
138
- version: '3.0'
138
+ version: '3.1'
139
139
  required_rubygems_version: !ruby/object:Gem::Requirement
140
140
  requirements:
141
141
  - - ">="
142
142
  - !ruby/object:Gem::Version
143
143
  version: '0'
144
144
  requirements: []
145
- rubygems_version: 3.5.6
145
+ rubygems_version: 3.5.9
146
146
  signing_key:
147
147
  specification_version: 4
148
148
  summary: Validations mixin for Ruby objects