diff -pruN 2.7.0-1/CHANGELOG.md 2.7.1-1/CHANGELOG.md
--- 2.7.0-1/CHANGELOG.md	2025-08-11 10:03:27.000000000 +0000
+++ 2.7.1-1/CHANGELOG.md	2025-09-08 07:05:54.000000000 +0000
@@ -2,6 +2,12 @@
 
 ## NOT RELEASED
 
+## 2.7.1
+
+### Changed
+
+- AWS enhancement: Documentation updates.
+
 ## 2.7.0
 
 ### Added
diff -pruN 2.7.0-1/debian/changelog 2.7.1-1/debian/changelog
--- 2.7.0-1/debian/changelog	2025-08-12 11:18:34.000000000 +0000
+++ 2.7.1-1/debian/changelog	2025-09-09 05:52:05.000000000 +0000
@@ -1,3 +1,13 @@
+php-async-aws-sqs (2.7.1-1) unstable; urgency=medium
+
+  [ Jérémy Derussé ]
+  * prepare next release
+
+  [ David Prévot ]
+  * Remove Rules-Requires-Root
+
+ -- David Prévot <taffit@debian.org>  Tue, 09 Sep 2025 07:52:05 +0200
+
 php-async-aws-sqs (2.7.0-1) unstable; urgency=medium
 
   * Upload to unstable now that Trixie has been released
diff -pruN 2.7.0-1/debian/control 2.7.1-1/debian/control
--- 2.7.0-1/debian/control	2025-03-08 14:44:23.000000000 +0000
+++ 2.7.1-1/debian/control	2025-09-09 05:50:24.000000000 +0000
@@ -12,7 +12,6 @@ Standards-Version: 4.7.2
 Vcs-Git: https://salsa.debian.org/php-team/pear/php-async-aws-sqs.git
 Vcs-Browser: https://salsa.debian.org/php-team/pear/php-async-aws-sqs
 Homepage: https://async-aws.com/clients/sqs.html
-Rules-Requires-Root: no
 
 Package: php-async-aws-sqs
 Architecture: all
diff -pruN 2.7.0-1/debian/tests/control 2.7.1-1/debian/tests/control
--- 2.7.0-1/debian/tests/control	2024-10-11 08:19:35.000000000 +0000
+++ 2.7.1-1/debian/tests/control	2025-09-09 05:51:20.000000000 +0000
@@ -1,3 +1,3 @@
-Restrictions: rw-build-tree, allow-stderr
+Restrictions: allow-stderr, rw-build-tree
 Depends: phpab, phpunit, pkg-php-tools, @
 Test-Command: mkdir -p vendor && phpabtpl --require async-aws/sqs > debian/autoload.tests.php.tpl && phpab -o vendor/autoload.php -t debian/autoload.tests.php.tpl tests && phpunit tests/Unit
diff -pruN 2.7.0-1/src/Input/CreateQueueRequest.php 2.7.1-1/src/Input/CreateQueueRequest.php
--- 2.7.0-1/src/Input/CreateQueueRequest.php	2025-08-11 10:03:27.000000000 +0000
+++ 2.7.1-1/src/Input/CreateQueueRequest.php	2025-09-08 07:05:54.000000000 +0000
@@ -34,7 +34,7 @@ final class CreateQueueRequest extends I
      * - `DelaySeconds` – The length of time, in seconds, for which the delivery of all messages in the queue is delayed.
      *   Valid values: An integer from 0 to 900 seconds (15 minutes). Default: 0.
      * - `MaximumMessageSize` – The limit of how many bytes a message can contain before Amazon SQS rejects it. Valid
-     *   values: An integer from 1,024 bytes (1 KiB) to 262,144 bytes (256 KiB). Default: 262,144 (256 KiB).
+     *   values: An integer from 1,024 bytes (1 KiB) to 1,048,576 bytes (1 MiB). Default: 1,048,576 bytes (1 MiB).
      * - `MessageRetentionPeriod` – The length of time, in seconds, for which Amazon SQS retains a message. Valid values:
      *   An integer from 60 seconds (1 minute) to 1,209,600 seconds (14 days). Default: 345,600 (4 days). When you change a
      *   queue's attributes, the change can take up to 60 seconds for most of the attributes to propagate throughout the
diff -pruN 2.7.0-1/src/Input/SendMessageRequest.php 2.7.1-1/src/Input/SendMessageRequest.php
--- 2.7.0-1/src/Input/SendMessageRequest.php	2025-08-11 10:03:27.000000000 +0000
+++ 2.7.1-1/src/Input/SendMessageRequest.php	2025-09-08 07:05:54.000000000 +0000
@@ -24,7 +24,7 @@ final class SendMessageRequest extends I
     private $queueUrl;
 
     /**
-     * The message to send. The minimum size is one character. The maximum size is 256 KiB.
+     * The message to send. The minimum size is one character. The maximum size is 1 MiB or 1,048,576 bytes.
      *
      * ! A message can include only XML, JSON, and unformatted text. The following Unicode characters are allowed. For more
      * ! information, see the W3C specification for characters [^1].
diff -pruN 2.7.0-1/src/SqsClient.php 2.7.1-1/src/SqsClient.php
--- 2.7.0-1/src/SqsClient.php	2025-08-11 10:03:27.000000000 +0000
+++ 2.7.1-1/src/SqsClient.php	2025-09-08 07:05:54.000000000 +0000
@@ -810,7 +810,7 @@ class SqsClient extends AbstractApi
      * HTTP status code of `200`.
      *
      * The maximum allowed individual message size and the maximum total payload size (the sum of the individual lengths of
-     * all of the batched messages) are both 256 KiB (262,144 bytes).
+     * all of the batched messages) are both 1 MiB 1,048,576 bytes.
      *
      * ! A message can include only XML, JSON, and unformatted text. The following Unicode characters are allowed. For more
      * ! information, see the W3C specification for characters [^1].
diff -pruN 2.7.0-1/src/ValueObject/MessageAttributeValue.php 2.7.1-1/src/ValueObject/MessageAttributeValue.php
--- 2.7.0-1/src/ValueObject/MessageAttributeValue.php	2025-08-11 10:03:27.000000000 +0000
+++ 2.7.1-1/src/ValueObject/MessageAttributeValue.php	2025-09-08 07:05:54.000000000 +0000
@@ -9,7 +9,7 @@ use AsyncAws\Core\Exception\InvalidArgum
  * the content as the message body. For more information, see `SendMessage.`.
  *
  * `Name`, `type`, `value` and the message body must not be empty or null. All parts of the message attribute, including
- * `Name`, `Type`, and `Value`, are part of the message size restriction (256 KiB or 262,144 bytes).
+ * `Name`, `Type`, and `Value`, are part of the message size restriction (1 MiB or 1,048,576 bytes).
  */
 final class MessageAttributeValue
 {
