cadenya 0.43.0 → 0.44.0

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: 2b1273c4583bc92904e6a96809dbc8aa4f124dab7720d30b2ef268dedc498211
4
- data.tar.gz: de189818935cf093d144f8eaf5afad55f2bd9e8302218d90360afd1ca0305249
3
+ metadata.gz: 27dd98fae73b8908e2ea6832226e571d96cb153705846dd46fd54c1baf61bcb0
4
+ data.tar.gz: fcaa5b560b21bd5297049e35a2263c67e08c251d912a4e1f6be742009e5ce10d
5
5
  SHA512:
6
- metadata.gz: bbada6df12b74966b764aa266ce9d731a16d94dac4bc2adff086dc32385457c8f1817e7b18f4f31f61904a4668271ffc0b5bac50068f045bb6373a70015a46b2
7
- data.tar.gz: e51db9d64ed530dfe19f03d000a69e3187b999ef99de09e376ce4c4a2f5f02eb19808a2519635d80520f3086a1f12310b6d182b04d1a3756a42692b37a38a59a
6
+ metadata.gz: 053660e9e75a5ea1bb648c0510866649a303a847fcf1d931672b6f734fbddba1f887752d2f6aa603973588ab01294e5fbb06766dec286e3cd59c15e532de192e
7
+ data.tar.gz: d66571d969506aa28cec5955400185e72262010f284936b183f17a0b60db3b1362171f5f9d13569dc44a6c53e50c47364f6992905da7e4cca918e1df8b5140c2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.44.0 (2026-07-16)
4
+
5
+ Full Changelog: [v0.43.0...v0.44.0](https://github.com/cadenya/cadenya-ruby/compare/v0.43.0...v0.44.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([68c81b5](https://github.com/cadenya/cadenya-ruby/commit/68c81b5bdaf90d8f676bcee80935eec3b65ff7e2))
10
+
3
11
  ## 0.43.0 (2026-07-16)
4
12
 
5
13
  Full Changelog: [v0.42.0...v0.43.0](https://github.com/cadenya/cadenya-ruby/compare/v0.42.0...v0.43.0)
data/README.md CHANGED
@@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application
17
17
  <!-- x-release-please-start-version -->
18
18
 
19
19
  ```ruby
20
- gem "cadenya", "~> 0.43.0"
20
+ gem "cadenya", "~> 0.44.0"
21
21
  ```
22
22
 
23
23
  <!-- x-release-please-end -->
@@ -18,8 +18,8 @@ module Cadenya
18
18
  # "x:read" when "x:manage" is present. The secrets and account resources support
19
19
  # only manage. "\*" is an explicit full-access grant.
20
20
  #
21
- # An empty list grants full access (grandfathered legacy behavior); new keys
22
- # should be created with explicit scopes.
21
+ # Scopes are deny-by-default: a key with an empty list can call only scope-free
22
+ # endpoints. Full access is always an explicit "\*" grant.
23
23
  #
24
24
  # @return [Array<String>, nil]
25
25
  optional :permissions, Cadenya::Internal::Type::ArrayOf[String]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Cadenya
4
- VERSION = "0.43.0"
4
+ VERSION = "0.44.0"
5
5
  end
@@ -21,8 +21,8 @@ module Cadenya
21
21
  # "x:read" when "x:manage" is present. The secrets and account resources support
22
22
  # only manage. "\*" is an explicit full-access grant.
23
23
  #
24
- # An empty list grants full access (grandfathered legacy behavior); new keys
25
- # should be created with explicit scopes.
24
+ # Scopes are deny-by-default: a key with an empty list can call only scope-free
25
+ # endpoints. Full access is always an explicit "\*" grant.
26
26
  sig { returns(T.nilable(T::Array[String])) }
27
27
  attr_reader :permissions
28
28
 
@@ -68,8 +68,8 @@ module Cadenya
68
68
  # "x:read" when "x:manage" is present. The secrets and account resources support
69
69
  # only manage. "\*" is an explicit full-access grant.
70
70
  #
71
- # An empty list grants full access (grandfathered legacy behavior); new keys
72
- # should be created with explicit scopes.
71
+ # Scopes are deny-by-default: a key with an empty list can call only scope-free
72
+ # endpoints. Full access is always an explicit "\*" grant.
73
73
  permissions: nil,
74
74
  # True when this key is managed by the system (e.g. the auto-provisioned global
75
75
  # account key). System keys cannot be deleted but can be rotated.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cadenya
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.43.0
4
+ version: 0.44.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cadenya