hanami-validations 2.1.0 → 2.2.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bf16625f47c3fcb6d37f16d7a75403171b05a1c120eef33f5db5dc7bdab0cf99
4
- data.tar.gz: e112e405f8db82253d77861a0e8a94e45ad92541b536764c92e4d8e877764c2f
3
+ metadata.gz: 55c78752af3331e752218f72726d6dae84d27dd51b25e8f6e91d81e2a9354396
4
+ data.tar.gz: f45d2142477ae448b8d69114b26500e3b05f21041ca754cc972de554727a9325
5
5
  SHA512:
6
- metadata.gz: 872245828bec185fd132d17ec64099905e9a6af65736e6f55148f8984620063ba783fcfb72471f264e72da55799e813f34973fa4e693bfabf6dc8a2927b0af95
7
- data.tar.gz: fb07e0e939c375814c07844a5609ab4faebded86c6e8a882f9b786af7fc4eb087ca75cbdee4d976989e68c74056a7ccb98220fa3ff814e741bb06f3b18a333f9
6
+ metadata.gz: 9b29741bca88f9691e5e2ca9aacca765315436aa52996080a6c2234a4707810b7367c77ff45bf636ba7cd11380fb7996b2c8da7ca6300cc160c5b8a9681f975b
7
+ data.tar.gz: 8fc8fc74919ff686d536a5f3b9d8fdf3900cd08786f90c4fe2e36dad0d69c2ce0e7c6893d9c9e379f1162fab7b46b068332094c5db7ac7cda366639475bcd8c0
data/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
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
+
5
11
  ## v2.1.0 - 2024-02-27
6
12
 
7
13
  ## v2.1.0.rc3 - 2024-02-16
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"
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
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-27 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