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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e345b9c915b5e8c479cfdfc7bf06a949415759d76ae8af425cc054d0265f600f
4
- data.tar.gz: 9d4167512ce4b33cc5e4d9c4463b1d1e81b6e325f42a62fb88cd3f3bd8bcbfb8
3
+ metadata.gz: 7c1c54fed5a49c87cdbdfbaf9cb369e8eed0ac2a0e1862eadd5edca95af1f931
4
+ data.tar.gz: 2c4d4efaaa636193e3d4daa6d94a375e1e67f7c8bfc0ab930d8cedbd36023012
5
5
  SHA512:
6
- metadata.gz: bb8c0682f5329c0f0928de04c4b6d14f0b5e81ed26714a13e8110cd814dd83543ca850b6b06b8d0df30e8737cb931c67854db0e2002d3e4ce4440de584348077
7
- data.tar.gz: 429d71228e7353b32b36afb0c547a19a11955c3c55b3fac6b4bf1771a9acb44ba7df0410300174c5faa20bdc7054bc06fce3362b355e47106557889efd606cd9
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
@@ -10,8 +10,8 @@ module Zen
10
10
  end
11
11
 
12
12
  module ClassMethods
13
- def call(*attrs, &block)
14
- new(*attrs).call(&block)
13
+ def call(*args, **kwargs, &block)
14
+ new(*args, **kwargs).call(&block)
15
15
  end
16
16
  alias [] call
17
17
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Zen
4
4
  class Service
5
- VERSION = "2.2.3"
5
+ VERSION = "2.2.4"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zen-service
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.3
4
+ version: 2.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Artem Kuzko