Skip to content

Commit

Permalink
fix(deps): update module github.com/aws/aws-sdk-go-v2/service/sqs to …
Browse files Browse the repository at this point in the history
…v1.32.5 (#114)
  • Loading branch information
renovate[bot] authored Jun 7, 2024
1 parent f7e2dcc commit e9e7d5e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require (
github.com/aws/aws-sdk-go-v2 v1.27.1
github.com/aws/aws-sdk-go-v2/config v1.27.17
github.com/aws/aws-sdk-go-v2/service/s3 v1.55.0
github.com/aws/aws-sdk-go-v2/service/sqs v1.32.4
github.com/aws/aws-sdk-go-v2/service/sqs v1.32.5
github.com/google/uuid v1.6.0
github.com/stretchr/testify v1.9.0
golang.org/x/sync v0.7.0
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,8 @@ github.com/aws/aws-sdk-go-v2/service/sqs v1.32.3 h1:K0kIvRVzlVB/7onxMnRoqJkBqRdu
github.com/aws/aws-sdk-go-v2/service/sqs v1.32.3/go.mod h1:xPN9AEzpZ3Ny+HpzsyLBrdXoTFOz7tig6xuYOQ3A0bQ=
github.com/aws/aws-sdk-go-v2/service/sqs v1.32.4 h1:iOs0Z+IzkrPusuQgv9sOBhDIzwqv9Z+FanNOhlkDVdE=
github.com/aws/aws-sdk-go-v2/service/sqs v1.32.4/go.mod h1:rK0Bwsv9rJMM4TMHgXiVbYXUfzsfcvN+qJS3VITac5s=
github.com/aws/aws-sdk-go-v2/service/sqs v1.32.5 h1:IuYdhOuMXywlwdChJz5x6wSIB7CsrcKVvOIM115xDgw=
github.com/aws/aws-sdk-go-v2/service/sqs v1.32.5/go.mod h1:rK0Bwsv9rJMM4TMHgXiVbYXUfzsfcvN+qJS3VITac5s=
github.com/aws/aws-sdk-go-v2/service/sso v1.18.7 h1:eajuO3nykDPdYicLlP3AGgOyVN3MOlFmZv7WGTuJPow=
github.com/aws/aws-sdk-go-v2/service/sso v1.18.7/go.mod h1:+mJNDdF+qiUlNKNC3fxn74WWNN+sOiGOEImje+3ScPM=
github.com/aws/aws-sdk-go-v2/service/sso v1.19.2 h1:pnj8llQoBAHD4UmbM8UM5GdfycFJKMhgPSeaOyRaZ34=
Expand Down
18 changes: 11 additions & 7 deletions sqs.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from service/sqs/v1.32.4
// Generated from service/sqs/v1.32.5

package sqsextendedclient

Expand Down Expand Up @@ -370,12 +370,14 @@ type SQSClient interface {
// Delivers a message to the specified queue.
//
// A message can include only XML, JSON, and unformatted text. The following
// Unicode characters are allowed:
// Unicode characters are allowed. For more information, see the [W3C specification for characters].
//
// #x9 | #xA | #xD | #x20 to #xD7FF | #xE000 to #xFFFD | #x10000 to #x10FFFF
//
// Any characters not included in this list will be rejected. For more
// information, see the [W3C specification for characters].
// 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.
//
// [W3C specification for characters]: http://www.w3.org/TR/REC-xml/#charsets
SendMessage(ctx context.Context, params *sqs.SendMessageInput, optFns ...func(*sqs.Options)) (*sqs.SendMessageOutput, error)
Expand All @@ -394,12 +396,14 @@ type SQSClient interface {
// KiB (262,144 bytes).
//
// A message can include only XML, JSON, and unformatted text. The following
// Unicode characters are allowed:
// Unicode characters are allowed. For more information, see the [W3C specification for characters].
//
// #x9 | #xA | #xD | #x20 to #xD7FF | #xE000 to #xFFFD | #x10000 to #x10FFFF
//
// Any characters not included in this list will be rejected. For more
// information, see the [W3C specification for characters].
// 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 you don't specify the DelaySeconds parameter for an entry, Amazon SQS uses
// the default value for the queue.
Expand Down

0 comments on commit e9e7d5e

Please sign in to comment.