aws-sdk-sqs 1.103.0 → 1.104.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4b1de956529d541fdf8e578e97d16e3b9e2efd75e2078ae97cdb576bb5cf8234
4
- data.tar.gz: 9ac10e30ed747ce20ed1ba7f648703bc00e31d12db587550a2596ee1ef706ba5
3
+ metadata.gz: 98e8d47cbd929ca19881e5058fb621e1beb771fce35f0ccdd098ed9dce6afba6
4
+ data.tar.gz: ad4eaae85bdb6c31aef6b8ab899a14bb4b0fc1356b4812f8fd6332e08bc98714
5
5
  SHA512:
6
- metadata.gz: 229d6c26dc9b567c7776b23ce1601f216fb54818c306a088e2a5b7f505704837b7ee41f5601eb64d50c59b889d51f8d064f58ece2903259dbad3fe6a50419e94
7
- data.tar.gz: 477f08220fe9079830d04e1bb80fc7ad84d2c3cb4a90c15ebddce16d09d244b4714eab0cf90bbf20aabd3e03181e218fb5510b9abacaa7b2f8379d7d1b6272ba
6
+ metadata.gz: aceb8a7571ee704fc574c76982fcb1f8bef4663912a5c8dac02243d9f20794152e766ad615cccdfec0402873cde4c403bd99c5eb3e5a74074f7671dad35b7017
7
+ data.tar.gz: a20ea0b6d11cc01ffd9a81fcfac9e9ac6bca4cd1d85205678a2e8d7c315aa1fd9468fc6c9a2c23edc8e55ab77ba6549a27db6315d1354b2eb25aefb9b84360f9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.104.0 (2025-09-19)
5
+ ------------------
6
+
7
+ * Feature - Update invalid character handling documentation for SQS SendMessage API
8
+
4
9
  1.103.0 (2025-08-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.103.0
1
+ 1.104.0
@@ -2222,11 +2222,10 @@ module Aws::SQS
2222
2222
  # `#x9` \| `#xA` \| `#xD` \| `#x20` to `#xD7FF` \| `#xE000` to `#xFFFD`
2223
2223
  # \| `#x10000` to `#x10FFFF`
2224
2224
  #
2225
- # Amazon SQS does not throw an exception or completely reject the
2226
- # message if it contains invalid characters. Instead, it replaces those
2227
- # invalid characters with U+FFFD before storing the message in the
2228
- # queue, as long as the message body contains at least one valid
2229
- # character.
2225
+ # If a message contains characters outside the allowed set, Amazon SQS
2226
+ # rejects the message and returns an InvalidMessageContents error.
2227
+ # Ensure that your message body includes only valid characters to avoid
2228
+ # this exception.
2230
2229
  #
2231
2230
  #
2232
2231
  #
@@ -2248,11 +2247,10 @@ module Aws::SQS
2248
2247
  # `#x9` \| `#xA` \| `#xD` \| `#x20` to `#xD7FF` \| `#xE000` to `#xFFFD`
2249
2248
  # \| `#x10000` to `#x10FFFF`
2250
2249
  #
2251
- # Amazon SQS does not throw an exception or completely reject the
2252
- # message if it contains invalid characters. Instead, it replaces those
2253
- # invalid characters with U+FFFD before storing the message in the
2254
- # queue, as long as the message body contains at least one valid
2255
- # character.
2250
+ # If a message contains characters outside the allowed set, Amazon SQS
2251
+ # rejects the message and returns an InvalidMessageContents error.
2252
+ # Ensure that your message body includes only valid characters to avoid
2253
+ # this exception.
2256
2254
  #
2257
2255
  #
2258
2256
  #
@@ -2479,11 +2477,10 @@ module Aws::SQS
2479
2477
  # `#x9` \| `#xA` \| `#xD` \| `#x20` to `#xD7FF` \| `#xE000` to `#xFFFD`
2480
2478
  # \| `#x10000` to `#x10FFFF`
2481
2479
  #
2482
- # Amazon SQS does not throw an exception or completely reject the
2483
- # message if it contains invalid characters. Instead, it replaces those
2484
- # invalid characters with U+FFFD before storing the message in the
2485
- # queue, as long as the message body contains at least one valid
2486
- # character.
2480
+ # If a message contains characters outside the allowed set, Amazon SQS
2481
+ # rejects the message and returns an InvalidMessageContents error.
2482
+ # Ensure that your message body includes only valid characters to avoid
2483
+ # this exception.
2487
2484
  #
2488
2485
  # If you don't specify the `DelaySeconds` parameter for an entry,
2489
2486
  # Amazon SQS uses the default value for the queue.
@@ -2983,7 +2980,7 @@ module Aws::SQS
2983
2980
  tracer: tracer
2984
2981
  )
2985
2982
  context[:gem_name] = 'aws-sdk-sqs'
2986
- context[:gem_version] = '1.103.0'
2983
+ context[:gem_version] = '1.104.0'
2987
2984
  Seahorse::Client::Request.new(handlers, context)
2988
2985
  end
2989
2986
 
@@ -1,6 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # utility classes
4
3
  module Aws
5
4
  module SQS
6
5
  autoload :QueuePoller, 'aws-sdk-sqs/queue_poller'
@@ -515,11 +515,10 @@ module Aws::SQS
515
515
  # `#x9` \| `#xA` \| `#xD` \| `#x20` to `#xD7FF` \| `#xE000` to `#xFFFD`
516
516
  # \| `#x10000` to `#x10FFFF`
517
517
  #
518
- # Amazon SQS does not throw an exception or completely reject the
519
- # message if it contains invalid characters. Instead, it replaces those
520
- # invalid characters with U+FFFD before storing the message in the
521
- # queue, as long as the message body contains at least one valid
522
- # character.
518
+ # If a message contains characters outside the allowed set, Amazon SQS
519
+ # rejects the message and returns an InvalidMessageContents error.
520
+ # Ensure that your message body includes only valid characters to avoid
521
+ # this exception.
523
522
  #
524
523
  #
525
524
  #
@@ -2306,11 +2306,11 @@ module Aws::SQS
2306
2306
  # `#x9` \| `#xA` \| `#xD` \| `#x20` to `#xD7FF` \| `#xE000` to
2307
2307
  # `#xFFFD` \| `#x10000` to `#x10FFFF`
2308
2308
  #
2309
- # Amazon SQS does not throw an exception or completely reject the
2310
- # message if it contains invalid characters. Instead, it replaces
2311
- # those invalid characters with U+FFFD before storing the message in
2312
- # the queue, as long as the message body contains at least one valid
2313
- # character.
2309
+ # If a message contains characters outside the allowed set, Amazon
2310
+ # SQS
2311
+ # rejects the message and returns an InvalidMessageContents error.
2312
+ # Ensure that your message body includes only valid characters to
2313
+ # avoid this exception.
2314
2314
  #
2315
2315
  #
2316
2316
  #
data/lib/aws-sdk-sqs.rb CHANGED
@@ -56,7 +56,7 @@ module Aws::SQS
56
56
  autoload :Message, 'aws-sdk-sqs/message'
57
57
  autoload :Queue, 'aws-sdk-sqs/queue'
58
58
 
59
- GEM_VERSION = '1.103.0'
59
+ GEM_VERSION = '1.104.0'
60
60
 
61
61
  end
62
62
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sqs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.103.0
4
+ version: 1.104.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services