cedar_policy 0.5.3 → 0.6.1
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/.cross_rubies +20 -10
- data/.release-please-manifest.json +1 -1
- data/CHANGELOG.md +23 -0
- data/Cargo.lock +44 -36
- data/ext/cedar_policy/Cargo.toml +2 -2
- data/lib/cedar_policy/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a8dbc4bacb220bb4c03873095c8429e735d6df3df88056b98193f8acaafd1e07
|
4
|
+
data.tar.gz: f5f0de9e469de2d455840511b55ece64f999b47a2127c61ad9925e76eff5f654
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 310f8639bc61e04b916a39962f668fdaac602514eec91c38c7b9ff6771173f4640427f70663e1e1bdd094e1482a55972ff1cbb0954fb88fb7bd5eb5cdc441b9e
|
7
|
+
data.tar.gz: 0dd94866133e2b540051dc7d0acc367e3438f5fafb1d5d92e2653093ebb2f19c7765d6b6b9ebaa3d521771c68664332ec7d2e4d88a0d8057b511bc4e34edca81
|
data/.cross_rubies
CHANGED
@@ -1,25 +1,35 @@
|
|
1
|
-
3.0:aarch64-linux
|
1
|
+
3.0:aarch64-linux-gnu
|
2
|
+
3.0:aarch64-linux-musl
|
2
3
|
3.0:arm64-darwin
|
3
4
|
3.0:x64-mingw32
|
4
5
|
3.0:x86_64-darwin
|
5
|
-
3.0:x86_64-linux
|
6
|
-
3.
|
6
|
+
3.0:x86_64-linux-gnu
|
7
|
+
3.0:x86_64-linux-musl
|
8
|
+
3.1:aarch64-linux-gnu
|
9
|
+
3.1:aarch64-linux-musl
|
7
10
|
3.1:arm64-darwin
|
8
11
|
3.1:x64-mingw-ucrt
|
9
12
|
3.1:x86_64-darwin
|
10
|
-
3.1:x86_64-linux
|
11
|
-
3.
|
13
|
+
3.1:x86_64-linux-gnu
|
14
|
+
3.1:x86_64-linux-musl
|
15
|
+
3.2:aarch64-linux-gnu
|
16
|
+
3.2:aarch64-linux-musl
|
12
17
|
3.2:arm64-darwin
|
13
18
|
3.2:x64-mingw-ucrt
|
14
19
|
3.2:x86_64-darwin
|
15
|
-
3.2:x86_64-linux
|
16
|
-
3.
|
20
|
+
3.2:x86_64-linux-gnu
|
21
|
+
3.2:x86_64-linux-musl
|
22
|
+
3.3:aarch64-linux-gnu
|
23
|
+
3.3:aarch64-linux-musl
|
17
24
|
3.3:arm64-darwin
|
18
25
|
3.3:x64-mingw-ucrt
|
19
26
|
3.3:x86_64-darwin
|
20
|
-
3.3:x86_64-linux
|
21
|
-
3.
|
27
|
+
3.3:x86_64-linux-gnu
|
28
|
+
3.3:x86_64-linux-musl
|
29
|
+
3.4:aarch64-linux-gnu
|
30
|
+
3.4:aarch64-linux-musl
|
22
31
|
3.4:arm64-darwin
|
23
32
|
3.4:x64-mingw-ucrt
|
24
33
|
3.4:x86_64-darwin
|
25
|
-
3.4:x86_64-linux
|
34
|
+
3.4:x86_64-linux-gnu
|
35
|
+
3.4:x86_64-linux-musl
|
@@ -1 +1 @@
|
|
1
|
-
{".":"0.
|
1
|
+
{".":"0.6.1"}
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,28 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [0.6.1](https://github.com/elct9620/cedar-policy-rb/compare/v0.6.0...v0.6.1) (2025-08-26)
|
4
|
+
|
5
|
+
|
6
|
+
### Miscellaneous Chores
|
7
|
+
|
8
|
+
* release-as 0.6.1 ([882b4d9](https://github.com/elct9620/cedar-policy-rb/commit/882b4d9566a09f733195fc8216032a2fd0f3c7b9))
|
9
|
+
|
10
|
+
## [0.6.0](https://github.com/elct9620/cedar-policy-rb/compare/v0.5.3...v0.6.0) (2025-06-12)
|
11
|
+
|
12
|
+
|
13
|
+
### ⚠ BREAKING CHANGES
|
14
|
+
|
15
|
+
* depends on behavior in RubyGems >= 3.3.22
|
16
|
+
|
17
|
+
### Features
|
18
|
+
|
19
|
+
* adds support for musl libc ([#43](https://github.com/elct9620/cedar-policy-rb/issues/43)) ([563f4f4](https://github.com/elct9620/cedar-policy-rb/commit/563f4f45aeb9f97cccc8aad384702a7ac5dcbc7a))
|
20
|
+
|
21
|
+
|
22
|
+
### Miscellaneous Chores
|
23
|
+
|
24
|
+
* release 0.6.0 ([1e18e75](https://github.com/elct9620/cedar-policy-rb/commit/1e18e75574ef30d00cf21de212b88360d718e5b4))
|
25
|
+
|
3
26
|
## [0.5.3](https://github.com/elct9620/cedar-policy-rb/compare/v0.5.2...v0.5.3) (2025-06-10)
|
4
27
|
|
5
28
|
|
data/Cargo.lock
CHANGED
@@ -135,13 +135,12 @@ dependencies = [
|
|
135
135
|
|
136
136
|
[[package]]
|
137
137
|
name = "cedar-policy"
|
138
|
-
version = "4.
|
138
|
+
version = "4.5.1"
|
139
139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
140
|
-
checksum = "
|
140
|
+
checksum = "c48e6e6d7a17aabe41cf70c5613413ce0cc82f5f651357843bd02b8d41ca08a4"
|
141
141
|
dependencies = [
|
142
142
|
"cedar-policy-core",
|
143
143
|
"cedar-policy-formatter",
|
144
|
-
"cedar-policy-validator",
|
145
144
|
"itertools 0.14.0",
|
146
145
|
"lalrpop-util",
|
147
146
|
"lazy_static",
|
@@ -158,9 +157,9 @@ dependencies = [
|
|
158
157
|
|
159
158
|
[[package]]
|
160
159
|
name = "cedar-policy-core"
|
161
|
-
version = "4.
|
160
|
+
version = "4.5.1"
|
162
161
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
163
|
-
checksum = "
|
162
|
+
checksum = "02b45be5c965ce63bec3d284fefe0e042342f4e77f149a1e7aafc045119df738"
|
164
163
|
dependencies = [
|
165
164
|
"chrono",
|
166
165
|
"educe",
|
@@ -180,13 +179,14 @@ dependencies = [
|
|
180
179
|
"smol_str",
|
181
180
|
"stacker",
|
182
181
|
"thiserror",
|
182
|
+
"unicode-security",
|
183
183
|
]
|
184
184
|
|
185
185
|
[[package]]
|
186
186
|
name = "cedar-policy-formatter"
|
187
|
-
version = "4.
|
187
|
+
version = "4.5.1"
|
188
188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
189
|
-
checksum = "
|
189
|
+
checksum = "ddec9c888e3afff8000f92d7c93e20a32559301c65fb80683335fb8bb8bf2f35"
|
190
190
|
dependencies = [
|
191
191
|
"cedar-policy-core",
|
192
192
|
"itertools 0.14.0",
|
@@ -198,33 +198,9 @@ dependencies = [
|
|
198
198
|
"smol_str",
|
199
199
|
]
|
200
200
|
|
201
|
-
[[package]]
|
202
|
-
name = "cedar-policy-validator"
|
203
|
-
version = "4.4.1"
|
204
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
205
|
-
checksum = "2f40762e669e4ec5a4b3a2b3d3aa2567d768aa74b735760f13197312c1150f69"
|
206
|
-
dependencies = [
|
207
|
-
"cedar-policy-core",
|
208
|
-
"educe",
|
209
|
-
"itertools 0.14.0",
|
210
|
-
"lalrpop",
|
211
|
-
"lalrpop-util",
|
212
|
-
"lazy_static",
|
213
|
-
"miette",
|
214
|
-
"nonempty",
|
215
|
-
"ref-cast",
|
216
|
-
"serde",
|
217
|
-
"serde_json",
|
218
|
-
"serde_with",
|
219
|
-
"smol_str",
|
220
|
-
"stacker",
|
221
|
-
"thiserror",
|
222
|
-
"unicode-security",
|
223
|
-
]
|
224
|
-
|
225
201
|
[[package]]
|
226
202
|
name = "cedar_policy"
|
227
|
-
version = "0.
|
203
|
+
version = "0.6.1"
|
228
204
|
dependencies = [
|
229
205
|
"cedar-policy",
|
230
206
|
"magnus",
|
@@ -356,6 +332,12 @@ dependencies = [
|
|
356
332
|
"crypto-common",
|
357
333
|
]
|
358
334
|
|
335
|
+
[[package]]
|
336
|
+
name = "dyn-clone"
|
337
|
+
version = "1.0.19"
|
338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
339
|
+
checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005"
|
340
|
+
|
359
341
|
[[package]]
|
360
342
|
name = "educe"
|
361
343
|
version = "0.6.0"
|
@@ -1004,6 +986,30 @@ dependencies = [
|
|
1004
986
|
"winapi-util",
|
1005
987
|
]
|
1006
988
|
|
989
|
+
[[package]]
|
990
|
+
name = "schemars"
|
991
|
+
version = "0.9.0"
|
992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
993
|
+
checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
|
994
|
+
dependencies = [
|
995
|
+
"dyn-clone",
|
996
|
+
"ref-cast",
|
997
|
+
"serde",
|
998
|
+
"serde_json",
|
999
|
+
]
|
1000
|
+
|
1001
|
+
[[package]]
|
1002
|
+
name = "schemars"
|
1003
|
+
version = "1.0.3"
|
1004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1005
|
+
checksum = "1375ba8ef45a6f15d83fa8748f1079428295d403d6ea991d09ab100155fbc06d"
|
1006
|
+
dependencies = [
|
1007
|
+
"dyn-clone",
|
1008
|
+
"ref-cast",
|
1009
|
+
"serde",
|
1010
|
+
"serde_json",
|
1011
|
+
]
|
1012
|
+
|
1007
1013
|
[[package]]
|
1008
1014
|
name = "scopeguard"
|
1009
1015
|
version = "1.2.0"
|
@@ -1068,15 +1074,17 @@ dependencies = [
|
|
1068
1074
|
|
1069
1075
|
[[package]]
|
1070
1076
|
name = "serde_with"
|
1071
|
-
version = "3.
|
1077
|
+
version = "3.14.0"
|
1072
1078
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1073
|
-
checksum = "
|
1079
|
+
checksum = "f2c45cd61fefa9db6f254525d46e392b852e0e61d9a1fd36e5bd183450a556d5"
|
1074
1080
|
dependencies = [
|
1075
1081
|
"base64",
|
1076
1082
|
"chrono",
|
1077
1083
|
"hex",
|
1078
1084
|
"indexmap 1.9.3",
|
1079
1085
|
"indexmap 2.9.0",
|
1086
|
+
"schemars 0.9.0",
|
1087
|
+
"schemars 1.0.3",
|
1080
1088
|
"serde",
|
1081
1089
|
"serde_derive",
|
1082
1090
|
"serde_json",
|
@@ -1086,9 +1094,9 @@ dependencies = [
|
|
1086
1094
|
|
1087
1095
|
[[package]]
|
1088
1096
|
name = "serde_with_macros"
|
1089
|
-
version = "3.
|
1097
|
+
version = "3.14.0"
|
1090
1098
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1091
|
-
checksum = "
|
1099
|
+
checksum = "de90945e6565ce0d9a25098082ed4ee4002e047cb59892c318d66821e14bb30f"
|
1092
1100
|
dependencies = [
|
1093
1101
|
"darling",
|
1094
1102
|
"proc-macro2",
|
data/ext/cedar_policy/Cargo.toml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
[package]
|
2
2
|
name = "cedar_policy"
|
3
|
-
version = "0.
|
3
|
+
version = "0.6.1"
|
4
4
|
edition = "2021"
|
5
5
|
authors = ["Aotokitsuruya <contact@aotoki.me>"]
|
6
6
|
license = "Apache-2.0"
|
@@ -10,6 +10,6 @@ publish = false
|
|
10
10
|
crate-type = ["cdylib"]
|
11
11
|
|
12
12
|
[dependencies]
|
13
|
-
cedar-policy = "4.
|
13
|
+
cedar-policy = "4.5.1"
|
14
14
|
magnus = "0.7.1"
|
15
15
|
serde_magnus = "0.9.0"
|
data/lib/cedar_policy/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cedar_policy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aotokitsuruya
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-08-26 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Ruby bindings for Cedar policy evaluation engine.
|
14
14
|
email:
|
@@ -70,7 +70,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
70
70
|
requirements:
|
71
71
|
- - ">="
|
72
72
|
- !ruby/object:Gem::Version
|
73
|
-
version: 3.3.
|
73
|
+
version: 3.3.22
|
74
74
|
requirements: []
|
75
75
|
rubygems_version: 3.5.9
|
76
76
|
signing_key:
|