@logtape/cloudwatch-logs 1.0.0-dev.211 → 1.0.0-dev.212
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/deno.json +1 -1
- package/package.json +2 -2
- package/sink.integration.test.ts +2 -2
package/deno.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@logtape/cloudwatch-logs",
|
|
3
|
-
"version": "1.0.0-dev.
|
|
3
|
+
"version": "1.0.0-dev.212+23597cfe",
|
|
4
4
|
"description": "AWS CloudWatch Logs sink for LogTape",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"logging",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"./package.json": "./package.json"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"@logtape/logtape": "1.0.0-dev.
|
|
45
|
+
"@logtape/logtape": "1.0.0-dev.212+23597cfe"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@aws-sdk/client-cloudwatch-logs": "^3.0.0"
|
package/sink.integration.test.ts
CHANGED
|
@@ -18,7 +18,7 @@ type Describe = (name: string, run: () => void | Promise<void>) => void;
|
|
|
18
18
|
let test: Describe & { skip?: Describe } = suite(import.meta);
|
|
19
19
|
|
|
20
20
|
// Skip integration tests unless AWS credentials are provided
|
|
21
|
-
// Also skip on Bun
|
|
21
|
+
// Also skip on Bun due to AWS SDK response parsing issues
|
|
22
22
|
const skipIntegrationTests = !process.env.AWS_ACCESS_KEY_ID ||
|
|
23
23
|
!process.env.AWS_SECRET_ACCESS_KEY ||
|
|
24
24
|
!process.env.AWS_REGION ||
|
|
@@ -27,7 +27,7 @@ const skipIntegrationTests = !process.env.AWS_ACCESS_KEY_ID ||
|
|
|
27
27
|
if (skipIntegrationTests) {
|
|
28
28
|
if ("Bun" in globalThis) {
|
|
29
29
|
console.warn(
|
|
30
|
-
"⚠️ Skipping CloudWatch Logs integration tests on Bun runtime due to AWS SDK
|
|
30
|
+
"⚠️ Skipping CloudWatch Logs integration tests on Bun runtime due to AWS SDK response parsing issues.",
|
|
31
31
|
);
|
|
32
32
|
} else {
|
|
33
33
|
console.warn(
|