cedar_policy 0.6.0-x86_64-linux-musl → 0.6.2-x86_64-linux-musl
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/.release-please-manifest.json +1 -1
- data/CHANGELOG.md +21 -0
- data/lib/cedar_policy/3.0/cedar_policy.so +0 -0
- data/lib/cedar_policy/3.1/cedar_policy.so +0 -0
- data/lib/cedar_policy/3.2/cedar_policy.so +0 -0
- data/lib/cedar_policy/3.3/cedar_policy.so +0 -0
- data/lib/cedar_policy/3.4/cedar_policy.so +0 -0
- data/lib/cedar_policy/version.rb +1 -1
- data/lib/cedar_policy.rb +7 -1
- 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: b300e5781f5a3b33d2abfff166d5f0eaf779887d1a7c6db8d9ed181376521828
|
4
|
+
data.tar.gz: c89794bc6ab3ad0f1cb63aa6c134eda42e3089a08a1073b96771077842b7c2d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: de3cb7bd076863f98dfd41a6df76adc61531c3fb71a87946d4706549e04dff6cdba1880ce4fb835221eb0dea155d75d7ba4bac037b4ed058a48d8541dd6ea803
|
7
|
+
data.tar.gz: 1f67b90de873f3256952c342f2a07e33e019879f37769fecf965b513d3a77972a248aed9ea86d3d46902bdaf0bbc9743e79f36e38f0eeb05a2a1d404e5e8aaac
|
@@ -1 +1 @@
|
|
1
|
-
{".":"0.6.
|
1
|
+
{".":"0.6.2"}
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [0.6.2](https://github.com/elct9620/cedar-policy-rb/compare/v0.6.1...v0.6.2) (2025-08-26)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* improve Ruby version compatibility and cross-compilation ([e08a3a0](https://github.com/elct9620/cedar-policy-rb/commit/e08a3a0c2266a1feb74a83ee38705205653f3625))
|
9
|
+
* revert rb_sys to 0.9.116 and restore mingw support ([6646b08](https://github.com/elct9620/cedar-policy-rb/commit/6646b08aea8954b0071b29936d03b48854eb203a))
|
10
|
+
* select correct minimal ruby version for different platform ([9d9fc09](https://github.com/elct9620/cedar-policy-rb/commit/9d9fc09a4c8dec6269cd05b22774c5e03aeb2dce))
|
11
|
+
|
12
|
+
|
13
|
+
### Reverts
|
14
|
+
|
15
|
+
* restore rb_sys to 0.9.117 after investigation ([f1e77dd](https://github.com/elct9620/cedar-policy-rb/commit/f1e77ddca61b7c48575c6548620a76cc5954524e))
|
16
|
+
|
17
|
+
## [0.6.1](https://github.com/elct9620/cedar-policy-rb/compare/v0.6.0...v0.6.1) (2025-08-26)
|
18
|
+
|
19
|
+
|
20
|
+
### Miscellaneous Chores
|
21
|
+
|
22
|
+
* release-as 0.6.1 ([882b4d9](https://github.com/elct9620/cedar-policy-rb/commit/882b4d9566a09f733195fc8216032a2fd0f3c7b9))
|
23
|
+
|
3
24
|
## [0.6.0](https://github.com/elct9620/cedar-policy-rb/compare/v0.5.3...v0.6.0) (2025-06-12)
|
4
25
|
|
5
26
|
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/lib/cedar_policy/version.rb
CHANGED
data/lib/cedar_policy.rb
CHANGED
@@ -4,12 +4,18 @@ require "json"
|
|
4
4
|
require "set"
|
5
5
|
|
6
6
|
require_relative "cedar_policy/version"
|
7
|
-
require_relative "cedar_policy/cedar_policy"
|
8
7
|
require_relative "cedar_policy/entity_uid"
|
9
8
|
require_relative "cedar_policy/entity"
|
10
9
|
require_relative "cedar_policy/entities"
|
11
10
|
require_relative "cedar_policy/context"
|
12
11
|
|
12
|
+
begin
|
13
|
+
RUBY_VERSION =~ /(\d+\.\d+)/
|
14
|
+
require "cedar_policy/#{Regexp.last_match(1)}/cedar_policy"
|
15
|
+
rescue LoadError
|
16
|
+
require "cedar_policy/cedar_policy"
|
17
|
+
end
|
18
|
+
|
13
19
|
# :nodoc:
|
14
20
|
module CedarPolicy
|
15
21
|
class Error < StandardError; end
|
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.6.
|
4
|
+
version: 0.6.2
|
5
5
|
platform: x86_64-linux-musl
|
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:
|