dry-schema 1.7.0 → 1.7.1

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: 305c1a8710478195cc35c3de75a1f50834c2cc044b0a6d62bb7c95845ff48db8
4
- data.tar.gz: 62254023ae1e6ee82ecf7023e3900906a75ebda86676c59dfa24269d337af7f8
3
+ metadata.gz: 377172612c5f08c6325b7d71c749296505cbb3811894496da15ee5ed1aa1b69a
4
+ data.tar.gz: 8b55f71218c418f073b8daf84a64a8d31aa02035908c7cd301df2780f5a2c2c0
5
5
  SHA512:
6
- metadata.gz: '08c894bf7682d81654ecd9034ae71e14c10e314997196cf11ee39ddaadf799aabeba33e7398aeb54961ba4b19a67e0d68cb3142ebccc182df18dd64ebca3c725'
7
- data.tar.gz: 947264e7d824feededff8608e6e090592287503cb699d11ab31183955c963a01c1ceaeaa977c19d8add8e719a329ed1afbe72d8dd51f86603750c2502fd41a98
6
+ metadata.gz: 07152d8d51f7f93dff3409b7c14b89f6a374158ed3ecc5d22dc2103a579b653c6ba085f6ec8b9464bcc406b1c123a669a4112b2b3d541b644cdaf65492ccb5a3
7
+ data.tar.gz: dc9e7d840f6c40436d3234698c5ce5d04e23952678ffb36694e715dcbc9e455b1a0efb4a81919a9f01c7d0ebfe4f37dd88f611b04e1d4e7b1c576f84f5ffba1d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  <!--- DO NOT EDIT THIS FILE - IT'S AUTOMATICALLY GENERATED VIA DEVTOOLS --->
2
2
 
3
+ ## 1.7.1 2021-08-29
4
+
5
+
6
+ ### Changed
7
+
8
+ - [internal] Use explicit `#to_h` conversion of Dry::Configurable::Config, to ensure compatibility with upcoming dry-configurable 0.13.0 release (via #371) (@timriley)
9
+
10
+ [Compare v1.7.0...v1.7.1](https://github.com/dry-rb/dry-schema/compare/v1.7.0...v1.7.1)
11
+
3
12
  ## 1.7.0 2021-06-29
4
13
 
5
14
  This release ships with a bunch of internal refactorings that should improve performance but if you see any unexpected behavior please do report issues.
data/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
  # dry-schema [![Join the chat at https://dry-rb.zulipchat.com](https://img.shields.io/badge/dry--rb-join%20chat-%23346b7a.svg)][chat]
9
9
 
10
10
  [![Gem Version](https://badge.fury.io/rb/dry-schema.svg)][gem]
11
- [![CI Status](https://github.com/dry-rb/dry-schema/workflows/ci/badge.svg)][actions]
11
+ [![CI Status](https://github.com/dry-rb/dry-schema/workflows/CI/badge.svg)][actions]
12
12
  [![Codacy Badge](https://api.codacy.com/project/badge/Grade/961f5c776f1d49218b2cede3745e059c)][codacy]
13
13
  [![Codacy Badge](https://api.codacy.com/project/badge/Coverage/961f5c776f1d49218b2cede3745e059c)][codacy]
14
14
  [![Inline docs](http://inch-ci.org/github/dry-rb/dry-schema.svg?branch=master)][inchpages]
@@ -53,7 +53,7 @@ module Dry
53
53
  # @api public
54
54
  def define(&block)
55
55
  @definition ||= DSL.new(
56
- processor_type: self, parent: superclass.definition, **config, &block
56
+ processor_type: self, parent: superclass.definition, **config.to_h, &block
57
57
  )
58
58
  self
59
59
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Dry
4
4
  module Schema
5
- VERSION = "1.7.0"
5
+ VERSION = "1.7.1"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dry-schema
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.0
4
+ version: 1.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Piotr Solnica
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-29 00:00:00.000000000 Z
11
+ date: 2021-08-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby