zen-service 2.2.3 → 2.2.4
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 +8 -3
- data/lib/zen/service/plugins/callable.rb +2 -2
- data/lib/zen/service/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7c1c54fed5a49c87cdbdfbaf9cb369e8eed0ac2a0e1862eadd5edca95af1f931
|
|
4
|
+
data.tar.gz: 2c4d4efaaa636193e3d4daa6d94a375e1e67f7c8bfc0ab930d8cedbd36023012
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 24394d2ecd8f0af333c82b23089b5c53b2481db6cee8ebffc78f9f69b80fc371c58020064d1650453f5a146bd789d76e6db62b90a4885ad34fcc7af57959ce07
|
|
7
|
+
data.tar.gz: 746b18aaa03abe11e5c194e6817da0b84e1e18c1226f2f67e7f6a981bf9dfc331ff422afc8518e08ea11bdb58ec6f79b0dac34b855335eb2cdb361e2912b85b5
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [2.2.4] - 2026-01-19
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Fix using named attributes in `.call` and `.[]` class-level call helpers
|
|
13
|
+
|
|
8
14
|
## [2.2.3] - 2026-01-19
|
|
9
15
|
|
|
10
16
|
### Fixed
|
|
@@ -79,9 +85,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
79
85
|
|
|
80
86
|
### Changed
|
|
81
87
|
|
|
82
|
-
3]: https://github.com/akuzko/zen-service/compare/v2.2.2...v2.2.3
|
|
83
|
-
[2.2.
|
|
84
|
-
|
|
85
88
|
- Simplified service object pattern focusing on essential functionality
|
|
86
89
|
- Improved plugin DSL with `register_as`, `default_options`, and `service_extension`
|
|
87
90
|
- Complete README rewrite with comprehensive examples
|
|
@@ -91,6 +94,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
91
94
|
- Most built-in plugins from v1.x for simplicity
|
|
92
95
|
- Removed legacy plugin APIs
|
|
93
96
|
|
|
97
|
+
[2.2.4]: https://github.com/akuzko/zen-service/compare/v2.2.3...v2.2.4
|
|
98
|
+
[2.2.3]: https://github.com/akuzko/zen-service/compare/v2.2.2...v2.2.3
|
|
94
99
|
[2.2.2]: https://github.com/akuzko/zen-service/compare/v2.2.1...v2.2.2
|
|
95
100
|
[2.2.1]: https://github.com/akuzko/zen-service/compare/v2.2.0...v2.2.1
|
|
96
101
|
[2.2.0]: https://github.com/akuzko/zen-service/compare/v2.1.0...v2.2.0
|
data/lib/zen/service/version.rb
CHANGED