aws-sdk-sqs 1.75.0 → 1.77.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: e8e2f12d706b6583b050a5d6c6f22d4afad43317a933dc32d8763a722da44092
4
- data.tar.gz: 576614f442300a8b6299ea20ea0b843c63d5d66e6d4d2a45e012afe14a00cabc
3
+ metadata.gz: 5cb62d472bc12a69fa332495d9df37befd8334b81f5550ff07ee2fdf1bedd225
4
+ data.tar.gz: 3f29c9b5b4ece3d6404cab478100ec36a4eb2628aa702b6a94de11b23b5b7b00
5
5
  SHA512:
6
- metadata.gz: f300716ce27544421bfc05256d485a875bea86c3fb8c7ded6c57a063f85f9beda6ea26fae7bfaf110fd6fbae633384a86e995dd8fa8e2965718bb545fe18207d
7
- data.tar.gz: fd15e035a9034b2bb1352bdbfd8238c18f57cd6c9d1984f42f249442029cd9acdc58422d964dfba07d324a2d2f282c508c67be7807cff653e599d31513882b48
6
+ metadata.gz: d08a50f8615381b5556a2b3b5c815bd9e20654b498fdba894a94c69a52af4dbf98c943561edf8d9e53713d121bbf89242a9935c9fe2f44d06e90d4eb96f479db
7
+ data.tar.gz: ceeca0a744a7f680389b9c5f53305c7c5a818bde69bc48d99f7bc220eb7294e9dbb82a001a93abe47fe276f091443d31775dab7fc875875dff5a69345b659e73
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.77.0 (2024-06-24)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.76.0 (2024-06-06)
10
+ ------------------
11
+
12
+ * Feature - Doc only updates for SQS. These updates include customer-reported issues and TCX3 modifications.
13
+
4
14
  1.75.0 (2024-06-05)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.75.0
1
+ 1.77.0
@@ -93,6 +93,11 @@ module Aws::SQS
93
93
 
94
94
  # @overload initialize(options)
95
95
  # @param [Hash] options
96
+ #
97
+ # @option options [Array<Seahorse::Client::Plugin>] :plugins ([]])
98
+ # A list of plugins to apply to the client. Each plugin is either a
99
+ # class name or an instance of a plugin class.
100
+ #
96
101
  # @option options [required, Aws::CredentialProvider] :credentials
97
102
  # Your AWS credentials. This can be an instance of any one of the
98
103
  # following classes:
@@ -213,7 +218,6 @@ module Aws::SQS
213
218
  # 'https://example.com'
214
219
  # 'http://example.com:123'
215
220
  #
216
- #
217
221
  # @option options [Integer] :endpoint_cache_max_entries (1000)
218
222
  # Used for the maximum size limit of the LRU cache storing endpoints data
219
223
  # for endpoint discovery enabled operations. Defaults to 1000.
@@ -302,7 +306,6 @@ module Aws::SQS
302
306
  # throttling. This is a provisional mode that may change behavior
303
307
  # in the future.
304
308
  #
305
- #
306
309
  # @option options [String] :sdk_ua_app_id
307
310
  # A unique and opaque application ID that is appended to the
308
311
  # User-Agent header as app/sdk_ua_app_id. It should have a
@@ -2126,13 +2129,17 @@ module Aws::SQS
2126
2129
  # Delivers a message to the specified queue.
2127
2130
  #
2128
2131
  # A message can include only XML, JSON, and unformatted text. The
2129
- # following Unicode characters are allowed:
2132
+ # following Unicode characters are allowed. For more information, see
2133
+ # the [W3C specification for characters][1].
2130
2134
  #
2131
2135
  # `#x9` \| `#xA` \| `#xD` \| `#x20` to `#xD7FF` \| `#xE000` to `#xFFFD`
2132
2136
  # \| `#x10000` to `#x10FFFF`
2133
2137
  #
2134
- # Any characters not included in this list will be rejected. For more
2135
- # information, see the [W3C specification for characters][1].
2138
+ # Amazon SQS does not throw an exception or completely reject the
2139
+ # message if it contains invalid characters. Instead, it replaces those
2140
+ # invalid characters with `U+FFFD` before storing the message in the
2141
+ # queue, as long as the message body contains at least one valid
2142
+ # character.
2136
2143
  #
2137
2144
  #
2138
2145
  #
@@ -2148,13 +2155,17 @@ module Aws::SQS
2148
2155
  # size is 256 KiB.
2149
2156
  #
2150
2157
  # A message can include only XML, JSON, and unformatted text. The
2151
- # following Unicode characters are allowed:
2158
+ # following Unicode characters are allowed. For more information, see
2159
+ # the [W3C specification for characters][1].
2152
2160
  #
2153
2161
  # `#x9` \| `#xA` \| `#xD` \| `#x20` to `#xD7FF` \| `#xE000` to `#xFFFD`
2154
2162
  # \| `#x10000` to `#x10FFFF`
2155
2163
  #
2156
- # Any characters not included in this list will be rejected. For more
2157
- # information, see the [W3C specification for characters][1].
2164
+ # Amazon SQS does not throw an exception or completely reject the
2165
+ # message if it contains invalid characters. Instead, it replaces those
2166
+ # invalid characters with `U+FFFD` before storing the message in the
2167
+ # queue, as long as the message body contains at least one valid
2168
+ # character.
2158
2169
  #
2159
2170
  #
2160
2171
  #
@@ -2356,13 +2367,17 @@ module Aws::SQS
2356
2367
  # messages) are both 256 KiB (262,144 bytes).
2357
2368
  #
2358
2369
  # A message can include only XML, JSON, and unformatted text. The
2359
- # following Unicode characters are allowed:
2370
+ # following Unicode characters are allowed. For more information, see
2371
+ # the [W3C specification for characters][1].
2360
2372
  #
2361
2373
  # `#x9` \| `#xA` \| `#xD` \| `#x20` to `#xD7FF` \| `#xE000` to `#xFFFD`
2362
2374
  # \| `#x10000` to `#x10FFFF`
2363
2375
  #
2364
- # Any characters not included in this list will be rejected. For more
2365
- # information, see the [W3C specification for characters][1].
2376
+ # Amazon SQS does not throw an exception or completely reject the
2377
+ # message if it contains invalid characters. Instead, it replaces those
2378
+ # invalid characters with `U+FFFD` before storing the message in the
2379
+ # queue, as long as the message body contains at least one valid
2380
+ # character.
2366
2381
  #
2367
2382
  # If you don't specify the `DelaySeconds` parameter for an entry,
2368
2383
  # Amazon SQS uses the default value for the queue.
@@ -2860,7 +2875,7 @@ module Aws::SQS
2860
2875
  params: params,
2861
2876
  config: config)
2862
2877
  context[:gem_name] = 'aws-sdk-sqs'
2863
- context[:gem_version] = '1.75.0'
2878
+ context[:gem_version] = '1.77.0'
2864
2879
  Seahorse::Client::Request.new(handlers, context)
2865
2880
  end
2866
2881
 
@@ -503,6 +503,7 @@ module Aws::SQS
503
503
  "errorPrefix" => "AWS.SimpleQueueService.",
504
504
  "jsonVersion" => "1.0",
505
505
  "protocol" => "json",
506
+ "protocols" => ["json"],
506
507
  "serviceAbbreviation" => "Amazon SQS",
507
508
  "serviceFullName" => "Amazon Simple Queue Service",
508
509
  "serviceId" => "SQS",
@@ -479,13 +479,17 @@ module Aws::SQS
479
479
  # size is 256 KiB.
480
480
  #
481
481
  # A message can include only XML, JSON, and unformatted text. The
482
- # following Unicode characters are allowed:
482
+ # following Unicode characters are allowed. For more information, see
483
+ # the [W3C specification for characters][1].
483
484
  #
484
485
  # `#x9` \| `#xA` \| `#xD` \| `#x20` to `#xD7FF` \| `#xE000` to `#xFFFD`
485
486
  # \| `#x10000` to `#x10FFFF`
486
487
  #
487
- # Any characters not included in this list will be rejected. For more
488
- # information, see the [W3C specification for characters][1].
488
+ # Amazon SQS does not throw an exception or completely reject the
489
+ # message if it contains invalid characters. Instead, it replaces those
490
+ # invalid characters with `U+FFFD` before storing the message in the
491
+ # queue, as long as the message body contains at least one valid
492
+ # character.
489
493
  #
490
494
  #
491
495
  #
@@ -2253,13 +2253,17 @@ module Aws::SQS
2253
2253
  # size is 256 KiB.
2254
2254
  #
2255
2255
  # A message can include only XML, JSON, and unformatted text. The
2256
- # following Unicode characters are allowed:
2256
+ # following Unicode characters are allowed. For more information, see
2257
+ # the [W3C specification for characters][1].
2257
2258
  #
2258
2259
  # `#x9` \| `#xA` \| `#xD` \| `#x20` to `#xD7FF` \| `#xE000` to
2259
2260
  # `#xFFFD` \| `#x10000` to `#x10FFFF`
2260
2261
  #
2261
- # Any characters not included in this list will be rejected. For more
2262
- # information, see the [W3C specification for characters][1].
2262
+ # Amazon SQS does not throw an exception or completely reject the
2263
+ # message if it contains invalid characters. Instead, it replaces
2264
+ # those invalid characters with `U+FFFD` before storing the message in
2265
+ # the queue, as long as the message body contains at least one valid
2266
+ # character.
2263
2267
  #
2264
2268
  #
2265
2269
  #
data/lib/aws-sdk-sqs.rb CHANGED
@@ -54,6 +54,6 @@ require_relative 'aws-sdk-sqs/customizations'
54
54
  # @!group service
55
55
  module Aws::SQS
56
56
 
57
- GEM_VERSION = '1.75.0'
57
+ GEM_VERSION = '1.77.0'
58
58
 
59
59
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sqs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.75.0
4
+ version: 1.77.0
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: 2024-06-05 00:00:00.000000000 Z
11
+ date: 2024-06-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.197.0
22
+ version: 3.198.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.197.0
32
+ version: 3.198.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement