cadenya 0.43.0 → 0.45.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 +4 -4
- data/CHANGELOG.md +16 -0
- data/README.md +1 -1
- data/lib/cadenya/models/api_key_spec.rb +6 -6
- data/lib/cadenya/version.rb +1 -1
- data/rbi/cadenya/models/api_key_spec.rbi +12 -12
- 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: 909780a1dbd0e765d0bd08297067a790a82d1b71e997e0d98cf8f135d42f7026
|
|
4
|
+
data.tar.gz: e42f683aa88d026e1d79971c25305f2765cd52679222223e0e16fe1f79fa4b45
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6ea287180ef6b0e27fe2480c0a53bd7c5c8b98627fb36a78f6ed8e6e48b4cd53d3b8ac27a7a60cde12e46c2d745e69488c0c1d893fd9578dc2993f557dbf6d65
|
|
7
|
+
data.tar.gz: f13242fb378f9e814e840037629435fdda731ef1da34ca590d110dfd830d1e6ebbf1e45d4a2bf045ebc646eaaecc569c2dfe53fc3f94037eacc4416458b7f4f5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.45.0 (2026-07-17)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.44.0...v0.45.0](https://github.com/cadenya/cadenya-ruby/compare/v0.44.0...v0.45.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([0bcb323](https://github.com/cadenya/cadenya-ruby/commit/0bcb3234ee84426875493c05c883f090a4b00d4b))
|
|
10
|
+
|
|
11
|
+
## 0.44.0 (2026-07-16)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v0.43.0...v0.44.0](https://github.com/cadenya/cadenya-ruby/compare/v0.43.0...v0.44.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([68c81b5](https://github.com/cadenya/cadenya-ruby/commit/68c81b5bdaf90d8f676bcee80935eec3b65ff7e2))
|
|
18
|
+
|
|
3
19
|
## 0.43.0 (2026-07-16)
|
|
4
20
|
|
|
5
21
|
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
|
@@ -13,13 +13,13 @@ module Cadenya
|
|
|
13
13
|
# Scopes granted to this key. Each entry is a colon-separated resource:verb string
|
|
14
14
|
# (e.g. "objectives:manage").
|
|
15
15
|
#
|
|
16
|
-
# Resources: agents, objectives, tools, memory, secrets, account. Verbs:
|
|
17
|
-
# manage, where manage implies read — a stored scope set is normalized to
|
|
18
|
-
# "x:read" when "x:manage" is present. The secrets and account resources
|
|
19
|
-
# only manage. "\*" is an explicit full-access grant.
|
|
16
|
+
# Resources: agents, objectives, tools, memory, api_keys, secrets, account. Verbs:
|
|
17
|
+
# read and manage, where manage implies read — a stored scope set is normalized to
|
|
18
|
+
# drop "x:read" when "x:manage" is present. The secrets and account resources
|
|
19
|
+
# support only manage. "\*" is an explicit full-access grant.
|
|
20
20
|
#
|
|
21
|
-
#
|
|
22
|
-
#
|
|
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]
|
data/lib/cadenya/version.rb
CHANGED
|
@@ -16,13 +16,13 @@ module Cadenya
|
|
|
16
16
|
# Scopes granted to this key. Each entry is a colon-separated resource:verb string
|
|
17
17
|
# (e.g. "objectives:manage").
|
|
18
18
|
#
|
|
19
|
-
# Resources: agents, objectives, tools, memory, secrets, account. Verbs:
|
|
20
|
-
# manage, where manage implies read — a stored scope set is normalized to
|
|
21
|
-
# "x:read" when "x:manage" is present. The secrets and account resources
|
|
22
|
-
# only manage. "\*" is an explicit full-access grant.
|
|
19
|
+
# Resources: agents, objectives, tools, memory, api_keys, secrets, account. Verbs:
|
|
20
|
+
# read and manage, where manage implies read — a stored scope set is normalized to
|
|
21
|
+
# drop "x:read" when "x:manage" is present. The secrets and account resources
|
|
22
|
+
# support only manage. "\*" is an explicit full-access grant.
|
|
23
23
|
#
|
|
24
|
-
#
|
|
25
|
-
#
|
|
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
|
|
|
@@ -63,13 +63,13 @@ module Cadenya
|
|
|
63
63
|
# Scopes granted to this key. Each entry is a colon-separated resource:verb string
|
|
64
64
|
# (e.g. "objectives:manage").
|
|
65
65
|
#
|
|
66
|
-
# Resources: agents, objectives, tools, memory, secrets, account. Verbs:
|
|
67
|
-
# manage, where manage implies read — a stored scope set is normalized to
|
|
68
|
-
# "x:read" when "x:manage" is present. The secrets and account resources
|
|
69
|
-
# only manage. "\*" is an explicit full-access grant.
|
|
66
|
+
# Resources: agents, objectives, tools, memory, api_keys, secrets, account. Verbs:
|
|
67
|
+
# read and manage, where manage implies read — a stored scope set is normalized to
|
|
68
|
+
# drop "x:read" when "x:manage" is present. The secrets and account resources
|
|
69
|
+
# support only manage. "\*" is an explicit full-access grant.
|
|
70
70
|
#
|
|
71
|
-
#
|
|
72
|
-
#
|
|
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,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cadenya
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.45.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Cadenya
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-07-
|
|
11
|
+
date: 2026-07-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|