dry-system 0.19.1 → 0.19.2

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: bd9ff0c5114ab780f7fc44ea9cb2b963ed980e75a0aefa248232363955cb8e8d
4
- data.tar.gz: 94c666638d7a2786ee1cd34f77a1594ea6ffeb5a49951e4412ba0539bb3d7947
3
+ metadata.gz: ac1a7cac5a6ff443e0479c8507e50f5d4c3fb1d18615c14953c8187bf116942c
4
+ data.tar.gz: c3f58d5572a94399807162667f005ead8b37f88774c3e96968d0fe31642611c2
5
5
  SHA512:
6
- metadata.gz: e778ff07b49f0e2e670d253263a110b5a81145d6e9149f6c12d6684a1a3b10fe3963f8d0b085fab0e9e8e4c8cc099289feb36c3ad154644ab8af9d0ef13c887c
7
- data.tar.gz: 6b94ff8beab87af8621ee6e7e33e0360c4bf9e367f79bb5c5242d5ba09f60906e0c8a30e0e7e49b77b6ce17aa80ea4e82da5d310ba425d6c9a7801b94b4cabd3
6
+ metadata.gz: 4626bdead25123079942778e76413d05b8e7d86f048e50997c54e61ddbc2d5e31b7520fbfbfd0231106e03bc209074158887caba4958cce3560652b99ea7f562
7
+ data.tar.gz: d85046a0106aa9dc062a1e85dec60aac35a556cf6c63c4bcffbdd13702f304cfd383a4acb5815fc9ae25cf6abc3cea7b5bb47f23d129f9a59bdd3912fc8a93c8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  <!--- DO NOT EDIT THIS FILE - IT'S AUTOMATICALLY GENERATED VIA DEVTOOLS --->
2
2
 
3
+ ## 0.19.2 2021-08-30
4
+
5
+
6
+ ### Changed
7
+
8
+ - [internal] Improved compatibility with upcoming dry-configurable 0.13.0 release (@timriley in #186)
9
+
10
+ [Compare v0.19.1...v0.19.2](https://github.com/dry-rb/dry-system/compare/v0.19.1...v0.19.2)
11
+
12
+ ## 0.19.1 2021-07-11
13
+
14
+
15
+ ### Fixed
16
+
17
+ - Check for registered components (@timriley in #175)
18
+
19
+
20
+ [Compare v0.19.0...v0.19.1](https://github.com/dry-rb/dry-system/compare/v0.19.0...v0.19.1)
21
+
3
22
  ## 0.19.0 2021-04-22
4
23
 
5
24
  This release marks a huge step forward for dry-system, bringing support for Zeitwerk and other autoloaders, plus clearer configuration and improved consistency around component resolution for both finalized and lazy loading containers. [Read the announcement post](https://dry-rb.org/news/2021/04/22/dry-system-0-19-released-with-zeitwerk-support-and-more-leading-the-way-for-hanami-2-0/) for a high-level tour of the new features.
@@ -107,6 +107,7 @@ module Dry
107
107
  config._settings << _settings[name]
108
108
  self
109
109
  end
110
+ ruby2_keywords(:setting) if respond_to?(:ruby2_keywords, true)
110
111
 
111
112
  # Configures the container
112
113
  #
@@ -13,10 +13,7 @@ module Dry
13
13
 
14
14
  setting :log_dir, "log"
15
15
 
16
- setting :log_levels,
17
- development: Logger::DEBUG,
18
- test: Logger::DEBUG,
19
- production: Logger::ERROR
16
+ setting :log_levels, {development: Logger::DEBUG, test: Logger::DEBUG, production: Logger::ERROR}
20
17
 
21
18
  setting :logger_class, ::Logger, reader: true
22
19
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Dry
4
4
  module System
5
- VERSION = "0.19.1"
5
+ VERSION = "0.19.2"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dry-system
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.19.1
4
+ version: 0.19.2
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-07-11 00:00:00.000000000 Z
11
+ date: 2021-08-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby