aws-sdk-dynamodb 1.167.0 → 1.168.0
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/CHANGELOG.md +7 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +6 -8
- data/lib/aws-sdk-dynamodb.rb +1 -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: 65906c8980390033ef42762ed58909d54123b0ded6391fea39d8c11f3adb879c
|
|
4
|
+
data.tar.gz: 2a134eb7fb76bf8d17a59f60ac9d4b502d5eb797b0a6d04787387af00401ebb0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c60cea5c04eb98a8e089b849258d8ea2c648969e097f9973dde820306a156bfd5857da8a6a1d5ec19600c592da83e08265c0d7652def3b4df1715b231e0ee042
|
|
7
|
+
data.tar.gz: b57545d42ad7724b4955369366990447bc8857e85297acd33df7e98598ff01305ea7acbcdc45bf38effd1b8b03c2679f0045ca3128cec214441e62eea8dedace
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.168.0 (2026-05-21)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
* Feature - When `AWS_NEW_RETRIES_2026` is enabled, DynamoDB clients default to 4 max attempts with a 25ms backoff scalar in `standard` and `adaptive` retry modes.
|
|
10
|
+
|
|
4
11
|
1.167.0 (2026-05-19)
|
|
5
12
|
------------------
|
|
6
13
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.168.0
|
|
@@ -211,7 +211,7 @@ module Aws::DynamoDB
|
|
|
211
211
|
# the required types.
|
|
212
212
|
#
|
|
213
213
|
# @option options [Boolean] :correct_clock_skew (true)
|
|
214
|
-
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
214
|
+
# Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
|
|
215
215
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
216
216
|
#
|
|
217
217
|
# @option options [String] :defaults_mode ("legacy")
|
|
@@ -335,17 +335,15 @@ module Aws::DynamoDB
|
|
|
335
335
|
# @option options [String] :retry_mode ("legacy")
|
|
336
336
|
# Specifies which retry algorithm to use. Values are:
|
|
337
337
|
#
|
|
338
|
-
# * `legacy` - The pre-existing retry behavior.
|
|
339
|
-
# no retry mode is provided.
|
|
338
|
+
# * `legacy` - The pre-existing retry behavior. This is the default
|
|
339
|
+
# value if no retry mode is provided.
|
|
340
340
|
#
|
|
341
341
|
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
342
342
|
# This includes support for retry quotas, which limit the number of
|
|
343
343
|
# unsuccessful retries a client can make.
|
|
344
344
|
#
|
|
345
|
-
# * `adaptive` -
|
|
346
|
-
#
|
|
347
|
-
# throttling. This is a provisional mode that may change behavior
|
|
348
|
-
# in the future.
|
|
345
|
+
# * `adaptive` - A retry mode that includes all the functionality of
|
|
346
|
+
# `standard` mode along with automatic client side throttling.
|
|
349
347
|
#
|
|
350
348
|
# @option options [String] :sdk_ua_app_id
|
|
351
349
|
# A unique and opaque application ID that is appended to the
|
|
@@ -8754,7 +8752,7 @@ module Aws::DynamoDB
|
|
|
8754
8752
|
tracer: tracer
|
|
8755
8753
|
)
|
|
8756
8754
|
context[:gem_name] = 'aws-sdk-dynamodb'
|
|
8757
|
-
context[:gem_version] = '1.
|
|
8755
|
+
context[:gem_version] = '1.168.0'
|
|
8758
8756
|
Seahorse::Client::Request.new(handlers, context)
|
|
8759
8757
|
end
|
|
8760
8758
|
|
data/lib/aws-sdk-dynamodb.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-dynamodb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.168.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.248.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.248.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|