aws-sdk-dynamodb 1.93.0 → 1.93.1

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: 591f7a25a729e45748300b716eb15b1e7af8312fe995899af2004f0e7f6eb2b2
4
- data.tar.gz: 6e85f3e9910e962f4dae28562647d673fee7063bc9aba8d69a2c9e50b1b5a953
3
+ metadata.gz: 90ddf6bfd0527577a2aae6c563ab32be779de4d4897867797e818612f2783fec
4
+ data.tar.gz: d4e74a96a91dbca7ff3b8c7c4e4b787f8c5819394e29d970c38a1ac74df5b5dc
5
5
  SHA512:
6
- metadata.gz: a5903f7ba1725e52d5c6be5c59c38d41d806cfccbf4a1965bcc85e5a8d1fe3accdd9288164704a583471875ca65b0a5e98053075592a0b2ee6dd3e805f3a406f
7
- data.tar.gz: 3e192fc8c4febf19f4555616123433d4c8a65a25121e74b3ed50732ddf6db87342a03ab6500fea0a45d17befcc53d9644767da03e990c6b238bded41ae215578
6
+ metadata.gz: 1b3b1389edfe15488ba8c35fd49dc096880499cf8b3fc9f1c924ed5c548a3d930cd51db5617751d7e550abf8da933a34391ebc48562bd07c358b8fe91adefc6f
7
+ data.tar.gz: 4d0cb20280cb25f42b7fed14ab9c4e6267f7b1d9153c3706a0731a821ca9fddb53f04111e1e03cf7ac4e9dcfbeac2660530cb02c5b898c00dc67348ca637908d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.93.1 (2023-08-07)
5
+ ------------------
6
+
7
+ * Issue - Fix inconsistent behavior of `stub_responses` when `simple_attributes` is disabled.
8
+
4
9
  1.93.0 (2023-07-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.93.0
1
+ 1.93.1
@@ -7828,7 +7828,7 @@ module Aws::DynamoDB
7828
7828
  params: params,
7829
7829
  config: config)
7830
7830
  context[:gem_name] = 'aws-sdk-dynamodb'
7831
- context[:gem_version] = '1.93.0'
7831
+ context[:gem_version] = '1.93.1'
7832
7832
  Seahorse::Client::Request.new(handlers, context)
7833
7833
  end
7834
7834
 
@@ -21,9 +21,11 @@ module Aws
21
21
  def data_to_http_resp(operation_name, data)
22
22
  api = config.api
23
23
  operation = api.operation(operation_name)
24
- translator = Plugins::SimpleAttributes::ValueTranslator
25
- translator = translator.new(operation.output, :marshal)
26
- data = translator.apply(data)
24
+ if config.simple_attributes
25
+ translator = Plugins::SimpleAttributes::ValueTranslator
26
+ translator = translator.new(operation.output, :marshal)
27
+ data = translator.apply(data)
28
+ end
27
29
  ParamValidator.validate!(operation.output, data)
28
30
  protocol_helper.stub_data(api, operation, data)
29
31
  end
@@ -54,6 +54,6 @@ require_relative 'aws-sdk-dynamodb/customizations'
54
54
  # @!group service
55
55
  module Aws::DynamoDB
56
56
 
57
- GEM_VERSION = '1.93.0'
57
+ GEM_VERSION = '1.93.1'
58
58
 
59
59
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-dynamodb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.93.0
4
+ version: 1.93.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-25 00:00:00.000000000 Z
11
+ date: 2023-08-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core