aws-sdk-sqs 1.63.0 → 1.67.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: 771f111abb0e80c50cdd2604ffccc623e3b857f71397e148cf39c86a6f4b3b01
4
- data.tar.gz: d1de38807484a6e474286728326789343c99d96a4e9f691d6e1c95d7f41c4fd1
3
+ metadata.gz: 100e5bba34535c59a9ca33ed51428c48b007311adea07694d1f4dacb7732eb5b
4
+ data.tar.gz: 5d16904d128110660978cbd6094519100b15f61db8c57e264af838b4fcbdbfbe
5
5
  SHA512:
6
- metadata.gz: 77abf6cf9210bbbd454e584381e1f1c64e60c03b15de297f9a76808cab68485454cdb750984510c4c2e5c58632766b951852916c97f1ad5dad487f1de2e8f2ed
7
- data.tar.gz: d226ea4308c28634f4a09b1d5ecf4eac09cb4beaa4c3567269c026c2ba9430af36414261b551aadfcfda4b5723ad86f89329750756b674c28da74821ab90c14b
6
+ metadata.gz: 69b32984ea01ac81b6c493dcd76f05015cd4955cb8fec591bc14662cb2d88ade10f425907e47114bb3c3cdced580e068795ee2c0f7e3e1c3d902d3568a0e1369
7
+ data.tar.gz: 1332860d95f605545e325ac5d55b9b70898dfd21d64d633b250da6c7e88371af68ccec2ed2f0fd00a5acc8f8406d7397eddaddf1648ef87015b0064f9d6b9ca8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.67.0 (2023-11-09)
5
+ ------------------
6
+
7
+ * Feature - This release enables customers to call SQS using AWS JSON-1.0 protocol and bug fix.
8
+
9
+ 1.66.0 (2023-11-08)
10
+ ------------------
11
+
12
+ * Feature - This release enables customers to call SQS using AWS JSON-1.0 protocol.
13
+
14
+ 1.65.0 (2023-10-31)
15
+ ------------------
16
+
17
+ * Feature - Update `QueuePoller` to allow for the definition of an `after_empty_receive` callback which is triggered when a polling request returns no records.
18
+
19
+ 1.64.0 (2023-10-02)
20
+ ------------------
21
+
22
+ * Feature - Update QueuePoller to handle duplicate messages before yielding. Fixes bug in (#2913).
23
+
4
24
  1.63.0 (2023-09-27)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.63.0
1
+ 1.67.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.63.0'
2799
+ context[:gem_version] = '1.67.0'
2790
2800
  Seahorse::Client::Request.new(handlers, context)
2791
2801
  end
2792
2802