@adobe/spacecat-shared-athena-client 1.3.4 → 1.3.6

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,17 @@
1
+ # [@adobe/spacecat-shared-athena-client-v1.3.6](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-athena-client-v1.3.5...@adobe/spacecat-shared-athena-client-v1.3.6) (2025-10-25)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update external fixes ([#1046](https://github.com/adobe/spacecat-shared/issues/1046)) ([bb6e118](https://github.com/adobe/spacecat-shared/commit/bb6e11886b323f73624fcb9e3c2b14d318aa00c9))
7
+
8
+ # [@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)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * 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))
14
+
1
15
  # [@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)
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.4",
3
+ "version": "1.3.6",
4
4
  "description": "Shared modules of the Spacecat Services - AWS Athena Client",
5
5
  "type": "module",
6
6
  "engines": {
@@ -35,14 +35,14 @@
35
35
  "access": "public"
36
36
  },
37
37
  "dependencies": {
38
- "@aws-sdk/client-athena": "3.893.0",
38
+ "@aws-sdk/client-athena": "3.917.0",
39
39
  "@adobe/spacecat-shared-utils": "1.48.0"
40
40
  },
41
41
  "devDependencies": {
42
- "chai": "6.0.1",
42
+ "chai": "6.2.0",
43
43
  "chai-as-promised": "8.0.2",
44
44
  "sinon": "21.0.0",
45
45
  "sinon-chai": "4.0.1",
46
- "typescript": "5.9.2"
46
+ "typescript": "5.9.3"
47
47
  }
48
48
  }
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.info(`[Athena Client] Executing: ${description}`);
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.info(`[Athena Client] Fetched ${totalRows} total rows across ${pageCount} pages`);
254
+ this.log.debug(`[Athena Client] Fetched ${totalRows} total rows across ${pageCount} pages`);
255
255
  return allResults;
256
256
  }
257
257
  }