ac-sqs 3.3.2 → 3.3.3
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.
- package/CHANGELOG.md +14 -0
- package/index.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
|
|
2
|
+
## [3.3.3](https://github.com/admiralcloud/ac-sqs/compare/v3.3.2..v3.3.3) (2025-10-01 13:47:25)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fix
|
|
6
|
+
|
|
7
|
+
* **App:** Fixed log level | MP | [185f1f3ca8f89044488c304b229c19131e784282](https://github.com/admiralcloud/ac-sqs/commit/185f1f3ca8f89044488c304b229c19131e784282)
|
|
8
|
+
Log debug message as debug not as error
|
|
9
|
+
Related issues:
|
|
10
|
+
### Chores
|
|
11
|
+
|
|
12
|
+
* **Misc:** Updated packages | MP | [afb3944237b3924fddb8eae2b5784b3c56a9ed75](https://github.com/admiralcloud/ac-sqs/commit/afb3944237b3924fddb8eae2b5784b3c56a9ed75)
|
|
13
|
+
Updated packages
|
|
14
|
+
Related issues:
|
|
15
|
+
|
|
2
16
|
## [3.3.2](https://github.com/admiralcloud/ac-sqs/compare/v3.3.1..v3.3.2) (2025-09-26 20:15:26)
|
|
3
17
|
|
|
4
18
|
|
package/index.js
CHANGED
|
@@ -480,7 +480,7 @@ class ACSQS {
|
|
|
480
480
|
QueueUrl: queueUrl,
|
|
481
481
|
Entries: entries
|
|
482
482
|
}
|
|
483
|
-
if (debug || config.debug) this.logger.
|
|
483
|
+
if (debug || config.debug) this.logger.debug('ACSQS | sendSQSMessageBatch | Payload %j', sqsParams)
|
|
484
484
|
|
|
485
485
|
const command = new SendMessageBatchCommand(sqsParams)
|
|
486
486
|
try {
|
package/package.json
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
"author": "Mark Poepping (https://www.admiralcloud.com)",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": "admiralcloud/ac-sqs",
|
|
6
|
-
"version": "3.3.
|
|
6
|
+
"version": "3.3.3",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@aws-sdk/client-s3": "^3.
|
|
9
|
-
"@aws-sdk/client-sqs": "^3.
|
|
8
|
+
"@aws-sdk/client-s3": "^3.899.0",
|
|
9
|
+
"@aws-sdk/client-sqs": "^3.899.0",
|
|
10
10
|
"lodash": "^4.17.21",
|
|
11
11
|
"uuid": "^11.1.0"
|
|
12
12
|
},
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"ac-semantic-release": "^0.4.8",
|
|
15
15
|
"chai": "^4.5.0",
|
|
16
16
|
"eslint": "^9.36.0",
|
|
17
|
-
"mocha": "^11.7.
|
|
17
|
+
"mocha": "^11.7.3"
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
20
|
"test": "mocha --reporter spec"
|