aws-crt 0.2.1-aarch64-linux → 0.3.0-aarch64-linux

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2db99fa16c440dcee282c8c9d60b39705896d4d7eb4fd0a351651162e21c1a9f
4
- data.tar.gz: 619320c3bf322ce0e58ae8ccaed21caf5d4c0b959e90a7cf4b2dc93d9ffe872b
3
+ metadata.gz: 96d0fddb9158af4d24fd075b7de234a44a7f7ec7ab757c3544f10c6f3137947c
4
+ data.tar.gz: 50a9a21adc5635b2888af4c692f355e529f852b6b0ac3afbc930ad929da6d873
5
5
  SHA512:
6
- metadata.gz: 32f352ee855b506756105b06f744186427e4d8b4cb29402afc12cbba85035af9d54a5722d755301edc16c1c7f237b02bc29458629099606e0063378960b6c646
7
- data.tar.gz: 1278986742933b8cfe390b09877fa4d679b059873751c0a0ecebc60814f0834cd0cbd65b953c1d6daf0be88193536ad1ae84ba975e2283bdd39f3544b3f0b68d
6
+ metadata.gz: ea1647d165982f65a153514cd82d6d66ce5667e158478d6051834f48f27e0e0f1d6e63f122de0c19cc8692a7466739e1511b057b7bf16f37b6091c0e98b21c7a
7
+ data.tar.gz: aed71be0b5ecfe2d85395bd22298e1a8f86b52b72571fa7b72048bb3423039ac8d726b6383da8e17303c42a891e9afa638f78f1cfd13a80ab71676ae268899bf
data/CHANGELOG.md CHANGED
@@ -1,12 +1,20 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
- * Issue - update to the latest aws-crt-ffi.
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 - support sigv4-s3express signing.
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 - fix `warning: method redefined` warnings.
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.2.1
1
+ 0.3.0
Binary file
@@ -19,6 +19,14 @@ module Aws
19
19
  previous
20
20
  )
21
21
  end
22
+
23
+ def self.crc64nvme(str, previous = 0)
24
+ Aws::Crt::Native.crc64nvme(
25
+ FFI::MemoryPointer.from_string(str),
26
+ str.size,
27
+ previous
28
+ )
29
+ end
22
30
  end
23
31
  end
24
32
  end
@@ -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(/AWS_ERROR_/, '').split('_').map(&:capitalize).join
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)
@@ -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(/aws_crt_/, '').to_sym
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.2.1
4
+ version: 0.3.0
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-06-13 00:00:00.000000000 Z
11
+ date: 2024-09-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi