@adobe/spacecat-shared-utils 1.112.0 → 1.112.2

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 CHANGED
@@ -1,3 +1,15 @@
1
+ ## [@adobe/spacecat-shared-utils-v1.112.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.112.1...@adobe/spacecat-shared-utils-v1.112.2) (2026-04-04)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **deps:** update external fixes ([#1506](https://github.com/adobe/spacecat-shared/issues/1506)) ([a4516f6](https://github.com/adobe/spacecat-shared/commit/a4516f68dcb8b2efffc2a0c1e2ec2770347c163d))
6
+
7
+ ## [@adobe/spacecat-shared-utils-v1.112.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.112.0...@adobe/spacecat-shared-utils-v1.112.1) (2026-04-04)
8
+
9
+ ### Bug Fixes
10
+
11
+ * downgrade noisy shared library logs to debug ([#1505](https://github.com/adobe/spacecat-shared/issues/1505)) ([e189419](https://github.com/adobe/spacecat-shared/commit/e189419e6b308133f707f5b78c3ed038d7363a5d))
12
+
1
13
  ## [@adobe/spacecat-shared-utils-v1.112.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.111.0...@adobe/spacecat-shared-utils-v1.112.0) (2026-04-02)
2
14
 
3
15
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spacecat-shared-utils",
3
- "version": "1.112.0",
3
+ "version": "1.112.2",
4
4
  "description": "Shared modules of the Spacecat Services - utils",
5
5
  "type": "module",
6
6
  "exports": {
@@ -73,7 +73,7 @@
73
73
  "devDependencies": {
74
74
  "@adobe/helix-shared-wrap": "2.0.2",
75
75
  "@types/validator": "^13.15.2",
76
- "esbuild": "0.27.4",
76
+ "esbuild": "0.28.0",
77
77
  "chai": "6.2.2",
78
78
  "chai-as-promised": "8.0.2",
79
79
  "esmock": "2.7.3",
@@ -84,8 +84,8 @@
84
84
  },
85
85
  "dependencies": {
86
86
  "@adobe/fetch": "4.2.3",
87
- "@aws-sdk/client-s3": "3.1019.0",
88
- "@aws-sdk/client-sqs": "3.1019.0",
87
+ "@aws-sdk/client-s3": "3.1024.0",
88
+ "@aws-sdk/client-sqs": "3.1024.0",
89
89
  "@json2csv/plainjs": "7.0.6",
90
90
  "aws-xray-sdk": "3.12.0",
91
91
  "cheerio": "1.2.0",
package/src/sqs.js CHANGED
@@ -98,7 +98,7 @@ class SQS {
98
98
  const data = await this.sqsClient.send(msgCommand);
99
99
  const queueName = queueUrl?.split('/').pop() || 'unknown';
100
100
  const messageType = body.type || 'unknown';
101
- this.log.info(`Success, message sent. Queue: ${queueName}, Type: ${messageType}, MessageID: ${data.MessageId}${body.traceId ? `, TraceID: ${body.traceId}` : ''}`);
101
+ this.log.debug(`Message sent. Queue: ${queueName}, Type: ${messageType}, MessageID: ${data.MessageId}${body.traceId ? `, TraceID: ${body.traceId}` : ''}`);
102
102
  } catch (e) {
103
103
  const { type, code, message: msg } = e;
104
104
  this.log.error(`Message send failed. Type: ${type}, Code: ${code}, Message: ${msg}`, e);