aws-sdk-sqs 1.64.0 → 1.68.0

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: 68eb8fe977b86cb00d0fc688ebc168d08cff78fdf9a332304fcbc825c7d381cb
4
- data.tar.gz: 88fe34be85f87be90ff063d796ec49a42098e8882b43cefede85feeb324ef5a4
3
+ metadata.gz: 32fc6bf875bc16109436c00f4ef69fa31b7350f1cf59eb4f9f3b7af96083d0eb
4
+ data.tar.gz: 6cd2783fdabaf124f950599941eea94b669313e40d11f1211ec507aad93607eb
5
5
  SHA512:
6
- metadata.gz: '02289264a550230e36c1c9d0cb73a532ca0a2fc5c6ff550fb6390dd7d21c99f77f042fc99153605deaad2a7c945a8b963af34c5dfcf0e96357f83eeea79ba3c1'
7
- data.tar.gz: 976aee45c5cb6a9db8d884e4f8abb44807aca6b6c567b3815565864a24e7e775ee32bc3fa23a052a8b8ca378cf7266e79ea0d6539ab32f97ede21f4aa1ad6b71
6
+ metadata.gz: 7e97040f82071a95709988e2bb702630abf437abe088303ac83ded34f86de56188b1bb13c9075bb5248c2e4985c829b854b7cfa6a99fef6d645e4d61becdbfc7
7
+ data.tar.gz: 783bacab726d5bece791f748c9c240c2804bd83ed43ce5bb5cf898b2941ca1c2f060dfe89f5bb4144232bb4a40ddf2ac90ae6ff6ddf8d471917d52cd84f6e8cf
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.68.0 (2023-11-22)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.67.0 (2023-11-09)
10
+ ------------------
11
+
12
+ * Feature - This release enables customers to call SQS using AWS JSON-1.0 protocol and bug fix.
13
+
14
+ 1.66.0 (2023-11-08)
15
+ ------------------
16
+
17
+ * Feature - This release enables customers to call SQS using AWS JSON-1.0 protocol.
18
+
19
+ 1.65.0 (2023-10-31)
20
+ ------------------
21
+
22
+ * Feature - Update `QueuePoller` to allow for the definition of an `after_empty_receive` callback which is triggered when a polling request returns no records.
23
+
4
24
  1.64.0 (2023-10-02)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.64.0
1
+ 1.68.0
@@ -32,7 +32,7 @@ require 'aws-sdk-core/plugins/request_compression.rb'
32
32
  require 'aws-sdk-core/plugins/defaults_mode.rb'
33
33
  require 'aws-sdk-core/plugins/recursion_detection.rb'
34
34
  require 'aws-sdk-core/plugins/sign.rb'
35
- require 'aws-sdk-core/plugins/protocols/query.rb'
35
+ require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
36
36
  require 'aws-sdk-sqs/plugins/queue_urls.rb'
37
37
  require 'aws-sdk-sqs/plugins/md5s.rb'
38
38
 
@@ -84,7 +84,7 @@ module Aws::SQS
84
84
  add_plugin(Aws::Plugins::DefaultsMode)
85
85
  add_plugin(Aws::Plugins::RecursionDetection)
86
86
  add_plugin(Aws::Plugins::Sign)
87
- add_plugin(Aws::Plugins::Protocols::Query)
87
+ add_plugin(Aws::Plugins::Protocols::JsonRpc)
88
88
  add_plugin(Aws::SQS::Plugins::QueueUrls)
89
89
  add_plugin(Aws::SQS::Plugins::Md5s)
90
90
  add_plugin(Aws::SQS::Plugins::Endpoints)
@@ -303,6 +303,16 @@ module Aws::SQS
303
303
  #
304
304
  # @option options [String] :session_token
305
305
  #
306
+ # @option options [Boolean] :simple_json (false)
307
+ # Disables request parameter conversion, validation, and formatting.
308
+ # Also disable response data type conversions. This option is useful
309
+ # when you want to ensure the highest level of performance by
310
+ # avoiding overhead of walking request parameters and response data
311
+ # structures.
312
+ #
313
+ # When `:simple_json` is enabled, the request parameters hash must
314
+ # be formatted exactly as the DynamoDB API expects.
315
+ #
306
316
  # @option options [Boolean] :stub_responses (false)
307
317
  # Causes the client to return stubbed responses. By default
308
318
  # fake responses are generated and returned. You can specify
@@ -2786,7 +2796,7 @@ module Aws::SQS
2786
2796
  params: params,
2787
2797
  config: config)
2788
2798
  context[:gem_name] = 'aws-sdk-sqs'
2789
- context[:gem_version] = '1.64.0'
2799
+ context[:gem_version] = '1.68.0'
2790
2800
  Seahorse::Client::Request.new(handlers, context)
2791
2801
  end
2792
2802