dry-rails 0.6.0 → 0.7.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: ff456104e9451dc6e15a13351762d90a41a1e295910dadb7cca4fb231fbab7b1
4
- data.tar.gz: 819517fa2d3847bbe70af131583ebf0363117f7c4c86bc6f350c4583442f4184
3
+ metadata.gz: c66e6a63d728045df96c11971c2eccdc75c158c473818f1c1839f4b82f6035a8
4
+ data.tar.gz: 17de8a2a71b685d11fea6d12835f6f01bfb0942061b82251f4856640f520bc35
5
5
  SHA512:
6
- metadata.gz: a9a73cbde77855ff662285c17d9edd57e5a31b1c93ba38fbde092d6b65a883d51badcd18978d8e54e8fd45893c457ecef1fbd31ff1816a3c7e3285b7c6ebc692
7
- data.tar.gz: 2b6eac3c402435b0fa9ed3395b739186b8d57056ac13416864e8ce09594d6220dad66471bac2813d9e6d64eacab96cfa93a2e964bc38bc2252c8b3e549576b18
6
+ metadata.gz: 64ae66479cab35115409b2133719e7e6f2d561553a2e4e2a231399f45d10cf41c7536a3f9ac814771cd0301ca647331e2c0981b98c8292e7a7c9e7c1252cdab0
7
+ data.tar.gz: 981240ebf2929bd24c494d348e4df2aef805cfab73bc59a0ae65dfa2667b0851f4c5d7dd0cd6ff886e51b42d97d985616e00ff24f9ff4ecc3328e9085a11c8e6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  <!--- DO NOT EDIT THIS FILE - IT'S AUTOMATICALLY GENERATED VIA DEVTOOLS --->
2
2
 
3
+ ## 0.7.0 2022-12-23
4
+
5
+
6
+ ### Changed
7
+
8
+ - Bump dry-schema to `>= 0.13` (@solnic)
9
+ - Bump dry-validation to `>= 0.10` (@solnic)
10
+ - Bump dry-system to `~> 1.0` (@solnic)
11
+
12
+ [Compare v0.6.0...v0.7.0](https://github.com/dry-rb/dry-rails/compare/v0.6.0...v0.7.0)
13
+
3
14
  ## 0.6.0 2022-10-20
4
15
 
5
16
 
data/README.md CHANGED
@@ -1,22 +1,14 @@
1
1
  <!--- this file is synced from dry-rb/template-gem project -->
2
2
  [gem]: https://rubygems.org/gems/dry-rails
3
3
  [actions]: https://github.com/dry-rb/dry-rails/actions
4
- [codacy]: https://www.codacy.com/gh/dry-rb/dry-rails
5
- [chat]: https://dry-rb.zulipchat.com
6
- [inchpages]: http://inch-ci.org/github/dry-rb/dry-rails
7
4
 
8
- # dry-rails [![Join the chat at https://dry-rb.zulipchat.com](https://img.shields.io/badge/dry--rb-join%20chat-%23346b7a.svg)][chat]
9
-
10
- [![Gem Version](https://badge.fury.io/rb/dry-rails.svg)][gem]
11
- [![CI Status](https://github.com/dry-rb/dry-rails/workflows/ci/badge.svg)][actions]
12
- [![Codacy Badge](https://api.codacy.com/project/badge/Grade/d4677ea0c4c2497bb1af1b3ac31552f4)][codacy]
13
- [![Codacy Badge](https://api.codacy.com/project/badge/Coverage/d4677ea0c4c2497bb1af1b3ac31552f4)][codacy]
14
- [![Inline docs](http://inch-ci.org/github/dry-rb/dry-rails.svg?branch=main)][inchpages]
5
+ # dry-rails [![Gem Version](https://badge.fury.io/rb/dry-rails.svg)][gem] [![CI Status](https://github.com/dry-rb/dry-rails/workflows/ci/badge.svg)][actions]
15
6
 
16
7
  ## Links
17
8
 
18
9
  * [User documentation](https://dry-rb.org/gems/dry-rails)
19
10
  * [API documentation](http://rubydoc.info/gems/dry-rails)
11
+ * [Forum](https://discourse.dry-rb.org)
20
12
 
21
13
  ## Supported Ruby versions
22
14
 
data/dry-rails.gemspec CHANGED
@@ -29,9 +29,9 @@ Gem::Specification.new do |spec|
29
29
  spec.required_ruby_version = ">= 2.7.0"
30
30
 
31
31
  # to update dependencies edit project.yml
32
- spec.add_runtime_dependency "dry-schema", "~> 1.11", ">= 1.11.2"
33
- spec.add_runtime_dependency "dry-system", "~> 0.27", ">= 0.27.2"
34
- spec.add_runtime_dependency "dry-validation", "~> 1.9", ">= 1.9.0"
32
+ spec.add_runtime_dependency "dry-schema", "~> 1.7"
33
+ spec.add_runtime_dependency "dry-system", "~> 1.0", "< 2"
34
+ spec.add_runtime_dependency "dry-validation", "~> 1.5"
35
35
 
36
36
  spec.add_development_dependency "bundler"
37
37
  spec.add_development_dependency "rake"
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Dry
4
4
  module Rails
5
- VERSION = "0.6.0"
5
+ VERSION = "0.7.0"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dry-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Piotr Solnica
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-20 00:00:00.000000000 Z
11
+ date: 2022-12-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-schema
@@ -16,60 +16,48 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.11'
20
- - - ">="
21
- - !ruby/object:Gem::Version
22
- version: 1.11.2
19
+ version: '1.7'
23
20
  type: :runtime
24
21
  prerelease: false
25
22
  version_requirements: !ruby/object:Gem::Requirement
26
23
  requirements:
27
24
  - - "~>"
28
25
  - !ruby/object:Gem::Version
29
- version: '1.11'
30
- - - ">="
31
- - !ruby/object:Gem::Version
32
- version: 1.11.2
26
+ version: '1.7'
33
27
  - !ruby/object:Gem::Dependency
34
28
  name: dry-system
35
29
  requirement: !ruby/object:Gem::Requirement
36
30
  requirements:
37
31
  - - "~>"
38
32
  - !ruby/object:Gem::Version
39
- version: '0.27'
40
- - - ">="
33
+ version: '1.0'
34
+ - - "<"
41
35
  - !ruby/object:Gem::Version
42
- version: 0.27.2
36
+ version: '2'
43
37
  type: :runtime
44
38
  prerelease: false
45
39
  version_requirements: !ruby/object:Gem::Requirement
46
40
  requirements:
47
41
  - - "~>"
48
42
  - !ruby/object:Gem::Version
49
- version: '0.27'
50
- - - ">="
43
+ version: '1.0'
44
+ - - "<"
51
45
  - !ruby/object:Gem::Version
52
- version: 0.27.2
46
+ version: '2'
53
47
  - !ruby/object:Gem::Dependency
54
48
  name: dry-validation
55
49
  requirement: !ruby/object:Gem::Requirement
56
50
  requirements:
57
51
  - - "~>"
58
52
  - !ruby/object:Gem::Version
59
- version: '1.9'
60
- - - ">="
61
- - !ruby/object:Gem::Version
62
- version: 1.9.0
53
+ version: '1.5'
63
54
  type: :runtime
64
55
  prerelease: false
65
56
  version_requirements: !ruby/object:Gem::Requirement
66
57
  requirements:
67
58
  - - "~>"
68
59
  - !ruby/object:Gem::Version
69
- version: '1.9'
70
- - - ">="
71
- - !ruby/object:Gem::Version
72
- version: 1.9.0
60
+ version: '1.5'
73
61
  - !ruby/object:Gem::Dependency
74
62
  name: bundler
75
63
  requirement: !ruby/object:Gem::Requirement
@@ -159,7 +147,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
159
147
  - !ruby/object:Gem::Version
160
148
  version: '0'
161
149
  requirements: []
162
- rubygems_version: 3.1.6
150
+ rubygems_version: 3.3.26
163
151
  signing_key:
164
152
  specification_version: 4
165
153
  summary: The official dry-rb railtie for Ruby on Rails