cedar_policy 0.6.0-aarch64-linux-gnu → 0.6.2-aarch64-linux-gnu

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: a9c8b2062cc3bb7c920335588cfd24d853cf7b9117da786fa3a4128d5672f010
4
- data.tar.gz: e19f200fe286085a3690f818be0635e1186648188c22f558187ae6b65b73c002
3
+ metadata.gz: 5c3f26867725f22a4c6c4b0b8fa0ff3415aa40a9a1abb725909d497c59330701
4
+ data.tar.gz: eede235ce671f246f94d082d8b0ff486a441f7586bd9b46835eae11875940bcf
5
5
  SHA512:
6
- metadata.gz: d11a91b0c9719e838249bc6e3f2ea80ed0805a81aff6617c4dd8407e70ad9f48f2ceb31c267b7400a23fb6eb6acd7ba1e1dd8095c8889487a7eb79897e462b4e
7
- data.tar.gz: bc841fd7459c4e3667d9d1efd9cce69b67bc23ce716a7455410446c99c2b8d6dcc14828b516b9bbe1aa4740859a1902246f55d04ee1e242e6f672e1ad82854d4
6
+ metadata.gz: 105bcb28bcd41663c6f9e9f07b3fb02af1edecca7d29bfb6dc6b59bbd08bedccf9adbbf676ff257cc6c4d6df7bdc353b95775ce46b32299291e2c9d1c98f5778
7
+ data.tar.gz: e2689423a1039d4b7ceb82308327ce113e2f2afa8f97e8386c0e5f4113cb288f086795932b0563470187f8857c13e4d62fde5d69cc89523052d0e6b2fbd3cc60
@@ -1 +1 @@
1
- {".":"0.6.0"}
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CedarPolicy
4
- VERSION = "0.6.0"
4
+ VERSION = "0.6.2"
5
5
  end
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.0
4
+ version: 0.6.2
5
5
  platform: aarch64-linux-gnu
6
6
  authors:
7
7
  - Aotokitsuruya
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-06-12 00:00:00.000000000 Z
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: