dry-system 0.19.1 → 0.19.2
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 +4 -4
- data/CHANGELOG.md +19 -0
- data/lib/dry/system/container.rb +1 -0
- data/lib/dry/system/plugins/logging.rb +1 -4
- data/lib/dry/system/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ac1a7cac5a6ff443e0479c8507e50f5d4c3fb1d18615c14953c8187bf116942c
|
4
|
+
data.tar.gz: c3f58d5572a94399807162667f005ead8b37f88774c3e96968d0fe31642611c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
data/lib/dry/system/container.rb
CHANGED
@@ -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
|
data/lib/dry/system/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2021-08-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: concurrent-ruby
|