aws-crt 0.2.1-universal-java → 0.3.0-universal-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -3
- data/VERSION +1 -1
- data/bin/aarch64/libaws-crt-ffi.so +0 -0
- data/bin/arm64/libaws-crt-ffi.dylib +0 -0
- data/bin/x64/aws-crt-ffi.dll +0 -0
- data/bin/x86_64/libaws-crt-ffi.dylib +0 -0
- data/bin/x86_64/libaws-crt-ffi.so +0 -0
- data/lib/aws-crt/checksums/crc.rb +8 -0
- data/lib/aws-crt/errors.rb +1 -1
- data/lib/aws-crt/native.rb +2 -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: 78f89c4891fa5ad28858388f586bf1de0554167438dee0aef7768cd5256370a8
|
4
|
+
data.tar.gz: f21a79ebb56021e2553790b714cd3b89d4fb06d5f7e895aa3557f5127764aad8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 11f336f3e682247401a00ab711b0b1a52af9b076d0dc1963dd585809aa39a8ca3f2c33d8c758f49172e454d02115d51f2d2d1b394dd1730713b2c8163b76f34e
|
7
|
+
data.tar.gz: 0325c261e5c2c4d8040c855f67dd2de35e112af524b6144444f33d7b4206115f02b1bf58c65e022140b120db13a78b28cadec193368718646b8b6f6a6d6075da
|
data/CHANGELOG.md
CHANGED
@@ -1,12 +1,20 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
-
|
4
|
+
0.3.0 (2024-09-16)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Support CRC64NVME checksums.
|
8
|
+
|
9
|
+
0.2.1 (2024-06-13)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Issue - Update to the latest aws-crt-ffi.
|
5
13
|
|
6
14
|
0.2.0 (2023-11-28)
|
7
15
|
------------------
|
8
16
|
|
9
|
-
* Feature -
|
17
|
+
* Feature - Support sigv4-s3express signing.
|
10
18
|
|
11
19
|
0.1.9 (2023-10-16)
|
12
20
|
------------------
|
@@ -16,12 +24,13 @@ Unreleased Changes
|
|
16
24
|
0.1.8 (2023-03-28)
|
17
25
|
------------------
|
18
26
|
|
19
|
-
* Issue -
|
27
|
+
* Issue - Fix `warning: method redefined` warnings.
|
20
28
|
|
21
29
|
0.1.7 (2023-02-03)
|
22
30
|
------------------
|
23
31
|
|
24
32
|
* Issue - Update to the latest aws-crt-ffi.
|
33
|
+
*
|
25
34
|
* Issue - Add support for overriding crt_bin_dir with `AWS_CRT_RUBY_BIN_DIR`.
|
26
35
|
|
27
36
|
0.1.6 (2022-08-12)
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.3.0
|
Binary file
|
Binary file
|
data/bin/x64/aws-crt-ffi.dll
CHANGED
Binary file
|
Binary file
|
Binary file
|
data/lib/aws-crt/errors.rb
CHANGED
@@ -52,7 +52,7 @@ module Aws
|
|
52
52
|
# This requires filtering non-safe characters from the constant
|
53
53
|
# name and ensuring it begins with an uppercase letter.
|
54
54
|
def self.error_class_constant(error_name)
|
55
|
-
error_name.to_s.gsub(
|
55
|
+
error_name.to_s.gsub('AWS_ERROR_', '').split('_').map(&:capitalize).join
|
56
56
|
end
|
57
57
|
|
58
58
|
def self.add_error_constant(constant)
|
data/lib/aws-crt/native.rb
CHANGED
@@ -76,7 +76,7 @@ module Aws
|
|
76
76
|
# = false)
|
77
77
|
# 3. Creates a bang method that does not do automatic error checking.
|
78
78
|
def self.attach_function(c_name, params, returns, options = {})
|
79
|
-
ruby_name = c_name.to_s.sub(
|
79
|
+
ruby_name = c_name.to_s.sub('aws_crt_', '').to_sym
|
80
80
|
raise_errors = options.fetch(:raise, true)
|
81
81
|
options.delete(:raise)
|
82
82
|
unless raise_errors
|
@@ -215,6 +215,7 @@ module Aws
|
|
215
215
|
# Checksums
|
216
216
|
attach_function :aws_crt_crc32, %i[pointer size_t uint32], :uint32, raise: false
|
217
217
|
attach_function :aws_crt_crc32c, %i[pointer size_t uint32], :uint32, raise: false
|
218
|
+
attach_function :aws_crt_crc64nvme, %i[pointer size_t uint64], :uint64, raise: false
|
218
219
|
|
219
220
|
# Internal testing API
|
220
221
|
attach_function :aws_crt_test_error, [:int], :int
|
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
|
+
version: 0.3.0
|
5
5
|
platform: universal-java
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-09-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ffi
|
@@ -88,7 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
88
88
|
- !ruby/object:Gem::Version
|
89
89
|
version: '0'
|
90
90
|
requirements: []
|
91
|
-
rubygems_version: 3.
|
91
|
+
rubygems_version: 3.5.16
|
92
92
|
signing_key:
|
93
93
|
specification_version: 4
|
94
94
|
summary: AWS SDK for Ruby - Common Run Time
|