@adobe/spacecat-shared-athena-client 1.3.3 → 1.3.5
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/package.json +2 -2
- package/src/index.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [@adobe/spacecat-shared-athena-client-v1.3.5](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-athena-client-v1.3.4...@adobe/spacecat-shared-athena-client-v1.3.5) (2025-09-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* remove unnecessary logs to reduce Coralogix usage ([#947](https://github.com/adobe/spacecat-shared/issues/947)) ([c93fa4f](https://github.com/adobe/spacecat-shared/commit/c93fa4f69238106caa0f8150df029e4535c99e39))
|
|
7
|
+
|
|
8
|
+
# [@adobe/spacecat-shared-athena-client-v1.3.4](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-athena-client-v1.3.3...@adobe/spacecat-shared-athena-client-v1.3.4) (2025-09-20)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** update external fixes ([#969](https://github.com/adobe/spacecat-shared/issues/969)) ([d722c62](https://github.com/adobe/spacecat-shared/commit/d722c623193fdbf292d96d71236cb4396db7ce3b))
|
|
14
|
+
|
|
1
15
|
# [@adobe/spacecat-shared-athena-client-v1.3.3](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-athena-client-v1.3.2...@adobe/spacecat-shared-athena-client-v1.3.3) (2025-09-16)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/spacecat-shared-athena-client",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.5",
|
|
4
4
|
"description": "Shared modules of the Spacecat Services - AWS Athena Client",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@aws-sdk/client-athena": "3.
|
|
38
|
+
"@aws-sdk/client-athena": "3.893.0",
|
|
39
39
|
"@adobe/spacecat-shared-utils": "1.48.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
package/src/index.js
CHANGED
|
@@ -192,7 +192,7 @@ export class AWSAthenaClient {
|
|
|
192
192
|
maxPollAttempts = this.maxPollAttempts,
|
|
193
193
|
} = opts;
|
|
194
194
|
|
|
195
|
-
this.log.
|
|
195
|
+
this.log.debug(`[Athena Client] Executing: ${description}`);
|
|
196
196
|
|
|
197
197
|
const queryExecutionId = await this.#startQueryWithRetry(
|
|
198
198
|
sql,
|
|
@@ -251,7 +251,7 @@ export class AWSAthenaClient {
|
|
|
251
251
|
}
|
|
252
252
|
/* c8 ignore stop */
|
|
253
253
|
|
|
254
|
-
this.log.
|
|
254
|
+
this.log.debug(`[Athena Client] Fetched ${totalRows} total rows across ${pageCount} pages`);
|
|
255
255
|
return allResults;
|
|
256
256
|
}
|
|
257
257
|
}
|