Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"variables": {
"${LATEST}": "3.356.19"
"${LATEST}": "3.356.22"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
4 changes: 4 additions & 0 deletions src/Service/Sqs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Changed

- AWS enhancement: Documentation updates.

## 2.7.1

### Changed
Expand Down
5 changes: 2 additions & 3 deletions src/Service/Sqs/src/Input/SendMessageRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,8 @@ final class SendMessageRequest extends Input
* !
* ! `#x9` | `#xA` | `#xD` | `#x20` to `#xD7FF` | `#xE000` to `#xFFFD` | `#x10000` to `#x10FFFF`
* !
* ! Amazon SQS does not throw an exception or completely reject the message if it contains invalid characters. Instead,
* ! it replaces those invalid characters with U+FFFD before storing the message in the queue, as long as the message
* ! body contains at least one valid character.
* ! If a message contains characters outside the allowed set, Amazon SQS rejects the message and returns an
* ! InvalidMessageContents error. Ensure that your message body includes only valid characters to avoid this exception.
*
* [^1]: http://www.w3.org/TR/REC-xml/#charsets
*
Expand Down
10 changes: 4 additions & 6 deletions src/Service/Sqs/src/SqsClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -744,9 +744,8 @@ public function receiveMessage($input): ReceiveMessageResult
* !
* ! `#x9` | `#xA` | `#xD` | `#x20` to `#xD7FF` | `#xE000` to `#xFFFD` | `#x10000` to `#x10FFFF`
* !
* ! Amazon SQS does not throw an exception or completely reject the message if it contains invalid characters. Instead,
* ! it replaces those invalid characters with U+FFFD before storing the message in the queue, as long as the message
* ! body contains at least one valid character.
* ! If a message contains characters outside the allowed set, Amazon SQS rejects the message and returns an
* ! InvalidMessageContents error. Ensure that your message body includes only valid characters to avoid this exception.
*
* [^1]: http://www.w3.org/TR/REC-xml/#charsets
*
Expand Down Expand Up @@ -817,9 +816,8 @@ public function sendMessage($input): SendMessageResult
* !
* ! `#x9` | `#xA` | `#xD` | `#x20` to `#xD7FF` | `#xE000` to `#xFFFD` | `#x10000` to `#x10FFFF`
* !
* ! Amazon SQS does not throw an exception or completely reject the message if it contains invalid characters. Instead,
* ! it replaces those invalid characters with U+FFFD before storing the message in the queue, as long as the message
* ! body contains at least one valid character.
* ! If a message contains characters outside the allowed set, Amazon SQS rejects the message and returns an
* ! InvalidMessageContents error. Ensure that your message body includes only valid characters to avoid this exception.
*
* If you don't specify the `DelaySeconds` parameter for an entry, Amazon SQS uses the default value for the queue.
*
Expand Down
Loading