aws-crt 0.4.0-aarch64-linux → 0.4.1-aarch64-linux

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: d14754c83494514ed832e57b7935673de5f94ab0b3de1b1d6844828db4744242
4
- data.tar.gz: f9bcb076537d9678d5d93a02ec93a2946fa91af44b889d945286514dbc770e9b
3
+ metadata.gz: 5b0086af1179efa3ddd2cbe54b6734072d7b622fcd5e95fe3696c108e9c01f21
4
+ data.tar.gz: 7019426988d39606c5b8a672b029ea74468a41fb8cda3cf774540f0cc3a79f21
5
5
  SHA512:
6
- metadata.gz: acd95d3f1c5495dc814ba23ad6ee2b841f9752d33c0ce584b9c78e85eedcb5c13e686c4dda9f3adf7393f3e86a850eae19621d21a38e2a031e04f72a269580f1
7
- data.tar.gz: 778ea0b756e91fc442b3dcee8e1c3784ad70cbb4fc3eb275de1d4ebd3ffdb58a06dc7264670bf9e0910259aa2de7f2293d11fce6969880ac34a967537d273991
6
+ metadata.gz: 49da84534d17f949d8a36c431e9abba143c99267a55d910eb543f68549be9bea3157c7b7ea83c1355c6cbf5ae885158f1f7bca12b75ca82aefa483c7e194331f
7
+ data.tar.gz: '08cf6b8d66a51188de00bf91abc41c17e0a356ca90b6dc2021965025fc2e561c8406944eb13192513d3e691c4aeacecb594f9174650881bd60afc9d9c5374006'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 0.4.1 (2026-08-10)
5
+ ------------------
6
+ * Issue - Fix intermittent test failure in garbage collection spec.
7
+
4
8
  0.4.0 (2024-10-23)
5
9
  ------------------
6
10
  * Issue - Update CMake to 3.9
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.0
1
+ 0.4.1
@@ -6,6 +6,7 @@ module Aws
6
6
  # CRT CredentialOptions
7
7
  class CredentialsOptions
8
8
  include Aws::Crt::ManagedNative
9
+
9
10
  native_destroy Aws::Crt::Native.method(:credentials_options_release)
10
11
 
11
12
  UINT64_MAX = 18_446_744_073_709_551_615
@@ -52,6 +53,7 @@ module Aws
52
53
  # Utility class for Credentials.
53
54
  class Credentials
54
55
  include Aws::Crt::ManagedNative
56
+
55
57
  native_destroy Aws::Crt::Native.method(:credentials_release)
56
58
 
57
59
  # @param [String] access_key_id
@@ -61,7 +63,6 @@ module Aws
61
63
  # seconds since unix epoch
62
64
  def initialize(access_key_id, secret_access_key,
63
65
  session_token = nil, expiration = nil)
64
-
65
66
  credential_options = CredentialsOptions.new(
66
67
  access_key_id, secret_access_key,
67
68
  session_token, expiration
@@ -6,6 +6,7 @@ module Aws
6
6
  # Signing Config
7
7
  class Signable
8
8
  include Aws::Crt::ManagedNative
9
+
9
10
  native_destroy Aws::Crt::Native.method(:signable_release)
10
11
 
11
12
  # @param [Http::Message] http_request
@@ -9,6 +9,7 @@ module Aws
9
9
  # Signing Config
10
10
  class SigningConfig
11
11
  include Aws::Crt::ManagedNative
12
+
12
13
  native_destroy Aws::Crt::Native.method(:signing_config_aws_release)
13
14
 
14
15
  # @param [Hash] options
@@ -6,6 +6,7 @@ module Aws
6
6
  # CRT CredentialOptions
7
7
  class StaticCredentialsProviderOptions
8
8
  include Aws::Crt::ManagedNative
9
+
9
10
  native_destroy Aws::Crt::Native.method(:credentials_provider_static_options_release)
10
11
 
11
12
  # @param [String] access_key_id
@@ -44,6 +45,7 @@ module Aws
44
45
  # Utility class for Credentials.
45
46
  class StaticCredentialsProvider
46
47
  include Aws::Crt::ManagedNative
48
+
47
49
  native_destroy Aws::Crt::Native.method(:credentials_provider_release)
48
50
 
49
51
  # @param [String] access_key_id
@@ -51,7 +53,6 @@ module Aws
51
53
  # @param [String] session_token (nil)
52
54
  def initialize(access_key_id, secret_access_key,
53
55
  session_token = nil)
54
-
55
56
  credential_options = StaticCredentialsProviderOptions.new(
56
57
  access_key_id, secret_access_key,
57
58
  session_token
@@ -70,7 +70,7 @@ module Aws
70
70
  def self.error_const_set?(constant)
71
71
  # Purposefully not using #const_defined? as that method returns true
72
72
  # for constants not defined directly in the current module.
73
- constants.include?(constant.to_sym)
73
+ const_defined?(constant.to_sym)
74
74
  end
75
75
  end
76
76
  end
@@ -7,6 +7,7 @@ module Aws
7
7
  # HTTP Headers
8
8
  class Headers
9
9
  include Aws::Crt::ManagedNative
10
+
10
11
  native_destroy Aws::Crt::Native.method(
11
12
  :http_headers_release
12
13
  )
@@ -7,6 +7,7 @@ module Aws
7
7
  # HTTP Message (request)
8
8
  class Message
9
9
  include Aws::Crt::ManagedNative
10
+
10
11
  native_destroy Aws::Crt::Native.method(
11
12
  :http_message_release
12
13
  )
@@ -7,6 +7,7 @@ module Aws
7
7
  # Options for an EventLoopGroup
8
8
  class EventLoopGroupOptions
9
9
  include Aws::Crt::ManagedNative
10
+
10
11
  native_destroy Aws::Crt::Native.method(
11
12
  :event_loop_group_options_release
12
13
  )
@@ -35,6 +36,7 @@ module Aws
35
36
  # for an event-loop to use.
36
37
  class EventLoopGroup
37
38
  include Aws::Crt::ManagedNative
39
+
38
40
  native_destroy Aws::Crt::Native.method(:event_loop_group_release)
39
41
 
40
42
  def initialize(max_threads = nil)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-crt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-23 00:00:00.000000000 Z
11
+ date: 2026-08-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi
@@ -77,7 +77,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
77
77
  requirements:
78
78
  - - ">="
79
79
  - !ruby/object:Gem::Version
80
- version: '2.5'
80
+ version: '2.7'
81
81
  required_rubygems_version: !ruby/object:Gem::Requirement
82
82
  requirements:
83
83
  - - ">="