aws-delivlib 14.15.95 → 14.15.97

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.
Files changed (23) hide show
  1. package/lib/custom-resource-handlers/src/certificate-signing-request.tsbuildinfo +1 -1
  2. package/lib/custom-resource-handlers/src/pgp-secret.tsbuildinfo +1 -1
  3. package/lib/custom-resource-handlers/src/private-key.tsbuildinfo +1 -1
  4. package/lib/package-integrity/handler/validate.bundle.js +80 -71
  5. package/lib/publishing/github/node_modules/.yarn-integrity +1 -1
  6. package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/README.md +1 -1
  7. package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/async_hooks.d.ts +64 -0
  8. package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/buffer.buffer.d.ts +2 -0
  9. package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/buffer.d.ts +2 -2
  10. package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/cluster.d.ts +1 -1
  11. package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/diagnostics_channel.d.ts +20 -1
  12. package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/fs/promises.d.ts +5 -15
  13. package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/fs.d.ts +51 -7
  14. package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/globals.d.ts +140 -280
  15. package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/http.d.ts +22 -1
  16. package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/net.d.ts +12 -6
  17. package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/package.json +2 -2
  18. package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/querystring.d.ts +2 -3
  19. package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/stream/web.d.ts +3 -3
  20. package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/tls.d.ts +1 -1
  21. package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +2 -0
  22. package/lib/publishing/github/node_modules/@types/jsonwebtoken/node_modules/@types/node/util.d.ts +13 -0
  23. package/package.json +8 -8
@@ -448,6 +448,8 @@ declare module "buffer" {
448
448
  */
449
449
  subarray(start?: number, end?: number): Buffer;
450
450
  }
451
+ type NonSharedBuffer = Buffer;
452
+ type AllowSharedBuffer = Buffer;
451
453
  }
452
454
  /** @deprecated Use `Buffer.allocUnsafeSlow()` instead. */
453
455
  var SlowBuffer: {
@@ -1466,6 +1466,18 @@ declare module "util" {
1466
1466
  | "reset"
1467
1467
  | "strikethrough"
1468
1468
  | "underline";
1469
+ export interface StyleTextOptions {
1470
+ /**
1471
+ * When true, `stream` is checked to see if it can handle colors.
1472
+ * @default true
1473
+ */
1474
+ validateStream?: boolean | undefined;
1475
+ /**
1476
+ * A stream that will be validated if it can be colored.
1477
+ * @default process.stdout
1478
+ */
1479
+ stream?: NodeJS.WritableStream | undefined;
1480
+ }
1469
1481
  /**
1470
1482
  * This function returns a formatted text considering the `format` passed
1471
1483
  * for printing in a terminal. It is aware of the terminal's capabilities
@@ -1518,6 +1530,7 @@ declare module "util" {
1518
1530
  | Modifiers
1519
1531
  | Array<ForegroundColors | BackgroundColors | Modifiers>,
1520
1532
  text: string,
1533
+ options?: StyleTextOptions,
1521
1534
  ): string;
1522
1535
  /**
1523
1536
  * An implementation of the [WHATWG Encoding Standard](https://encoding.spec.whatwg.org/) `TextDecoder` API.
package/package.json CHANGED
@@ -37,11 +37,11 @@
37
37
  "organization": false
38
38
  },
39
39
  "devDependencies": {
40
- "@aws-sdk/client-cloudwatch": "^3.799.0",
41
- "@aws-sdk/client-codepipeline": "^3.799.0",
42
- "@aws-sdk/client-s3": "^3.802.0",
43
- "@aws-sdk/client-secrets-manager": "^3.799.0",
44
- "@aws-sdk/client-ssm": "^3.799.0",
40
+ "@aws-sdk/client-cloudwatch": "^3.804.0",
41
+ "@aws-sdk/client-codepipeline": "^3.804.0",
42
+ "@aws-sdk/client-s3": "^3.804.0",
43
+ "@aws-sdk/client-secrets-manager": "^3.804.0",
44
+ "@aws-sdk/client-ssm": "^3.804.0",
45
45
  "@stylistic/eslint-plugin": "^2",
46
46
  "@types/adm-zip": "^0.5.7",
47
47
  "@types/aws-lambda": "^8.10.149",
@@ -57,7 +57,7 @@
57
57
  "aws-cdk-lib": "2.187.0",
58
58
  "commit-and-tag-version": "^12",
59
59
  "constructs": "10.1.31",
60
- "esbuild": "^0.25.3",
60
+ "esbuild": "^0.25.4",
61
61
  "eslint": "^9",
62
62
  "eslint-import-resolver-typescript": "^2.7.1",
63
63
  "eslint-plugin-import": "^2.31.0",
@@ -68,7 +68,7 @@
68
68
  "JSONStream": "^1.3.5",
69
69
  "minipass": "3.2.1",
70
70
  "node-ical": "0.15.1",
71
- "projen": "^0.91.29",
71
+ "projen": "^0.91.30",
72
72
  "rrule": "^2.8.1",
73
73
  "standard-version": "^9",
74
74
  "tar": "^6.2.1",
@@ -97,7 +97,7 @@
97
97
  "publishConfig": {
98
98
  "access": "public"
99
99
  },
100
- "version": "14.15.95",
100
+ "version": "14.15.97",
101
101
  "jest": {
102
102
  "coverageProvider": "v8",
103
103
  "testMatch": [