diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8497efc3a..b87ec8576 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -38,6 +38,7 @@ jobs: run: |- git add . git diff --staged --patch --exit-code > repo.patch || echo "self_mutation_happened=true" >> $GITHUB_OUTPUT + shell: bash working-directory: ./ - name: Upload patch if: steps.self_mutation.outputs.self_mutation_happened diff --git a/.github/workflows/upgrade.yml b/.github/workflows/upgrade.yml index f8b9d2f1f..57e1f11af 100644 --- a/.github/workflows/upgrade.yml +++ b/.github/workflows/upgrade.yml @@ -29,6 +29,7 @@ jobs: run: |- git add . git diff --staged --patch --exit-code > repo.patch || echo "patch_created=true" >> $GITHUB_OUTPUT + shell: bash working-directory: ./ - name: Upload patch if: steps.create_patch.outputs.patch_created diff --git a/.projenrc.ts b/.projenrc.ts index 7cb46327b..a903b1a5a 100644 --- a/.projenrc.ts +++ b/.projenrc.ts @@ -17,6 +17,8 @@ import { RecordPublishingTimestamp } from './projenrc/record-publishing-timestam import { DocType, S3DocsPublishing } from './projenrc/s3-docs-publishing'; import { TypecheckTests } from './projenrc/TypecheckTests'; +// #region shared config + // 5.7 sometimes gives a weird error in `ts-jest` in `@aws-cdk/cli-lib-alpha` // https://github.com/microsoft/TypeScript/issues/60159 const TYPESCRIPT_VERSION = '5.6'; @@ -97,10 +99,6 @@ function configureProject(x: A): A { const POWERFUL_RUNNER = 'aws-cdk_ubuntu-latest_16-core'; -const workflowRunsOn = [ - POWERFUL_RUNNER, -]; - // Ignore patterns that apply both to the CLI and to cli-lib const ADDITIONAL_CLI_IGNORE_PATTERNS = [ 'db.json.gz', @@ -203,6 +201,10 @@ function transitiveToolkitPackages(thisPkg: string) { return transitiveFeaturesAndFixes(thisPkg, toolkitPackages.filter(name => name !== thisPkg)); } +// #endregion +////////////////////////////////////////////////////////////////////// +// #region Monorepo + const repoProject = new yarn.Monorepo({ projenrcTs: true, name: 'aws-cdk-cli', @@ -232,7 +234,7 @@ const repoProject = new yarn.Monorepo({ }, workflowNodeVersion: 'lts/*', - workflowRunsOn, + workflowRunsOn: [POWERFUL_RUNNER], gitignore: ['.DS_Store', '.tools'], autoApproveUpgrades: true, @@ -367,7 +369,9 @@ function genericCdkProps(props: GenericProps = {}) { } satisfies Partial; } +// #endregion ////////////////////////////////////////////////////////////////////// +// #region @aws-cdk/cloud-assembly-schema const cloudAssemblySchema = configureProject( new yarn.TypeScriptWorkspace({ @@ -438,7 +442,9 @@ new JsiiBuild(cloudAssemblySchema, { cloudAssemblySchema.addPackageIgnore('**/scripts'); })(); +// #endregion ////////////////////////////////////////////////////////////////////// +// #region @aws-cdk/cloudformation-diff const cloudFormationDiff = configureProject( new yarn.TypeScriptWorkspace({ @@ -446,6 +452,7 @@ const cloudFormationDiff = configureProject( parent: repo, name: '@aws-cdk/cloudformation-diff', description: 'Utilities to diff CDK stacks against CloudFormation templates', + majorVersion: 2, srcdir: 'lib', devDeps: [ 'fast-check', @@ -483,7 +490,9 @@ const cloudFormationDiff = configureProject( }), ); +// #endregion ////////////////////////////////////////////////////////////////////// +// #region @aws-cdk/cx-api // cx-api currently is generated from `aws-cdk-lib` at build time. Not breaking // this dependency right now. @@ -520,7 +529,9 @@ const cxApi = overrideEslint( ); */ +// #endregion ////////////////////////////////////////////////////////////////////// +// #region @aws-cdk/yarn-cling const yarnCling = configureProject( new yarn.TypeScriptWorkspace({ @@ -550,7 +561,9 @@ const yarnCling = configureProject( ); yarnCling.testTask.prependExec('ln -sf ../../cdk test/test-fixture/jsii/node_modules/'); +// #endregion ////////////////////////////////////////////////////////////////////// +// #region @aws-cdk/user-input-gen const yargsGen = configureProject( new yarn.TypeScriptWorkspace({ @@ -572,7 +585,9 @@ const yargsGen = configureProject( }), ); +// #endregion ////////////////////////////////////////////////////////////////////// +// #region @aws-cdk/cli-plugin-contract // This should be deprecated, but only after the move const cliPluginContract = configureProject( @@ -581,6 +596,7 @@ const cliPluginContract = configureProject( parent: repo, name: '@aws-cdk/cli-plugin-contract', description: 'Contract between the CLI and authentication plugins, for the exchange of AWS credentials', + majorVersion: 2, srcdir: 'lib', deps: [ ], @@ -594,7 +610,9 @@ const cliPluginContract = configureProject( }), ); +// #endregion ////////////////////////////////////////////////////////////////////// +// #region @aws-cdk/cdk-assets-lib const cdkAssetsLib = configureProject( new yarn.TypeScriptWorkspace({ @@ -676,7 +694,9 @@ cdkAssetsLib.gitignore.addPatterns( // This package happens do something only slightly naughty cdkAssetsLib.eslint?.addRules({ 'jest/no-export': ['off'] }); +// #endregion ////////////////////////////////////////////////////////////////////// +// #region cdk-assets const cdkAssetsCli = configureProject( new yarn.TypeScriptWorkspace({ @@ -684,6 +704,7 @@ const cdkAssetsCli = configureProject( parent: repo, name: 'cdk-assets', description: 'CDK Asset Publishing Tool', + majorVersion: 4, srcdir: 'lib', deps: [ cdkAssetsLib, @@ -710,7 +731,6 @@ const cdkAssetsCli = configureProject( }, include: ['bin/**/*.ts'], }, - majorVersion: 4, jestOptions: jestOptionsForProject({ jestConfig: { @@ -738,11 +758,14 @@ new BundleCli(cdkAssetsCli, { test: 'bin/cdk-assets --version', entryPoints: [ 'bin/cdk-assets.js', + 'bin/docker-credential-cdk-assets.js', ], minifyWhitespace: true, }); +// #endregion ////////////////////////////////////////////////////////////////////// +// #region @aws-cdk/toolkit-lib const TOOLKIT_LIB_EXCLUDE_PATTERNS = [ 'lib/init-templates/*/typescript/*/*.template.ts', @@ -762,6 +785,7 @@ const toolkitLib = configureProject( parent: repo, name: '@aws-cdk/toolkit-lib', description: 'AWS CDK Programmatic Toolkit Library', + majorVersion: 1, srcdir: 'lib', peerDeps: [ cliPluginContract.customizeReference({ versionType: 'any-minor' }), // allow consumers to easily de-depulicate this @@ -867,7 +891,6 @@ const toolkitLib = configureProject( rootDir: '.', // shouldn't be required but something broke... check again once we have gotten rid of the tmpToolkitHelpers package }, }, - majorVersion: 1, nextVersionCommand: 'tsx ../../../projenrc/next-version.ts maybeRc', }), ); @@ -1044,7 +1067,9 @@ toolkitLib.addTask('publish-local', { receiveArgs: true, }); +// #endregion ////////////////////////////////////////////////////////////////////// +// #region aws-cdk const cli = configureProject( new yarn.TypeScriptWorkspace({ @@ -1052,6 +1077,7 @@ const cli = configureProject( parent: repo, name: 'aws-cdk', description: 'AWS CDK CLI, the command line tool for CDK apps', + majorVersion: 2, srcdir: 'lib', devDeps: [ yargsGen, @@ -1188,7 +1214,6 @@ const cli = configureProject( nextVersionCommand: 'tsx ../../projenrc/next-version.ts neverMajor maybeRc', releasableCommits: transitiveToolkitPackages('aws-cdk'), - majorVersion: 2, }), ); @@ -1302,7 +1327,9 @@ for (const tsconfig of [cli.tsconfig, cli.tsconfigDev]) { tsconfig?.addExclude('vendor/**/*'); } +// #endregion ////////////////////////////////////////////////////////////////////// +// #region @aws-cdk/cli-lib-alpha const CLI_LIB_EXCLUDE_PATTERNS = [ 'lib/init-templates/*/typescript/*/*.template.ts', @@ -1315,12 +1342,12 @@ const cliLibAlpha = configureProject( name: '@aws-cdk/cli-lib-alpha', entrypoint: 'lib/main.js', // Bundled entrypoint description: 'AWS CDK Programmatic CLI library', + majorVersion: 2, srcdir: 'lib', devDeps: ['aws-cdk-lib', cli.customizeReference({ versionType: 'exact' }), 'constructs'], disableTsconfig: true, nextVersionCommand: `tsx ../../../projenrc/next-version.ts copyVersion:../../../${cliPackageJson} append:-alpha.0`, releasableCommits: transitiveToolkitPackages('@aws-cdk/cli-lib-alpha'), - majorVersion: 2, eslintOptions: { dirs: ['lib'], ignorePatterns: [ @@ -1410,7 +1437,9 @@ for (const tsconfig of [cliLibAlpha.tsconfigDev]) { } } +// #endregion ////////////////////////////////////////////////////////////////////// +// #region @aws-cdk/cdk-cli-wrapper const cdkCliWrapper = configureProject( new yarn.TypeScriptWorkspace({ @@ -1452,7 +1481,9 @@ const cdkCliWrapper = configureProject( })(); */ +// #endregion ////////////////////////////////////////////////////////////////////// +// #region cdk const cdkAliasPackage = configureProject( new yarn.TypeScriptWorkspace({ @@ -1474,7 +1505,9 @@ const cdkAliasPackage = configureProject( ); void cdkAliasPackage; +// #endregion ////////////////////////////////////////////////////////////////////// +// #region @aws-cdk/integ-runner const integRunner = configureProject( new yarn.TypeScriptWorkspace({ @@ -1482,6 +1515,7 @@ const integRunner = configureProject( parent: repo, name: '@aws-cdk/integ-runner', description: 'CDK Integration Testing Tool', + majorVersion: 2, srcdir: 'lib', deps: [ cloudAssemblySchema.customizeReference({ versionType: 'any-future' }), @@ -1565,7 +1599,9 @@ new BundleCli(integRunner, { minifyWhitespace: true, }); +// #endregion ////////////////////////////////////////////////////////////////////// +// #region @aws-cdk-testing/cli-integ const cliInteg = configureProject( new yarn.TypeScriptWorkspace({ @@ -1674,7 +1710,9 @@ cliInteg.npmignore?.addPatterns('!resources/**/*'); cliInteg.postCompileTask.exec('yarn-cling'); cliInteg.gitignore.addPatterns('npm-shrinkwrap.json'); +// #endregion ////////////////////////////////////////////////////////////////////// +// #region shared setup // The pj.github.Dependabot component is only for a single Node project, // but we need multiple non-Node projects @@ -1777,3 +1815,5 @@ repoProject.github?.tryFindWorkflow('pull-request-lint')?.file?.patch( ); repo.synth(); + +// #endregion diff --git a/package.json b/package.json index 529b1cedb..b3b565834 100644 --- a/package.json +++ b/package.json @@ -33,14 +33,14 @@ "constructs": "^10.0.0", "eslint": "^9", "eslint-import-resolver-typescript": "^3.10.1", - "eslint-plugin-import": "^2.31.0", + "eslint-plugin-import": "^2.32.0", "eslint-plugin-jest": "^28.14.0", "eslint-plugin-jsdoc": "^50.8.0", "glob": "^11.0.3", "jest-junit": "^16", "nx": "^20.8.2", "prettier": "^2.8", - "projen": "^0.92.10", + "projen": "^0.94.0", "semver": "^7.7.2", "ts-node": "^10.9.2", "typescript": "5.6" diff --git a/packages/@aws-cdk-testing/cli-integ/package.json b/packages/@aws-cdk-testing/cli-integ/package.json index cd85dcc2d..04c341aae 100644 --- a/packages/@aws-cdk-testing/cli-integ/package.json +++ b/packages/@aws-cdk-testing/cli-integ/package.json @@ -56,10 +56,10 @@ "eslint": "^9", "eslint-config-prettier": "^9.1.0", "eslint-import-resolver-typescript": "^3.10.1", - "eslint-plugin-import": "^2.31.0", + "eslint-plugin-import": "^2.32.0", "eslint-plugin-jest": "^28.14.0", "eslint-plugin-jsdoc": "^50.8.0", - "eslint-plugin-prettier": "^5.4.1", + "eslint-plugin-prettier": "^5.5.1", "jest": "^29.7.0", "jest-junit": "^16", "license-checker": "^25.0.1", @@ -68,22 +68,22 @@ "typescript": "5.6" }, "dependencies": { - "@aws-sdk/client-cloudformation": "3.830.0", - "@aws-sdk/client-codeartifact": "3.830.0", - "@aws-sdk/client-ecr": "3.830.0", - "@aws-sdk/client-ecr-public": "3.830.0", - "@aws-sdk/client-ecs": "3.830.0", - "@aws-sdk/client-iam": "3.830.0", - "@aws-sdk/client-lambda": "3.830.0", - "@aws-sdk/client-s3": "3.830.0", - "@aws-sdk/client-sns": "3.830.0", - "@aws-sdk/client-sso": "3.830.0", - "@aws-sdk/client-sts": "3.830.0", - "@aws-sdk/credential-providers": "3.830.0", - "@cdklabs/cdk-atmosphere-client": "^0.0.54", + "@aws-sdk/client-cloudformation": "3.839.0", + "@aws-sdk/client-codeartifact": "3.839.0", + "@aws-sdk/client-ecr": "3.839.0", + "@aws-sdk/client-ecr-public": "3.839.0", + "@aws-sdk/client-ecs": "3.839.0", + "@aws-sdk/client-iam": "3.839.0", + "@aws-sdk/client-lambda": "3.839.0", + "@aws-sdk/client-s3": "3.839.0", + "@aws-sdk/client-sns": "3.839.0", + "@aws-sdk/client-sso": "3.839.0", + "@aws-sdk/client-sts": "3.839.0", + "@aws-sdk/credential-providers": "3.839.0", + "@cdklabs/cdk-atmosphere-client": "^0.0.56", "@octokit/rest": "^20", "@smithy/types": "^4.3.1", - "@smithy/util-retry": "^4.0.5", + "@smithy/util-retry": "^4.0.6", "axios": "^1", "chalk": "^4", "fs-extra": "^9", diff --git a/packages/@aws-cdk-testing/cli-integ/tests/cli-integ-tests/cdk-assets/cdk-assets-docker-credential.integtest.ts b/packages/@aws-cdk-testing/cli-integ/tests/cli-integ-tests/cdk-assets/cdk-assets-docker-credential.integtest.ts new file mode 100644 index 000000000..8da62e728 --- /dev/null +++ b/packages/@aws-cdk-testing/cli-integ/tests/cli-integ-tests/cdk-assets/cdk-assets-docker-credential.integtest.ts @@ -0,0 +1,39 @@ +import * as fs from 'fs'; +import * as path from 'path'; +import { GetCallerIdentityCommand } from '@aws-sdk/client-sts'; +import { integTest, withDefaultFixture } from '../../../lib'; + +jest.setTimeout(2 * 60 * 60_000); // Includes the time to acquire locks, worst-case single-threaded runtime + +integTest( + 'docker-credential-cdk-assets can be invoked as a program', + withDefaultFixture(async (fixture) => { + await fixture.shell(['npm', 'init', '-y']); + await fixture.shell(['npm', 'install', 'cdk-assets@latest']); + + const caller = await fixture.aws.sts.send(new GetCallerIdentityCommand()); + const domain = 'integ.test.domain'; + const credsFilePath = path.join(fixture.integTestDir, 'cdk-docker-creds.json'); + + fs.writeFileSync(credsFilePath, JSON.stringify({ + version: '1.0', + domainCredentials: { + [domain]: { + ecrRepository: true, + roleArn: caller.Arn, + }, + }, + })); + + const input = path.join(fixture.integTestDir, 'input.txt'); + fs.writeFileSync(input, `${domain}\n`); + + await fixture.shell(['node', './node_modules/cdk-assets/bin/docker-credential-cdk-assets', 'get'], { + modEnv: { + ...fixture.cdkShellEnv(), + CDK_DOCKER_CREDS_FILE: credsFilePath, + }, + stdio: [fs.openSync(input, 'r')], + }); + }), +); diff --git a/packages/@aws-cdk-testing/cli-integ/tests/cli-integ-tests/ci-output/cdk-ci-true-output-to-stdout.integtest.ts b/packages/@aws-cdk-testing/cli-integ/tests/cli-integ-tests/ci-output/cdk-ci-true-output-to-stdout.integtest.ts index c292cb97f..1e2d6b994 100644 --- a/packages/@aws-cdk-testing/cli-integ/tests/cli-integ-tests/ci-output/cdk-ci-true-output-to-stdout.integtest.ts +++ b/packages/@aws-cdk-testing/cli-integ/tests/cli-integ-tests/ci-output/cdk-ci-true-output-to-stdout.integtest.ts @@ -11,9 +11,14 @@ integTest( onlyStderr: true, modEnv: { CI: 'true', + + // Disable all Node.js version warnings JSII_SILENCE_WARNING_KNOWN_BROKEN_NODE_VERSION: 'true', JSII_SILENCE_WARNING_UNTESTED_NODE_VERSION: 'true', JSII_SILENCE_WARNING_DEPRECATED_NODE_VERSION: 'true', + + // Make sure we don't warn on use of deprecated APIs (that cannot be redirected) + JSII_DEPRECATED: 'quiet', }, options: ['--no-notices'], }; diff --git a/packages/@aws-cdk-testing/cli-integ/tests/cli-integ-tests/cli-telemetry/cdk-cli-telemetry-adds-context-value.integtest.ts b/packages/@aws-cdk-testing/cli-integ/tests/cli-integ-tests/cli-telemetry/cdk-cli-telemetry-adds-context-value.integtest.ts new file mode 100644 index 000000000..74e039bc2 --- /dev/null +++ b/packages/@aws-cdk-testing/cli-integ/tests/cli-integ-tests/cli-telemetry/cdk-cli-telemetry-adds-context-value.integtest.ts @@ -0,0 +1,51 @@ +import { promises as fs } from 'fs'; +import * as path from 'path'; +import { integTest, withDefaultFixture } from '../../../lib'; + +jest.setTimeout(2 * 60 * 60_000); // Includes the time to acquire locks, worst-case single-threaded runtime + +integTest( + 'CLI Telemetry adds context value to cdk.context.json', + withDefaultFixture(async (fixture) => { + const contextFile = path.join(fixture.integTestDir, 'cdk.context.json'); + const context = { + existedBefore: 'this was here', + }; + await fs.writeFile( + contextFile, + JSON.stringify(context), + ); + try { + await fixture.cdk(['cli-telemetry', '--disable']); + const newContext = JSON.parse((await fs.readFile( + contextFile, + )).toString()); + expect(newContext).toEqual({ + ...context, + ['cli-telemetry']: false, + }); + + // Test that cli-telemetry enable works too + await fixture.cdk(['cli-telemetry', '--enable']); + const newerContext = JSON.parse((await fs.readFile( + contextFile, + )).toString()); + expect(newerContext).toEqual({ + ...context, + ['cli-telemetry']: true, + }); + + // Test that cli-telemetry --no-enable works (equals --disable) + await fixture.cdk(['cli-telemetry', '--no-enable']); + const newestContext = JSON.parse((await fs.readFile( + contextFile, + )).toString()); + expect(newestContext).toEqual({ + ...context, + ['cli-telemetry']: false, + }); + } finally { + await fs.unlink(path.join(fixture.integTestDir, 'cdk.context.json')); + } + }), +); diff --git a/packages/@aws-cdk/cdk-assets-lib/lib/aws-types.ts b/packages/@aws-cdk/cdk-assets-lib/lib/aws-types.ts index ab6f68e25..d57de8e38 100644 --- a/packages/@aws-cdk/cdk-assets-lib/lib/aws-types.ts +++ b/packages/@aws-cdk/cdk-assets-lib/lib/aws-types.ts @@ -57,19 +57,19 @@ export interface GetBucketEncryptionCommandInput { ExpectedBucketOwner?: string; } -export const ServerSideEncryption = { +export const ServerSideEncryptionIn = { AES256: 'AES256', aws_kms: 'aws:kms', aws_kms_dsse: 'aws:kms:dsse', } as const; -export type ServerSideEncryption = (typeof ServerSideEncryption)[keyof typeof ServerSideEncryption]; +export type ServerSideEncryption = InOut; -export interface ServerSideEncryptionByDefault { +export interface ServerSideEncryptionByDefault { /** *

Server-side encryption algorithm to use for the default encryption.

*/ - SSEAlgorithm: ServerSideEncryption | undefined; + SSEAlgorithm: ServerSideEncryption | undefined; /** *

Amazon Web Services Key Management Service (KMS) customer Amazon Web Services KMS key ID to use for the default * encryption. This parameter is allowed if and only if SSEAlgorithm is set to @@ -102,13 +102,13 @@ export interface ServerSideEncryptionByDefault { KMSMasterKeyID?: string; } -export interface ServerSideEncryptionRule { +export interface ServerSideEncryptionRule

{ /** *

Specifies the default server-side encryption to apply to new objects in the bucket. If a * PUT Object request doesn't specify any server-side encryption, this default encryption will * be applied.

*/ - ApplyServerSideEncryptionByDefault?: ServerSideEncryptionByDefault; + ApplyServerSideEncryptionByDefault?: ServerSideEncryptionByDefault; /** *

Specifies whether Amazon S3 should use an S3 Bucket Key with server-side encryption using KMS * (SSE-KMS) for new objects in the bucket. Existing objects are not affected. Setting the @@ -120,19 +120,19 @@ export interface ServerSideEncryptionRule { BucketKeyEnabled?: boolean; } -export interface ServerSideEncryptionConfiguration { +export interface ServerSideEncryptionConfiguration

{ /** *

Container for information about a particular server-side encryption configuration * rule.

*/ - Rules: ServerSideEncryptionRule[] | undefined; + Rules: ServerSideEncryptionRule[] | undefined; } export interface GetBucketEncryptionOutput { /** *

Specifies the default server-side-encryption configuration.

*/ - ServerSideEncryptionConfiguration?: ServerSideEncryptionConfiguration; + ServerSideEncryptionConfiguration?: ServerSideEncryptionConfiguration<'out'>; } export interface GetBucketEncryptionCommandOutput @@ -362,7 +362,7 @@ export type ChecksumAlgorithmIn = (typeof ChecksumAlgorithmIn)[keyof typeof Chec export type ChecksumAlgorithmOut = string; -export const ObjectStorageClass = { +export const ObjectStorageClassIn = { DEEP_ARCHIVE: 'DEEP_ARCHIVE', EXPRESS_ONEZONE: 'EXPRESS_ONEZONE', GLACIER: 'GLACIER', @@ -376,7 +376,7 @@ export const ObjectStorageClass = { STANDARD_IA: 'STANDARD_IA', } as const; -export type ObjectStorageClass = (typeof ObjectStorageClass)[keyof typeof ObjectStorageClass]; +export type ObjectStorageClass = InOut; export interface Owner { /** @@ -520,7 +520,7 @@ export interface _Object { * Directory buckets - Only the S3 Express One Zone storage class is supported by directory buckets to store objects.

* */ - StorageClass?: ObjectStorageClass; + StorageClass?: ObjectStorageClass; /** *

The owner of the object

@@ -1009,7 +1009,7 @@ export interface PutObjectRequest { *

* Directory buckets - For directory buckets, only the server-side encryption with Amazon S3 managed keys (SSE-S3) (AES256) value is supported.

*/ - ServerSideEncryption?: ServerSideEncryption; + ServerSideEncryption?: ServerSideEncryption<'in'>; /** *

By default, Amazon S3 uses the STANDARD Storage Class to store newly created objects. The * STANDARD storage class provides high durability and high availability. Depending on @@ -1242,7 +1242,7 @@ export interface CompleteMultipartUploadOutput { *

For directory buckets, only server-side encryption with Amazon S3 managed keys (SSE-S3) (AES256) is supported.

* */ - ServerSideEncryption?: ServerSideEncryption; + ServerSideEncryption?: ServerSideEncryption<'out'>; /** *

Version ID of the newly created object, in case the bucket has versioning turned * on.

diff --git a/packages/@aws-cdk/cdk-assets-lib/package.json b/packages/@aws-cdk/cdk-assets-lib/package.json index a00792a94..d3197950b 100644 --- a/packages/@aws-cdk/cdk-assets-lib/package.json +++ b/packages/@aws-cdk/cdk-assets-lib/package.json @@ -46,14 +46,14 @@ "constructs": "^10.0.0", "eslint": "^9", "eslint-config-prettier": "^10.1.5", - "eslint-import-resolver-typescript": "^4.4.3", - "eslint-plugin-import": "^2.31.0", - "eslint-plugin-jest": "^28.13.5", - "eslint-plugin-jsdoc": "^51.0.1", - "eslint-plugin-prettier": "^5.4.1", + "eslint-import-resolver-typescript": "^4.4.4", + "eslint-plugin-import": "^2.32.0", + "eslint-plugin-jest": "^28.14.0", + "eslint-plugin-jsdoc": "^51.2.3", + "eslint-plugin-prettier": "^5.5.1", "fs-extra": "^11.3.0", "graceful-fs": "^4.2.11", - "jest": "^30.0.0", + "jest": "^30.0.3", "jest-junit": "^16", "jszip": "^3.10.1", "license-checker": "^25.0.1", diff --git a/packages/@aws-cdk/cdk-cli-wrapper/package.json b/packages/@aws-cdk/cdk-cli-wrapper/package.json index f323214cf..bbc9b4759 100644 --- a/packages/@aws-cdk/cdk-cli-wrapper/package.json +++ b/packages/@aws-cdk/cdk-cli-wrapper/package.json @@ -39,11 +39,11 @@ "constructs": "^10.0.0", "eslint": "^9", "eslint-config-prettier": "^10.1.5", - "eslint-import-resolver-typescript": "^4.4.3", - "eslint-plugin-import": "^2.31.0", + "eslint-import-resolver-typescript": "^4.4.4", + "eslint-plugin-import": "^2.32.0", "eslint-plugin-jest": "^28.14.0", "eslint-plugin-jsdoc": "^50.8.0", - "eslint-plugin-prettier": "^5.4.1", + "eslint-plugin-prettier": "^5.5.1", "jest": "^29.7.0", "jest-junit": "^16", "prettier": "^2.8", diff --git a/packages/@aws-cdk/cli-lib-alpha/THIRD_PARTY_LICENSES b/packages/@aws-cdk/cli-lib-alpha/THIRD_PARTY_LICENSES index 965934a3b..cc5af0bd6 100644 --- a/packages/@aws-cdk/cli-lib-alpha/THIRD_PARTY_LICENSES +++ b/packages/@aws-cdk/cli-lib-alpha/THIRD_PARTY_LICENSES @@ -618,7 +618,7 @@ The @aws-cdk/cli-lib-alpha package includes the following third-party software/l ---------------- -** @aws-sdk/client-appsync@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-appsync/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-appsync@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-appsync/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -824,7 +824,7 @@ The @aws-cdk/cli-lib-alpha package includes the following third-party software/l ---------------- -** @aws-sdk/client-cloudcontrol@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudcontrol/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-cloudcontrol@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudcontrol/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -1030,7 +1030,7 @@ The @aws-cdk/cli-lib-alpha package includes the following third-party software/l ---------------- -** @aws-sdk/client-cloudformation@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudformation/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-cloudformation@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudformation/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -1236,7 +1236,7 @@ The @aws-cdk/cli-lib-alpha package includes the following third-party software/l ---------------- -** @aws-sdk/client-cloudwatch-logs@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudwatch-logs/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-cloudwatch-logs@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudwatch-logs/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -1442,7 +1442,7 @@ The @aws-cdk/cli-lib-alpha package includes the following third-party software/l ---------------- -** @aws-sdk/client-codebuild@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-codebuild/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-codebuild@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-codebuild/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -1648,7 +1648,7 @@ The @aws-cdk/cli-lib-alpha package includes the following third-party software/l ---------------- -** @aws-sdk/client-cognito-identity@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-cognito-identity/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-cognito-identity@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-cognito-identity/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -1854,7 +1854,7 @@ The @aws-cdk/cli-lib-alpha package includes the following third-party software/l ---------------- -** @aws-sdk/client-ec2@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-ec2/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-ec2@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-ec2/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -2060,7 +2060,7 @@ The @aws-cdk/cli-lib-alpha package includes the following third-party software/l ---------------- -** @aws-sdk/client-ecr@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-ecr/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-ecr@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-ecr/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -2266,7 +2266,7 @@ The @aws-cdk/cli-lib-alpha package includes the following third-party software/l ---------------- -** @aws-sdk/client-ecs@3.829.0 - https://www.npmjs.com/package/@aws-sdk/client-ecs/v/3.829.0 | Apache-2.0 +** @aws-sdk/client-ecs@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-ecs/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -2472,7 +2472,7 @@ The @aws-cdk/cli-lib-alpha package includes the following third-party software/l ---------------- -** @aws-sdk/client-elastic-load-balancing-v2@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-elastic-load-balancing-v2/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-elastic-load-balancing-v2@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-elastic-load-balancing-v2/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -2678,7 +2678,7 @@ The @aws-cdk/cli-lib-alpha package includes the following third-party software/l ---------------- -** @aws-sdk/client-iam@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-iam/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-iam@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-iam/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -2884,7 +2884,7 @@ The @aws-cdk/cli-lib-alpha package includes the following third-party software/l ---------------- -** @aws-sdk/client-kms@3.829.0 - https://www.npmjs.com/package/@aws-sdk/client-kms/v/3.829.0 | Apache-2.0 +** @aws-sdk/client-kms@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-kms/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -3090,7 +3090,7 @@ The @aws-cdk/cli-lib-alpha package includes the following third-party software/l ---------------- -** @aws-sdk/client-lambda@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-lambda/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-lambda@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-lambda/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -3296,7 +3296,7 @@ The @aws-cdk/cli-lib-alpha package includes the following third-party software/l ---------------- -** @aws-sdk/client-route-53@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-route-53/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-route-53@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-route-53/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -3502,7 +3502,7 @@ The @aws-cdk/cli-lib-alpha package includes the following third-party software/l ---------------- -** @aws-sdk/client-s3@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-s3/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-s3@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-s3/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -3708,7 +3708,7 @@ The @aws-cdk/cli-lib-alpha package includes the following third-party software/l ---------------- -** @aws-sdk/client-secrets-manager@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-secrets-manager/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-secrets-manager@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-secrets-manager/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -3914,7 +3914,7 @@ The @aws-cdk/cli-lib-alpha package includes the following third-party software/l ---------------- -** @aws-sdk/client-sfn@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-sfn/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-sfn@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-sfn/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -4120,7 +4120,7 @@ The @aws-cdk/cli-lib-alpha package includes the following third-party software/l ---------------- -** @aws-sdk/client-ssm@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-ssm/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-ssm@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-ssm/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -4326,7 +4326,7 @@ The @aws-cdk/cli-lib-alpha package includes the following third-party software/l ---------------- -** @aws-sdk/client-sso@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-sso/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-sso@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-sso/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -4532,7 +4532,7 @@ The @aws-cdk/cli-lib-alpha package includes the following third-party software/l ---------------- -** @aws-sdk/client-sts@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-sts/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-sts@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-sts/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -4738,11 +4738,11 @@ The @aws-cdk/cli-lib-alpha package includes the following third-party software/l ---------------- -** @aws-sdk/core@3.826.0 - https://www.npmjs.com/package/@aws-sdk/core/v/3.826.0 | Apache-2.0 +** @aws-sdk/core@3.839.0 - https://www.npmjs.com/package/@aws-sdk/core/v/3.839.0 | Apache-2.0 ---------------- -** @aws-sdk/credential-provider-cognito-identity@3.828.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-cognito-identity/v/3.828.0 | Apache-2.0 +** @aws-sdk/credential-provider-cognito-identity@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-cognito-identity/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -4948,7 +4948,7 @@ The @aws-cdk/cli-lib-alpha package includes the following third-party software/l ---------------- -** @aws-sdk/credential-provider-env@3.826.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-env/v/3.826.0 | Apache-2.0 +** @aws-sdk/credential-provider-env@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-env/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -5153,11 +5153,11 @@ Apache License ---------------- -** @aws-sdk/credential-provider-http@3.826.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-http/v/3.826.0 | Apache-2.0 +** @aws-sdk/credential-provider-http@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-http/v/3.839.0 | Apache-2.0 ---------------- -** @aws-sdk/credential-provider-ini@3.828.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-ini/v/3.828.0 | Apache-2.0 +** @aws-sdk/credential-provider-ini@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-ini/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -5362,7 +5362,7 @@ Apache License ---------------- -** @aws-sdk/credential-provider-node@3.828.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-node/v/3.828.0 | Apache-2.0 +** @aws-sdk/credential-provider-node@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-node/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -5567,7 +5567,7 @@ Apache License ---------------- -** @aws-sdk/credential-provider-process@3.826.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-process/v/3.826.0 | Apache-2.0 +** @aws-sdk/credential-provider-process@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-process/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -5772,7 +5772,7 @@ Apache License ---------------- -** @aws-sdk/credential-provider-sso@3.828.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-sso/v/3.828.0 | Apache-2.0 +** @aws-sdk/credential-provider-sso@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-sso/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -5977,7 +5977,7 @@ Apache License ---------------- -** @aws-sdk/credential-provider-web-identity@3.828.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-web-identity/v/3.828.0 | Apache-2.0 +** @aws-sdk/credential-provider-web-identity@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-web-identity/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -6182,7 +6182,7 @@ Apache License ---------------- -** @aws-sdk/credential-providers@3.828.0 - https://www.npmjs.com/package/@aws-sdk/credential-providers/v/3.828.0 | Apache-2.0 +** @aws-sdk/credential-providers@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-providers/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -6387,7 +6387,7 @@ Apache License ---------------- -** @aws-sdk/ec2-metadata-service@3.828.0 - https://www.npmjs.com/package/@aws-sdk/ec2-metadata-service/v/3.828.0 | Apache-2.0 +** @aws-sdk/ec2-metadata-service@3.839.0 - https://www.npmjs.com/package/@aws-sdk/ec2-metadata-service/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -6592,7 +6592,7 @@ Apache License ---------------- -** @aws-sdk/lib-storage@3.828.0 - https://www.npmjs.com/package/@aws-sdk/lib-storage/v/3.828.0 | Apache-2.0 +** @aws-sdk/lib-storage@3.839.0 - https://www.npmjs.com/package/@aws-sdk/lib-storage/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -6797,7 +6797,7 @@ Apache License ---------------- -** @aws-sdk/middleware-bucket-endpoint@3.821.0 - https://www.npmjs.com/package/@aws-sdk/middleware-bucket-endpoint/v/3.821.0 | Apache-2.0 +** @aws-sdk/middleware-bucket-endpoint@3.830.0 - https://www.npmjs.com/package/@aws-sdk/middleware-bucket-endpoint/v/3.830.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -7209,7 +7209,7 @@ Apache License ---------------- -** @aws-sdk/middleware-flexible-checksums@3.826.0 - https://www.npmjs.com/package/@aws-sdk/middleware-flexible-checksums/v/3.826.0 | Apache-2.0 +** @aws-sdk/middleware-flexible-checksums@3.839.0 - https://www.npmjs.com/package/@aws-sdk/middleware-flexible-checksums/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -8238,7 +8238,7 @@ Apache License ---------------- -** @aws-sdk/middleware-sdk-ec2@3.826.0 - https://www.npmjs.com/package/@aws-sdk/middleware-sdk-ec2/v/3.826.0 | Apache-2.0 +** @aws-sdk/middleware-sdk-ec2@3.839.0 - https://www.npmjs.com/package/@aws-sdk/middleware-sdk-ec2/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -8649,7 +8649,7 @@ Apache License ---------------- -** @aws-sdk/middleware-sdk-s3@3.826.0 - https://www.npmjs.com/package/@aws-sdk/middleware-sdk-s3/v/3.826.0 | Apache-2.0 +** @aws-sdk/middleware-sdk-s3@3.839.0 - https://www.npmjs.com/package/@aws-sdk/middleware-sdk-s3/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -9061,7 +9061,7 @@ Apache License ---------------- -** @aws-sdk/middleware-user-agent@3.828.0 - https://www.npmjs.com/package/@aws-sdk/middleware-user-agent/v/3.828.0 | Apache-2.0 +** @aws-sdk/middleware-user-agent@3.839.0 - https://www.npmjs.com/package/@aws-sdk/middleware-user-agent/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -9267,7 +9267,7 @@ Apache License ---------------- -** @aws-sdk/nested-clients@3.828.0 - https://www.npmjs.com/package/@aws-sdk/nested-clients/v/3.828.0 | Apache-2.0 +** @aws-sdk/nested-clients@3.839.0 - https://www.npmjs.com/package/@aws-sdk/nested-clients/v/3.839.0 | Apache-2.0 ---------------- @@ -9476,7 +9476,7 @@ Apache License ---------------- -** @aws-sdk/signature-v4-multi-region@3.826.0 - https://www.npmjs.com/package/@aws-sdk/signature-v4-multi-region/v/3.826.0 | Apache-2.0 +** @aws-sdk/signature-v4-multi-region@3.839.0 - https://www.npmjs.com/package/@aws-sdk/signature-v4-multi-region/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -9682,7 +9682,7 @@ Apache License ---------------- -** @aws-sdk/token-providers@3.828.0 - https://www.npmjs.com/package/@aws-sdk/token-providers/v/3.828.0 | Apache-2.0 +** @aws-sdk/token-providers@3.839.0 - https://www.npmjs.com/package/@aws-sdk/token-providers/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -10502,7 +10502,7 @@ Apache License ---------------- -** @aws-sdk/util-user-agent-node@3.828.0 - https://www.npmjs.com/package/@aws-sdk/util-user-agent-node/v/3.828.0 | Apache-2.0 +** @aws-sdk/util-user-agent-node@3.839.0 - https://www.npmjs.com/package/@aws-sdk/util-user-agent-node/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -11530,7 +11530,7 @@ Apache License ---------------- -** @smithy/core@3.5.3 - https://www.npmjs.com/package/@smithy/core/v/3.5.3 | Apache-2.0 +** @smithy/core@3.6.0 - https://www.npmjs.com/package/@smithy/core/v/3.6.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -13995,7 +13995,7 @@ Apache License ---------------- -** @smithy/middleware-endpoint@4.1.11 - https://www.npmjs.com/package/@smithy/middleware-endpoint/v/4.1.11 | Apache-2.0 +** @smithy/middleware-endpoint@4.1.13 - https://www.npmjs.com/package/@smithy/middleware-endpoint/v/4.1.13 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -14200,418 +14200,7 @@ Apache License ---------------- -** @smithy/middleware-endpoint@4.1.12 - https://www.npmjs.com/package/@smithy/middleware-endpoint/v/4.1.12 | Apache-2.0 -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - ----------------- - -** @smithy/middleware-retry@4.1.12 - https://www.npmjs.com/package/@smithy/middleware-retry/v/4.1.12 | Apache-2.0 - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - ----------------- - -** @smithy/middleware-serde@4.0.8 - https://www.npmjs.com/package/@smithy/middleware-serde/v/4.0.8 | Apache-2.0 +** @smithy/middleware-retry@4.1.14 - https://www.npmjs.com/package/@smithy/middleware-retry/v/4.1.14 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -14800,7 +14389,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -14817,8 +14406,8 @@ Apache License ---------------- -** @smithy/middleware-stack@4.0.4 - https://www.npmjs.com/package/@smithy/middleware-stack/v/4.0.4 | Apache-2.0 -Apache License +** @smithy/middleware-serde@4.0.8 - https://www.npmjs.com/package/@smithy/middleware-serde/v/4.0.8 | Apache-2.0 + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -15006,7 +14595,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -15020,9 +14609,10 @@ Apache License See the License for the specific language governing permissions and limitations under the License. + ---------------- -** @smithy/node-config-provider@4.1.3 - https://www.npmjs.com/package/@smithy/node-config-provider/v/4.1.3 | Apache-2.0 +** @smithy/middleware-stack@4.0.4 - https://www.npmjs.com/package/@smithy/middleware-stack/v/4.0.4 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -15211,7 +14801,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -15227,7 +14817,7 @@ Apache License ---------------- -** @smithy/node-http-handler@4.0.6 - https://www.npmjs.com/package/@smithy/node-http-handler/v/4.0.6 | Apache-2.0 +** @smithy/node-config-provider@4.1.3 - https://www.npmjs.com/package/@smithy/node-config-provider/v/4.1.3 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -15416,7 +15006,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -15432,7 +15022,7 @@ Apache License ---------------- -** @smithy/property-provider@4.0.4 - https://www.npmjs.com/package/@smithy/property-provider/v/4.0.4 | Apache-2.0 +** @smithy/node-http-handler@4.0.6 - https://www.npmjs.com/package/@smithy/node-http-handler/v/4.0.6 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -15637,8 +15227,8 @@ Apache License ---------------- -** @smithy/protocol-http@5.1.2 - https://www.npmjs.com/package/@smithy/protocol-http/v/5.1.2 | Apache-2.0 - Apache License +** @smithy/property-provider@4.0.4 - https://www.npmjs.com/package/@smithy/property-provider/v/4.0.4 | Apache-2.0 +Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -15826,7 +15416,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -15840,10 +15430,9 @@ Apache License See the License for the specific language governing permissions and limitations under the License. - ---------------- -** @smithy/querystring-builder@4.0.4 - https://www.npmjs.com/package/@smithy/querystring-builder/v/4.0.4 | Apache-2.0 +** @smithy/protocol-http@5.1.2 - https://www.npmjs.com/package/@smithy/protocol-http/v/5.1.2 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -16032,7 +15621,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -16049,7 +15638,7 @@ Apache License ---------------- -** @smithy/querystring-parser@4.0.4 - https://www.npmjs.com/package/@smithy/querystring-parser/v/4.0.4 | Apache-2.0 +** @smithy/querystring-builder@4.0.4 - https://www.npmjs.com/package/@smithy/querystring-builder/v/4.0.4 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -16255,7 +15844,7 @@ Apache License ---------------- -** @smithy/service-error-classification@4.0.5 - https://www.npmjs.com/package/@smithy/service-error-classification/v/4.0.5 | Apache-2.0 +** @smithy/querystring-parser@4.0.4 - https://www.npmjs.com/package/@smithy/querystring-parser/v/4.0.4 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -17077,7 +16666,7 @@ Apache License ---------------- -** @smithy/smithy-client@4.4.3 - https://www.npmjs.com/package/@smithy/smithy-client/v/4.4.3 | Apache-2.0 +** @smithy/smithy-client@4.4.5 - https://www.npmjs.com/package/@smithy/smithy-client/v/4.4.5 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -18925,7 +18514,7 @@ Apache License ---------------- -** @smithy/util-defaults-mode-node@4.0.19 - https://www.npmjs.com/package/@smithy/util-defaults-mode-node/v/4.0.19 | Apache-2.0 +** @smithy/util-defaults-mode-node@4.0.21 - https://www.npmjs.com/package/@smithy/util-defaults-mode-node/v/4.0.21 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -19746,211 +19335,6 @@ Apache License ---------------- -** @smithy/util-retry@4.0.5 - https://www.npmjs.com/package/@smithy/util-retry/v/4.0.5 | Apache-2.0 -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - ----------------- - ** @smithy/util-retry@4.0.6 - https://www.npmjs.com/package/@smithy/util-retry/v/4.0.6 | Apache-2.0 Apache License Version 2.0, January 2004 @@ -20976,7 +20360,7 @@ Apache License ---------------- -** @smithy/util-waiter@4.0.5 - https://www.npmjs.com/package/@smithy/util-waiter/v/4.0.5 | Apache-2.0 +** @smithy/util-waiter@4.0.6 - https://www.npmjs.com/package/@smithy/util-waiter/v/4.0.6 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -21812,7 +21196,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ---------------- -** cdk-from-cfn@0.222.0 - https://www.npmjs.com/package/cdk-from-cfn/v/0.222.0 | MIT OR Apache-2.0 +** cdk-from-cfn@0.226.0 - https://www.npmjs.com/package/cdk-from-cfn/v/0.226.0 | MIT OR Apache-2.0 ---------------- diff --git a/packages/@aws-cdk/cli-lib-alpha/package.json b/packages/@aws-cdk/cli-lib-alpha/package.json index 0bbde74cc..4ada45988 100644 --- a/packages/@aws-cdk/cli-lib-alpha/package.json +++ b/packages/@aws-cdk/cli-lib-alpha/package.json @@ -47,16 +47,16 @@ "@typescript-eslint/eslint-plugin": "^8", "@typescript-eslint/parser": "^8", "aws-cdk": "^0.0.0", - "aws-cdk-lib": "^2.201.0", + "aws-cdk-lib": "^2.202.0", "commit-and-tag-version": "^12", "constructs": "^10.0.0", "eslint": "^9", "eslint-config-prettier": "^10.1.5", "eslint-import-resolver-typescript": "^3.10.1", - "eslint-plugin-import": "^2.31.0", + "eslint-plugin-import": "^2.32.0", "eslint-plugin-jest": "^28.14.0", "eslint-plugin-jsdoc": "^50.8.0", - "eslint-plugin-prettier": "^5.4.1", + "eslint-plugin-prettier": "^5.5.1", "jest": "^29.7.0", "jest-junit": "^16", "jsii": "5.6", diff --git a/packages/@aws-cdk/cli-plugin-contract/.projen/tasks.json b/packages/@aws-cdk/cli-plugin-contract/.projen/tasks.json index a5991451e..4f2557bbc 100644 --- a/packages/@aws-cdk/cli-plugin-contract/.projen/tasks.json +++ b/packages/@aws-cdk/cli-plugin-contract/.projen/tasks.json @@ -32,7 +32,8 @@ "RELEASE_TAG_PREFIX": "@aws-cdk/cli-plugin-contract@", "VERSIONRCOPTIONS": "{\"path\":\".\"}", "BUMP_PACKAGE": "commit-and-tag-version@^12", - "RELEASABLE_COMMITS": "git log --no-merges --oneline $LATEST_TAG..HEAD -E --grep \"^(feat|fix){1}(\\([^()[:space:]]+\\))?(!)?:[[:blank:]]+.+\" -- ." + "RELEASABLE_COMMITS": "git log --no-merges --oneline $LATEST_TAG..HEAD -E --grep \"^(feat|fix){1}(\\([^()[:space:]]+\\))?(!)?:[[:blank:]]+.+\" -- .", + "MAJOR": "2" }, "steps": [ { diff --git a/packages/@aws-cdk/cli-plugin-contract/package.json b/packages/@aws-cdk/cli-plugin-contract/package.json index 37e7b59aa..fa0fe7381 100644 --- a/packages/@aws-cdk/cli-plugin-contract/package.json +++ b/packages/@aws-cdk/cli-plugin-contract/package.json @@ -42,10 +42,10 @@ "eslint": "^9", "eslint-config-prettier": "^10.1.5", "eslint-import-resolver-typescript": "^3.10.1", - "eslint-plugin-import": "^2.31.0", + "eslint-plugin-import": "^2.32.0", "eslint-plugin-jest": "^28.14.0", "eslint-plugin-jsdoc": "^50.8.0", - "eslint-plugin-prettier": "^5.4.1", + "eslint-plugin-prettier": "^5.5.1", "jest": "^29.7.0", "jest-junit": "^16", "license-checker": "^25.0.1", diff --git a/packages/@aws-cdk/cloud-assembly-schema/package.json b/packages/@aws-cdk/cloud-assembly-schema/package.json index 6144dd1bb..868e251c8 100644 --- a/packages/@aws-cdk/cloud-assembly-schema/package.json +++ b/packages/@aws-cdk/cloud-assembly-schema/package.json @@ -51,10 +51,10 @@ "eslint": "^9", "eslint-config-prettier": "^10.1.5", "eslint-import-resolver-typescript": "^3.10.1", - "eslint-plugin-import": "^2.31.0", + "eslint-plugin-import": "^2.32.0", "eslint-plugin-jest": "^28.14.0", "eslint-plugin-jsdoc": "^50.8.0", - "eslint-plugin-prettier": "^5.4.1", + "eslint-plugin-prettier": "^5.5.1", "jest": "^29.7.0", "jest-junit": "^16", "jsii": "5.6", diff --git a/packages/@aws-cdk/cloudformation-diff/.projen/tasks.json b/packages/@aws-cdk/cloudformation-diff/.projen/tasks.json index c5bc06ea6..64626ac0d 100644 --- a/packages/@aws-cdk/cloudformation-diff/.projen/tasks.json +++ b/packages/@aws-cdk/cloudformation-diff/.projen/tasks.json @@ -33,7 +33,8 @@ "VERSIONRCOPTIONS": "{\"path\":\".\"}", "BUMP_PACKAGE": "commit-and-tag-version@^12", "NEXT_VERSION_COMMAND": "tsx ../../../projenrc/next-version.ts maybeRc", - "RELEASABLE_COMMITS": "git log --no-merges --oneline $LATEST_TAG..HEAD -E --grep \"^(feat|fix){1}(\\([^()[:space:]]+\\))?(!)?:[[:blank:]]+.+\" -- ." + "RELEASABLE_COMMITS": "git log --no-merges --oneline $LATEST_TAG..HEAD -E --grep \"^(feat|fix){1}(\\([^()[:space:]]+\\))?(!)?:[[:blank:]]+.+\" -- .", + "MAJOR": "2" }, "steps": [ { diff --git a/packages/@aws-cdk/cloudformation-diff/package.json b/packages/@aws-cdk/cloudformation-diff/package.json index 50ab0099a..e35d0fbcf 100644 --- a/packages/@aws-cdk/cloudformation-diff/package.json +++ b/packages/@aws-cdk/cloudformation-diff/package.json @@ -43,10 +43,10 @@ "eslint": "^9", "eslint-config-prettier": "^10.1.5", "eslint-import-resolver-typescript": "^3.10.1", - "eslint-plugin-import": "^2.31.0", + "eslint-plugin-import": "^2.32.0", "eslint-plugin-jest": "^28.14.0", "eslint-plugin-jsdoc": "^50.8.0", - "eslint-plugin-prettier": "^5.4.1", + "eslint-plugin-prettier": "^5.5.1", "fast-check": "^3.23.2", "jest": "^29.7.0", "jest-junit": "^16", @@ -59,8 +59,8 @@ "@aws-sdk/client-cloudformation": "^3" }, "dependencies": { - "@aws-cdk/aws-service-spec": "^0.1.82", - "@aws-cdk/service-spec-types": "^0.0.148", + "@aws-cdk/aws-service-spec": "^0.1.84", + "@aws-cdk/service-spec-types": "^0.0.150", "chalk": "^4", "diff": "^7.0.0", "fast-deep-equal": "^3.1.3", diff --git a/packages/@aws-cdk/integ-runner/.projen/tasks.json b/packages/@aws-cdk/integ-runner/.projen/tasks.json index b3fd4b781..6cb2c8aa9 100644 --- a/packages/@aws-cdk/integ-runner/.projen/tasks.json +++ b/packages/@aws-cdk/integ-runner/.projen/tasks.json @@ -32,7 +32,8 @@ "RELEASE_TAG_PREFIX": "@aws-cdk/integ-runner@", "VERSIONRCOPTIONS": "{\"path\":\".\"}", "BUMP_PACKAGE": "commit-and-tag-version@^12", - "RELEASABLE_COMMITS": "git log --no-merges --oneline $LATEST_TAG..HEAD -E --grep \"^(feat|fix){1}(\\([^()[:space:]]+\\))?(!)?:[[:blank:]]+.+\" -- . ../../aws-cdk ../cloud-assembly-schema ../cloudformation-diff ../toolkit-lib" + "RELEASABLE_COMMITS": "git log --no-merges --oneline $LATEST_TAG..HEAD -E --grep \"^(feat|fix){1}(\\([^()[:space:]]+\\))?(!)?:[[:blank:]]+.+\" -- . ../../aws-cdk ../cloud-assembly-schema ../cloudformation-diff ../toolkit-lib", + "MAJOR": "2" }, "steps": [ { diff --git a/packages/@aws-cdk/integ-runner/THIRD_PARTY_LICENSES b/packages/@aws-cdk/integ-runner/THIRD_PARTY_LICENSES index 2f1b57360..a6b61cd29 100644 --- a/packages/@aws-cdk/integ-runner/THIRD_PARTY_LICENSES +++ b/packages/@aws-cdk/integ-runner/THIRD_PARTY_LICENSES @@ -618,7 +618,7 @@ The @aws-cdk/integ-runner package includes the following third-party software/li ---------------- -** @aws-sdk/client-appsync@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-appsync/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-appsync@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-appsync/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -824,7 +824,7 @@ The @aws-cdk/integ-runner package includes the following third-party software/li ---------------- -** @aws-sdk/client-cloudcontrol@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudcontrol/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-cloudcontrol@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudcontrol/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -1030,7 +1030,7 @@ The @aws-cdk/integ-runner package includes the following third-party software/li ---------------- -** @aws-sdk/client-cloudformation@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudformation/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-cloudformation@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudformation/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -1236,7 +1236,7 @@ The @aws-cdk/integ-runner package includes the following third-party software/li ---------------- -** @aws-sdk/client-cloudwatch-logs@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudwatch-logs/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-cloudwatch-logs@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudwatch-logs/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -1442,7 +1442,7 @@ The @aws-cdk/integ-runner package includes the following third-party software/li ---------------- -** @aws-sdk/client-codebuild@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-codebuild/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-codebuild@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-codebuild/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -1648,7 +1648,7 @@ The @aws-cdk/integ-runner package includes the following third-party software/li ---------------- -** @aws-sdk/client-cognito-identity@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-cognito-identity/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-cognito-identity@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-cognito-identity/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -1854,7 +1854,7 @@ The @aws-cdk/integ-runner package includes the following third-party software/li ---------------- -** @aws-sdk/client-ec2@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-ec2/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-ec2@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-ec2/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -2060,7 +2060,7 @@ The @aws-cdk/integ-runner package includes the following third-party software/li ---------------- -** @aws-sdk/client-ecr@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-ecr/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-ecr@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-ecr/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -2266,7 +2266,7 @@ The @aws-cdk/integ-runner package includes the following third-party software/li ---------------- -** @aws-sdk/client-ecs@3.829.0 - https://www.npmjs.com/package/@aws-sdk/client-ecs/v/3.829.0 | Apache-2.0 +** @aws-sdk/client-ecs@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-ecs/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -2472,7 +2472,7 @@ The @aws-cdk/integ-runner package includes the following third-party software/li ---------------- -** @aws-sdk/client-elastic-load-balancing-v2@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-elastic-load-balancing-v2/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-elastic-load-balancing-v2@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-elastic-load-balancing-v2/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -2678,7 +2678,7 @@ The @aws-cdk/integ-runner package includes the following third-party software/li ---------------- -** @aws-sdk/client-iam@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-iam/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-iam@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-iam/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -2884,7 +2884,7 @@ The @aws-cdk/integ-runner package includes the following third-party software/li ---------------- -** @aws-sdk/client-kms@3.829.0 - https://www.npmjs.com/package/@aws-sdk/client-kms/v/3.829.0 | Apache-2.0 +** @aws-sdk/client-kms@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-kms/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -3090,7 +3090,7 @@ The @aws-cdk/integ-runner package includes the following third-party software/li ---------------- -** @aws-sdk/client-lambda@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-lambda/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-lambda@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-lambda/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -3296,7 +3296,7 @@ The @aws-cdk/integ-runner package includes the following third-party software/li ---------------- -** @aws-sdk/client-route-53@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-route-53/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-route-53@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-route-53/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -3502,7 +3502,7 @@ The @aws-cdk/integ-runner package includes the following third-party software/li ---------------- -** @aws-sdk/client-s3@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-s3/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-s3@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-s3/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -3708,7 +3708,7 @@ The @aws-cdk/integ-runner package includes the following third-party software/li ---------------- -** @aws-sdk/client-secrets-manager@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-secrets-manager/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-secrets-manager@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-secrets-manager/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -3914,7 +3914,7 @@ The @aws-cdk/integ-runner package includes the following third-party software/li ---------------- -** @aws-sdk/client-sfn@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-sfn/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-sfn@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-sfn/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -4120,7 +4120,7 @@ The @aws-cdk/integ-runner package includes the following third-party software/li ---------------- -** @aws-sdk/client-ssm@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-ssm/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-ssm@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-ssm/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -4326,7 +4326,7 @@ The @aws-cdk/integ-runner package includes the following third-party software/li ---------------- -** @aws-sdk/client-sso@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-sso/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-sso@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-sso/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -4532,7 +4532,7 @@ The @aws-cdk/integ-runner package includes the following third-party software/li ---------------- -** @aws-sdk/client-sts@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-sts/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-sts@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-sts/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -4738,11 +4738,11 @@ The @aws-cdk/integ-runner package includes the following third-party software/li ---------------- -** @aws-sdk/core@3.826.0 - https://www.npmjs.com/package/@aws-sdk/core/v/3.826.0 | Apache-2.0 +** @aws-sdk/core@3.839.0 - https://www.npmjs.com/package/@aws-sdk/core/v/3.839.0 | Apache-2.0 ---------------- -** @aws-sdk/credential-provider-cognito-identity@3.828.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-cognito-identity/v/3.828.0 | Apache-2.0 +** @aws-sdk/credential-provider-cognito-identity@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-cognito-identity/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -4948,7 +4948,7 @@ The @aws-cdk/integ-runner package includes the following third-party software/li ---------------- -** @aws-sdk/credential-provider-env@3.826.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-env/v/3.826.0 | Apache-2.0 +** @aws-sdk/credential-provider-env@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-env/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -5153,11 +5153,11 @@ Apache License ---------------- -** @aws-sdk/credential-provider-http@3.826.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-http/v/3.826.0 | Apache-2.0 +** @aws-sdk/credential-provider-http@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-http/v/3.839.0 | Apache-2.0 ---------------- -** @aws-sdk/credential-provider-ini@3.828.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-ini/v/3.828.0 | Apache-2.0 +** @aws-sdk/credential-provider-ini@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-ini/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -5362,7 +5362,7 @@ Apache License ---------------- -** @aws-sdk/credential-provider-node@3.828.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-node/v/3.828.0 | Apache-2.0 +** @aws-sdk/credential-provider-node@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-node/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -5567,7 +5567,7 @@ Apache License ---------------- -** @aws-sdk/credential-provider-process@3.826.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-process/v/3.826.0 | Apache-2.0 +** @aws-sdk/credential-provider-process@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-process/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -5772,7 +5772,7 @@ Apache License ---------------- -** @aws-sdk/credential-provider-sso@3.828.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-sso/v/3.828.0 | Apache-2.0 +** @aws-sdk/credential-provider-sso@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-sso/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -5977,7 +5977,7 @@ Apache License ---------------- -** @aws-sdk/credential-provider-web-identity@3.828.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-web-identity/v/3.828.0 | Apache-2.0 +** @aws-sdk/credential-provider-web-identity@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-web-identity/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -6182,7 +6182,7 @@ Apache License ---------------- -** @aws-sdk/credential-providers@3.828.0 - https://www.npmjs.com/package/@aws-sdk/credential-providers/v/3.828.0 | Apache-2.0 +** @aws-sdk/credential-providers@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-providers/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -6387,7 +6387,7 @@ Apache License ---------------- -** @aws-sdk/ec2-metadata-service@3.828.0 - https://www.npmjs.com/package/@aws-sdk/ec2-metadata-service/v/3.828.0 | Apache-2.0 +** @aws-sdk/ec2-metadata-service@3.839.0 - https://www.npmjs.com/package/@aws-sdk/ec2-metadata-service/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -6592,7 +6592,7 @@ Apache License ---------------- -** @aws-sdk/lib-storage@3.828.0 - https://www.npmjs.com/package/@aws-sdk/lib-storage/v/3.828.0 | Apache-2.0 +** @aws-sdk/lib-storage@3.839.0 - https://www.npmjs.com/package/@aws-sdk/lib-storage/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -6797,7 +6797,7 @@ Apache License ---------------- -** @aws-sdk/middleware-bucket-endpoint@3.821.0 - https://www.npmjs.com/package/@aws-sdk/middleware-bucket-endpoint/v/3.821.0 | Apache-2.0 +** @aws-sdk/middleware-bucket-endpoint@3.830.0 - https://www.npmjs.com/package/@aws-sdk/middleware-bucket-endpoint/v/3.830.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -7209,7 +7209,7 @@ Apache License ---------------- -** @aws-sdk/middleware-flexible-checksums@3.826.0 - https://www.npmjs.com/package/@aws-sdk/middleware-flexible-checksums/v/3.826.0 | Apache-2.0 +** @aws-sdk/middleware-flexible-checksums@3.839.0 - https://www.npmjs.com/package/@aws-sdk/middleware-flexible-checksums/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -8238,7 +8238,7 @@ Apache License ---------------- -** @aws-sdk/middleware-sdk-ec2@3.826.0 - https://www.npmjs.com/package/@aws-sdk/middleware-sdk-ec2/v/3.826.0 | Apache-2.0 +** @aws-sdk/middleware-sdk-ec2@3.839.0 - https://www.npmjs.com/package/@aws-sdk/middleware-sdk-ec2/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -8649,7 +8649,7 @@ Apache License ---------------- -** @aws-sdk/middleware-sdk-s3@3.826.0 - https://www.npmjs.com/package/@aws-sdk/middleware-sdk-s3/v/3.826.0 | Apache-2.0 +** @aws-sdk/middleware-sdk-s3@3.839.0 - https://www.npmjs.com/package/@aws-sdk/middleware-sdk-s3/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -9061,7 +9061,7 @@ Apache License ---------------- -** @aws-sdk/middleware-user-agent@3.828.0 - https://www.npmjs.com/package/@aws-sdk/middleware-user-agent/v/3.828.0 | Apache-2.0 +** @aws-sdk/middleware-user-agent@3.839.0 - https://www.npmjs.com/package/@aws-sdk/middleware-user-agent/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -9267,7 +9267,7 @@ Apache License ---------------- -** @aws-sdk/nested-clients@3.828.0 - https://www.npmjs.com/package/@aws-sdk/nested-clients/v/3.828.0 | Apache-2.0 +** @aws-sdk/nested-clients@3.839.0 - https://www.npmjs.com/package/@aws-sdk/nested-clients/v/3.839.0 | Apache-2.0 ---------------- @@ -9476,7 +9476,7 @@ Apache License ---------------- -** @aws-sdk/signature-v4-multi-region@3.826.0 - https://www.npmjs.com/package/@aws-sdk/signature-v4-multi-region/v/3.826.0 | Apache-2.0 +** @aws-sdk/signature-v4-multi-region@3.839.0 - https://www.npmjs.com/package/@aws-sdk/signature-v4-multi-region/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -9682,7 +9682,7 @@ Apache License ---------------- -** @aws-sdk/token-providers@3.828.0 - https://www.npmjs.com/package/@aws-sdk/token-providers/v/3.828.0 | Apache-2.0 +** @aws-sdk/token-providers@3.839.0 - https://www.npmjs.com/package/@aws-sdk/token-providers/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -10502,7 +10502,7 @@ Apache License ---------------- -** @aws-sdk/util-user-agent-node@3.828.0 - https://www.npmjs.com/package/@aws-sdk/util-user-agent-node/v/3.828.0 | Apache-2.0 +** @aws-sdk/util-user-agent-node@3.839.0 - https://www.npmjs.com/package/@aws-sdk/util-user-agent-node/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -11323,7 +11323,7 @@ Apache License ---------------- -** @smithy/core@3.5.3 - https://www.npmjs.com/package/@smithy/core/v/3.5.3 | Apache-2.0 +** @smithy/core@3.6.0 - https://www.npmjs.com/package/@smithy/core/v/3.6.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -13788,7 +13788,7 @@ Apache License ---------------- -** @smithy/middleware-endpoint@4.1.11 - https://www.npmjs.com/package/@smithy/middleware-endpoint/v/4.1.11 | Apache-2.0 +** @smithy/middleware-endpoint@4.1.13 - https://www.npmjs.com/package/@smithy/middleware-endpoint/v/4.1.13 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -13993,418 +13993,7 @@ Apache License ---------------- -** @smithy/middleware-endpoint@4.1.12 - https://www.npmjs.com/package/@smithy/middleware-endpoint/v/4.1.12 | Apache-2.0 -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - ----------------- - -** @smithy/middleware-retry@4.1.12 - https://www.npmjs.com/package/@smithy/middleware-retry/v/4.1.12 | Apache-2.0 - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - ----------------- - -** @smithy/middleware-serde@4.0.8 - https://www.npmjs.com/package/@smithy/middleware-serde/v/4.0.8 | Apache-2.0 +** @smithy/middleware-retry@4.1.14 - https://www.npmjs.com/package/@smithy/middleware-retry/v/4.1.14 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -14593,7 +14182,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -14610,8 +14199,8 @@ Apache License ---------------- -** @smithy/middleware-stack@4.0.4 - https://www.npmjs.com/package/@smithy/middleware-stack/v/4.0.4 | Apache-2.0 -Apache License +** @smithy/middleware-serde@4.0.8 - https://www.npmjs.com/package/@smithy/middleware-serde/v/4.0.8 | Apache-2.0 + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -14799,7 +14388,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -14813,9 +14402,10 @@ Apache License See the License for the specific language governing permissions and limitations under the License. + ---------------- -** @smithy/node-config-provider@4.1.3 - https://www.npmjs.com/package/@smithy/node-config-provider/v/4.1.3 | Apache-2.0 +** @smithy/middleware-stack@4.0.4 - https://www.npmjs.com/package/@smithy/middleware-stack/v/4.0.4 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -15004,7 +14594,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -15020,7 +14610,7 @@ Apache License ---------------- -** @smithy/node-http-handler@4.0.6 - https://www.npmjs.com/package/@smithy/node-http-handler/v/4.0.6 | Apache-2.0 +** @smithy/node-config-provider@4.1.3 - https://www.npmjs.com/package/@smithy/node-config-provider/v/4.1.3 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -15209,7 +14799,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -15225,7 +14815,7 @@ Apache License ---------------- -** @smithy/property-provider@4.0.4 - https://www.npmjs.com/package/@smithy/property-provider/v/4.0.4 | Apache-2.0 +** @smithy/node-http-handler@4.0.6 - https://www.npmjs.com/package/@smithy/node-http-handler/v/4.0.6 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -15430,8 +15020,8 @@ Apache License ---------------- -** @smithy/protocol-http@5.1.2 - https://www.npmjs.com/package/@smithy/protocol-http/v/5.1.2 | Apache-2.0 - Apache License +** @smithy/property-provider@4.0.4 - https://www.npmjs.com/package/@smithy/property-provider/v/4.0.4 | Apache-2.0 +Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -15619,7 +15209,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -15633,10 +15223,9 @@ Apache License See the License for the specific language governing permissions and limitations under the License. - ---------------- -** @smithy/querystring-builder@4.0.4 - https://www.npmjs.com/package/@smithy/querystring-builder/v/4.0.4 | Apache-2.0 +** @smithy/protocol-http@5.1.2 - https://www.npmjs.com/package/@smithy/protocol-http/v/5.1.2 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -15825,7 +15414,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -15842,7 +15431,7 @@ Apache License ---------------- -** @smithy/querystring-parser@4.0.4 - https://www.npmjs.com/package/@smithy/querystring-parser/v/4.0.4 | Apache-2.0 +** @smithy/querystring-builder@4.0.4 - https://www.npmjs.com/package/@smithy/querystring-builder/v/4.0.4 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -16048,7 +15637,7 @@ Apache License ---------------- -** @smithy/service-error-classification@4.0.5 - https://www.npmjs.com/package/@smithy/service-error-classification/v/4.0.5 | Apache-2.0 +** @smithy/querystring-parser@4.0.4 - https://www.npmjs.com/package/@smithy/querystring-parser/v/4.0.4 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -16870,7 +16459,7 @@ Apache License ---------------- -** @smithy/smithy-client@4.4.3 - https://www.npmjs.com/package/@smithy/smithy-client/v/4.4.3 | Apache-2.0 +** @smithy/smithy-client@4.4.5 - https://www.npmjs.com/package/@smithy/smithy-client/v/4.4.5 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -18718,7 +18307,7 @@ Apache License ---------------- -** @smithy/util-defaults-mode-node@4.0.19 - https://www.npmjs.com/package/@smithy/util-defaults-mode-node/v/4.0.19 | Apache-2.0 +** @smithy/util-defaults-mode-node@4.0.21 - https://www.npmjs.com/package/@smithy/util-defaults-mode-node/v/4.0.21 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -19539,211 +19128,6 @@ Apache License ---------------- -** @smithy/util-retry@4.0.5 - https://www.npmjs.com/package/@smithy/util-retry/v/4.0.5 | Apache-2.0 -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - ----------------- - ** @smithy/util-retry@4.0.6 - https://www.npmjs.com/package/@smithy/util-retry/v/4.0.6 | Apache-2.0 Apache License Version 2.0, January 2004 @@ -20769,7 +20153,7 @@ Apache License ---------------- -** @smithy/util-waiter@4.0.5 - https://www.npmjs.com/package/@smithy/util-waiter/v/4.0.5 | Apache-2.0 +** @smithy/util-waiter@4.0.6 - https://www.npmjs.com/package/@smithy/util-waiter/v/4.0.6 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ diff --git a/packages/@aws-cdk/integ-runner/lib/runner/integ-test-runner.ts b/packages/@aws-cdk/integ-runner/lib/runner/integ-test-runner.ts index 2cad60511..07714a541 100644 --- a/packages/@aws-cdk/integ-runner/lib/runner/integ-test-runner.ts +++ b/packages/@aws-cdk/integ-runner/lib/runner/integ-test-runner.ts @@ -7,7 +7,7 @@ import * as chokidar from 'chokidar'; import * as fs from 'fs-extra'; import * as workerpool from 'workerpool'; import type { IntegRunnerOptions } from './runner-base'; -import { IntegRunner, DEFAULT_SYNTH_OPTIONS } from './runner-base'; +import { IntegRunner } from './runner-base'; import * as logger from '../logger'; import { chunks, exec, promiseWithResolvers } from '../utils'; import type { DestructiveChange, AssertionResults, AssertionResult } from '../workers/common'; @@ -237,17 +237,11 @@ export class IntegTestRunner extends IntegRunner { updateWorkflowEnabled, options.testCaseName, ); - } else { - await this.cdk.synthFast({ - execCmd: this.cdkApp.split(' '), - context: this.getContext(actualTestSuite.enableLookups ? DEFAULT_SYNTH_OPTIONS.context : {}), - env: DEFAULT_SYNTH_OPTIONS.env, - output: path.relative(this.directory, this.cdkOutDir), - }); } + // only create the snapshot if there are no failed assertion results // (i.e. no failures) - if (!assertionResults || !Object.values(assertionResults).some(result => result.status === 'fail')) { + if (!Object.values(assertionResults ?? {}).some(result => result.status === 'fail')) { await this.createSnapshot(); } } catch (e) { diff --git a/packages/@aws-cdk/integ-runner/lib/runner/runner-base.ts b/packages/@aws-cdk/integ-runner/lib/runner/runner-base.ts index 6dfa03a47..c7a267142 100644 --- a/packages/@aws-cdk/integ-runner/lib/runner/runner-base.ts +++ b/packages/@aws-cdk/integ-runner/lib/runner/runner-base.ts @@ -328,16 +328,12 @@ export abstract class IntegRunner { // if lookups are enabled then we need to synth again // using dummy context and save that as the snapshot - if ((await this.actualTestSuite()).enableLookups) { - await this.cdk.synthFast({ - execCmd: this.cdkApp.split(' '), - context: this.getContext(DEFAULT_SYNTH_OPTIONS.context), - env: DEFAULT_SYNTH_OPTIONS.env, - output: path.relative(this.directory, this.snapshotDir), - }); - } else { - fs.moveSync(this.cdkOutDir, this.snapshotDir, { overwrite: true }); - } + await this.cdk.synthFast({ + execCmd: this.cdkApp.split(' '), + context: this.getContext(DEFAULT_SYNTH_OPTIONS.context), + env: DEFAULT_SYNTH_OPTIONS.env, + output: path.relative(this.directory, this.snapshotDir), + }); await this.cleanupSnapshot(); } diff --git a/packages/@aws-cdk/integ-runner/lib/workers/integ-test-worker.ts b/packages/@aws-cdk/integ-runner/lib/workers/integ-test-worker.ts index f27e57048..b31538559 100644 --- a/packages/@aws-cdk/integ-runner/lib/workers/integ-test-worker.ts +++ b/packages/@aws-cdk/integ-runner/lib/workers/integ-test-worker.ts @@ -136,6 +136,7 @@ export async function runIntegrationTestsInParallel( dryRun: options.dryRun, verbosity: options.verbosity, updateWorkflow: options.updateWorkflow, + engine: options.engine, }], { on: printResults, }); diff --git a/packages/@aws-cdk/integ-runner/package.json b/packages/@aws-cdk/integ-runner/package.json index 0ea1b54dc..9d487a1f4 100644 --- a/packages/@aws-cdk/integ-runner/package.json +++ b/packages/@aws-cdk/integ-runner/package.json @@ -45,16 +45,16 @@ "@types/yargs": "^17.0.33", "@typescript-eslint/eslint-plugin": "^8", "@typescript-eslint/parser": "^8", - "aws-cdk-lib": "^2.201.0", + "aws-cdk-lib": "^2.202.0", "commit-and-tag-version": "^12", "constructs": "^10", "eslint": "^9", "eslint-config-prettier": "^10.1.5", - "eslint-import-resolver-typescript": "^4.4.3", - "eslint-plugin-import": "^2.31.0", + "eslint-import-resolver-typescript": "^4.4.4", + "eslint-plugin-import": "^2.32.0", "eslint-plugin-jest": "^28.14.0", "eslint-plugin-jsdoc": "^50.8.0", - "eslint-plugin-prettier": "^5.4.1", + "eslint-plugin-prettier": "^5.5.1", "jest": "^29.7.0", "jest-junit": "^16", "license-checker": "^25.0.1", @@ -65,12 +65,12 @@ "typescript": "5.6" }, "dependencies": { - "@aws-cdk/aws-service-spec": "^0.1.82", + "@aws-cdk/aws-service-spec": "^0.1.84", "@aws-cdk/cdk-assets-lib": "^0.0.0", "@aws-cdk/cdk-cli-wrapper": "^0.0.0", "@aws-cdk/cloud-assembly-schema": "^0.0.0", "@aws-cdk/cloudformation-diff": "^0.0.0", - "@aws-cdk/cx-api": "^2.201.0", + "@aws-cdk/cx-api": "^2.202.0", "@aws-cdk/toolkit-lib": "^0.0.0", "@aws-sdk/client-cloudformation": "^3", "aws-cdk": "^0.0.0", diff --git a/packages/@aws-cdk/integ-runner/test/runner/integ-test-runner.test.ts b/packages/@aws-cdk/integ-runner/test/runner/integ-test-runner.test.ts index 0990905a2..cb0f879f8 100644 --- a/packages/@aws-cdk/integ-runner/test/runner/integ-test-runner.test.ts +++ b/packages/@aws-cdk/integ-runner/test/runner/integ-test-runner.test.ts @@ -59,7 +59,7 @@ describe('IntegTest runIntegTests', () => { // THEN expect(cdkMock.mocks.deploy).toHaveBeenCalledTimes(3); expect(cdkMock.mocks.destroy).toHaveBeenCalledTimes(1); - expect(cdkMock.mocks.synthFast).toHaveBeenCalledTimes(1); + expect(cdkMock.mocks.synthFast).toHaveBeenCalledTimes(2); expect(cdkMock.mocks.deploy).toHaveBeenCalledWith({ app: 'xxxxx.test-with-snapshot.js.snapshot', requireApproval: 'never', @@ -124,7 +124,7 @@ describe('IntegTest runIntegTests', () => { // THEN expect(cdkMock.mocks.deploy).toHaveBeenCalledTimes(1); expect(cdkMock.mocks.destroy).toHaveBeenCalledTimes(1); - expect(cdkMock.mocks.synthFast).toHaveBeenCalledTimes(1); + expect(cdkMock.mocks.synthFast).toHaveBeenCalledTimes(2); expect(cdkMock.mocks.deploy).toHaveBeenCalledWith({ app: 'node xxxxx.integ-test1.js', requireApproval: 'never', @@ -229,7 +229,7 @@ describe('IntegTest runIntegTests', () => { // THEN expect(cdkMock.mocks.deploy).toHaveBeenCalledTimes(3); expect(cdkMock.mocks.destroy).toHaveBeenCalledTimes(1); - expect(cdkMock.mocks.synthFast).toHaveBeenCalledTimes(1); + expect(cdkMock.mocks.synthFast).toHaveBeenCalledTimes(2); expect(cdkMock.mocks.deploy).toHaveBeenNthCalledWith(1, expect.objectContaining({ app: 'xxxxx.test-with-snapshot.js.snapshot', context: expect.any(Object), @@ -276,7 +276,7 @@ describe('IntegTest runIntegTests', () => { // THEN expect(cdkMock.mocks.deploy).toHaveBeenCalledTimes(1); expect(cdkMock.mocks.destroy).toHaveBeenCalledTimes(0); - expect(cdkMock.mocks.synthFast).toHaveBeenCalledTimes(1); + expect(cdkMock.mocks.synthFast).toHaveBeenCalledTimes(2); }); test('dryrun', async () => { @@ -340,7 +340,7 @@ describe('IntegTest runIntegTests', () => { // THEN expect(cdkMock.mocks.deploy).toHaveBeenCalledTimes(1); expect(cdkMock.mocks.destroy).toHaveBeenCalledTimes(1); - expect(cdkMock.mocks.synthFast).toHaveBeenCalledTimes(1); + expect(cdkMock.mocks.synthFast).toHaveBeenCalledTimes(2); expect(cdkMock.mocks.deploy).toHaveBeenCalledWith({ app: 'node xxxxx.integ-test1.js', requireApproval: 'never', @@ -623,7 +623,7 @@ describe('IntegTest runIntegTests', () => { // THEN expect(cdkMock.mocks.deploy).toHaveBeenCalledTimes(3); expect(cdkMock.mocks.destroy).toHaveBeenCalledTimes(1); - expect(cdkMock.mocks.synthFast).toHaveBeenCalledTimes(1); + expect(cdkMock.mocks.synthFast).toHaveBeenCalledTimes(2); expect(cdkMock.mocks.deploy).toHaveBeenCalledWith(expect.objectContaining({ app: 'node --no-warnings xxxxx.test-with-snapshot.js', })); diff --git a/packages/@aws-cdk/toolkit-lib/package.json b/packages/@aws-cdk/toolkit-lib/package.json index 225e4c49f..f4fe81445 100644 --- a/packages/@aws-cdk/toolkit-lib/package.json +++ b/packages/@aws-cdk/toolkit-lib/package.json @@ -34,7 +34,7 @@ "organization": true }, "devDependencies": { - "@aws-cdk/aws-service-spec": "^0.1.82", + "@aws-cdk/aws-service-spec": "^0.1.84", "@aws-cdk/cli-plugin-contract": "^0.0.0", "@cdklabs/eslint-plugin": "^1.3.2", "@jest/environment": "^29.7.0", @@ -50,7 +50,7 @@ "@types/split2": "^4.2.3", "@typescript-eslint/eslint-plugin": "^8", "@typescript-eslint/parser": "^8", - "aws-cdk-lib": "^2.201.0", + "aws-cdk-lib": "^2.202.0", "aws-sdk-client-mock": "^4.1.0", "aws-sdk-client-mock-jest": "^4.1.0", "commit-and-tag-version": "^12", @@ -58,10 +58,10 @@ "eslint": "^9", "eslint-config-prettier": "^10.1.5", "eslint-import-resolver-typescript": "^3.10.1", - "eslint-plugin-import": "^2.31.0", + "eslint-plugin-import": "^2.32.0", "eslint-plugin-jest": "^28.14.0", "eslint-plugin-jsdoc": "^50.8.0", - "eslint-plugin-prettier": "^5.4.1", + "eslint-plugin-prettier": "^5.5.1", "fast-check": "^4.1.1", "jest": "^29.7.0", "jest-environment-node": "^29.7.0", @@ -109,7 +109,7 @@ "@smithy/util-retry": "^4", "@smithy/util-waiter": "^4", "archiver": "^7.0.1", - "cdk-from-cfn": "^0.222.0", + "cdk-from-cfn": "^0.226.0", "chalk": "^4", "chokidar": "^3", "fs-extra": "^9", diff --git a/packages/@aws-cdk/user-input-gen/lib/convert-to-user-input-gen.ts b/packages/@aws-cdk/user-input-gen/lib/convert-to-user-input-gen.ts index 93570a019..410ab5e67 100644 --- a/packages/@aws-cdk/user-input-gen/lib/convert-to-user-input-gen.ts +++ b/packages/@aws-cdk/user-input-gen/lib/convert-to-user-input-gen.ts @@ -159,7 +159,7 @@ function buildConfigArgs(config: CliConfig): string { 'const userInput: UserInput = {', 'globalOptions,', ...(Object.keys(config.commands).map((commandName) => { - return `'${commandName}': ${kebabToCamelCase(commandName)}Options,`; + return `'${kebabToCamelCase(commandName)}': ${kebabToCamelCase(commandName)}Options,`; })), '}', '', diff --git a/packages/@aws-cdk/user-input-gen/package.json b/packages/@aws-cdk/user-input-gen/package.json index a042ada68..e160ea839 100644 --- a/packages/@aws-cdk/user-input-gen/package.json +++ b/packages/@aws-cdk/user-input-gen/package.json @@ -44,10 +44,10 @@ "eslint": "^9", "eslint-config-prettier": "^10.1.5", "eslint-import-resolver-typescript": "^3.10.1", - "eslint-plugin-import": "^2.31.0", + "eslint-plugin-import": "^2.32.0", "eslint-plugin-jest": "^28.14.0", "eslint-plugin-jsdoc": "^50.8.0", - "eslint-plugin-prettier": "^5.4.1", + "eslint-plugin-prettier": "^5.5.1", "jest": "^29.7.0", "jest-junit": "^16", "prettier": "^2.8", diff --git a/packages/@aws-cdk/yarn-cling/package.json b/packages/@aws-cdk/yarn-cling/package.json index 519e4077e..b09a2d438 100644 --- a/packages/@aws-cdk/yarn-cling/package.json +++ b/packages/@aws-cdk/yarn-cling/package.json @@ -45,10 +45,10 @@ "eslint": "^9", "eslint-config-prettier": "^10.1.5", "eslint-import-resolver-typescript": "^3.10.1", - "eslint-plugin-import": "^2.31.0", + "eslint-plugin-import": "^2.32.0", "eslint-plugin-jest": "^28.14.0", "eslint-plugin-jsdoc": "^50.8.0", - "eslint-plugin-prettier": "^5.4.1", + "eslint-plugin-prettier": "^5.5.1", "fast-check": "^4.1.1", "jest": "^29.7.0", "jest-junit": "^16", diff --git a/packages/aws-cdk/THIRD_PARTY_LICENSES b/packages/aws-cdk/THIRD_PARTY_LICENSES index 8c1f1c0b8..9c905189f 100644 --- a/packages/aws-cdk/THIRD_PARTY_LICENSES +++ b/packages/aws-cdk/THIRD_PARTY_LICENSES @@ -618,7 +618,7 @@ The aws-cdk package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-appsync@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-appsync/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-appsync@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-appsync/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -824,7 +824,7 @@ The aws-cdk package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-cloudcontrol@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudcontrol/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-cloudcontrol@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudcontrol/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -1030,7 +1030,7 @@ The aws-cdk package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-cloudformation@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudformation/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-cloudformation@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudformation/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -1236,7 +1236,7 @@ The aws-cdk package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-cloudwatch-logs@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudwatch-logs/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-cloudwatch-logs@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudwatch-logs/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -1442,7 +1442,7 @@ The aws-cdk package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-codebuild@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-codebuild/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-codebuild@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-codebuild/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -1648,7 +1648,7 @@ The aws-cdk package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-cognito-identity@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-cognito-identity/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-cognito-identity@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-cognito-identity/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -1854,7 +1854,7 @@ The aws-cdk package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-ec2@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-ec2/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-ec2@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-ec2/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -2060,7 +2060,7 @@ The aws-cdk package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-ecr@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-ecr/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-ecr@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-ecr/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -2266,7 +2266,7 @@ The aws-cdk package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-ecs@3.829.0 - https://www.npmjs.com/package/@aws-sdk/client-ecs/v/3.829.0 | Apache-2.0 +** @aws-sdk/client-ecs@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-ecs/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -2472,7 +2472,7 @@ The aws-cdk package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-elastic-load-balancing-v2@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-elastic-load-balancing-v2/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-elastic-load-balancing-v2@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-elastic-load-balancing-v2/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -2678,7 +2678,7 @@ The aws-cdk package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-iam@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-iam/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-iam@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-iam/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -2884,7 +2884,7 @@ The aws-cdk package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-kms@3.829.0 - https://www.npmjs.com/package/@aws-sdk/client-kms/v/3.829.0 | Apache-2.0 +** @aws-sdk/client-kms@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-kms/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -3090,7 +3090,7 @@ The aws-cdk package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-lambda@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-lambda/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-lambda@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-lambda/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -3296,7 +3296,7 @@ The aws-cdk package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-route-53@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-route-53/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-route-53@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-route-53/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -3502,7 +3502,7 @@ The aws-cdk package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-s3@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-s3/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-s3@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-s3/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -3708,7 +3708,7 @@ The aws-cdk package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-secrets-manager@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-secrets-manager/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-secrets-manager@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-secrets-manager/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -3914,7 +3914,7 @@ The aws-cdk package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-sfn@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-sfn/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-sfn@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-sfn/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -4120,7 +4120,7 @@ The aws-cdk package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-ssm@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-ssm/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-ssm@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-ssm/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -4326,7 +4326,7 @@ The aws-cdk package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-sso@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-sso/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-sso@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-sso/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -4532,7 +4532,7 @@ The aws-cdk package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-sts@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-sts/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-sts@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-sts/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -4738,11 +4738,11 @@ The aws-cdk package includes the following third-party software/licensing: ---------------- -** @aws-sdk/core@3.826.0 - https://www.npmjs.com/package/@aws-sdk/core/v/3.826.0 | Apache-2.0 +** @aws-sdk/core@3.839.0 - https://www.npmjs.com/package/@aws-sdk/core/v/3.839.0 | Apache-2.0 ---------------- -** @aws-sdk/credential-provider-cognito-identity@3.828.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-cognito-identity/v/3.828.0 | Apache-2.0 +** @aws-sdk/credential-provider-cognito-identity@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-cognito-identity/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -4948,7 +4948,7 @@ The aws-cdk package includes the following third-party software/licensing: ---------------- -** @aws-sdk/credential-provider-env@3.826.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-env/v/3.826.0 | Apache-2.0 +** @aws-sdk/credential-provider-env@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-env/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -5153,11 +5153,11 @@ Apache License ---------------- -** @aws-sdk/credential-provider-http@3.826.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-http/v/3.826.0 | Apache-2.0 +** @aws-sdk/credential-provider-http@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-http/v/3.839.0 | Apache-2.0 ---------------- -** @aws-sdk/credential-provider-ini@3.828.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-ini/v/3.828.0 | Apache-2.0 +** @aws-sdk/credential-provider-ini@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-ini/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -5362,7 +5362,7 @@ Apache License ---------------- -** @aws-sdk/credential-provider-node@3.828.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-node/v/3.828.0 | Apache-2.0 +** @aws-sdk/credential-provider-node@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-node/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -5567,7 +5567,7 @@ Apache License ---------------- -** @aws-sdk/credential-provider-process@3.826.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-process/v/3.826.0 | Apache-2.0 +** @aws-sdk/credential-provider-process@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-process/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -5772,7 +5772,7 @@ Apache License ---------------- -** @aws-sdk/credential-provider-sso@3.828.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-sso/v/3.828.0 | Apache-2.0 +** @aws-sdk/credential-provider-sso@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-sso/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -5977,7 +5977,7 @@ Apache License ---------------- -** @aws-sdk/credential-provider-web-identity@3.828.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-web-identity/v/3.828.0 | Apache-2.0 +** @aws-sdk/credential-provider-web-identity@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-web-identity/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -6182,7 +6182,7 @@ Apache License ---------------- -** @aws-sdk/credential-providers@3.828.0 - https://www.npmjs.com/package/@aws-sdk/credential-providers/v/3.828.0 | Apache-2.0 +** @aws-sdk/credential-providers@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-providers/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -6387,7 +6387,7 @@ Apache License ---------------- -** @aws-sdk/ec2-metadata-service@3.828.0 - https://www.npmjs.com/package/@aws-sdk/ec2-metadata-service/v/3.828.0 | Apache-2.0 +** @aws-sdk/ec2-metadata-service@3.839.0 - https://www.npmjs.com/package/@aws-sdk/ec2-metadata-service/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -6592,7 +6592,7 @@ Apache License ---------------- -** @aws-sdk/lib-storage@3.828.0 - https://www.npmjs.com/package/@aws-sdk/lib-storage/v/3.828.0 | Apache-2.0 +** @aws-sdk/lib-storage@3.839.0 - https://www.npmjs.com/package/@aws-sdk/lib-storage/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -6797,7 +6797,7 @@ Apache License ---------------- -** @aws-sdk/middleware-bucket-endpoint@3.821.0 - https://www.npmjs.com/package/@aws-sdk/middleware-bucket-endpoint/v/3.821.0 | Apache-2.0 +** @aws-sdk/middleware-bucket-endpoint@3.830.0 - https://www.npmjs.com/package/@aws-sdk/middleware-bucket-endpoint/v/3.830.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -7209,7 +7209,7 @@ Apache License ---------------- -** @aws-sdk/middleware-flexible-checksums@3.826.0 - https://www.npmjs.com/package/@aws-sdk/middleware-flexible-checksums/v/3.826.0 | Apache-2.0 +** @aws-sdk/middleware-flexible-checksums@3.839.0 - https://www.npmjs.com/package/@aws-sdk/middleware-flexible-checksums/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -8238,7 +8238,7 @@ Apache License ---------------- -** @aws-sdk/middleware-sdk-ec2@3.826.0 - https://www.npmjs.com/package/@aws-sdk/middleware-sdk-ec2/v/3.826.0 | Apache-2.0 +** @aws-sdk/middleware-sdk-ec2@3.839.0 - https://www.npmjs.com/package/@aws-sdk/middleware-sdk-ec2/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -8649,7 +8649,7 @@ Apache License ---------------- -** @aws-sdk/middleware-sdk-s3@3.826.0 - https://www.npmjs.com/package/@aws-sdk/middleware-sdk-s3/v/3.826.0 | Apache-2.0 +** @aws-sdk/middleware-sdk-s3@3.839.0 - https://www.npmjs.com/package/@aws-sdk/middleware-sdk-s3/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -9061,7 +9061,7 @@ Apache License ---------------- -** @aws-sdk/middleware-user-agent@3.828.0 - https://www.npmjs.com/package/@aws-sdk/middleware-user-agent/v/3.828.0 | Apache-2.0 +** @aws-sdk/middleware-user-agent@3.839.0 - https://www.npmjs.com/package/@aws-sdk/middleware-user-agent/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -9267,7 +9267,7 @@ Apache License ---------------- -** @aws-sdk/nested-clients@3.828.0 - https://www.npmjs.com/package/@aws-sdk/nested-clients/v/3.828.0 | Apache-2.0 +** @aws-sdk/nested-clients@3.839.0 - https://www.npmjs.com/package/@aws-sdk/nested-clients/v/3.839.0 | Apache-2.0 ---------------- @@ -9476,7 +9476,7 @@ Apache License ---------------- -** @aws-sdk/signature-v4-multi-region@3.826.0 - https://www.npmjs.com/package/@aws-sdk/signature-v4-multi-region/v/3.826.0 | Apache-2.0 +** @aws-sdk/signature-v4-multi-region@3.839.0 - https://www.npmjs.com/package/@aws-sdk/signature-v4-multi-region/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -9682,7 +9682,7 @@ Apache License ---------------- -** @aws-sdk/token-providers@3.828.0 - https://www.npmjs.com/package/@aws-sdk/token-providers/v/3.828.0 | Apache-2.0 +** @aws-sdk/token-providers@3.839.0 - https://www.npmjs.com/package/@aws-sdk/token-providers/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -10502,7 +10502,7 @@ Apache License ---------------- -** @aws-sdk/util-user-agent-node@3.828.0 - https://www.npmjs.com/package/@aws-sdk/util-user-agent-node/v/3.828.0 | Apache-2.0 +** @aws-sdk/util-user-agent-node@3.839.0 - https://www.npmjs.com/package/@aws-sdk/util-user-agent-node/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -11323,7 +11323,7 @@ Apache License ---------------- -** @smithy/core@3.5.3 - https://www.npmjs.com/package/@smithy/core/v/3.5.3 | Apache-2.0 +** @smithy/core@3.6.0 - https://www.npmjs.com/package/@smithy/core/v/3.6.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -13788,7 +13788,7 @@ Apache License ---------------- -** @smithy/middleware-endpoint@4.1.11 - https://www.npmjs.com/package/@smithy/middleware-endpoint/v/4.1.11 | Apache-2.0 +** @smithy/middleware-endpoint@4.1.13 - https://www.npmjs.com/package/@smithy/middleware-endpoint/v/4.1.13 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -13993,418 +13993,7 @@ Apache License ---------------- -** @smithy/middleware-endpoint@4.1.12 - https://www.npmjs.com/package/@smithy/middleware-endpoint/v/4.1.12 | Apache-2.0 -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - ----------------- - -** @smithy/middleware-retry@4.1.12 - https://www.npmjs.com/package/@smithy/middleware-retry/v/4.1.12 | Apache-2.0 - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - ----------------- - -** @smithy/middleware-serde@4.0.8 - https://www.npmjs.com/package/@smithy/middleware-serde/v/4.0.8 | Apache-2.0 +** @smithy/middleware-retry@4.1.14 - https://www.npmjs.com/package/@smithy/middleware-retry/v/4.1.14 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -14593,7 +14182,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -14610,8 +14199,8 @@ Apache License ---------------- -** @smithy/middleware-stack@4.0.4 - https://www.npmjs.com/package/@smithy/middleware-stack/v/4.0.4 | Apache-2.0 -Apache License +** @smithy/middleware-serde@4.0.8 - https://www.npmjs.com/package/@smithy/middleware-serde/v/4.0.8 | Apache-2.0 + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -14799,7 +14388,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -14813,9 +14402,10 @@ Apache License See the License for the specific language governing permissions and limitations under the License. + ---------------- -** @smithy/node-config-provider@4.1.3 - https://www.npmjs.com/package/@smithy/node-config-provider/v/4.1.3 | Apache-2.0 +** @smithy/middleware-stack@4.0.4 - https://www.npmjs.com/package/@smithy/middleware-stack/v/4.0.4 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -15004,7 +14594,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -15020,7 +14610,7 @@ Apache License ---------------- -** @smithy/node-http-handler@4.0.6 - https://www.npmjs.com/package/@smithy/node-http-handler/v/4.0.6 | Apache-2.0 +** @smithy/node-config-provider@4.1.3 - https://www.npmjs.com/package/@smithy/node-config-provider/v/4.1.3 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -15209,7 +14799,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -15225,7 +14815,7 @@ Apache License ---------------- -** @smithy/property-provider@4.0.4 - https://www.npmjs.com/package/@smithy/property-provider/v/4.0.4 | Apache-2.0 +** @smithy/node-http-handler@4.0.6 - https://www.npmjs.com/package/@smithy/node-http-handler/v/4.0.6 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -15430,8 +15020,8 @@ Apache License ---------------- -** @smithy/protocol-http@5.1.2 - https://www.npmjs.com/package/@smithy/protocol-http/v/5.1.2 | Apache-2.0 - Apache License +** @smithy/property-provider@4.0.4 - https://www.npmjs.com/package/@smithy/property-provider/v/4.0.4 | Apache-2.0 +Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -15619,7 +15209,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -15633,10 +15223,9 @@ Apache License See the License for the specific language governing permissions and limitations under the License. - ---------------- -** @smithy/querystring-builder@4.0.4 - https://www.npmjs.com/package/@smithy/querystring-builder/v/4.0.4 | Apache-2.0 +** @smithy/protocol-http@5.1.2 - https://www.npmjs.com/package/@smithy/protocol-http/v/5.1.2 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -15825,7 +15414,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -15842,7 +15431,7 @@ Apache License ---------------- -** @smithy/querystring-parser@4.0.4 - https://www.npmjs.com/package/@smithy/querystring-parser/v/4.0.4 | Apache-2.0 +** @smithy/querystring-builder@4.0.4 - https://www.npmjs.com/package/@smithy/querystring-builder/v/4.0.4 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -16048,7 +15637,7 @@ Apache License ---------------- -** @smithy/service-error-classification@4.0.5 - https://www.npmjs.com/package/@smithy/service-error-classification/v/4.0.5 | Apache-2.0 +** @smithy/querystring-parser@4.0.4 - https://www.npmjs.com/package/@smithy/querystring-parser/v/4.0.4 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -16870,7 +16459,7 @@ Apache License ---------------- -** @smithy/smithy-client@4.4.3 - https://www.npmjs.com/package/@smithy/smithy-client/v/4.4.3 | Apache-2.0 +** @smithy/smithy-client@4.4.5 - https://www.npmjs.com/package/@smithy/smithy-client/v/4.4.5 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -18718,7 +18307,7 @@ Apache License ---------------- -** @smithy/util-defaults-mode-node@4.0.19 - https://www.npmjs.com/package/@smithy/util-defaults-mode-node/v/4.0.19 | Apache-2.0 +** @smithy/util-defaults-mode-node@4.0.21 - https://www.npmjs.com/package/@smithy/util-defaults-mode-node/v/4.0.21 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -19539,211 +19128,6 @@ Apache License ---------------- -** @smithy/util-retry@4.0.5 - https://www.npmjs.com/package/@smithy/util-retry/v/4.0.5 | Apache-2.0 -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - ----------------- - ** @smithy/util-retry@4.0.6 - https://www.npmjs.com/package/@smithy/util-retry/v/4.0.6 | Apache-2.0 Apache License Version 2.0, January 2004 @@ -20769,7 +20153,7 @@ Apache License ---------------- -** @smithy/util-waiter@4.0.5 - https://www.npmjs.com/package/@smithy/util-waiter/v/4.0.5 | Apache-2.0 +** @smithy/util-waiter@4.0.6 - https://www.npmjs.com/package/@smithy/util-waiter/v/4.0.6 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -21605,7 +20989,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI ---------------- -** cdk-from-cfn@0.222.0 - https://www.npmjs.com/package/cdk-from-cfn/v/0.222.0 | MIT OR Apache-2.0 +** cdk-from-cfn@0.226.0 - https://www.npmjs.com/package/cdk-from-cfn/v/0.226.0 | MIT OR Apache-2.0 ---------------- diff --git a/packages/aws-cdk/lib/cli/cdk-toolkit.ts b/packages/aws-cdk/lib/cli/cdk-toolkit.ts index 2ac0c21c6..4b900b1df 100644 --- a/packages/aws-cdk/lib/cli/cdk-toolkit.ts +++ b/packages/aws-cdk/lib/cli/cdk-toolkit.ts @@ -195,6 +195,12 @@ export class CdkToolkit { await this.props.configuration.saveContext(); } + public async cliTelemetry(enable: boolean) { + this.props.configuration.context.set('cli-telemetry', enable); + await this.props.configuration.saveContext(); + info(`Telemetry ${enable ? 'enabled' : 'disabled'}`); + } + public async diff(options: DiffOptions): Promise { const stacks = await this.selectStacksForDiff(options.stackNames, options.exclusively); diff --git a/packages/aws-cdk/lib/cli/cli-config.ts b/packages/aws-cdk/lib/cli/cli-config.ts index 3ea32e677..9c48126b0 100644 --- a/packages/aws-cdk/lib/cli/cli-config.ts +++ b/packages/aws-cdk/lib/cli/cli-config.ts @@ -44,7 +44,7 @@ export async function makeConfig(): Promise { 'unstable': { type: 'array', desc: 'Opt in to unstable features. The flag indicates that the scope and API of a feature might still change. Otherwise the feature is generally production ready and fully supported. Can be specified multiple times.', default: [] }, }, commands: { - list: { + 'list': { arg: { name: 'STACKS', variadic: true, @@ -56,7 +56,7 @@ export async function makeConfig(): Promise { 'show-dependencies': { type: 'boolean', default: false, alias: 'd', desc: 'Display stack dependency information for each stack' }, }, }, - synth: { + 'synth': { arg: { name: 'STACKS', variadic: true, @@ -69,7 +69,7 @@ export async function makeConfig(): Promise { quiet: { type: 'boolean', alias: 'q', desc: 'Do not output CloudFormation Template to stdout', default: false }, }, }, - bootstrap: { + 'bootstrap': { arg: { name: 'ENVIRONMENTS', variadic: true, @@ -97,7 +97,7 @@ export async function makeConfig(): Promise { 'previous-parameters': { type: 'boolean', default: true, desc: 'Use previous values for existing parameters (you must specify all parameters on every deployment if this is disabled)' }, }, }, - gc: { + 'gc': { description: 'Garbage collect assets. Options detailed here: https://github.com/aws/aws-cdk-cli/tree/main/packages/aws-cdk#cdk-gc', arg: { name: 'ENVIRONMENTS', @@ -112,7 +112,7 @@ export async function makeConfig(): Promise { 'bootstrap-stack-name': { type: 'string', desc: 'The name of the CDK toolkit stack, if different from the default "CDKToolkit"', requiresArg: true }, }, }, - deploy: { + 'deploy': { description: 'Deploys the stack(s) named STACKS into your AWS account', options: { 'all': { type: 'boolean', desc: 'Deploy all available stacks', default: false }, @@ -193,7 +193,7 @@ export async function makeConfig(): Promise { variadic: true, }, }, - rollback: { + 'rollback': { description: 'Rolls back the stack(s) named STACKS to their last stable state', arg: { name: 'STACKS', @@ -219,7 +219,7 @@ export async function makeConfig(): Promise { }, }, }, - import: { + 'import': { description: 'Import existing resource(s) into the given STACK', arg: { name: 'STACK', @@ -255,7 +255,7 @@ export async function makeConfig(): Promise { }, }, }, - watch: { + 'watch': { description: "Shortcut for 'deploy --watch'", arg: { name: 'STACKS', @@ -308,7 +308,7 @@ export async function makeConfig(): Promise { 'concurrency': { type: 'number', desc: 'Maximum number of simultaneous deployments (dependency permitting) to execute.', default: 1, requiresArg: true }, }, }, - destroy: { + 'destroy': { description: 'Destroy the stack(s) named STACKS', arg: { name: 'STACKS', @@ -320,7 +320,7 @@ export async function makeConfig(): Promise { force: { type: 'boolean', alias: 'f', desc: 'Do not ask for confirmation before destroying the stacks' }, }, }, - diff: { + 'diff': { description: 'Compares the specified stack with the deployed stack or a local template file, and returns with status 1 if any difference is found', arg: { name: 'STACKS', @@ -339,7 +339,7 @@ export async function makeConfig(): Promise { 'import-existing-resources': { type: 'boolean', desc: 'Whether or not the change set imports resources that already exist', default: false }, }, }, - drift: { + 'drift': { description: 'Detect drifts in the given CloudFormation stack(s)', arg: { name: 'STACKS', @@ -349,14 +349,14 @@ export async function makeConfig(): Promise { fail: { type: 'boolean', desc: 'Fail with exit code 1 if drift is detected' }, }, }, - metadata: { + 'metadata': { description: 'Returns all metadata associated with this stack', arg: { name: 'STACK', variadic: false, }, }, - acknowledge: { + 'acknowledge': { aliases: ['ack'], description: 'Acknowledge a notice so that it does not show up anymore', arg: { @@ -364,13 +364,13 @@ export async function makeConfig(): Promise { variadic: false, }, }, - notices: { + 'notices': { description: 'Returns a list of relevant notices', options: { unacknowledged: { type: 'boolean', alias: 'u', default: false, desc: 'Returns a list of unacknowledged notices' }, }, }, - init: { + 'init': { description: 'Create a new, empty CDK project from a template.', arg: { name: 'TEMPLATE', @@ -383,7 +383,7 @@ export async function makeConfig(): Promise { 'lib-version': { type: 'string', alias: 'V', default: undefined, desc: 'The version of the CDK library (aws-cdk-lib) to initialize the project with. Defaults to the version that was current when this CLI was built.' }, }, }, - migrate: { + 'migrate': { description: 'Migrate existing AWS resources into a CDK app', options: { 'stack-name': { type: 'string', alias: 'n', desc: 'The name assigned to the stack created in the new project. The name of the app will be based off this name as well.', requiresArg: true }, @@ -411,7 +411,7 @@ export async function makeConfig(): Promise { 'compress': { type: 'boolean', desc: 'Use this flag to zip the generated CDK app' }, }, }, - context: { + 'context': { description: 'Manage cached context values', options: { reset: { alias: 'e', desc: 'The context key (or its index) to reset', type: 'string', requiresArg: true, default: undefined }, @@ -419,7 +419,7 @@ export async function makeConfig(): Promise { clear: { desc: 'Clear all context', type: 'boolean', default: false }, }, }, - docs: { + 'docs': { aliases: ['doc'], description: 'Opens the reference documentation in a browser', options: { @@ -431,10 +431,10 @@ export async function makeConfig(): Promise { }, }, }, - doctor: { + 'doctor': { description: 'Check your set-up for potential problems', }, - refactor: { + 'refactor': { description: 'Moves resources between stacks or within the same stack', arg: { name: 'STACKS', @@ -463,6 +463,21 @@ export async function makeConfig(): Promise { }, }, }, + 'cli-telemetry': { + description: 'Enable or disable anonymous telemetry', + options: { + enable: { + type: 'boolean', + desc: 'Enable anonymous telemetry', + conflicts: 'disable', + }, + disable: { + type: 'boolean', + desc: 'Disable anonymous telemetry', + conflicts: 'enable', + }, + }, + }, }, }; } diff --git a/packages/aws-cdk/lib/cli/cli.ts b/packages/aws-cdk/lib/cli/cli.ts index 32dfdbea6..e5648b94d 100644 --- a/packages/aws-cdk/lib/cli/cli.ts +++ b/packages/aws-cdk/lib/cli/cli.ts @@ -454,6 +454,15 @@ export async function exec(args: string[], synthesizer?: Synthesizer): Promise): any { desc: 'If specified, the command will revert the refactor operation. This is only valid if a mapping file was provided.', }), ) + .command('cli-telemetry', 'Enable or disable anonymous telemetry', (yargs: Argv) => + yargs + .option('enable', { + default: undefined, + type: 'boolean', + desc: 'Enable anonymous telemetry', + conflicts: 'disable', + }) + .option('disable', { + default: undefined, + type: 'boolean', + desc: 'Disable anonymous telemetry', + conflicts: 'enable', + }), + ) .version(helpers.cliVersion()) .demandCommand(1, '') .recommendCommands() diff --git a/packages/aws-cdk/lib/cli/user-configuration.ts b/packages/aws-cdk/lib/cli/user-configuration.ts index bbaff52a0..9ffb57750 100644 --- a/packages/aws-cdk/lib/cli/user-configuration.ts +++ b/packages/aws-cdk/lib/cli/user-configuration.ts @@ -38,6 +38,7 @@ export enum Command { DOCTOR = 'doctor', REFACTOR = 'refactor', DRIFT = 'drift', + CLI_TELEMETRY = 'cli-telemetry', } const BUNDLING_COMMANDS = [ diff --git a/packages/aws-cdk/lib/cli/user-input.ts b/packages/aws-cdk/lib/cli/user-input.ts index 0aa41a901..068bc6c4b 100644 --- a/packages/aws-cdk/lib/cli/user-input.ts +++ b/packages/aws-cdk/lib/cli/user-input.ts @@ -128,6 +128,11 @@ export interface UserInput { * Moves resources between stacks or within the same stack */ readonly refactor?: RefactorOptions; + + /** + * Enable or disable anonymous telemetry + */ + readonly cliTelemetry?: CliTelemetryOptions; } /** @@ -1452,3 +1457,24 @@ export interface RefactorOptions { */ readonly STACKS?: Array; } + +/** + * Enable or disable anonymous telemetry + * + * @struct + */ +export interface CliTelemetryOptions { + /** + * Enable anonymous telemetry + * + * @default - undefined + */ + readonly enable?: boolean; + + /** + * Disable anonymous telemetry + * + * @default - undefined + */ + readonly disable?: boolean; +} diff --git a/packages/aws-cdk/lib/init-templates/.init-version.json b/packages/aws-cdk/lib/init-templates/.init-version.json index e097445fc..cf188c0bb 100644 --- a/packages/aws-cdk/lib/init-templates/.init-version.json +++ b/packages/aws-cdk/lib/init-templates/.init-version.json @@ -1 +1 @@ -{"aws-cdk-lib": "2.201.0", "constructs": "^10.0.0"} +{"aws-cdk-lib": "2.202.0", "constructs": "^10.0.0"} diff --git a/packages/aws-cdk/lib/init-templates/.recommended-feature-flags.json b/packages/aws-cdk/lib/init-templates/.recommended-feature-flags.json index d378e824f..41900a9c3 100644 --- a/packages/aws-cdk/lib/init-templates/.recommended-feature-flags.json +++ b/packages/aws-cdk/lib/init-templates/.recommended-feature-flags.json @@ -31,6 +31,7 @@ "@aws-cdk/aws-ec2:restrictDefaultSecurityGroup": true, "@aws-cdk/aws-apigateway:requestValidatorUniqueId": true, "@aws-cdk/aws-kms:aliasNameRef": true, + "@aws-cdk/aws-kms:applyImportedAliasPermissionsToPrincipal": true, "@aws-cdk/aws-autoscaling:generateLaunchTemplateInsteadOfLaunchConfig": true, "@aws-cdk/core:includePrefixInUniqueNameGeneration": true, "@aws-cdk/aws-efs:denyAnonymousAccess": true, diff --git a/packages/aws-cdk/package.json b/packages/aws-cdk/package.json index c373726a6..7b3b038a0 100644 --- a/packages/aws-cdk/package.json +++ b/packages/aws-cdk/package.json @@ -49,7 +49,7 @@ "@types/yargs": "^15", "@typescript-eslint/eslint-plugin": "^8", "@typescript-eslint/parser": "^8", - "aws-cdk-lib": "^2.201.0", + "aws-cdk-lib": "^2.202.0", "aws-sdk-client-mock": "^4.1.0", "aws-sdk-client-mock-jest": "^4.1.0", "axios": "^1.10.0", @@ -58,10 +58,10 @@ "eslint": "^9", "eslint-config-prettier": "^10.1.5", "eslint-import-resolver-typescript": "^3.10.1", - "eslint-plugin-import": "^2.31.0", + "eslint-plugin-import": "^2.32.0", "eslint-plugin-jest": "^28.14.0", "eslint-plugin-jsdoc": "^50.8.0", - "eslint-plugin-prettier": "^5.4.1", + "eslint-plugin-prettier": "^5.5.1", "fast-check": "^3.23.2", "jest": "^29.7.0", "jest-environment-node": "^29.7.0", @@ -82,7 +82,7 @@ "@aws-cdk/cdk-assets-lib": "^0.0.0", "@aws-cdk/cloud-assembly-schema": "^0.0.0", "@aws-cdk/cloudformation-diff": "^0.0.0", - "@aws-cdk/cx-api": "^2.201.0", + "@aws-cdk/cx-api": "^2.202.0", "@aws-cdk/toolkit-lib": "^0.0.0", "@aws-sdk/client-appsync": "^3", "@aws-sdk/client-cloudcontrol": "^3", @@ -108,15 +108,15 @@ "@aws-sdk/middleware-endpoint": "^3.374.0", "@aws-sdk/util-retry": "^3.374.0", "@aws-sdk/util-waiter": "^3.374.0", - "@smithy/middleware-endpoint": "^4.1.11", + "@smithy/middleware-endpoint": "^4.1.13", "@smithy/property-provider": "^4.0.4", "@smithy/shared-ini-file-loader": "^4.0.4", "@smithy/types": "^4.3.1", - "@smithy/util-retry": "^4.0.5", - "@smithy/util-waiter": "^4.0.5", + "@smithy/util-retry": "^4.0.6", + "@smithy/util-waiter": "^4.0.6", "archiver": "^7.0.1", "camelcase": "^6", - "cdk-from-cfn": "^0.222.0", + "cdk-from-cfn": "^0.226.0", "chalk": "^4", "chokidar": "^3", "decamelize": "^5", diff --git a/packages/aws-cdk/test/cli/cli-arguments.test.ts b/packages/aws-cdk/test/cli/cli-arguments.test.ts index b2b8a7e35..e09d48325 100644 --- a/packages/aws-cdk/test/cli/cli-arguments.test.ts +++ b/packages/aws-cdk/test/cli/cli-arguments.test.ts @@ -97,7 +97,7 @@ describe('yargs', () => { }); describe('config', () => { - test('cdk.json arguments can be converted to cli argumets', async () => { + test('cdk.json arguments can be converted to cli arguments', async () => { const input = { output: 'blah.out', build: 'yarn build', @@ -140,6 +140,7 @@ describe('config', () => { doctor: expect.anything(), docs: expect.anything(), refactor: expect.anything(), + cliTelemetry: expect.anything(), }); }); }); diff --git a/packages/aws-cdk/test/cli/cli-commands.test.ts b/packages/aws-cdk/test/cli/cli-commands.test.ts index 07cb3f891..9107343d2 100644 --- a/packages/aws-cdk/test/cli/cli-commands.test.ts +++ b/packages/aws-cdk/test/cli/cli-commands.test.ts @@ -44,3 +44,11 @@ describe('context', () => { expect(logging.info).toHaveBeenCalledWith(expect.stringContaining('This CDK application does not have any saved context values yet.')); }); }); + +describe('cli-telemetry', () => { + test('requires either --enable or --disable flag', async () => { + await expect(exec(['cli-telemetry'])) + .rejects + .toThrow("Must specify either '--enable' or '--disable'"); + }); +}); diff --git a/packages/aws-cdk/test/commands/telemetry.test.ts b/packages/aws-cdk/test/commands/telemetry.test.ts new file mode 100644 index 000000000..722f4f63d --- /dev/null +++ b/packages/aws-cdk/test/commands/telemetry.test.ts @@ -0,0 +1,41 @@ +import { CdkToolkit } from '../../lib/cli/cdk-toolkit'; +import { Configuration } from '../../lib/cli/user-configuration'; +import { info } from '../../lib/logging'; + +jest.mock('../../lib/logging', () => ({ + info: jest.fn(), +})); + +describe('telemetry command', () => { + let configuration: Configuration; + let toolkit: CdkToolkit; + + beforeEach(() => { + configuration = new Configuration(); + toolkit = new CdkToolkit({ + configuration, + sdkProvider: {} as any, + cloudExecutable: {} as any, + deployments: {} as any, + }); + jest.clearAllMocks(); + }); + + test('enable telemetry saves setting and displays message', async () => { + // WHEN + await toolkit.cliTelemetry(true); + + // THEN + expect(configuration.context.get('cli-telemetry')).toBe(true); + expect(info).toHaveBeenCalledWith('Telemetry enabled'); + }); + + test('disable telemetry saves setting and displays message', async () => { + // WHEN + await toolkit.cliTelemetry(false); + + // THEN + expect(configuration.context.get('cli-telemetry')).toBe(false); + expect(info).toHaveBeenCalledWith('Telemetry disabled'); + }); +}); diff --git a/packages/cdk-assets/.projen/tasks.json b/packages/cdk-assets/.projen/tasks.json index 4ea9aabd9..8872722c1 100644 --- a/packages/cdk-assets/.projen/tasks.json +++ b/packages/cdk-assets/.projen/tasks.json @@ -142,7 +142,7 @@ "exec": "mkdir -p dist/js" }, { - "exec": "node-backpack pack --destination dist/js --allowed-license \"Apache-2.0\" --allowed-license \"MIT\" --allowed-license \"BSD-3-Clause\" --allowed-license \"ISC\" --allowed-license \"BSD-2-Clause\" --allowed-license \"0BSD\" --allowed-license \"MIT OR Apache-2.0\" --dont-attribute '^@aws-cdk/|^@cdklabs/$' --test 'bin/cdk-assets --version' --entrypoint 'bin/cdk-assets.js' --metafile dist/metafile.json" + "exec": "node-backpack pack --destination dist/js --allowed-license \"Apache-2.0\" --allowed-license \"MIT\" --allowed-license \"BSD-3-Clause\" --allowed-license \"ISC\" --allowed-license \"BSD-2-Clause\" --allowed-license \"0BSD\" --allowed-license \"MIT OR Apache-2.0\" --dont-attribute '^@aws-cdk/|^@cdklabs/$' --test 'bin/cdk-assets --version' --entrypoint 'bin/cdk-assets.js' --entrypoint 'bin/docker-credential-cdk-assets.js' --metafile dist/metafile.json" } ] }, @@ -151,7 +151,7 @@ "description": "Runs after successful compilation", "steps": [ { - "exec": "node-backpack validate --fix --allowed-license \"Apache-2.0\" --allowed-license \"MIT\" --allowed-license \"BSD-3-Clause\" --allowed-license \"ISC\" --allowed-license \"BSD-2-Clause\" --allowed-license \"0BSD\" --allowed-license \"MIT OR Apache-2.0\" --dont-attribute '^@aws-cdk/|^@cdklabs/$' --test 'bin/cdk-assets --version' --entrypoint 'bin/cdk-assets.js'" + "exec": "node-backpack validate --fix --allowed-license \"Apache-2.0\" --allowed-license \"MIT\" --allowed-license \"BSD-3-Clause\" --allowed-license \"ISC\" --allowed-license \"BSD-2-Clause\" --allowed-license \"0BSD\" --allowed-license \"MIT OR Apache-2.0\" --dont-attribute '^@aws-cdk/|^@cdklabs/$' --test 'bin/cdk-assets --version' --entrypoint 'bin/cdk-assets.js' --entrypoint 'bin/docker-credential-cdk-assets.js'" } ] }, diff --git a/packages/cdk-assets/THIRD_PARTY_LICENSES b/packages/cdk-assets/THIRD_PARTY_LICENSES index 10ad986ef..341dad711 100644 --- a/packages/cdk-assets/THIRD_PARTY_LICENSES +++ b/packages/cdk-assets/THIRD_PARTY_LICENSES @@ -618,7 +618,7 @@ The cdk-assets package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-cognito-identity@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-cognito-identity/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-cognito-identity@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-cognito-identity/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -824,7 +824,7 @@ The cdk-assets package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-ecr@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-ecr/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-ecr@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-ecr/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -1030,7 +1030,7 @@ The cdk-assets package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-s3@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-s3/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-s3@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-s3/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -1236,7 +1236,7 @@ The cdk-assets package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-secrets-manager@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-secrets-manager/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-secrets-manager@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-secrets-manager/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -1442,7 +1442,7 @@ The cdk-assets package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-sso@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-sso/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-sso@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-sso/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -1648,7 +1648,7 @@ The cdk-assets package includes the following third-party software/licensing: ---------------- -** @aws-sdk/client-sts@3.828.0 - https://www.npmjs.com/package/@aws-sdk/client-sts/v/3.828.0 | Apache-2.0 +** @aws-sdk/client-sts@3.839.0 - https://www.npmjs.com/package/@aws-sdk/client-sts/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -1854,11 +1854,11 @@ The cdk-assets package includes the following third-party software/licensing: ---------------- -** @aws-sdk/core@3.826.0 - https://www.npmjs.com/package/@aws-sdk/core/v/3.826.0 | Apache-2.0 +** @aws-sdk/core@3.839.0 - https://www.npmjs.com/package/@aws-sdk/core/v/3.839.0 | Apache-2.0 ---------------- -** @aws-sdk/credential-provider-cognito-identity@3.828.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-cognito-identity/v/3.828.0 | Apache-2.0 +** @aws-sdk/credential-provider-cognito-identity@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-cognito-identity/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -2064,7 +2064,7 @@ The cdk-assets package includes the following third-party software/licensing: ---------------- -** @aws-sdk/credential-provider-env@3.826.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-env/v/3.826.0 | Apache-2.0 +** @aws-sdk/credential-provider-env@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-env/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -2269,11 +2269,11 @@ Apache License ---------------- -** @aws-sdk/credential-provider-http@3.826.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-http/v/3.826.0 | Apache-2.0 +** @aws-sdk/credential-provider-http@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-http/v/3.839.0 | Apache-2.0 ---------------- -** @aws-sdk/credential-provider-ini@3.828.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-ini/v/3.828.0 | Apache-2.0 +** @aws-sdk/credential-provider-ini@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-ini/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -2478,7 +2478,7 @@ Apache License ---------------- -** @aws-sdk/credential-provider-node@3.828.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-node/v/3.828.0 | Apache-2.0 +** @aws-sdk/credential-provider-node@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-node/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -2683,7 +2683,7 @@ Apache License ---------------- -** @aws-sdk/credential-provider-process@3.826.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-process/v/3.826.0 | Apache-2.0 +** @aws-sdk/credential-provider-process@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-process/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -2888,7 +2888,7 @@ Apache License ---------------- -** @aws-sdk/credential-provider-sso@3.828.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-sso/v/3.828.0 | Apache-2.0 +** @aws-sdk/credential-provider-sso@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-sso/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -3093,7 +3093,7 @@ Apache License ---------------- -** @aws-sdk/credential-provider-web-identity@3.828.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-web-identity/v/3.828.0 | Apache-2.0 +** @aws-sdk/credential-provider-web-identity@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-provider-web-identity/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -3298,7 +3298,7 @@ Apache License ---------------- -** @aws-sdk/credential-providers@3.828.0 - https://www.npmjs.com/package/@aws-sdk/credential-providers/v/3.828.0 | Apache-2.0 +** @aws-sdk/credential-providers@3.839.0 - https://www.npmjs.com/package/@aws-sdk/credential-providers/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -3503,7 +3503,7 @@ Apache License ---------------- -** @aws-sdk/lib-storage@3.828.0 - https://www.npmjs.com/package/@aws-sdk/lib-storage/v/3.828.0 | Apache-2.0 +** @aws-sdk/lib-storage@3.839.0 - https://www.npmjs.com/package/@aws-sdk/lib-storage/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -3708,7 +3708,7 @@ Apache License ---------------- -** @aws-sdk/middleware-bucket-endpoint@3.821.0 - https://www.npmjs.com/package/@aws-sdk/middleware-bucket-endpoint/v/3.821.0 | Apache-2.0 +** @aws-sdk/middleware-bucket-endpoint@3.830.0 - https://www.npmjs.com/package/@aws-sdk/middleware-bucket-endpoint/v/3.830.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -4120,7 +4120,7 @@ Apache License ---------------- -** @aws-sdk/middleware-flexible-checksums@3.826.0 - https://www.npmjs.com/package/@aws-sdk/middleware-flexible-checksums/v/3.826.0 | Apache-2.0 +** @aws-sdk/middleware-flexible-checksums@3.839.0 - https://www.npmjs.com/package/@aws-sdk/middleware-flexible-checksums/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -5149,7 +5149,7 @@ Apache License ---------------- -** @aws-sdk/middleware-sdk-s3@3.826.0 - https://www.npmjs.com/package/@aws-sdk/middleware-sdk-s3/v/3.826.0 | Apache-2.0 +** @aws-sdk/middleware-sdk-s3@3.839.0 - https://www.npmjs.com/package/@aws-sdk/middleware-sdk-s3/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -5561,7 +5561,7 @@ Apache License ---------------- -** @aws-sdk/middleware-user-agent@3.828.0 - https://www.npmjs.com/package/@aws-sdk/middleware-user-agent/v/3.828.0 | Apache-2.0 +** @aws-sdk/middleware-user-agent@3.839.0 - https://www.npmjs.com/package/@aws-sdk/middleware-user-agent/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -5767,7 +5767,7 @@ Apache License ---------------- -** @aws-sdk/nested-clients@3.828.0 - https://www.npmjs.com/package/@aws-sdk/nested-clients/v/3.828.0 | Apache-2.0 +** @aws-sdk/nested-clients@3.839.0 - https://www.npmjs.com/package/@aws-sdk/nested-clients/v/3.839.0 | Apache-2.0 ---------------- @@ -5976,7 +5976,7 @@ Apache License ---------------- -** @aws-sdk/signature-v4-multi-region@3.826.0 - https://www.npmjs.com/package/@aws-sdk/signature-v4-multi-region/v/3.826.0 | Apache-2.0 +** @aws-sdk/signature-v4-multi-region@3.839.0 - https://www.npmjs.com/package/@aws-sdk/signature-v4-multi-region/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -6182,7 +6182,7 @@ Apache License ---------------- -** @aws-sdk/token-providers@3.828.0 - https://www.npmjs.com/package/@aws-sdk/token-providers/v/3.828.0 | Apache-2.0 +** @aws-sdk/token-providers@3.839.0 - https://www.npmjs.com/package/@aws-sdk/token-providers/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -6797,7 +6797,7 @@ Apache License ---------------- -** @aws-sdk/util-user-agent-node@3.828.0 - https://www.npmjs.com/package/@aws-sdk/util-user-agent-node/v/3.828.0 | Apache-2.0 +** @aws-sdk/util-user-agent-node@3.839.0 - https://www.npmjs.com/package/@aws-sdk/util-user-agent-node/v/3.839.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -7618,7 +7618,7 @@ Apache License ---------------- -** @smithy/core@3.5.3 - https://www.npmjs.com/package/@smithy/core/v/3.5.3 | Apache-2.0 +** @smithy/core@3.6.0 - https://www.npmjs.com/package/@smithy/core/v/3.6.0 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -10083,7 +10083,7 @@ Apache License ---------------- -** @smithy/middleware-endpoint@4.1.11 - https://www.npmjs.com/package/@smithy/middleware-endpoint/v/4.1.11 | Apache-2.0 +** @smithy/middleware-endpoint@4.1.13 - https://www.npmjs.com/package/@smithy/middleware-endpoint/v/4.1.13 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -10288,7 +10288,7 @@ Apache License ---------------- -** @smithy/middleware-retry@4.1.12 - https://www.npmjs.com/package/@smithy/middleware-retry/v/4.1.12 | Apache-2.0 +** @smithy/middleware-retry@4.1.14 - https://www.npmjs.com/package/@smithy/middleware-retry/v/4.1.14 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -12138,7 +12138,7 @@ Apache License ---------------- -** @smithy/service-error-classification@4.0.5 - https://www.npmjs.com/package/@smithy/service-error-classification/v/4.0.5 | Apache-2.0 +** @smithy/service-error-classification@4.0.6 - https://www.npmjs.com/package/@smithy/service-error-classification/v/4.0.6 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -12754,7 +12754,7 @@ Apache License ---------------- -** @smithy/smithy-client@4.4.3 - https://www.npmjs.com/package/@smithy/smithy-client/v/4.4.3 | Apache-2.0 +** @smithy/smithy-client@4.4.5 - https://www.npmjs.com/package/@smithy/smithy-client/v/4.4.5 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -14602,7 +14602,7 @@ Apache License ---------------- -** @smithy/util-defaults-mode-node@4.0.19 - https://www.npmjs.com/package/@smithy/util-defaults-mode-node/v/4.0.19 | Apache-2.0 +** @smithy/util-defaults-mode-node@4.0.21 - https://www.npmjs.com/package/@smithy/util-defaults-mode-node/v/4.0.21 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -15423,7 +15423,7 @@ Apache License ---------------- -** @smithy/util-retry@4.0.5 - https://www.npmjs.com/package/@smithy/util-retry/v/4.0.5 | Apache-2.0 +** @smithy/util-retry@4.0.6 - https://www.npmjs.com/package/@smithy/util-retry/v/4.0.6 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -16448,7 +16448,7 @@ Apache License ---------------- -** @smithy/util-waiter@4.0.5 - https://www.npmjs.com/package/@smithy/util-waiter/v/4.0.5 | Apache-2.0 +** @smithy/util-waiter@4.0.6 - https://www.npmjs.com/package/@smithy/util-waiter/v/4.0.6 | Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ diff --git a/packages/cdk-assets/bin/docker-credential-cdk-assets.ts b/packages/cdk-assets/bin/docker-credential-cdk-assets.ts index 20f760a44..a53aa8002 100644 --- a/packages/cdk-assets/bin/docker-credential-cdk-assets.ts +++ b/packages/cdk-assets/bin/docker-credential-cdk-assets.ts @@ -14,11 +14,15 @@ import * as fs from 'fs'; import { DefaultAwsClient } from '@aws-cdk/cdk-assets-lib'; +// During bundling, esbuild enforces that every module accessed +// via the top level package name is also exported. Since 'docker-credentials' +// is a private module, we prefer to not export it. Luckily, we can use relative +// local paths instead. import { cdkCredentialsConfig, cdkCredentialsConfigFile, fetchDockerLoginCredentials, -} from '@aws-cdk/cdk-assets-lib/lib/private/docker-credentials'; +} from '../../@aws-cdk/cdk-assets-lib/lib/private/docker-credentials'; async function main() { // Expected invocation is [node, docker-credential-cdk-assets, get] with input fed via STDIN diff --git a/packages/cdk-assets/package.json b/packages/cdk-assets/package.json index 88912edcb..a60f59ec9 100644 --- a/packages/cdk-assets/package.json +++ b/packages/cdk-assets/package.json @@ -36,7 +36,7 @@ }, "devDependencies": { "@aws-cdk/cloud-assembly-schema": "^0.0.0", - "@aws-sdk/client-s3": "^3.828.0", + "@aws-sdk/client-s3": "^3.839.0", "@cdklabs/eslint-plugin": "^1.3.2", "@stylistic/eslint-plugin": "^3", "@types/jest": "^29.5.14", @@ -50,10 +50,10 @@ "eslint": "^9", "eslint-config-prettier": "^10.1.5", "eslint-import-resolver-typescript": "^3.10.1", - "eslint-plugin-import": "^2.31.0", + "eslint-plugin-import": "^2.32.0", "eslint-plugin-jest": "^28.14.0", "eslint-plugin-jsdoc": "^50.8.0", - "eslint-plugin-prettier": "^5.4.1", + "eslint-plugin-prettier": "^5.5.1", "jest": "^29.7.0", "jest-junit": "^16", "license-checker": "^25.0.1", diff --git a/packages/cdk/package.json b/packages/cdk/package.json index ad10e6940..d17f1eb40 100644 --- a/packages/cdk/package.json +++ b/packages/cdk/package.json @@ -45,10 +45,10 @@ "eslint": "^9", "eslint-config-prettier": "^10.1.5", "eslint-import-resolver-typescript": "^3.10.1", - "eslint-plugin-import": "^2.31.0", + "eslint-plugin-import": "^2.32.0", "eslint-plugin-jest": "^28.14.0", "eslint-plugin-jsdoc": "^50.8.0", - "eslint-plugin-prettier": "^5.4.1", + "eslint-plugin-prettier": "^5.5.1", "jest": "^29.7.0", "jest-junit": "^16", "license-checker": "^25.0.1", diff --git a/yarn.lock b/yarn.lock index b24d3d4ac..092289be9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -21,36 +21,36 @@ "@csstools/css-tokenizer" "^3.0.3" lru-cache "^10.4.3" -"@aws-cdk/asset-awscli-v1@2.2.237": - version "2.2.237" - resolved "https://registry.yarnpkg.com/@aws-cdk/asset-awscli-v1/-/asset-awscli-v1-2.2.237.tgz#d3356aaf3f73e34982ae289b7e4441e20d58497a" - integrity sha512-OlXylbXI52lboFVJBFLae+WB99qWmI121x/wXQHEMj2RaVNVbWE+OAHcDk2Um1BitUQCaTf9ki57B0Fuqx0Rvw== +"@aws-cdk/asset-awscli-v1@2.2.240": + version "2.2.240" + resolved "https://registry.yarnpkg.com/@aws-cdk/asset-awscli-v1/-/asset-awscli-v1-2.2.240.tgz#1dae84e4772778b461aaf14dec5ed7922d8c4385" + integrity sha512-Ry5yvGVf8s7j1Gf1aBFs0mBnWzRkkRtgSVpRGkDWXvZoPbRODAH33S1mAxkETNb+dNnTPGE2Gvws0XbhpJ6RzA== "@aws-cdk/asset-node-proxy-agent-v6@^2.1.0": version "2.1.0" resolved "https://registry.yarnpkg.com/@aws-cdk/asset-node-proxy-agent-v6/-/asset-node-proxy-agent-v6-2.1.0.tgz#6d3c7860354d4856a7e75375f2f0ecab313b4989" integrity sha512-7bY3J8GCVxLupn/kNmpPc5VJz8grx+4RKfnnJiO1LG+uxkZfANZG3RMHhE+qQxxwkyQ9/MfPtTpf748UhR425A== -"@aws-cdk/aws-service-spec@^0.1.82": - version "0.1.82" - resolved "https://registry.yarnpkg.com/@aws-cdk/aws-service-spec/-/aws-service-spec-0.1.82.tgz#d9d0b9e918daea01912de11e670e29e669b0f718" - integrity sha512-Vn0qMU00ozjmzxMgAluhS8V8H+/tk0Zk8VwKKf4kDJ3i1uFp15mfQM5vch8JwNs5Tn/xAOCX7jIavh1PiKfKYg== +"@aws-cdk/aws-service-spec@^0.1.84": + version "0.1.84" + resolved "https://registry.yarnpkg.com/@aws-cdk/aws-service-spec/-/aws-service-spec-0.1.84.tgz#520b4d69365bed901813fac1821750d899f6cc7e" + integrity sha512-anurRdTvmebg3VhHeXDE7c039jJqVZNBtDvnxmbmjENDLch+jmu7uxIx0DXRLT7201raR7BKA28/nQh2srCzNA== dependencies: - "@aws-cdk/service-spec-types" "^0.0.148" + "@aws-cdk/service-spec-types" "^0.0.150" "@cdklabs/tskb" "^0.0.3" "@aws-cdk/cloud-assembly-schema@^44.2.0": - version "44.5.0" - resolved "https://registry.yarnpkg.com/@aws-cdk/cloud-assembly-schema/-/cloud-assembly-schema-44.5.0.tgz#475b4997977c1e3f8ebc379823259f4c85986ce8" - integrity sha512-/dk9YtqF+BnBS6k4m7YWIp7Pd80m7jdjT8ED8gb3Rd9hAuAEUoJubO0M3EOlLFmknIesQNm95LYU6vt/MIQhWg== + version "44.8.0" + resolved "https://registry.yarnpkg.com/@aws-cdk/cloud-assembly-schema/-/cloud-assembly-schema-44.8.0.tgz#52da129bd718cc354c2970a6922c2346459f3945" + integrity sha512-Bxyj0VH8phE1uHJ6LiG3/UC/HYK91EBZnXSOzwtLsMJ0ZPuaQCYDRVAAfjDCSsEOwAk56/Waks8b5pXHpgz/xw== dependencies: jsonschema "~1.4.1" semver "^7.7.2" -"@aws-cdk/cx-api@^2", "@aws-cdk/cx-api@^2.201.0": - version "2.201.0" - resolved "https://registry.yarnpkg.com/@aws-cdk/cx-api/-/cx-api-2.201.0.tgz#7cb93841833eb5a58a4b5ae6e31ba50e8cf3dcd9" - integrity sha512-wNr4vwbZDhj7RhDMOSuisJjvsm3VoWjETxhtXpqLAC6XgeLgiz23Bhq0nmpTzRDKeyvW59JO5eIkbJDSNDpdJA== +"@aws-cdk/cx-api@^2", "@aws-cdk/cx-api@^2.202.0": + version "2.202.0" + resolved "https://registry.yarnpkg.com/@aws-cdk/cx-api/-/cx-api-2.202.0.tgz#3c4e4acbc8c5717f4acc284204d3b47eb60a7c17" + integrity sha512-VhG77DeB4hStbV8EEbO3sHUjFRG3vSlT4KzU0bwa7XeCql8nWhQt7YtMWY3bFzDIHkKWDeiffN8d0wwuR8imGA== dependencies: semver "^7.7.2" @@ -59,10 +59,10 @@ resolved "https://registry.yarnpkg.com/@aws-cdk/integ-tests-alpha/-/integ-tests-alpha-2.184.1-alpha.0.tgz#0719db2d294eac42de58f320238b3cd9a0e5b8fc" integrity sha512-9ca8uxcP41USi2Y/ulGFR9iCLEAofq6h8VcSMpJHRvJb3mQtBJ+WYwXIn+uyMtDBIWX4pOyMk/6XZDuZVpwOsg== -"@aws-cdk/service-spec-types@^0.0.148": - version "0.0.148" - resolved "https://registry.yarnpkg.com/@aws-cdk/service-spec-types/-/service-spec-types-0.0.148.tgz#8ec4fa34d4bbb7e9542bce09da0641a20795f771" - integrity sha512-efHu3o1r/OWpwtz0415EEyXOLtxq7Wd4m7vb+bSg/QybNK9wwwlmYqDQaA8bDzygGJr4Kyq6losvGZhiBuYkiA== +"@aws-cdk/service-spec-types@^0.0.150": + version "0.0.150" + resolved "https://registry.yarnpkg.com/@aws-cdk/service-spec-types/-/service-spec-types-0.0.150.tgz#3a42559d9f81663f089b7ac518116c33a726c5ff" + integrity sha512-s/hDl+Q+ste5xtriLBxKFreH3GfG9YFBsxpvz+oYEjMtc9ILrtVPcUqcU3SonprRdgDNkuB8Kghecp5iRBTgpA== dependencies: "@cdklabs/tskb" "^0.0.3" @@ -187,95 +187,95 @@ tslib "^1.8.0" "@aws-sdk/client-appsync@^3": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-appsync/-/client-appsync-3.828.0.tgz#6df9b6cfb481e8a9e0dc9d3c949a0f67aeaa9537" - integrity sha512-gyxuPsMUY6/UqrZAa7G5pQInZIAOnlMAqRtTEJvkrxOgy2RcgADfYHuZGTP/4wZWFEvHbJ6bm94s19qrOryDlA== + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-appsync/-/client-appsync-3.839.0.tgz#5cae16967f0633d783ec1b82d6e8e11008339ce1" + integrity sha512-TcJN9Gk7w9hhXUlCOTLc/hghzPJLRXCdM9/a0zdzOz3kd7N7b6rPuTL3qgXuPn4eO90oHjOucioQmlgJUnEYDg== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.828.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/credential-provider-node" "3.839.0" "@aws-sdk/middleware-host-header" "3.821.0" "@aws-sdk/middleware-logger" "3.821.0" "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" + "@aws-sdk/middleware-user-agent" "3.839.0" "@aws-sdk/region-config-resolver" "3.821.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-endpoints" "3.828.0" "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" + "@aws-sdk/util-user-agent-node" "3.839.0" "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" + "@smithy/core" "^3.6.0" "@smithy/fetch-http-handler" "^5.0.4" "@smithy/hash-node" "^4.0.4" "@smithy/invalid-dependency" "^4.0.4" "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" + "@smithy/middleware-endpoint" "^4.1.13" + "@smithy/middleware-retry" "^4.1.14" "@smithy/middleware-serde" "^4.0.8" "@smithy/middleware-stack" "^4.0.4" "@smithy/node-config-provider" "^4.1.3" "@smithy/node-http-handler" "^4.0.6" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/url-parser" "^4.0.4" "@smithy/util-base64" "^4.0.0" "@smithy/util-body-length-browser" "^4.0.0" "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" + "@smithy/util-defaults-mode-browser" "^4.0.21" + "@smithy/util-defaults-mode-node" "^4.0.21" "@smithy/util-endpoints" "^3.0.6" "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" + "@smithy/util-retry" "^4.0.6" "@smithy/util-stream" "^4.2.2" "@smithy/util-utf8" "^4.0.0" tslib "^2.6.2" "@aws-sdk/client-cloudcontrol@^3": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-cloudcontrol/-/client-cloudcontrol-3.828.0.tgz#afb87cbf879230f43f4554e9f7dd3a0ed1fe2f41" - integrity sha512-Rrwa8KyZZxgjhqkP6DHGcJ8rjU/CfU28fW4f+l+ol6yXno6dvNenpwvb1dt7PZ3JWomDHejGoVysh8AGPfOkCw== + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-cloudcontrol/-/client-cloudcontrol-3.839.0.tgz#4da4f891b647eda06a8b46c3e51d419f636a1fe1" + integrity sha512-EZxZnlKJ258t9Mefzex3LTNZlSvwFYFsqSx5Qo/UXCz/EqFcNbMtTA9yclfpRtisfUR1+QAdAEx4a1/I5LYCUw== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.828.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/credential-provider-node" "3.839.0" "@aws-sdk/middleware-host-header" "3.821.0" "@aws-sdk/middleware-logger" "3.821.0" "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" + "@aws-sdk/middleware-user-agent" "3.839.0" "@aws-sdk/region-config-resolver" "3.821.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-endpoints" "3.828.0" "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" + "@aws-sdk/util-user-agent-node" "3.839.0" "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" + "@smithy/core" "^3.6.0" "@smithy/fetch-http-handler" "^5.0.4" "@smithy/hash-node" "^4.0.4" "@smithy/invalid-dependency" "^4.0.4" "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" + "@smithy/middleware-endpoint" "^4.1.13" + "@smithy/middleware-retry" "^4.1.14" "@smithy/middleware-serde" "^4.0.8" "@smithy/middleware-stack" "^4.0.4" "@smithy/node-config-provider" "^4.1.3" "@smithy/node-http-handler" "^4.0.6" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/url-parser" "^4.0.4" "@smithy/util-base64" "^4.0.0" "@smithy/util-body-length-browser" "^4.0.0" "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" + "@smithy/util-defaults-mode-browser" "^4.0.21" + "@smithy/util-defaults-mode-node" "^4.0.21" "@smithy/util-endpoints" "^3.0.6" "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" + "@smithy/util-retry" "^4.0.6" "@smithy/util-utf8" "^4.0.0" - "@smithy/util-waiter" "^4.0.5" + "@smithy/util-waiter" "^4.0.6" "@types/uuid" "^9.0.1" tslib "^2.6.2" uuid "^9.0.1" @@ -319,122 +319,74 @@ tslib "^2.0.0" uuid "^3.0.0" -"@aws-sdk/client-cloudformation@3.830.0": - version "3.830.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-cloudformation/-/client-cloudformation-3.830.0.tgz#20ca9f70fdbdb8fe79a1a5e5d61b638886ad2dad" - integrity sha512-u5TDkgQB3qb3t9/KnKYOmq9/nrrZas25LDJXAb4OP2y5gTimkymZUQ9jxswoV0Q9FK0Y9WSriHf77IfM9M87fA== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.830.0" - "@aws-sdk/middleware-host-header" "3.821.0" - "@aws-sdk/middleware-logger" "3.821.0" - "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" - "@aws-sdk/region-config-resolver" "3.821.0" - "@aws-sdk/types" "3.821.0" - "@aws-sdk/util-endpoints" "3.828.0" - "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" - "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" - "@smithy/fetch-http-handler" "^5.0.4" - "@smithy/hash-node" "^4.0.4" - "@smithy/invalid-dependency" "^4.0.4" - "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" - "@smithy/middleware-serde" "^4.0.8" - "@smithy/middleware-stack" "^4.0.4" - "@smithy/node-config-provider" "^4.1.3" - "@smithy/node-http-handler" "^4.0.6" - "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" - "@smithy/types" "^4.3.1" - "@smithy/url-parser" "^4.0.4" - "@smithy/util-base64" "^4.0.0" - "@smithy/util-body-length-browser" "^4.0.0" - "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" - "@smithy/util-endpoints" "^3.0.6" - "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" - "@smithy/util-utf8" "^4.0.0" - "@smithy/util-waiter" "^4.0.5" - "@types/uuid" "^9.0.1" - tslib "^2.6.2" - uuid "^9.0.1" - -"@aws-sdk/client-cloudformation@^3": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-cloudformation/-/client-cloudformation-3.828.0.tgz#86b97b6297578b4fbc9bcf294dfab53d226684e6" - integrity sha512-OvMLQt0/Yn6uiqIdVQR6iZu5FCXoYvAtURZM4igXpFjjfSNtAdEPt/Hh0oxZDsKJSiFOczEORDhqb5AnhWp3Ew== +"@aws-sdk/client-cloudformation@3.839.0", "@aws-sdk/client-cloudformation@^3": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-cloudformation/-/client-cloudformation-3.839.0.tgz#d60d83420e56cb4765639659f79472c472eb49b5" + integrity sha512-c6kF7aiR98nf3uo6FQ5v2PSZTbESlViwMFQTKlZzQR+GexxrR5aKdaJWHpf0TsgjM0LjcrXdaJU6ccIwT6+XZg== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.828.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/credential-provider-node" "3.839.0" "@aws-sdk/middleware-host-header" "3.821.0" "@aws-sdk/middleware-logger" "3.821.0" "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" + "@aws-sdk/middleware-user-agent" "3.839.0" "@aws-sdk/region-config-resolver" "3.821.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-endpoints" "3.828.0" "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" + "@aws-sdk/util-user-agent-node" "3.839.0" "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" + "@smithy/core" "^3.6.0" "@smithy/fetch-http-handler" "^5.0.4" "@smithy/hash-node" "^4.0.4" "@smithy/invalid-dependency" "^4.0.4" "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" + "@smithy/middleware-endpoint" "^4.1.13" + "@smithy/middleware-retry" "^4.1.14" "@smithy/middleware-serde" "^4.0.8" "@smithy/middleware-stack" "^4.0.4" "@smithy/node-config-provider" "^4.1.3" "@smithy/node-http-handler" "^4.0.6" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/url-parser" "^4.0.4" "@smithy/util-base64" "^4.0.0" "@smithy/util-body-length-browser" "^4.0.0" "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" + "@smithy/util-defaults-mode-browser" "^4.0.21" + "@smithy/util-defaults-mode-node" "^4.0.21" "@smithy/util-endpoints" "^3.0.6" "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" + "@smithy/util-retry" "^4.0.6" "@smithy/util-utf8" "^4.0.0" - "@smithy/util-waiter" "^4.0.5" + "@smithy/util-waiter" "^4.0.6" "@types/uuid" "^9.0.1" tslib "^2.6.2" uuid "^9.0.1" "@aws-sdk/client-cloudwatch-logs@^3": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-cloudwatch-logs/-/client-cloudwatch-logs-3.828.0.tgz#fb4efbc39856bd33459d1e9eb0de1390870552cd" - integrity sha512-EeDYXwwWv+1Xk5lVehpf+9SH0N2xMU1ypJ9o7ifYL/G4dXI0us7k23Ds0UHescziQMFJKGJ9yAmCTY791QAsyw== + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-cloudwatch-logs/-/client-cloudwatch-logs-3.839.0.tgz#7f2720c611193bbceb8098dcdf5482f97809cef7" + integrity sha512-VHcCFMqcWeElldZKuJNU0ZM50QVraw9ZyeOlc74JU3F9xQG6aRGdpAzX+dvFemVipnnoaIU8f70DnlZ2/FB62g== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.828.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/credential-provider-node" "3.839.0" "@aws-sdk/middleware-host-header" "3.821.0" "@aws-sdk/middleware-logger" "3.821.0" "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" + "@aws-sdk/middleware-user-agent" "3.839.0" "@aws-sdk/region-config-resolver" "3.821.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-endpoints" "3.828.0" "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" + "@aws-sdk/util-user-agent-node" "3.839.0" "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" + "@smithy/core" "^3.6.0" "@smithy/eventstream-serde-browser" "^4.0.4" "@smithy/eventstream-serde-config-resolver" "^4.1.2" "@smithy/eventstream-serde-node" "^4.0.4" @@ -442,1487 +394,963 @@ "@smithy/hash-node" "^4.0.4" "@smithy/invalid-dependency" "^4.0.4" "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" + "@smithy/middleware-endpoint" "^4.1.13" + "@smithy/middleware-retry" "^4.1.14" "@smithy/middleware-serde" "^4.0.8" "@smithy/middleware-stack" "^4.0.4" "@smithy/node-config-provider" "^4.1.3" "@smithy/node-http-handler" "^4.0.6" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/url-parser" "^4.0.4" "@smithy/util-base64" "^4.0.0" "@smithy/util-body-length-browser" "^4.0.0" "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" + "@smithy/util-defaults-mode-browser" "^4.0.21" + "@smithy/util-defaults-mode-node" "^4.0.21" "@smithy/util-endpoints" "^3.0.6" "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" + "@smithy/util-retry" "^4.0.6" "@smithy/util-utf8" "^4.0.0" "@types/uuid" "^9.0.1" tslib "^2.6.2" uuid "^9.0.1" -"@aws-sdk/client-codeartifact@3.830.0": - version "3.830.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-codeartifact/-/client-codeartifact-3.830.0.tgz#3f469c9a0535981e936b5aedcd1b1488a118f35c" - integrity sha512-w9ulBaK3xUWtN0Pzjmjf1ZWqLOH3U44ETttl44kAgyL0WlVDld5yQ2ha8hCLmjDxHya8EmE2Q+SENaNKAA1yHg== +"@aws-sdk/client-codeartifact@3.839.0": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-codeartifact/-/client-codeartifact-3.839.0.tgz#62a57a443cafe19d482111eac996745bc292e1f7" + integrity sha512-6FB4bOPe3yJNjK5JoEuKj2HuAHMBdf9RS97TgsKsYcjXywHI1i0trKDWqwRnK9HaKezKP+jN0d+0ezijX0bQuQ== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.830.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/credential-provider-node" "3.839.0" "@aws-sdk/middleware-host-header" "3.821.0" "@aws-sdk/middleware-logger" "3.821.0" "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" + "@aws-sdk/middleware-user-agent" "3.839.0" "@aws-sdk/region-config-resolver" "3.821.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-endpoints" "3.828.0" "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" + "@aws-sdk/util-user-agent-node" "3.839.0" "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" + "@smithy/core" "^3.6.0" "@smithy/fetch-http-handler" "^5.0.4" "@smithy/hash-node" "^4.0.4" "@smithy/invalid-dependency" "^4.0.4" "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" + "@smithy/middleware-endpoint" "^4.1.13" + "@smithy/middleware-retry" "^4.1.14" "@smithy/middleware-serde" "^4.0.8" "@smithy/middleware-stack" "^4.0.4" "@smithy/node-config-provider" "^4.1.3" "@smithy/node-http-handler" "^4.0.6" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/url-parser" "^4.0.4" "@smithy/util-base64" "^4.0.0" "@smithy/util-body-length-browser" "^4.0.0" "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" + "@smithy/util-defaults-mode-browser" "^4.0.21" + "@smithy/util-defaults-mode-node" "^4.0.21" "@smithy/util-endpoints" "^3.0.6" "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" + "@smithy/util-retry" "^4.0.6" "@smithy/util-stream" "^4.2.2" "@smithy/util-utf8" "^4.0.0" tslib "^2.6.2" "@aws-sdk/client-codebuild@^3": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-codebuild/-/client-codebuild-3.828.0.tgz#d860e6ceefa932f1d3ad42054da37e6a82ffeedc" - integrity sha512-i/UOXJduvqoBxlx1WQ5ZJ2/0J2/1qPPkQ/9Rfbci9grkfxblw5eB+3AYCvh6BDucPXDqlvvSQMq0iw1ZwQgo+A== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.828.0" - "@aws-sdk/middleware-host-header" "3.821.0" - "@aws-sdk/middleware-logger" "3.821.0" - "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" - "@aws-sdk/region-config-resolver" "3.821.0" - "@aws-sdk/types" "3.821.0" - "@aws-sdk/util-endpoints" "3.828.0" - "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" - "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" - "@smithy/fetch-http-handler" "^5.0.4" - "@smithy/hash-node" "^4.0.4" - "@smithy/invalid-dependency" "^4.0.4" - "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" - "@smithy/middleware-serde" "^4.0.8" - "@smithy/middleware-stack" "^4.0.4" - "@smithy/node-config-provider" "^4.1.3" - "@smithy/node-http-handler" "^4.0.6" - "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" - "@smithy/types" "^4.3.1" - "@smithy/url-parser" "^4.0.4" - "@smithy/util-base64" "^4.0.0" - "@smithy/util-body-length-browser" "^4.0.0" - "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" - "@smithy/util-endpoints" "^3.0.6" - "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" - "@smithy/util-utf8" "^4.0.0" - tslib "^2.6.2" - -"@aws-sdk/client-cognito-identity@3.828.0": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.828.0.tgz#782bdc15aa8a701493c36cb7e982d47c085e7f0f" - integrity sha512-If4vBVbOxFfTW6JP92lWQGhis5fIt4PIS071DoSBf931ss/mISDnslpGGz1rXp6vyS8l7fODb3LDMAzSPyooNg== + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-codebuild/-/client-codebuild-3.839.0.tgz#da814302d9f8a0d8de7307b748d04f34a5264cfc" + integrity sha512-TVFZ21x88bycKxrLZhVq1OToUUCbg93XqtRQ/z7zZeA4hKG0oYLQJGNuur3PWdex0dLBImnecg3vb7Lwpq+fJQ== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.828.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/credential-provider-node" "3.839.0" "@aws-sdk/middleware-host-header" "3.821.0" "@aws-sdk/middleware-logger" "3.821.0" "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" + "@aws-sdk/middleware-user-agent" "3.839.0" "@aws-sdk/region-config-resolver" "3.821.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-endpoints" "3.828.0" "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" + "@aws-sdk/util-user-agent-node" "3.839.0" "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" + "@smithy/core" "^3.6.0" "@smithy/fetch-http-handler" "^5.0.4" "@smithy/hash-node" "^4.0.4" "@smithy/invalid-dependency" "^4.0.4" "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" + "@smithy/middleware-endpoint" "^4.1.13" + "@smithy/middleware-retry" "^4.1.14" "@smithy/middleware-serde" "^4.0.8" "@smithy/middleware-stack" "^4.0.4" "@smithy/node-config-provider" "^4.1.3" "@smithy/node-http-handler" "^4.0.6" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/url-parser" "^4.0.4" "@smithy/util-base64" "^4.0.0" "@smithy/util-body-length-browser" "^4.0.0" "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" + "@smithy/util-defaults-mode-browser" "^4.0.21" + "@smithy/util-defaults-mode-node" "^4.0.21" "@smithy/util-endpoints" "^3.0.6" "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" + "@smithy/util-retry" "^4.0.6" "@smithy/util-utf8" "^4.0.0" tslib "^2.6.2" -"@aws-sdk/client-cognito-identity@3.830.0": - version "3.830.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.830.0.tgz#edcb2d8a16a8f94bf211655baf77a7474fa74397" - integrity sha512-YhhQNVmHykPC6h6Xj60BMG7ELxxlynwNW2wK+8HJRiT62nYhbDyHypY9W2zNshqh/SE+5gLvwt1sXAu7KHGWmQ== +"@aws-sdk/client-cognito-identity@3.839.0": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.839.0.tgz#ccbeaba2e673ff70c95b42f32d2621206045098d" + integrity sha512-Pq/A5W46Z0JrRTIl4eVvguQjXWwVHiiBC3WyrLxlIH0hMS6bILgC7H+z+JiCm4mXR/oF2ZobQ8Wei/Sga1Uxkw== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.830.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/credential-provider-node" "3.839.0" "@aws-sdk/middleware-host-header" "3.821.0" "@aws-sdk/middleware-logger" "3.821.0" "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" + "@aws-sdk/middleware-user-agent" "3.839.0" "@aws-sdk/region-config-resolver" "3.821.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-endpoints" "3.828.0" "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" + "@aws-sdk/util-user-agent-node" "3.839.0" "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" + "@smithy/core" "^3.6.0" "@smithy/fetch-http-handler" "^5.0.4" "@smithy/hash-node" "^4.0.4" "@smithy/invalid-dependency" "^4.0.4" "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" + "@smithy/middleware-endpoint" "^4.1.13" + "@smithy/middleware-retry" "^4.1.14" "@smithy/middleware-serde" "^4.0.8" "@smithy/middleware-stack" "^4.0.4" "@smithy/node-config-provider" "^4.1.3" "@smithy/node-http-handler" "^4.0.6" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/url-parser" "^4.0.4" "@smithy/util-base64" "^4.0.0" "@smithy/util-body-length-browser" "^4.0.0" "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" + "@smithy/util-defaults-mode-browser" "^4.0.21" + "@smithy/util-defaults-mode-node" "^4.0.21" "@smithy/util-endpoints" "^3.0.6" "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" + "@smithy/util-retry" "^4.0.6" "@smithy/util-utf8" "^4.0.0" tslib "^2.6.2" "@aws-sdk/client-ec2@^3": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-ec2/-/client-ec2-3.828.0.tgz#e1b3dd9735bc65fd1dbf8c9c9a9545979cd29dcb" - integrity sha512-Z409xIR6BBmoXlU6OiNd5yHjbR866uUUkc9MvJepUbhDpSRwVfBRkkX5GO8V7gYu1UAykIt+OjAVgPETMdPbbg== + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-ec2/-/client-ec2-3.839.0.tgz#cc8712d1a40cecfbfb3e3f81b4c3b6ccf1a1ae77" + integrity sha512-ObZbGopmMKUWGR7UIz1ATCb5CrgWWdgsFtWxu9BOExjJEdmQURaKAuepx8HjyQvuWufK/iN65dyqHaaDKfzaRg== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.828.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/credential-provider-node" "3.839.0" "@aws-sdk/middleware-host-header" "3.821.0" "@aws-sdk/middleware-logger" "3.821.0" "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-sdk-ec2" "3.826.0" - "@aws-sdk/middleware-user-agent" "3.828.0" + "@aws-sdk/middleware-sdk-ec2" "3.839.0" + "@aws-sdk/middleware-user-agent" "3.839.0" "@aws-sdk/region-config-resolver" "3.821.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-endpoints" "3.828.0" "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" + "@aws-sdk/util-user-agent-node" "3.839.0" "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" + "@smithy/core" "^3.6.0" "@smithy/fetch-http-handler" "^5.0.4" "@smithy/hash-node" "^4.0.4" "@smithy/invalid-dependency" "^4.0.4" "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" + "@smithy/middleware-endpoint" "^4.1.13" + "@smithy/middleware-retry" "^4.1.14" "@smithy/middleware-serde" "^4.0.8" "@smithy/middleware-stack" "^4.0.4" "@smithy/node-config-provider" "^4.1.3" "@smithy/node-http-handler" "^4.0.6" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/url-parser" "^4.0.4" "@smithy/util-base64" "^4.0.0" "@smithy/util-body-length-browser" "^4.0.0" "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" + "@smithy/util-defaults-mode-browser" "^4.0.21" + "@smithy/util-defaults-mode-node" "^4.0.21" "@smithy/util-endpoints" "^3.0.6" "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" + "@smithy/util-retry" "^4.0.6" "@smithy/util-utf8" "^4.0.0" - "@smithy/util-waiter" "^4.0.5" + "@smithy/util-waiter" "^4.0.6" "@types/uuid" "^9.0.1" tslib "^2.6.2" uuid "^9.0.1" -"@aws-sdk/client-ecr-public@3.830.0": - version "3.830.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-ecr-public/-/client-ecr-public-3.830.0.tgz#f127bb74ca1769fe10828852a001deaa77d67128" - integrity sha512-RbWlM5o5JLnqd6JoqtcVeEaRhWfTKmqwMruLkIWedo5txztP9/pRD55jCXTcd9NqHcsYG0DeXub9vLwe/l0LRg== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.830.0" - "@aws-sdk/middleware-host-header" "3.821.0" - "@aws-sdk/middleware-logger" "3.821.0" - "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" - "@aws-sdk/region-config-resolver" "3.821.0" - "@aws-sdk/types" "3.821.0" - "@aws-sdk/util-endpoints" "3.828.0" - "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" - "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" - "@smithy/fetch-http-handler" "^5.0.4" - "@smithy/hash-node" "^4.0.4" - "@smithy/invalid-dependency" "^4.0.4" - "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" - "@smithy/middleware-serde" "^4.0.8" - "@smithy/middleware-stack" "^4.0.4" - "@smithy/node-config-provider" "^4.1.3" - "@smithy/node-http-handler" "^4.0.6" - "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" - "@smithy/types" "^4.3.1" - "@smithy/url-parser" "^4.0.4" - "@smithy/util-base64" "^4.0.0" - "@smithy/util-body-length-browser" "^4.0.0" - "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" - "@smithy/util-endpoints" "^3.0.6" - "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" - "@smithy/util-utf8" "^4.0.0" - tslib "^2.6.2" - -"@aws-sdk/client-ecr@3.830.0": - version "3.830.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-ecr/-/client-ecr-3.830.0.tgz#b12b5c2c910f3a95d144f589f937cf2095e89f97" - integrity sha512-x54cGbpBGlndePC9iSYySPf+qQrFA0jFPqU4ezqSMUPpiwZXQtplskL+8Zs/kg+rAhSCuZ7mvHGGct0R5nj5tw== +"@aws-sdk/client-ecr-public@3.839.0": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-ecr-public/-/client-ecr-public-3.839.0.tgz#4776ef876b6cd09b7e9aecc25b4b3405f7fabd03" + integrity sha512-U21ymxYvcHcSJJEPeF+O3RZLXYkmNa3MZS0EcmCPB0ggWZYHrjXnZJfveZck4UTvNEwZ6y5ohdLyOBhSPMtgPg== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.830.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/credential-provider-node" "3.839.0" "@aws-sdk/middleware-host-header" "3.821.0" "@aws-sdk/middleware-logger" "3.821.0" "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" + "@aws-sdk/middleware-user-agent" "3.839.0" "@aws-sdk/region-config-resolver" "3.821.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-endpoints" "3.828.0" "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" + "@aws-sdk/util-user-agent-node" "3.839.0" "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" + "@smithy/core" "^3.6.0" "@smithy/fetch-http-handler" "^5.0.4" "@smithy/hash-node" "^4.0.4" "@smithy/invalid-dependency" "^4.0.4" "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" + "@smithy/middleware-endpoint" "^4.1.13" + "@smithy/middleware-retry" "^4.1.14" "@smithy/middleware-serde" "^4.0.8" "@smithy/middleware-stack" "^4.0.4" "@smithy/node-config-provider" "^4.1.3" "@smithy/node-http-handler" "^4.0.6" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/url-parser" "^4.0.4" "@smithy/util-base64" "^4.0.0" "@smithy/util-body-length-browser" "^4.0.0" "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" + "@smithy/util-defaults-mode-browser" "^4.0.21" + "@smithy/util-defaults-mode-node" "^4.0.21" "@smithy/util-endpoints" "^3.0.6" "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" + "@smithy/util-retry" "^4.0.6" "@smithy/util-utf8" "^4.0.0" - "@smithy/util-waiter" "^4.0.5" tslib "^2.6.2" -"@aws-sdk/client-ecr@^3": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-ecr/-/client-ecr-3.828.0.tgz#cecc827f92a42afb0f7480a523bbfafaa4df614d" - integrity sha512-sFONWwumdY9u7UNmk0+/MMnQZES6qgPkdkxWTMwwxd+W5QZg4iGDO1EwCBxMwlReOALYZ33pijy5rZF35wQUZQ== +"@aws-sdk/client-ecr@3.839.0", "@aws-sdk/client-ecr@^3": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-ecr/-/client-ecr-3.839.0.tgz#5e03b871124b015b303513929eac64fad8d8ca6f" + integrity sha512-aaSPaqfWvz9OAGfcl97Ps/bQHulRLt8tg8tB8zc4gyGo4OTn6gnKMd+FEhPBszRKP7xeb4pzjjqcXvHsFt7HEQ== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.828.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/credential-provider-node" "3.839.0" "@aws-sdk/middleware-host-header" "3.821.0" "@aws-sdk/middleware-logger" "3.821.0" "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" + "@aws-sdk/middleware-user-agent" "3.839.0" "@aws-sdk/region-config-resolver" "3.821.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-endpoints" "3.828.0" "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" + "@aws-sdk/util-user-agent-node" "3.839.0" "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" + "@smithy/core" "^3.6.0" "@smithy/fetch-http-handler" "^5.0.4" "@smithy/hash-node" "^4.0.4" "@smithy/invalid-dependency" "^4.0.4" "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" + "@smithy/middleware-endpoint" "^4.1.13" + "@smithy/middleware-retry" "^4.1.14" "@smithy/middleware-serde" "^4.0.8" "@smithy/middleware-stack" "^4.0.4" "@smithy/node-config-provider" "^4.1.3" "@smithy/node-http-handler" "^4.0.6" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/url-parser" "^4.0.4" "@smithy/util-base64" "^4.0.0" "@smithy/util-body-length-browser" "^4.0.0" "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" + "@smithy/util-defaults-mode-browser" "^4.0.21" + "@smithy/util-defaults-mode-node" "^4.0.21" "@smithy/util-endpoints" "^3.0.6" "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" + "@smithy/util-retry" "^4.0.6" "@smithy/util-utf8" "^4.0.0" - "@smithy/util-waiter" "^4.0.5" + "@smithy/util-waiter" "^4.0.6" tslib "^2.6.2" -"@aws-sdk/client-ecs@3.830.0": - version "3.830.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-ecs/-/client-ecs-3.830.0.tgz#1871c27572af8fafd08ecd9007ededdd9dbd9959" - integrity sha512-uh+OvaH+VNb0rb1NDGTHaVtAzcTkGxmZHcDH1EdDq9eVfpqee8GGY3nG9IYGs0cJItgNNdfY6Z8e119JTwTkdA== +"@aws-sdk/client-ecs@3.839.0", "@aws-sdk/client-ecs@^3": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-ecs/-/client-ecs-3.839.0.tgz#78ae65e0b48531510f559421df2c4aa8947c7eb3" + integrity sha512-mIfXE7XD7fFZb9D/yr5XqhPla7HCTP0WOLqJtocm18WFAK3zseSQzx8kuOH7mL65rmenTbZGY5nhG1sKZPmV8w== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.830.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/credential-provider-node" "3.839.0" "@aws-sdk/middleware-host-header" "3.821.0" "@aws-sdk/middleware-logger" "3.821.0" "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" + "@aws-sdk/middleware-user-agent" "3.839.0" "@aws-sdk/region-config-resolver" "3.821.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-endpoints" "3.828.0" "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" + "@aws-sdk/util-user-agent-node" "3.839.0" "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" + "@smithy/core" "^3.6.0" "@smithy/fetch-http-handler" "^5.0.4" "@smithy/hash-node" "^4.0.4" "@smithy/invalid-dependency" "^4.0.4" "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" + "@smithy/middleware-endpoint" "^4.1.13" + "@smithy/middleware-retry" "^4.1.14" "@smithy/middleware-serde" "^4.0.8" "@smithy/middleware-stack" "^4.0.4" "@smithy/node-config-provider" "^4.1.3" "@smithy/node-http-handler" "^4.0.6" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/url-parser" "^4.0.4" "@smithy/util-base64" "^4.0.0" "@smithy/util-body-length-browser" "^4.0.0" "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" + "@smithy/util-defaults-mode-browser" "^4.0.21" + "@smithy/util-defaults-mode-node" "^4.0.21" "@smithy/util-endpoints" "^3.0.6" "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" + "@smithy/util-retry" "^4.0.6" "@smithy/util-utf8" "^4.0.0" - "@smithy/util-waiter" "^4.0.5" + "@smithy/util-waiter" "^4.0.6" "@types/uuid" "^9.0.1" tslib "^2.6.2" uuid "^9.0.1" -"@aws-sdk/client-ecs@^3": - version "3.829.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-ecs/-/client-ecs-3.829.0.tgz#aa4f97bcfb1dcb0a17fc8aa5f61ac545ecdc5928" - integrity sha512-taFPBBHuID0BGTxAFbTYrkCjrBIYgm0/U5BIW1EKcHLY+yNUlorKujX0/pvkoF7dJVFk4gUn5mF7Thm/yjQwHw== +"@aws-sdk/client-elastic-load-balancing-v2@^3": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-elastic-load-balancing-v2/-/client-elastic-load-balancing-v2-3.839.0.tgz#797cef93c09b8633063e126cfa552c3706a53bb4" + integrity sha512-ps3yLiXzZ605vhp/GnkU/I2Da3MWh2CNJxE/Bc1Dhgixft2swPYmJWF9wyzungisE2i4SzEQ7K4rfsMORQE+9Q== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.828.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/credential-provider-node" "3.839.0" "@aws-sdk/middleware-host-header" "3.821.0" "@aws-sdk/middleware-logger" "3.821.0" "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" + "@aws-sdk/middleware-user-agent" "3.839.0" "@aws-sdk/region-config-resolver" "3.821.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-endpoints" "3.828.0" "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" + "@aws-sdk/util-user-agent-node" "3.839.0" "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" + "@smithy/core" "^3.6.0" "@smithy/fetch-http-handler" "^5.0.4" "@smithy/hash-node" "^4.0.4" "@smithy/invalid-dependency" "^4.0.4" "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" + "@smithy/middleware-endpoint" "^4.1.13" + "@smithy/middleware-retry" "^4.1.14" "@smithy/middleware-serde" "^4.0.8" "@smithy/middleware-stack" "^4.0.4" "@smithy/node-config-provider" "^4.1.3" "@smithy/node-http-handler" "^4.0.6" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/url-parser" "^4.0.4" "@smithy/util-base64" "^4.0.0" "@smithy/util-body-length-browser" "^4.0.0" "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" + "@smithy/util-defaults-mode-browser" "^4.0.21" + "@smithy/util-defaults-mode-node" "^4.0.21" "@smithy/util-endpoints" "^3.0.6" "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" + "@smithy/util-retry" "^4.0.6" "@smithy/util-utf8" "^4.0.0" - "@smithy/util-waiter" "^4.0.5" - "@types/uuid" "^9.0.1" + "@smithy/util-waiter" "^4.0.6" tslib "^2.6.2" - uuid "^9.0.1" -"@aws-sdk/client-elastic-load-balancing-v2@^3": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-elastic-load-balancing-v2/-/client-elastic-load-balancing-v2-3.828.0.tgz#e6560566c61da9816b7a9e4a209cf700c1612a2f" - integrity sha512-HPfCiUpwBAx/EhZRqRUtUwv+GPiXxr29yINceds6fI9LsyKr6ZTAk4/6r1V/aqvNGwwu817J5NqJ5CYsZwKqkw== +"@aws-sdk/client-iam@3.839.0", "@aws-sdk/client-iam@^3": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-iam/-/client-iam-3.839.0.tgz#8432b8cb4368f30bf971b922f7468e11c75e4916" + integrity sha512-Y8P4p5xkkEtnizUqJvBplRp4Ehl/kQRaKAmZCX2j1neOeOCofyqKK4zkovMhU8/Yu2zo3p4/ztyOSaMNYZpQZQ== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.828.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/credential-provider-node" "3.839.0" "@aws-sdk/middleware-host-header" "3.821.0" "@aws-sdk/middleware-logger" "3.821.0" "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" + "@aws-sdk/middleware-user-agent" "3.839.0" "@aws-sdk/region-config-resolver" "3.821.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-endpoints" "3.828.0" "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" + "@aws-sdk/util-user-agent-node" "3.839.0" "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" + "@smithy/core" "^3.6.0" "@smithy/fetch-http-handler" "^5.0.4" "@smithy/hash-node" "^4.0.4" "@smithy/invalid-dependency" "^4.0.4" "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" + "@smithy/middleware-endpoint" "^4.1.13" + "@smithy/middleware-retry" "^4.1.14" "@smithy/middleware-serde" "^4.0.8" "@smithy/middleware-stack" "^4.0.4" "@smithy/node-config-provider" "^4.1.3" "@smithy/node-http-handler" "^4.0.6" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/url-parser" "^4.0.4" "@smithy/util-base64" "^4.0.0" "@smithy/util-body-length-browser" "^4.0.0" "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" + "@smithy/util-defaults-mode-browser" "^4.0.21" + "@smithy/util-defaults-mode-node" "^4.0.21" "@smithy/util-endpoints" "^3.0.6" "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" + "@smithy/util-retry" "^4.0.6" "@smithy/util-utf8" "^4.0.0" - "@smithy/util-waiter" "^4.0.5" + "@smithy/util-waiter" "^4.0.6" tslib "^2.6.2" -"@aws-sdk/client-iam@3.830.0": - version "3.830.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-iam/-/client-iam-3.830.0.tgz#54d0fea41e35a43358fb0ae1e223e86a12cb480e" - integrity sha512-ZSWZyqtDXd51B2970tB5XI6+DFtw9c09a0C5v7UP8DY7wusNwqeM28jsFU7HqRAZTM4Hbf7ozC6OOj8uvH/rsQ== +"@aws-sdk/client-kms@^3": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-kms/-/client-kms-3.839.0.tgz#0826645b7c834358bc5a0ec4181d192e39fb3c7f" + integrity sha512-izh6+CRMa1iJdBiawbQCqvIY+vdna+8/cdKrbNA5st1xzrUQZ6fp0QNXxZ/DqSBMeDJSdlOR6zBZoiI7wMwz0w== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.830.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/credential-provider-node" "3.839.0" "@aws-sdk/middleware-host-header" "3.821.0" "@aws-sdk/middleware-logger" "3.821.0" "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" + "@aws-sdk/middleware-user-agent" "3.839.0" "@aws-sdk/region-config-resolver" "3.821.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-endpoints" "3.828.0" "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" + "@aws-sdk/util-user-agent-node" "3.839.0" "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" + "@smithy/core" "^3.6.0" "@smithy/fetch-http-handler" "^5.0.4" "@smithy/hash-node" "^4.0.4" "@smithy/invalid-dependency" "^4.0.4" "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" + "@smithy/middleware-endpoint" "^4.1.13" + "@smithy/middleware-retry" "^4.1.14" "@smithy/middleware-serde" "^4.0.8" "@smithy/middleware-stack" "^4.0.4" "@smithy/node-config-provider" "^4.1.3" "@smithy/node-http-handler" "^4.0.6" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/url-parser" "^4.0.4" "@smithy/util-base64" "^4.0.0" "@smithy/util-body-length-browser" "^4.0.0" "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" + "@smithy/util-defaults-mode-browser" "^4.0.21" + "@smithy/util-defaults-mode-node" "^4.0.21" "@smithy/util-endpoints" "^3.0.6" "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" + "@smithy/util-retry" "^4.0.6" "@smithy/util-utf8" "^4.0.0" - "@smithy/util-waiter" "^4.0.5" tslib "^2.6.2" -"@aws-sdk/client-iam@^3": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-iam/-/client-iam-3.828.0.tgz#8cf704f1b9370fe6b7bce9750fe9668972fd9c21" - integrity sha512-fuWJ/YzlMKWNtID48Y91h/l84kGocqgSWDOuIeT/k8oJO4XqiO/PA72HHvUVOSUXRjyUyW06sYCe1tFLZ4Vhqw== +"@aws-sdk/client-lambda@3.839.0", "@aws-sdk/client-lambda@^3": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-lambda/-/client-lambda-3.839.0.tgz#81d10bcffc775807194d5735b72668b5e9d5eecb" + integrity sha512-i3umPgrz8WqGEzRXDIvbS+aANDSfNtDh1N6G5ESFmws2I2bFT9C748fJK91ALs35q7v+KcPRYVGObGekoZMV1A== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.828.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/credential-provider-node" "3.839.0" "@aws-sdk/middleware-host-header" "3.821.0" "@aws-sdk/middleware-logger" "3.821.0" "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" + "@aws-sdk/middleware-user-agent" "3.839.0" "@aws-sdk/region-config-resolver" "3.821.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-endpoints" "3.828.0" "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" + "@aws-sdk/util-user-agent-node" "3.839.0" "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" + "@smithy/core" "^3.6.0" + "@smithy/eventstream-serde-browser" "^4.0.4" + "@smithy/eventstream-serde-config-resolver" "^4.1.2" + "@smithy/eventstream-serde-node" "^4.0.4" "@smithy/fetch-http-handler" "^5.0.4" "@smithy/hash-node" "^4.0.4" "@smithy/invalid-dependency" "^4.0.4" "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" + "@smithy/middleware-endpoint" "^4.1.13" + "@smithy/middleware-retry" "^4.1.14" "@smithy/middleware-serde" "^4.0.8" "@smithy/middleware-stack" "^4.0.4" "@smithy/node-config-provider" "^4.1.3" "@smithy/node-http-handler" "^4.0.6" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/url-parser" "^4.0.4" "@smithy/util-base64" "^4.0.0" "@smithy/util-body-length-browser" "^4.0.0" "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" + "@smithy/util-defaults-mode-browser" "^4.0.21" + "@smithy/util-defaults-mode-node" "^4.0.21" "@smithy/util-endpoints" "^3.0.6" "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" + "@smithy/util-retry" "^4.0.6" + "@smithy/util-stream" "^4.2.2" "@smithy/util-utf8" "^4.0.0" - "@smithy/util-waiter" "^4.0.5" + "@smithy/util-waiter" "^4.0.6" tslib "^2.6.2" -"@aws-sdk/client-kms@^3": - version "3.829.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-kms/-/client-kms-3.829.0.tgz#9028fc8292672685fd21172de4b24ca2bb0833bb" - integrity sha512-yc/oYR3zOe0SJPlO2ij0e2wEVgC52RBD4jX5sSHzi7BgH6L/Jkrg1XsUvAGNzOP7TaSAqfbqtX+yyvB6ndNv1g== +"@aws-sdk/client-route-53@^3": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-route-53/-/client-route-53-3.839.0.tgz#f311c659b80004587152d007699bc095cb7c5ac2" + integrity sha512-P2Qwa207QvE8HjDnVTfKT8iPftpEptbKJH8jnQtDtgqKe/bZ25M9xmf6RYfJPO6/XGZmT/UR7m1dqUKFbElG+A== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.828.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/credential-provider-node" "3.839.0" "@aws-sdk/middleware-host-header" "3.821.0" "@aws-sdk/middleware-logger" "3.821.0" "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" + "@aws-sdk/middleware-sdk-route53" "3.821.0" + "@aws-sdk/middleware-user-agent" "3.839.0" "@aws-sdk/region-config-resolver" "3.821.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-endpoints" "3.828.0" "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" + "@aws-sdk/util-user-agent-node" "3.839.0" + "@aws-sdk/xml-builder" "3.821.0" "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" + "@smithy/core" "^3.6.0" "@smithy/fetch-http-handler" "^5.0.4" "@smithy/hash-node" "^4.0.4" "@smithy/invalid-dependency" "^4.0.4" "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" + "@smithy/middleware-endpoint" "^4.1.13" + "@smithy/middleware-retry" "^4.1.14" "@smithy/middleware-serde" "^4.0.8" "@smithy/middleware-stack" "^4.0.4" "@smithy/node-config-provider" "^4.1.3" "@smithy/node-http-handler" "^4.0.6" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/url-parser" "^4.0.4" "@smithy/util-base64" "^4.0.0" "@smithy/util-body-length-browser" "^4.0.0" "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" + "@smithy/util-defaults-mode-browser" "^4.0.21" + "@smithy/util-defaults-mode-node" "^4.0.21" "@smithy/util-endpoints" "^3.0.6" "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" + "@smithy/util-retry" "^4.0.6" "@smithy/util-utf8" "^4.0.0" + "@smithy/util-waiter" "^4.0.6" tslib "^2.6.2" -"@aws-sdk/client-lambda@3.830.0": - version "3.830.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-lambda/-/client-lambda-3.830.0.tgz#4dbd23dbe2ae980060f52bc7173dab2a390c9dce" - integrity sha512-rdZPFteEN4Tw8vNVKh5rwPhf2zJz3cazx2gf1NSB8+GtleefY6bsAqyOQueSMSkE6fGZw7kmaPJBvWDxzMX4nQ== +"@aws-sdk/client-s3@3.839.0", "@aws-sdk/client-s3@^3", "@aws-sdk/client-s3@^3.839.0": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-s3/-/client-s3-3.839.0.tgz#91499477dd3ca1ef87cfe430cae3e2d74492aabf" + integrity sha512-7zDInY+qltKxeG+9d/97nbs+FWINcAi5bChBrleUQkuQ/dA9pSP1URo/6JlVzD2Ejvksm+hVK6z3VUWZaIAVOw== dependencies: + "@aws-crypto/sha1-browser" "5.2.0" "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.830.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/credential-provider-node" "3.839.0" + "@aws-sdk/middleware-bucket-endpoint" "3.830.0" + "@aws-sdk/middleware-expect-continue" "3.821.0" + "@aws-sdk/middleware-flexible-checksums" "3.839.0" "@aws-sdk/middleware-host-header" "3.821.0" + "@aws-sdk/middleware-location-constraint" "3.821.0" "@aws-sdk/middleware-logger" "3.821.0" "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" + "@aws-sdk/middleware-sdk-s3" "3.839.0" + "@aws-sdk/middleware-ssec" "3.821.0" + "@aws-sdk/middleware-user-agent" "3.839.0" "@aws-sdk/region-config-resolver" "3.821.0" + "@aws-sdk/signature-v4-multi-region" "3.839.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-endpoints" "3.828.0" "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" + "@aws-sdk/util-user-agent-node" "3.839.0" + "@aws-sdk/xml-builder" "3.821.0" "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" + "@smithy/core" "^3.6.0" "@smithy/eventstream-serde-browser" "^4.0.4" "@smithy/eventstream-serde-config-resolver" "^4.1.2" "@smithy/eventstream-serde-node" "^4.0.4" "@smithy/fetch-http-handler" "^5.0.4" + "@smithy/hash-blob-browser" "^4.0.4" "@smithy/hash-node" "^4.0.4" + "@smithy/hash-stream-node" "^4.0.4" "@smithy/invalid-dependency" "^4.0.4" + "@smithy/md5-js" "^4.0.4" "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" + "@smithy/middleware-endpoint" "^4.1.13" + "@smithy/middleware-retry" "^4.1.14" "@smithy/middleware-serde" "^4.0.8" "@smithy/middleware-stack" "^4.0.4" "@smithy/node-config-provider" "^4.1.3" "@smithy/node-http-handler" "^4.0.6" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/url-parser" "^4.0.4" "@smithy/util-base64" "^4.0.0" "@smithy/util-body-length-browser" "^4.0.0" "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" + "@smithy/util-defaults-mode-browser" "^4.0.21" + "@smithy/util-defaults-mode-node" "^4.0.21" "@smithy/util-endpoints" "^3.0.6" "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" + "@smithy/util-retry" "^4.0.6" "@smithy/util-stream" "^4.2.2" "@smithy/util-utf8" "^4.0.0" - "@smithy/util-waiter" "^4.0.5" + "@smithy/util-waiter" "^4.0.6" + "@types/uuid" "^9.0.1" tslib "^2.6.2" + uuid "^9.0.1" -"@aws-sdk/client-lambda@^3": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-lambda/-/client-lambda-3.828.0.tgz#99b2522c450bd1f6e654bc14ccc88f1602fa4203" - integrity sha512-iAOTfVUWz4ZeFoADr599PLmArM0xI25mzGeCbYugSErrVnlGs86Od17sOjitypGNOoSOcOTxBHTSV0+OsOFnsg== +"@aws-sdk/client-secrets-manager@^3": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-secrets-manager/-/client-secrets-manager-3.839.0.tgz#f8c89fc6df9ad6886b9be033f1662a86cdd09d19" + integrity sha512-zBlukvzSX9MLrjUGjlGG5d4TRdmAnsfaNPIQzU0K/F3r7hgdKm848nK81UJgc86pNjud7CQSuk5uMVMyd0HMhg== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.828.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/credential-provider-node" "3.839.0" "@aws-sdk/middleware-host-header" "3.821.0" "@aws-sdk/middleware-logger" "3.821.0" "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" + "@aws-sdk/middleware-user-agent" "3.839.0" "@aws-sdk/region-config-resolver" "3.821.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-endpoints" "3.828.0" "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" + "@aws-sdk/util-user-agent-node" "3.839.0" "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" - "@smithy/eventstream-serde-browser" "^4.0.4" - "@smithy/eventstream-serde-config-resolver" "^4.1.2" - "@smithy/eventstream-serde-node" "^4.0.4" + "@smithy/core" "^3.6.0" "@smithy/fetch-http-handler" "^5.0.4" "@smithy/hash-node" "^4.0.4" "@smithy/invalid-dependency" "^4.0.4" "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" + "@smithy/middleware-endpoint" "^4.1.13" + "@smithy/middleware-retry" "^4.1.14" "@smithy/middleware-serde" "^4.0.8" "@smithy/middleware-stack" "^4.0.4" "@smithy/node-config-provider" "^4.1.3" "@smithy/node-http-handler" "^4.0.6" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/url-parser" "^4.0.4" "@smithy/util-base64" "^4.0.0" "@smithy/util-body-length-browser" "^4.0.0" "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" + "@smithy/util-defaults-mode-browser" "^4.0.21" + "@smithy/util-defaults-mode-node" "^4.0.21" "@smithy/util-endpoints" "^3.0.6" "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" - "@smithy/util-stream" "^4.2.2" + "@smithy/util-retry" "^4.0.6" "@smithy/util-utf8" "^4.0.0" - "@smithy/util-waiter" "^4.0.5" + "@types/uuid" "^9.0.1" tslib "^2.6.2" + uuid "^9.0.1" -"@aws-sdk/client-route-53@^3": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-route-53/-/client-route-53-3.828.0.tgz#ffba4ad9669a1da641c3a518fc2a1d148431eb1f" - integrity sha512-lol+WuTPa9Iw8hcvz9CatQb8yB76MWrUsTA98wiwNuAsYJ1nVmQHLiENdDE7miiObXPI3I/HEGw9pHWpsUxQXA== +"@aws-sdk/client-sfn@^3": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sfn/-/client-sfn-3.839.0.tgz#5534879db5d47cbe07a36c6d2e101d0f9922a7fd" + integrity sha512-/z64mWj2U1Crx8CAIB9ahsqXOxq4R9WtrWX6ROZJmNun/tzHY8cRkpN1WogrfzMrhaaSzLdITLbs59fSpsjMAA== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.828.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/credential-provider-node" "3.839.0" "@aws-sdk/middleware-host-header" "3.821.0" "@aws-sdk/middleware-logger" "3.821.0" "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-sdk-route53" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" + "@aws-sdk/middleware-user-agent" "3.839.0" "@aws-sdk/region-config-resolver" "3.821.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-endpoints" "3.828.0" "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" - "@aws-sdk/xml-builder" "3.821.0" + "@aws-sdk/util-user-agent-node" "3.839.0" "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" + "@smithy/core" "^3.6.0" "@smithy/fetch-http-handler" "^5.0.4" "@smithy/hash-node" "^4.0.4" "@smithy/invalid-dependency" "^4.0.4" "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" + "@smithy/middleware-endpoint" "^4.1.13" + "@smithy/middleware-retry" "^4.1.14" "@smithy/middleware-serde" "^4.0.8" "@smithy/middleware-stack" "^4.0.4" "@smithy/node-config-provider" "^4.1.3" "@smithy/node-http-handler" "^4.0.6" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/url-parser" "^4.0.4" "@smithy/util-base64" "^4.0.0" "@smithy/util-body-length-browser" "^4.0.0" "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" + "@smithy/util-defaults-mode-browser" "^4.0.21" + "@smithy/util-defaults-mode-node" "^4.0.21" "@smithy/util-endpoints" "^3.0.6" "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" + "@smithy/util-retry" "^4.0.6" "@smithy/util-utf8" "^4.0.0" - "@smithy/util-waiter" "^4.0.5" + "@types/uuid" "^9.0.1" tslib "^2.6.2" + uuid "^9.0.1" -"@aws-sdk/client-s3@3.830.0": - version "3.830.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-s3/-/client-s3-3.830.0.tgz#487c5afbc98912ac6bea1b0c0a2065a426cd3c30" - integrity sha512-Cti+zj1lqvQIScXFQv8/t1xo3pvcvk/ObmGIbyLzfgcYpKMHaIWhzhi6aN+z4dYEv1EwrukC9tNoqScyShc5tw== +"@aws-sdk/client-sns@3.839.0": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sns/-/client-sns-3.839.0.tgz#3900c98a1a95aa43694ac21af905c46e0ccbee0d" + integrity sha512-TOYhuSGe0YOW0CZ9LMpAFKQy7IUrytX7Ge8SLHq0zhv/Eh7Am+r6v0xaeboFVPmMCDNKBhrAnMtC/AixIIDwsQ== dependencies: - "@aws-crypto/sha1-browser" "5.2.0" "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.830.0" - "@aws-sdk/middleware-bucket-endpoint" "3.830.0" - "@aws-sdk/middleware-expect-continue" "3.821.0" - "@aws-sdk/middleware-flexible-checksums" "3.826.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/credential-provider-node" "3.839.0" "@aws-sdk/middleware-host-header" "3.821.0" - "@aws-sdk/middleware-location-constraint" "3.821.0" "@aws-sdk/middleware-logger" "3.821.0" "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-sdk-s3" "3.826.0" - "@aws-sdk/middleware-ssec" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" + "@aws-sdk/middleware-user-agent" "3.839.0" "@aws-sdk/region-config-resolver" "3.821.0" - "@aws-sdk/signature-v4-multi-region" "3.826.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-endpoints" "3.828.0" "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" - "@aws-sdk/xml-builder" "3.821.0" + "@aws-sdk/util-user-agent-node" "3.839.0" "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" - "@smithy/eventstream-serde-browser" "^4.0.4" - "@smithy/eventstream-serde-config-resolver" "^4.1.2" - "@smithy/eventstream-serde-node" "^4.0.4" + "@smithy/core" "^3.6.0" "@smithy/fetch-http-handler" "^5.0.4" - "@smithy/hash-blob-browser" "^4.0.4" "@smithy/hash-node" "^4.0.4" - "@smithy/hash-stream-node" "^4.0.4" "@smithy/invalid-dependency" "^4.0.4" - "@smithy/md5-js" "^4.0.4" "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" + "@smithy/middleware-endpoint" "^4.1.13" + "@smithy/middleware-retry" "^4.1.14" "@smithy/middleware-serde" "^4.0.8" "@smithy/middleware-stack" "^4.0.4" "@smithy/node-config-provider" "^4.1.3" "@smithy/node-http-handler" "^4.0.6" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/url-parser" "^4.0.4" "@smithy/util-base64" "^4.0.0" "@smithy/util-body-length-browser" "^4.0.0" "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" + "@smithy/util-defaults-mode-browser" "^4.0.21" + "@smithy/util-defaults-mode-node" "^4.0.21" "@smithy/util-endpoints" "^3.0.6" "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" - "@smithy/util-stream" "^4.2.2" + "@smithy/util-retry" "^4.0.6" "@smithy/util-utf8" "^4.0.0" - "@smithy/util-waiter" "^4.0.5" tslib "^2.6.2" -"@aws-sdk/client-s3@^3": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-s3/-/client-s3-3.828.0.tgz#f026b618aa1cdae696a34c47aabb5712606ce0d7" - integrity sha512-TvFyrEfJkf9NN3cq5mXCgFv/sPaA8Rm5tEPgV5emuLedeGsORlWmVpdSKqfZ4lSoED1tMfNM6LY4uA9D8/RS5g== +"@aws-sdk/client-ssm@^3": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-ssm/-/client-ssm-3.839.0.tgz#2181ae7b69233e41dc448c98ccf7326a8a142cca" + integrity sha512-mqV4AL+Y2NxZCd0VPs23ylXNt5rI2yk2APBaWyRXaXREUbUwnZXHizNtrLtvAyOjXfhGiLtMpUdifLAOJxbgcw== dependencies: - "@aws-crypto/sha1-browser" "5.2.0" "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.828.0" - "@aws-sdk/middleware-bucket-endpoint" "3.821.0" - "@aws-sdk/middleware-expect-continue" "3.821.0" - "@aws-sdk/middleware-flexible-checksums" "3.826.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/credential-provider-node" "3.839.0" "@aws-sdk/middleware-host-header" "3.821.0" - "@aws-sdk/middleware-location-constraint" "3.821.0" "@aws-sdk/middleware-logger" "3.821.0" "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-sdk-s3" "3.826.0" - "@aws-sdk/middleware-ssec" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" + "@aws-sdk/middleware-user-agent" "3.839.0" "@aws-sdk/region-config-resolver" "3.821.0" - "@aws-sdk/signature-v4-multi-region" "3.826.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-endpoints" "3.828.0" "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" - "@aws-sdk/xml-builder" "3.821.0" + "@aws-sdk/util-user-agent-node" "3.839.0" "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" - "@smithy/eventstream-serde-browser" "^4.0.4" - "@smithy/eventstream-serde-config-resolver" "^4.1.2" - "@smithy/eventstream-serde-node" "^4.0.4" + "@smithy/core" "^3.6.0" "@smithy/fetch-http-handler" "^5.0.4" - "@smithy/hash-blob-browser" "^4.0.4" "@smithy/hash-node" "^4.0.4" - "@smithy/hash-stream-node" "^4.0.4" "@smithy/invalid-dependency" "^4.0.4" - "@smithy/md5-js" "^4.0.4" "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" + "@smithy/middleware-endpoint" "^4.1.13" + "@smithy/middleware-retry" "^4.1.14" "@smithy/middleware-serde" "^4.0.8" "@smithy/middleware-stack" "^4.0.4" "@smithy/node-config-provider" "^4.1.3" "@smithy/node-http-handler" "^4.0.6" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/url-parser" "^4.0.4" "@smithy/util-base64" "^4.0.0" "@smithy/util-body-length-browser" "^4.0.0" "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" + "@smithy/util-defaults-mode-browser" "^4.0.21" + "@smithy/util-defaults-mode-node" "^4.0.21" "@smithy/util-endpoints" "^3.0.6" "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" - "@smithy/util-stream" "^4.2.2" + "@smithy/util-retry" "^4.0.6" "@smithy/util-utf8" "^4.0.0" - "@smithy/util-waiter" "^4.0.5" + "@smithy/util-waiter" "^4.0.6" + "@types/uuid" "^9.0.1" tslib "^2.6.2" + uuid "^9.0.1" -"@aws-sdk/client-s3@^3.828.0": - version "3.835.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-s3/-/client-s3-3.835.0.tgz#e7096dd1846c953b7b72723c6e4b95a66d73d31f" - integrity sha512-htwcnVcCCXswbL/DSeuFIVd3f627On4Y1tSFlMZ9OmSC2+r9OTlUaHP8ugCCdx4Zofx2t4N/H2Cikd+l8vyvJw== +"@aws-sdk/client-sso@3.839.0": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.839.0.tgz#d8bf4628a210b0e326c0f3e41218c8ffb01564b1" + integrity sha512-AZABysUhbfcwXVlMo97/vwHgsfJNF81wypCAowpqAJkSjP2KrqsqHpb71/RoR2w8JGmEnBBXRD4wIxDhnmifWg== dependencies: - "@aws-crypto/sha1-browser" "5.2.0" "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.835.0" - "@aws-sdk/credential-provider-node" "3.835.0" - "@aws-sdk/middleware-bucket-endpoint" "3.830.0" - "@aws-sdk/middleware-expect-continue" "3.821.0" - "@aws-sdk/middleware-flexible-checksums" "3.835.0" + "@aws-sdk/core" "3.839.0" "@aws-sdk/middleware-host-header" "3.821.0" - "@aws-sdk/middleware-location-constraint" "3.821.0" "@aws-sdk/middleware-logger" "3.821.0" "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-sdk-s3" "3.835.0" - "@aws-sdk/middleware-ssec" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.835.0" + "@aws-sdk/middleware-user-agent" "3.839.0" "@aws-sdk/region-config-resolver" "3.821.0" - "@aws-sdk/signature-v4-multi-region" "3.835.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-endpoints" "3.828.0" "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.835.0" - "@aws-sdk/xml-builder" "3.821.0" + "@aws-sdk/util-user-agent-node" "3.839.0" "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" - "@smithy/eventstream-serde-browser" "^4.0.4" - "@smithy/eventstream-serde-config-resolver" "^4.1.2" - "@smithy/eventstream-serde-node" "^4.0.4" + "@smithy/core" "^3.6.0" "@smithy/fetch-http-handler" "^5.0.4" - "@smithy/hash-blob-browser" "^4.0.4" "@smithy/hash-node" "^4.0.4" - "@smithy/hash-stream-node" "^4.0.4" "@smithy/invalid-dependency" "^4.0.4" - "@smithy/md5-js" "^4.0.4" "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.12" - "@smithy/middleware-retry" "^4.1.13" + "@smithy/middleware-endpoint" "^4.1.13" + "@smithy/middleware-retry" "^4.1.14" "@smithy/middleware-serde" "^4.0.8" "@smithy/middleware-stack" "^4.0.4" "@smithy/node-config-provider" "^4.1.3" "@smithy/node-http-handler" "^4.0.6" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.4" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/url-parser" "^4.0.4" "@smithy/util-base64" "^4.0.0" "@smithy/util-body-length-browser" "^4.0.0" "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.20" - "@smithy/util-defaults-mode-node" "^4.0.20" + "@smithy/util-defaults-mode-browser" "^4.0.21" + "@smithy/util-defaults-mode-node" "^4.0.21" "@smithy/util-endpoints" "^3.0.6" "@smithy/util-middleware" "^4.0.4" "@smithy/util-retry" "^4.0.6" - "@smithy/util-stream" "^4.2.2" "@smithy/util-utf8" "^4.0.0" - "@smithy/util-waiter" "^4.0.5" - "@types/uuid" "^9.0.1" tslib "^2.6.2" - uuid "^9.0.1" -"@aws-sdk/client-secrets-manager@^3": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-secrets-manager/-/client-secrets-manager-3.828.0.tgz#d05a959e8373a6a23074977d6005e61a3e0d08c8" - integrity sha512-q6PO03nzWn4DCaZjwobB9GPjhaF2C0PUeCsmqymNbSjMPn1rVgpi1fbeCE6ZnS2jmv1lOF6FTAXfG0cGF+iT4Q== +"@aws-sdk/client-sts@3.839.0", "@aws-sdk/client-sts@^3": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.839.0.tgz#e86af1465209d37748c833d08fb5351d89e77557" + integrity sha512-R9Tg10Pdb1ue4IftYYw+pQegXUxQ5yYwthynvpBrByQHFiD8bKetVh/+J4zXduOD9usFJwWFYfh9zPmTIADG+A== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.828.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/credential-provider-node" "3.839.0" "@aws-sdk/middleware-host-header" "3.821.0" "@aws-sdk/middleware-logger" "3.821.0" "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" + "@aws-sdk/middleware-user-agent" "3.839.0" "@aws-sdk/region-config-resolver" "3.821.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-endpoints" "3.828.0" "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" + "@aws-sdk/util-user-agent-node" "3.839.0" "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" + "@smithy/core" "^3.6.0" "@smithy/fetch-http-handler" "^5.0.4" "@smithy/hash-node" "^4.0.4" "@smithy/invalid-dependency" "^4.0.4" "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" + "@smithy/middleware-endpoint" "^4.1.13" + "@smithy/middleware-retry" "^4.1.14" "@smithy/middleware-serde" "^4.0.8" "@smithy/middleware-stack" "^4.0.4" "@smithy/node-config-provider" "^4.1.3" "@smithy/node-http-handler" "^4.0.6" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/url-parser" "^4.0.4" "@smithy/util-base64" "^4.0.0" "@smithy/util-body-length-browser" "^4.0.0" "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" + "@smithy/util-defaults-mode-browser" "^4.0.21" + "@smithy/util-defaults-mode-node" "^4.0.21" "@smithy/util-endpoints" "^3.0.6" "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" + "@smithy/util-retry" "^4.0.6" "@smithy/util-utf8" "^4.0.0" - "@types/uuid" "^9.0.1" tslib "^2.6.2" - uuid "^9.0.1" -"@aws-sdk/client-sfn@^3": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sfn/-/client-sfn-3.828.0.tgz#c1431340458b2db6c5795add4c95988c5b8f202a" - integrity sha512-OrlLBQrz9m8gotoH5o3dw6BKSdQudCosYLsN6d78BnnQ/yg6nPoaCq3YjyBIM8Bwq7leEe6Y8kaEHxDVhN5uaA== +"@aws-sdk/config-resolver@3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/config-resolver/-/config-resolver-3.0.0.tgz#60ed3cc7bda1ac3a6c0b79c44ea99e370cdc0038" + integrity sha512-UGLud2uYwN1XOXX0xzSLoCcTrOkBIKIo1Ls0mN0dEryAQlFr2plR52Ze8OdjojXt49ZIrmb4WmPNFfszjwmkdA== + dependencies: + "@aws-sdk/signature-v4" "3.0.0" + tslib "^1.8.0" + +"@aws-sdk/core@3.839.0": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.839.0.tgz#dd841b3c331ca99c6c1d096184ea50b8f168fec4" + integrity sha512-KdwL5RaK7eUIlOpdOoZ5u+2t4X1rdX/MTZgz3IV/aBzjVUoGsp+uUnbyqXomLQSUitPHp72EE/NHDsvWW/IHvQ== dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.828.0" - "@aws-sdk/middleware-host-header" "3.821.0" - "@aws-sdk/middleware-logger" "3.821.0" - "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" - "@aws-sdk/region-config-resolver" "3.821.0" "@aws-sdk/types" "3.821.0" - "@aws-sdk/util-endpoints" "3.828.0" - "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" - "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" - "@smithy/fetch-http-handler" "^5.0.4" - "@smithy/hash-node" "^4.0.4" - "@smithy/invalid-dependency" "^4.0.4" - "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" - "@smithy/middleware-serde" "^4.0.8" - "@smithy/middleware-stack" "^4.0.4" + "@aws-sdk/xml-builder" "3.821.0" + "@smithy/core" "^3.6.0" "@smithy/node-config-provider" "^4.1.3" - "@smithy/node-http-handler" "^4.0.6" + "@smithy/property-provider" "^4.0.4" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" + "@smithy/signature-v4" "^5.1.2" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" - "@smithy/url-parser" "^4.0.4" "@smithy/util-base64" "^4.0.0" "@smithy/util-body-length-browser" "^4.0.0" - "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" - "@smithy/util-endpoints" "^3.0.6" "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" "@smithy/util-utf8" "^4.0.0" - "@types/uuid" "^9.0.1" + fast-xml-parser "4.4.1" tslib "^2.6.2" - uuid "^9.0.1" -"@aws-sdk/client-sns@3.830.0": - version "3.830.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sns/-/client-sns-3.830.0.tgz#925b0e1da726837aa6167aa4a98a2a343f134b46" - integrity sha512-3xm40RPsF0STAcxHmE3uXE9PgZVFGEW9w0ZO0iLGkMNvhVSNB6tUsJgIyCWPEj7yKxNy56dOqJ9mm3tl02AFmw== +"@aws-sdk/credential-provider-cognito-identity@3.839.0": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.839.0.tgz#71c06e0e329e7d42d6b7fef8994ab6a87e3d6b03" + integrity sha512-dXJsdSEVzG+8nIihqVnWzyW8Dc41kNKZEXYguHDb+VM/cIjRSVkaw9jXc+KAvbwcGkEB7BfAuW9VMjxpTR5eAA== dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.830.0" - "@aws-sdk/middleware-host-header" "3.821.0" - "@aws-sdk/middleware-logger" "3.821.0" - "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" - "@aws-sdk/region-config-resolver" "3.821.0" - "@aws-sdk/types" "3.821.0" - "@aws-sdk/util-endpoints" "3.828.0" - "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" - "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" - "@smithy/fetch-http-handler" "^5.0.4" - "@smithy/hash-node" "^4.0.4" - "@smithy/invalid-dependency" "^4.0.4" - "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" - "@smithy/middleware-serde" "^4.0.8" - "@smithy/middleware-stack" "^4.0.4" - "@smithy/node-config-provider" "^4.1.3" - "@smithy/node-http-handler" "^4.0.6" - "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" - "@smithy/types" "^4.3.1" - "@smithy/url-parser" "^4.0.4" - "@smithy/util-base64" "^4.0.0" - "@smithy/util-body-length-browser" "^4.0.0" - "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" - "@smithy/util-endpoints" "^3.0.6" - "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" - "@smithy/util-utf8" "^4.0.0" - tslib "^2.6.2" - -"@aws-sdk/client-ssm@^3": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-ssm/-/client-ssm-3.828.0.tgz#cc80f398454129f2d031c3c24b7033feb8266411" - integrity sha512-X0wXx8nx7l6oBV8WyW7ka1Ya9ePqCpbaNr6rzbqcusOWJAsuf+c3/zk3xUT/MYi5LnYUGKs9nmvbpyM9Pw8DEg== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.828.0" - "@aws-sdk/middleware-host-header" "3.821.0" - "@aws-sdk/middleware-logger" "3.821.0" - "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" - "@aws-sdk/region-config-resolver" "3.821.0" - "@aws-sdk/types" "3.821.0" - "@aws-sdk/util-endpoints" "3.828.0" - "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" - "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" - "@smithy/fetch-http-handler" "^5.0.4" - "@smithy/hash-node" "^4.0.4" - "@smithy/invalid-dependency" "^4.0.4" - "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" - "@smithy/middleware-serde" "^4.0.8" - "@smithy/middleware-stack" "^4.0.4" - "@smithy/node-config-provider" "^4.1.3" - "@smithy/node-http-handler" "^4.0.6" - "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" - "@smithy/types" "^4.3.1" - "@smithy/url-parser" "^4.0.4" - "@smithy/util-base64" "^4.0.0" - "@smithy/util-body-length-browser" "^4.0.0" - "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" - "@smithy/util-endpoints" "^3.0.6" - "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" - "@smithy/util-utf8" "^4.0.0" - "@smithy/util-waiter" "^4.0.5" - "@types/uuid" "^9.0.1" - tslib "^2.6.2" - uuid "^9.0.1" - -"@aws-sdk/client-sso@3.828.0": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.828.0.tgz#ad37249c8424d4250b5cb4f9452a5bbdb9f3199b" - integrity sha512-qxw8JcPTaFaBwTBUr4YmLajaMh3En65SuBWAKEtjctbITRRekzR7tvr/TkwoyVOh+XoAtkwOn+BQeQbX+/wgHw== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/middleware-host-header" "3.821.0" - "@aws-sdk/middleware-logger" "3.821.0" - "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" - "@aws-sdk/region-config-resolver" "3.821.0" - "@aws-sdk/types" "3.821.0" - "@aws-sdk/util-endpoints" "3.828.0" - "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" - "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" - "@smithy/fetch-http-handler" "^5.0.4" - "@smithy/hash-node" "^4.0.4" - "@smithy/invalid-dependency" "^4.0.4" - "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" - "@smithy/middleware-serde" "^4.0.8" - "@smithy/middleware-stack" "^4.0.4" - "@smithy/node-config-provider" "^4.1.3" - "@smithy/node-http-handler" "^4.0.6" - "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" - "@smithy/types" "^4.3.1" - "@smithy/url-parser" "^4.0.4" - "@smithy/util-base64" "^4.0.0" - "@smithy/util-body-length-browser" "^4.0.0" - "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" - "@smithy/util-endpoints" "^3.0.6" - "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" - "@smithy/util-utf8" "^4.0.0" - tslib "^2.6.2" - -"@aws-sdk/client-sso@3.830.0": - version "3.830.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.830.0.tgz#8cf110602e2bc986e2b3c08163971e467d6c970e" - integrity sha512-5zCEpfI+zwX2SIa258L+TItNbBoAvQQ6w74qdFM6YJufQ1F9tvwjTX8T+eSTT9nsFIvfYnUaGalWwJVfmJUgVQ== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/middleware-host-header" "3.821.0" - "@aws-sdk/middleware-logger" "3.821.0" - "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" - "@aws-sdk/region-config-resolver" "3.821.0" - "@aws-sdk/types" "3.821.0" - "@aws-sdk/util-endpoints" "3.828.0" - "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" - "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" - "@smithy/fetch-http-handler" "^5.0.4" - "@smithy/hash-node" "^4.0.4" - "@smithy/invalid-dependency" "^4.0.4" - "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" - "@smithy/middleware-serde" "^4.0.8" - "@smithy/middleware-stack" "^4.0.4" - "@smithy/node-config-provider" "^4.1.3" - "@smithy/node-http-handler" "^4.0.6" - "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" - "@smithy/types" "^4.3.1" - "@smithy/url-parser" "^4.0.4" - "@smithy/util-base64" "^4.0.0" - "@smithy/util-body-length-browser" "^4.0.0" - "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" - "@smithy/util-endpoints" "^3.0.6" - "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" - "@smithy/util-utf8" "^4.0.0" - tslib "^2.6.2" - -"@aws-sdk/client-sso@3.835.0": - version "3.835.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.835.0.tgz#35f6d87b8b28cf63f55630501ffe31395f3273b9" - integrity sha512-4J19IcBKU5vL8yw/YWEvbwEGcmCli0rpRyxG53v0K5/3weVPxVBbKfkWcjWVQ4qdxNz2uInfbTde4BRBFxWllQ== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.835.0" - "@aws-sdk/middleware-host-header" "3.821.0" - "@aws-sdk/middleware-logger" "3.821.0" - "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.835.0" - "@aws-sdk/region-config-resolver" "3.821.0" - "@aws-sdk/types" "3.821.0" - "@aws-sdk/util-endpoints" "3.828.0" - "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.835.0" - "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" - "@smithy/fetch-http-handler" "^5.0.4" - "@smithy/hash-node" "^4.0.4" - "@smithy/invalid-dependency" "^4.0.4" - "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.12" - "@smithy/middleware-retry" "^4.1.13" - "@smithy/middleware-serde" "^4.0.8" - "@smithy/middleware-stack" "^4.0.4" - "@smithy/node-config-provider" "^4.1.3" - "@smithy/node-http-handler" "^4.0.6" - "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.4" - "@smithy/types" "^4.3.1" - "@smithy/url-parser" "^4.0.4" - "@smithy/util-base64" "^4.0.0" - "@smithy/util-body-length-browser" "^4.0.0" - "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.20" - "@smithy/util-defaults-mode-node" "^4.0.20" - "@smithy/util-endpoints" "^3.0.6" - "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.6" - "@smithy/util-utf8" "^4.0.0" - tslib "^2.6.2" - -"@aws-sdk/client-sts@3.830.0": - version "3.830.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.830.0.tgz#abaa8a73c0c16cb19bbc5ec68cad3783ed666f04" - integrity sha512-tzVgR1tKK+QTHWzEHvMsGUbAf6n3kNfieTdvMSGhXhkK8TfOQ/k6vwMieISlX2ftMafI1RsPaUEv+9ae+VoGRw== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.830.0" - "@aws-sdk/middleware-host-header" "3.821.0" - "@aws-sdk/middleware-logger" "3.821.0" - "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" - "@aws-sdk/region-config-resolver" "3.821.0" - "@aws-sdk/types" "3.821.0" - "@aws-sdk/util-endpoints" "3.828.0" - "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" - "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" - "@smithy/fetch-http-handler" "^5.0.4" - "@smithy/hash-node" "^4.0.4" - "@smithy/invalid-dependency" "^4.0.4" - "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" - "@smithy/middleware-serde" "^4.0.8" - "@smithy/middleware-stack" "^4.0.4" - "@smithy/node-config-provider" "^4.1.3" - "@smithy/node-http-handler" "^4.0.6" - "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" - "@smithy/types" "^4.3.1" - "@smithy/url-parser" "^4.0.4" - "@smithy/util-base64" "^4.0.0" - "@smithy/util-body-length-browser" "^4.0.0" - "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" - "@smithy/util-endpoints" "^3.0.6" - "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" - "@smithy/util-utf8" "^4.0.0" - tslib "^2.6.2" - -"@aws-sdk/client-sts@^3": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.828.0.tgz#7b3456b97426bcead66b9271719515c66d9d18bf" - integrity sha512-hxTJVbFQLPcXHvu0kpI3U8IR0w1hvszVeYOkLhwTJ+m0MEvZPBjjKdQKIQOBGCJm6VKBbmSYSR2TiZMCEF5Lvg== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-node" "3.828.0" - "@aws-sdk/middleware-host-header" "3.821.0" - "@aws-sdk/middleware-logger" "3.821.0" - "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" - "@aws-sdk/region-config-resolver" "3.821.0" - "@aws-sdk/types" "3.821.0" - "@aws-sdk/util-endpoints" "3.828.0" - "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" - "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" - "@smithy/fetch-http-handler" "^5.0.4" - "@smithy/hash-node" "^4.0.4" - "@smithy/invalid-dependency" "^4.0.4" - "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" - "@smithy/middleware-serde" "^4.0.8" - "@smithy/middleware-stack" "^4.0.4" - "@smithy/node-config-provider" "^4.1.3" - "@smithy/node-http-handler" "^4.0.6" - "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" - "@smithy/types" "^4.3.1" - "@smithy/url-parser" "^4.0.4" - "@smithy/util-base64" "^4.0.0" - "@smithy/util-body-length-browser" "^4.0.0" - "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" - "@smithy/util-endpoints" "^3.0.6" - "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" - "@smithy/util-utf8" "^4.0.0" - tslib "^2.6.2" - -"@aws-sdk/config-resolver@3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/config-resolver/-/config-resolver-3.0.0.tgz#60ed3cc7bda1ac3a6c0b79c44ea99e370cdc0038" - integrity sha512-UGLud2uYwN1XOXX0xzSLoCcTrOkBIKIo1Ls0mN0dEryAQlFr2plR52Ze8OdjojXt49ZIrmb4WmPNFfszjwmkdA== - dependencies: - "@aws-sdk/signature-v4" "3.0.0" - tslib "^1.8.0" - -"@aws-sdk/core@3.826.0": - version "3.826.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.826.0.tgz#da55a524e09775b2a97e4b5d12a3137dd68547fa" - integrity sha512-BGbQYzWj3ps+dblq33FY5tz/SsgJCcXX0zjQlSC07tYvU1jHTUvsefphyig+fY38xZ4wdKjbTop+KUmXUYrOXw== - dependencies: - "@aws-sdk/types" "3.821.0" - "@aws-sdk/xml-builder" "3.821.0" - "@smithy/core" "^3.5.3" - "@smithy/node-config-provider" "^4.1.3" - "@smithy/property-provider" "^4.0.4" - "@smithy/protocol-http" "^5.1.2" - "@smithy/signature-v4" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" - "@smithy/types" "^4.3.1" - "@smithy/util-base64" "^4.0.0" - "@smithy/util-body-length-browser" "^4.0.0" - "@smithy/util-middleware" "^4.0.4" - "@smithy/util-utf8" "^4.0.0" - fast-xml-parser "4.4.1" - tslib "^2.6.2" - -"@aws-sdk/core@3.835.0": - version "3.835.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.835.0.tgz#5f2518200f2013261ec05c4acc598bdd15ccf1a5" - integrity sha512-7mnf4xbaLI8rkDa+w6fUU48dG6yDuOgLXEPe4Ut3SbMp1ceJBPMozNHbCwkiyHk3HpxZYf8eVy0wXhJMrxZq5w== - dependencies: - "@aws-sdk/types" "3.821.0" - "@aws-sdk/xml-builder" "3.821.0" - "@smithy/core" "^3.5.3" - "@smithy/node-config-provider" "^4.1.3" - "@smithy/property-provider" "^4.0.4" - "@smithy/protocol-http" "^5.1.2" - "@smithy/signature-v4" "^5.1.2" - "@smithy/smithy-client" "^4.4.4" - "@smithy/types" "^4.3.1" - "@smithy/util-base64" "^4.0.0" - "@smithy/util-body-length-browser" "^4.0.0" - "@smithy/util-middleware" "^4.0.4" - "@smithy/util-utf8" "^4.0.0" - fast-xml-parser "4.4.1" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-cognito-identity@3.828.0": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.828.0.tgz#e4fe748281e07dd2926ce5e90c50456625ca2649" - integrity sha512-JmQivvkif6KLVeIKCSybl80aZgbVXREAAa0VwhJg3z2E3r8dm9qnH3XeDAzzoZrJAQmK3czuowWpwlI/PHVX8w== - dependencies: - "@aws-sdk/client-cognito-identity" "3.828.0" - "@aws-sdk/types" "3.821.0" - "@smithy/property-provider" "^4.0.4" - "@smithy/types" "^4.3.1" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-cognito-identity@3.830.0": - version "3.830.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.830.0.tgz#4b3cbea950b9e5f3d17908c15b58b21af6ceae51" - integrity sha512-YEXmJ1BJ6DzjNnW5OR/5yNPm5d19uifKM6n/1Q1+vooj0OC/zxO9rXo5uQ8Kjs7ZAb0uYSxzy5pTNi5Ilvs8+Q== - dependencies: - "@aws-sdk/client-cognito-identity" "3.830.0" + "@aws-sdk/client-cognito-identity" "3.839.0" "@aws-sdk/types" "3.821.0" "@smithy/property-provider" "^4.0.4" "@smithy/types" "^4.3.1" @@ -1936,56 +1364,29 @@ "@aws-sdk/property-provider" "3.0.0" tslib "^1.8.0" -"@aws-sdk/credential-provider-env@3.826.0": - version "3.826.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.826.0.tgz#213d08a1324a2970a2785151bcb6975b2f88716c" - integrity sha512-DK3pQY8+iKK3MGDdC3uOZQ2psU01obaKlTYhEwNu4VWzgwQL4Vi3sWj4xSWGEK41vqZxiRLq6fOq7ysRI+qEZA== - dependencies: - "@aws-sdk/core" "3.826.0" - "@aws-sdk/types" "3.821.0" - "@smithy/property-provider" "^4.0.4" - "@smithy/types" "^4.3.1" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-env@3.835.0": - version "3.835.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.835.0.tgz#92773ff7b3e1986992ad4dcb55c3b404c59c1029" - integrity sha512-U9LFWe7+ephNyekpUbzT7o6SmJTmn6xkrPkE0D7pbLojnPVi/8SZKyjtgQGIsAv+2kFkOCqMOIYUKd/0pE7uew== - dependencies: - "@aws-sdk/core" "3.835.0" - "@aws-sdk/types" "3.821.0" - "@smithy/property-provider" "^4.0.4" - "@smithy/types" "^4.3.1" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-http@3.826.0": - version "3.826.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.826.0.tgz#507591b684b3ed8d24cfa179995c1f93efc914cc" - integrity sha512-N+IVZBh+yx/9GbMZTKO/gErBi/FYZQtcFRItoLbY+6WU+0cSWyZYfkoeOxHmQV3iX9k65oljERIWUmL9x6OSQg== +"@aws-sdk/credential-provider-env@3.839.0": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.839.0.tgz#0102470388f1939206a80d8a7398047b380378bc" + integrity sha512-cWTadewPPz1OvObZJB+olrgh8VwcgIVcT293ZUT9V0CMF0UU7QaPwJP7uNXcNxltTh+sk1yhjH4UlcnJigZZbA== dependencies: - "@aws-sdk/core" "3.826.0" + "@aws-sdk/core" "3.839.0" "@aws-sdk/types" "3.821.0" - "@smithy/fetch-http-handler" "^5.0.4" - "@smithy/node-http-handler" "^4.0.6" "@smithy/property-provider" "^4.0.4" - "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" "@smithy/types" "^4.3.1" - "@smithy/util-stream" "^4.2.2" tslib "^2.6.2" -"@aws-sdk/credential-provider-http@3.835.0": - version "3.835.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.835.0.tgz#4b4aff57a6befa3949f61ffb2136680c0e63c81f" - integrity sha512-jCdNEsQklil7frDm/BuVKl4ubVoQHRbV6fnkOjmxAJz0/v7cR8JP0jBGlqKKzh3ROh5/vo1/5VUZbCTLpc9dSg== +"@aws-sdk/credential-provider-http@3.839.0": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.839.0.tgz#fefd416af01bcb2429f7db7e47d5ceaf3c860673" + integrity sha512-fv0BZwrDhWDju4D1MCLT4I2aPjr0dVQ6P+MpqvcGNOA41Oa9UdRhYTV5iuy5NLXzIzoCmnS+XfSq5Kbsf6//xw== dependencies: - "@aws-sdk/core" "3.835.0" + "@aws-sdk/core" "3.839.0" "@aws-sdk/types" "3.821.0" "@smithy/fetch-http-handler" "^5.0.4" "@smithy/node-http-handler" "^4.0.6" "@smithy/property-provider" "^4.0.4" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.4" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/util-stream" "^4.2.2" tslib "^2.6.2" @@ -2007,56 +1408,18 @@ "@aws-sdk/shared-ini-file-loader" "3.0.0" tslib "^1.8.0" -"@aws-sdk/credential-provider-ini@3.828.0": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.828.0.tgz#1947ecd69161fe0f174ceacfd682aa6493478b55" - integrity sha512-T3DJMo2/j7gCPpFg2+xEHWgua05t8WP89ye7PaZxA2Fc6CgScHkZsJZTri1QQIU2h+eOZ75EZWkeFLIPgN0kRQ== - dependencies: - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-env" "3.826.0" - "@aws-sdk/credential-provider-http" "3.826.0" - "@aws-sdk/credential-provider-process" "3.826.0" - "@aws-sdk/credential-provider-sso" "3.828.0" - "@aws-sdk/credential-provider-web-identity" "3.828.0" - "@aws-sdk/nested-clients" "3.828.0" - "@aws-sdk/types" "3.821.0" - "@smithy/credential-provider-imds" "^4.0.6" - "@smithy/property-provider" "^4.0.4" - "@smithy/shared-ini-file-loader" "^4.0.4" - "@smithy/types" "^4.3.1" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-ini@3.830.0": - version "3.830.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.830.0.tgz#06b75bdd6417f72bd3729f091ea5efdd01f9556d" - integrity sha512-zeQenzvh8JRY5nULd8izdjVGoCM1tgsVVsrLSwDkHxZTTW0hW/bmOmXfvdaE0wDdomXW7m2CkQDSmP7XdvNXZg== - dependencies: - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-env" "3.826.0" - "@aws-sdk/credential-provider-http" "3.826.0" - "@aws-sdk/credential-provider-process" "3.826.0" - "@aws-sdk/credential-provider-sso" "3.830.0" - "@aws-sdk/credential-provider-web-identity" "3.830.0" - "@aws-sdk/nested-clients" "3.830.0" - "@aws-sdk/types" "3.821.0" - "@smithy/credential-provider-imds" "^4.0.6" - "@smithy/property-provider" "^4.0.4" - "@smithy/shared-ini-file-loader" "^4.0.4" - "@smithy/types" "^4.3.1" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-ini@3.835.0": - version "3.835.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.835.0.tgz#3b8cb621f66bc9174723e43f70a7f1638076cc40" - integrity sha512-nqF6rYRAnJedmvDfrfKygzyeADcduDvtvn7GlbQQbXKeR2l7KnCdhuxHa0FALLvspkHiBx7NtInmvnd5IMuWsw== - dependencies: - "@aws-sdk/core" "3.835.0" - "@aws-sdk/credential-provider-env" "3.835.0" - "@aws-sdk/credential-provider-http" "3.835.0" - "@aws-sdk/credential-provider-process" "3.835.0" - "@aws-sdk/credential-provider-sso" "3.835.0" - "@aws-sdk/credential-provider-web-identity" "3.835.0" - "@aws-sdk/nested-clients" "3.835.0" +"@aws-sdk/credential-provider-ini@3.839.0": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.839.0.tgz#34535d13382dabad2de084f3c7a94e587ce9a832" + integrity sha512-GHm0hF4CiDxIDR7TauMaA6iI55uuSqRxMBcqTAHaTPm6+h1A+MS+ysQMxZ+Jvwtoy8WmfTIGrJVxSCw0sK2hvA== + dependencies: + "@aws-sdk/core" "3.839.0" + "@aws-sdk/credential-provider-env" "3.839.0" + "@aws-sdk/credential-provider-http" "3.839.0" + "@aws-sdk/credential-provider-process" "3.839.0" + "@aws-sdk/credential-provider-sso" "3.839.0" + "@aws-sdk/credential-provider-web-identity" "3.839.0" + "@aws-sdk/nested-clients" "3.839.0" "@aws-sdk/types" "3.821.0" "@smithy/credential-provider-imds" "^4.0.6" "@smithy/property-provider" "^4.0.4" @@ -2076,53 +1439,17 @@ "@aws-sdk/property-provider" "3.0.0" tslib "^1.8.0" -"@aws-sdk/credential-provider-node@3.828.0": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.828.0.tgz#aa5757f00481534617b83115a2be582b08887ff0" - integrity sha512-9z3iPwVYOQYNzVZj8qycZaS/BOSKRXWA+QVNQlfEnQ4sA4sOcKR4kmV2h+rJcuBsSFfmOF62ZDxyIBGvvM4t/w== - dependencies: - "@aws-sdk/credential-provider-env" "3.826.0" - "@aws-sdk/credential-provider-http" "3.826.0" - "@aws-sdk/credential-provider-ini" "3.828.0" - "@aws-sdk/credential-provider-process" "3.826.0" - "@aws-sdk/credential-provider-sso" "3.828.0" - "@aws-sdk/credential-provider-web-identity" "3.828.0" - "@aws-sdk/types" "3.821.0" - "@smithy/credential-provider-imds" "^4.0.6" - "@smithy/property-provider" "^4.0.4" - "@smithy/shared-ini-file-loader" "^4.0.4" - "@smithy/types" "^4.3.1" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-node@3.830.0": - version "3.830.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.830.0.tgz#caeab67c0d7c65e14d923ed3f0dd6c7b8f334dba" - integrity sha512-X/2LrTgwtK1pkWrvofxQBI8VTi6QVLtSMpsKKPPnJQ0vgqC0e4czSIs3ZxiEsOkCBaQ2usXSiKyh0ccsQ6k2OA== - dependencies: - "@aws-sdk/credential-provider-env" "3.826.0" - "@aws-sdk/credential-provider-http" "3.826.0" - "@aws-sdk/credential-provider-ini" "3.830.0" - "@aws-sdk/credential-provider-process" "3.826.0" - "@aws-sdk/credential-provider-sso" "3.830.0" - "@aws-sdk/credential-provider-web-identity" "3.830.0" - "@aws-sdk/types" "3.821.0" - "@smithy/credential-provider-imds" "^4.0.6" - "@smithy/property-provider" "^4.0.4" - "@smithy/shared-ini-file-loader" "^4.0.4" - "@smithy/types" "^4.3.1" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-node@3.835.0": - version "3.835.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.835.0.tgz#15b8fe76898e99f99d2c16830d3332d2d020aa1f" - integrity sha512-77B8elyZlaEd7vDYyCnYtVLuagIBwuJ0AQ98/36JMGrYX7TT8UVAhiDAfVe0NdUOMORvDNFfzL06VBm7wittYw== - dependencies: - "@aws-sdk/credential-provider-env" "3.835.0" - "@aws-sdk/credential-provider-http" "3.835.0" - "@aws-sdk/credential-provider-ini" "3.835.0" - "@aws-sdk/credential-provider-process" "3.835.0" - "@aws-sdk/credential-provider-sso" "3.835.0" - "@aws-sdk/credential-provider-web-identity" "3.835.0" +"@aws-sdk/credential-provider-node@3.839.0": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.839.0.tgz#2e7cfa42caa76977c7734cfada0febca9f72570c" + integrity sha512-7bR+U2h+ft0V8chyeu9Bh/pvau4ZkQMeRt5f0dAULoepZQ77QQVRP4H04yJPTg9DCtqbVULQ3uf5YOp1/08vQw== + dependencies: + "@aws-sdk/credential-provider-env" "3.839.0" + "@aws-sdk/credential-provider-http" "3.839.0" + "@aws-sdk/credential-provider-ini" "3.839.0" + "@aws-sdk/credential-provider-process" "3.839.0" + "@aws-sdk/credential-provider-sso" "3.839.0" + "@aws-sdk/credential-provider-web-identity" "3.839.0" "@aws-sdk/types" "3.821.0" "@smithy/credential-provider-imds" "^4.0.6" "@smithy/property-provider" "^4.0.4" @@ -2140,152 +1467,63 @@ "@aws-sdk/shared-ini-file-loader" "3.0.0" tslib "^1.8.0" -"@aws-sdk/credential-provider-process@3.826.0": - version "3.826.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.826.0.tgz#3b7e54994cf04c8ba20a90caf4f79af9f1335ea4" - integrity sha512-kURrc4amu3NLtw1yZw7EoLNEVhmOMRUTs+chaNcmS+ERm3yK0nKjaJzmKahmwlTQTSl3wJ8jjK7x962VPo+zWw== +"@aws-sdk/credential-provider-process@3.839.0": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.839.0.tgz#13be5dae462dbd368ce907bd79a00eaf672fa57f" + integrity sha512-qShpekjociUZ+isyQNa0P7jo+0q3N2+0eJDg8SGyP6K6hHTcGfiqxTDps+IKl6NreCPhZCBzyI9mWkP0xSDR6g== dependencies: - "@aws-sdk/core" "3.826.0" + "@aws-sdk/core" "3.839.0" "@aws-sdk/types" "3.821.0" "@smithy/property-provider" "^4.0.4" "@smithy/shared-ini-file-loader" "^4.0.4" "@smithy/types" "^4.3.1" tslib "^2.6.2" -"@aws-sdk/credential-provider-process@3.835.0": - version "3.835.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.835.0.tgz#3969909d45306a51d787746925f1db3d555ecc0c" - integrity sha512-qXkTt5pAhSi2Mp9GdgceZZFo/cFYrA735efqi/Re/nf0lpqBp8mRM8xv+iAaPHV4Q10q0DlkbEidT1DhxdT/+w== +"@aws-sdk/credential-provider-sso@3.839.0": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.839.0.tgz#d64941981ca3160f32db87d099b130c36af55a62" + integrity sha512-w10zBLHhU8SBQcdrSPMI02haLoRGZg+gP7mH/Er8VhIXfHefbr7o4NirmB0hwdw/YAH8MLlC9jj7c2SJlsNhYA== dependencies: - "@aws-sdk/core" "3.835.0" + "@aws-sdk/client-sso" "3.839.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/token-providers" "3.839.0" "@aws-sdk/types" "3.821.0" "@smithy/property-provider" "^4.0.4" "@smithy/shared-ini-file-loader" "^4.0.4" "@smithy/types" "^4.3.1" tslib "^2.6.2" -"@aws-sdk/credential-provider-sso@3.828.0": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.828.0.tgz#32105dd1fb67423c691fa7c24ba317dd7271e73f" - integrity sha512-9CEAXzUDSzOjOCb3XfM15TZhTaM+l07kumZyx2z8NC6T2U4qbCJqn4h8mFlRvYrs6cBj2SN40sD3r5Wp0Cq2Kw== - dependencies: - "@aws-sdk/client-sso" "3.828.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/token-providers" "3.828.0" - "@aws-sdk/types" "3.821.0" - "@smithy/property-provider" "^4.0.4" - "@smithy/shared-ini-file-loader" "^4.0.4" - "@smithy/types" "^4.3.1" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-sso@3.830.0": - version "3.830.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.830.0.tgz#6fbaf338f109bfa6d04c7f62f06469787b6bb3b6" - integrity sha512-+VdRpZmfekzpySqZikAKx6l5ndnLGluioIgUG4ZznrButgFD/iogzFtGmBDFB3ZLViX1l4pMXru0zFwJEZT21Q== - dependencies: - "@aws-sdk/client-sso" "3.830.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/token-providers" "3.830.0" - "@aws-sdk/types" "3.821.0" - "@smithy/property-provider" "^4.0.4" - "@smithy/shared-ini-file-loader" "^4.0.4" - "@smithy/types" "^4.3.1" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-sso@3.835.0": - version "3.835.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.835.0.tgz#44369e3dc26fb60ff04c63fc5680c2355ff807d5" - integrity sha512-jAiEMryaPFXayYGszrc7NcgZA/zrrE3QvvvUBh/Udasg+9Qp5ZELdJCm/p98twNyY9n5i6Ex6VgvdxZ7+iEheQ== - dependencies: - "@aws-sdk/client-sso" "3.835.0" - "@aws-sdk/core" "3.835.0" - "@aws-sdk/token-providers" "3.835.0" - "@aws-sdk/types" "3.821.0" - "@smithy/property-provider" "^4.0.4" - "@smithy/shared-ini-file-loader" "^4.0.4" - "@smithy/types" "^4.3.1" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-web-identity@3.828.0": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.828.0.tgz#b14085bd47284be79c05149f44b8151111d2ec0f" - integrity sha512-MguDhGHlQBeK9CQ/P4NOY0whAJ4HJU4x+f1dphg3I1sGlccFqfB8Moor2vXNKu0Th2kvAwkn9pr7gGb/+NGR9g== - dependencies: - "@aws-sdk/core" "3.826.0" - "@aws-sdk/nested-clients" "3.828.0" - "@aws-sdk/types" "3.821.0" - "@smithy/property-provider" "^4.0.4" - "@smithy/types" "^4.3.1" - tslib "^2.6.2" - -"@aws-sdk/credential-provider-web-identity@3.830.0": - version "3.830.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.830.0.tgz#c2e9a8c997d3d381688c85591b5d136982639510" - integrity sha512-hPYrKsZeeOdLROJ59T6Y8yZ0iwC/60L3qhZXjapBFjbqBtMaQiMTI645K6xVXBioA6vxXq7B4aLOhYqk6Fy/Ww== +"@aws-sdk/credential-provider-web-identity@3.839.0": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.839.0.tgz#b135421b562c9577e3d12fbb39b7adbb48c9ca00" + integrity sha512-EvqTc7J1kgmiuxknpCp1S60hyMQvmKxsI5uXzQtcogl/N55rxiXEqnCLI5q6p33q91PJegrcMCM5Q17Afhm5qA== dependencies: - "@aws-sdk/core" "3.826.0" - "@aws-sdk/nested-clients" "3.830.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/nested-clients" "3.839.0" "@aws-sdk/types" "3.821.0" "@smithy/property-provider" "^4.0.4" "@smithy/types" "^4.3.1" tslib "^2.6.2" -"@aws-sdk/credential-provider-web-identity@3.835.0": - version "3.835.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.835.0.tgz#7b01428c490f33aa1dc94ea4aee99804c91bdd82" - integrity sha512-zfleEFXDLlcJ7cyfS4xSyCRpd8SVlYZfH3rp0pg2vPYKbnmXVE0r+gPIYXl4L+Yz4A2tizYl63nKCNdtbxadog== +"@aws-sdk/credential-providers@3.839.0", "@aws-sdk/credential-providers@^3", "@aws-sdk/credential-providers@^3.834.0": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-providers/-/credential-providers-3.839.0.tgz#5c2320899f3c010b55b5355efba1b002f41c20d7" + integrity sha512-hiM7vY2qYAdNT87+Qd3vvfNA+bqhtecsPIduIxkhwispEs9NGcQYtOaG3KQRcHkJBb4kaMYpudVNMXeYUYi2Aw== dependencies: - "@aws-sdk/core" "3.835.0" - "@aws-sdk/nested-clients" "3.835.0" - "@aws-sdk/types" "3.821.0" - "@smithy/property-provider" "^4.0.4" - "@smithy/types" "^4.3.1" - tslib "^2.6.2" - -"@aws-sdk/credential-providers@3.830.0": - version "3.830.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-providers/-/credential-providers-3.830.0.tgz#dbd3aab15a3a425dccc31be905ae0acb58d43d2e" - integrity sha512-Q16Yf52L9QWsRhaaG/Q6eUkUWGUrbKTM2ba8at8ZZ8tsGaKO5pYgXUTErxB1bin11S6JszinbLqUf9G9oUExxA== - dependencies: - "@aws-sdk/client-cognito-identity" "3.830.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-cognito-identity" "3.830.0" - "@aws-sdk/credential-provider-env" "3.826.0" - "@aws-sdk/credential-provider-http" "3.826.0" - "@aws-sdk/credential-provider-ini" "3.830.0" - "@aws-sdk/credential-provider-node" "3.830.0" - "@aws-sdk/credential-provider-process" "3.826.0" - "@aws-sdk/credential-provider-sso" "3.830.0" - "@aws-sdk/credential-provider-web-identity" "3.830.0" - "@aws-sdk/nested-clients" "3.830.0" - "@aws-sdk/types" "3.821.0" - "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" - "@smithy/credential-provider-imds" "^4.0.6" - "@smithy/node-config-provider" "^4.1.3" - "@smithy/property-provider" "^4.0.4" - "@smithy/types" "^4.3.1" - tslib "^2.6.2" - -"@aws-sdk/credential-providers@^3", "@aws-sdk/credential-providers@^3.826.0": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-providers/-/credential-providers-3.828.0.tgz#954e3c0351a8b456a9a18aeaeef83a4c36cbcd5f" - integrity sha512-PuLp94Brs3lpZ+H8Ata0nolqUEdmV1geiggEzRdLt93cggs7UXPJG9TG87py6W4qPmRvkE34QSwO/1NXpm4eGw== - dependencies: - "@aws-sdk/client-cognito-identity" "3.828.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/credential-provider-cognito-identity" "3.828.0" - "@aws-sdk/credential-provider-env" "3.826.0" - "@aws-sdk/credential-provider-http" "3.826.0" - "@aws-sdk/credential-provider-ini" "3.828.0" - "@aws-sdk/credential-provider-node" "3.828.0" - "@aws-sdk/credential-provider-process" "3.826.0" - "@aws-sdk/credential-provider-sso" "3.828.0" - "@aws-sdk/credential-provider-web-identity" "3.828.0" - "@aws-sdk/nested-clients" "3.828.0" + "@aws-sdk/client-cognito-identity" "3.839.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/credential-provider-cognito-identity" "3.839.0" + "@aws-sdk/credential-provider-env" "3.839.0" + "@aws-sdk/credential-provider-http" "3.839.0" + "@aws-sdk/credential-provider-ini" "3.839.0" + "@aws-sdk/credential-provider-node" "3.839.0" + "@aws-sdk/credential-provider-process" "3.839.0" + "@aws-sdk/credential-provider-sso" "3.839.0" + "@aws-sdk/credential-provider-web-identity" "3.839.0" + "@aws-sdk/nested-clients" "3.839.0" "@aws-sdk/types" "3.821.0" "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" + "@smithy/core" "^3.6.0" "@smithy/credential-provider-imds" "^4.0.6" "@smithy/node-config-provider" "^4.1.3" "@smithy/property-provider" "^4.0.4" @@ -2293,9 +1531,9 @@ tslib "^2.6.2" "@aws-sdk/ec2-metadata-service@^3": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/ec2-metadata-service/-/ec2-metadata-service-3.828.0.tgz#b2929e50d47c13a97de17b5148c9952851dab5cc" - integrity sha512-nHXePDoxiOtxYFc00XNapPu6Wyz6LXblJ6LS4Cmtse6yf/h2NiOiOBYAftGd6JI6bL61h+WHUekFqe6K2Gujsw== + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/ec2-metadata-service/-/ec2-metadata-service-3.839.0.tgz#64940578a19f7377e7e26829d8002b5377042d56" + integrity sha512-L4qZzOHKfw/CkV39Hf8X0fa/NYnXKCrXeXPqZvrb6F/23lef8pynOT3VSJLqx5NNossn3D2wkILKABjqlqT50Q== dependencies: "@aws-sdk/types" "3.821.0" "@smithy/node-config-provider" "^4.1.3" @@ -2338,31 +1576,18 @@ tslib "^1.8.0" "@aws-sdk/lib-storage@^3": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/lib-storage/-/lib-storage-3.828.0.tgz#4a28d461420d6b3d9a76e55f5d67e86f9c89ffec" - integrity sha512-nBJmRzveYtdqL0u76tv62JGtkUfvyyZhAKNHFlzO8lCO7lxa0muRTG/ptUSS0ruFHq1K2MXHnDtLX90xiErIsQ== + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/lib-storage/-/lib-storage-3.839.0.tgz#2d8191a1c1079792d11db89ef33108e6db629e1d" + integrity sha512-cTracARTc9o1cqLKKb2k5r5lYiIAOZglJgHS2LVet5Xb0C6JDmSd4nRSj1N5rj9czRrxqf11RTrUdq4JgsV6tQ== dependencies: "@smithy/abort-controller" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/smithy-client" "^4.4.3" + "@smithy/middleware-endpoint" "^4.1.13" + "@smithy/smithy-client" "^4.4.5" buffer "5.6.0" events "3.3.0" stream-browserify "3.0.0" tslib "^2.6.2" -"@aws-sdk/middleware-bucket-endpoint@3.821.0": - version "3.821.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.821.0.tgz#2d7658e5b20a7712624ea33fa579a6be0339028b" - integrity sha512-cebgeytKlWOgGczLo3BPvNY9XlzAzGZQANSysgJ2/8PSldmUpXRIF+GKPXDVhXeInWYHIfB8zZi3RqrPoXcNYQ== - dependencies: - "@aws-sdk/types" "3.821.0" - "@aws-sdk/util-arn-parser" "3.804.0" - "@smithy/node-config-provider" "^4.1.3" - "@smithy/protocol-http" "^5.1.2" - "@smithy/types" "^4.3.1" - "@smithy/util-config-provider" "^4.0.0" - tslib "^2.6.2" - "@aws-sdk/middleware-bucket-endpoint@3.830.0": version "3.830.0" resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.830.0.tgz#4ab8ebf3ab38b94021981e9cd069c73c9c2ae354" @@ -2402,34 +1627,15 @@ "@smithy/types" "^4.3.1" tslib "^2.6.2" -"@aws-sdk/middleware-flexible-checksums@3.826.0": - version "3.826.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.826.0.tgz#e6764d9bdf9408b4a3e20148a83d83e0f65b370e" - integrity sha512-Fz9w8CFYPfSlHEB6feSsi06hdS+s+FB8k5pO4L7IV0tUa78mlhxF/VNlAJaVWYyOkZXl4HPH2K48aapACSQOXw== - dependencies: - "@aws-crypto/crc32" "5.2.0" - "@aws-crypto/crc32c" "5.2.0" - "@aws-crypto/util" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/types" "3.821.0" - "@smithy/is-array-buffer" "^4.0.0" - "@smithy/node-config-provider" "^4.1.3" - "@smithy/protocol-http" "^5.1.2" - "@smithy/types" "^4.3.1" - "@smithy/util-middleware" "^4.0.4" - "@smithy/util-stream" "^4.2.2" - "@smithy/util-utf8" "^4.0.0" - tslib "^2.6.2" - -"@aws-sdk/middleware-flexible-checksums@3.835.0": - version "3.835.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.835.0.tgz#11bc0c705d56e3f6c7f4948f6d39e5aa629ae154" - integrity sha512-9ezorQYlr5cQY28zWAReFhNKUTaXsi3TMvXIagMRrSeWtQ7R6TCYnt91xzHRCmFR2kp3zLI+dfoeH+wF3iCKUw== +"@aws-sdk/middleware-flexible-checksums@3.839.0": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.839.0.tgz#676fe98cdce22c75998446212009a5bbfc38f601" + integrity sha512-2LEuDUviV3wardiHoHCKx0WUvmiK1gBGmnw12aj5f/KKcWOaqnWI2h1K7nDQC/ZARQ1bbMZZ5kvOv5ueuMg1RA== dependencies: "@aws-crypto/crc32" "5.2.0" "@aws-crypto/crc32c" "5.2.0" "@aws-crypto/util" "5.2.0" - "@aws-sdk/core" "3.835.0" + "@aws-sdk/core" "3.839.0" "@aws-sdk/types" "3.821.0" "@smithy/is-array-buffer" "^4.0.0" "@smithy/node-config-provider" "^4.1.3" @@ -2504,17 +1710,17 @@ tslib "^1.8.0" uuid "^3.0.0" -"@aws-sdk/middleware-sdk-ec2@3.826.0": - version "3.826.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-ec2/-/middleware-sdk-ec2-3.826.0.tgz#098dcebc9908c1d6f43c2054b808a9ab67366ae6" - integrity sha512-qonwFJddYtVTXEj+GGjqHWqlSYDmKI4ZIf7iozNgucBzP5+zdFuyjvdQIAFLAv/joQphGv4P799PK2Elb5ZzpA== +"@aws-sdk/middleware-sdk-ec2@3.839.0": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-ec2/-/middleware-sdk-ec2-3.839.0.tgz#6f1e1a56452d21b6cd2322c6ba08f003f66eb700" + integrity sha512-hFWKW75QDLmweuMI8KQOwoFHPxgNy37TpU0INpcdhiFZniTeMoXNuJJZ9Zj6+Ci3do7LuXBuZNyWUha5sX0OhQ== dependencies: "@aws-sdk/types" "3.821.0" "@aws-sdk/util-format-url" "3.821.0" - "@smithy/middleware-endpoint" "^4.1.11" + "@smithy/middleware-endpoint" "^4.1.13" "@smithy/protocol-http" "^5.1.2" "@smithy/signature-v4" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" tslib "^2.6.2" @@ -2527,39 +1733,19 @@ "@smithy/types" "^4.3.1" tslib "^2.6.2" -"@aws-sdk/middleware-sdk-s3@3.826.0": - version "3.826.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.826.0.tgz#98392d5729f8df62af21d3144bacdc9ec65065d1" - integrity sha512-8F0qWaYKfvD/de1AKccXuigM+gb/IZSncCqxdnFWqd+TFzo9qI9Hh+TpUhWOMYSgxsMsYQ8ipmLzlD/lDhjrmA== - dependencies: - "@aws-sdk/core" "3.826.0" - "@aws-sdk/types" "3.821.0" - "@aws-sdk/util-arn-parser" "3.804.0" - "@smithy/core" "^3.5.3" - "@smithy/node-config-provider" "^4.1.3" - "@smithy/protocol-http" "^5.1.2" - "@smithy/signature-v4" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" - "@smithy/types" "^4.3.1" - "@smithy/util-config-provider" "^4.0.0" - "@smithy/util-middleware" "^4.0.4" - "@smithy/util-stream" "^4.2.2" - "@smithy/util-utf8" "^4.0.0" - tslib "^2.6.2" - -"@aws-sdk/middleware-sdk-s3@3.835.0": - version "3.835.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.835.0.tgz#9ff2103f962de2edcfd4f42f2ded9208c114d456" - integrity sha512-oPebxpVf9smInHhevHh3APFZagGU+4RPwXEWv9YtYapFvsMq+8QXFvOfxfVZ/mwpe0JVG7EiJzL9/9Kobmts8Q== +"@aws-sdk/middleware-sdk-s3@3.839.0": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.839.0.tgz#5218d7b3825bfa48c54f13aeb0739ea3d924792e" + integrity sha512-NwprpzJdkuUnUWxoZwKqAcL1/AsrM1YESVpLeL0pW747Vq6rIiUgkuoyQ1fASV9r5mUoWor7iMu8k5ZCisAh7A== dependencies: - "@aws-sdk/core" "3.835.0" + "@aws-sdk/core" "3.839.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-arn-parser" "3.804.0" - "@smithy/core" "^3.5.3" + "@smithy/core" "^3.6.0" "@smithy/node-config-provider" "^4.1.3" "@smithy/protocol-http" "^5.1.2" "@smithy/signature-v4" "^5.1.2" - "@smithy/smithy-client" "^4.4.4" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/util-config-provider" "^4.0.0" "@smithy/util-middleware" "^4.0.4" @@ -2607,158 +1793,57 @@ "@aws-sdk/protocol-http" "3.0.0" tslib "^1.8.0" -"@aws-sdk/middleware-user-agent@3.828.0": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.828.0.tgz#195ed26c87727fb5f78f9bce5d6ab947f1273dcd" - integrity sha512-nixvI/SETXRdmrVab4D9LvXT3lrXkwAWGWk2GVvQvzlqN1/M/RfClj+o37Sn4FqRkGH9o9g7Fqb1YqZ4mqDAtA== - dependencies: - "@aws-sdk/core" "3.826.0" - "@aws-sdk/types" "3.821.0" - "@aws-sdk/util-endpoints" "3.828.0" - "@smithy/core" "^3.5.3" - "@smithy/protocol-http" "^5.1.2" - "@smithy/types" "^4.3.1" - tslib "^2.6.2" - -"@aws-sdk/middleware-user-agent@3.835.0": - version "3.835.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.835.0.tgz#668bc0e1e574d1b18268a2e19e30a349b77d75d7" - integrity sha512-2gmAYygeE/gzhyF2XlkcbMLYFTbNfV61n+iCFa/ZofJHXYE+RxSyl5g4kujLEs7bVZHmjQZJXhprVSkGccq3/w== +"@aws-sdk/middleware-user-agent@3.839.0": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.839.0.tgz#92c22d5a90bfcdbe8d757c4e388e53462d2d0883" + integrity sha512-2u74uRM1JWq6Sf7+3YpjejPM9YkomGt4kWhrmooIBEq1k5r2GTbkH7pNCxBQwBueXM21jAGVDxxeClpTx+5hig== dependencies: - "@aws-sdk/core" "3.835.0" + "@aws-sdk/core" "3.839.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-endpoints" "3.828.0" - "@smithy/core" "^3.5.3" + "@smithy/core" "^3.6.0" "@smithy/protocol-http" "^5.1.2" "@smithy/types" "^4.3.1" tslib "^2.6.2" -"@aws-sdk/nested-clients@3.828.0": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/nested-clients/-/nested-clients-3.828.0.tgz#2af1c0e8c3f108472d544f0fb174c92b308e8eca" - integrity sha512-xmeOILiR9LvfC8MctgeRXXN8nQTwbOvO4wHvgE8tDRsjnBpyyO0j50R4+viHXdMUGtgGkHEXRv8fFNBq54RgnA== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" - "@aws-sdk/middleware-host-header" "3.821.0" - "@aws-sdk/middleware-logger" "3.821.0" - "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" - "@aws-sdk/region-config-resolver" "3.821.0" - "@aws-sdk/types" "3.821.0" - "@aws-sdk/util-endpoints" "3.828.0" - "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" - "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" - "@smithy/fetch-http-handler" "^5.0.4" - "@smithy/hash-node" "^4.0.4" - "@smithy/invalid-dependency" "^4.0.4" - "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" - "@smithy/middleware-serde" "^4.0.8" - "@smithy/middleware-stack" "^4.0.4" - "@smithy/node-config-provider" "^4.1.3" - "@smithy/node-http-handler" "^4.0.6" - "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" - "@smithy/types" "^4.3.1" - "@smithy/url-parser" "^4.0.4" - "@smithy/util-base64" "^4.0.0" - "@smithy/util-body-length-browser" "^4.0.0" - "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" - "@smithy/util-endpoints" "^3.0.6" - "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" - "@smithy/util-utf8" "^4.0.0" - tslib "^2.6.2" - -"@aws-sdk/nested-clients@3.830.0": - version "3.830.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/nested-clients/-/nested-clients-3.830.0.tgz#980a555a7bf60cc214802e03f1310cfdfd2fe9c3" - integrity sha512-5N5YTlBr1vtxf7+t+UaIQ625KEAmm7fY9o1e3MgGOi/paBoI0+axr3ud24qLIy0NSzFlAHEaxUSWxcERNjIoZw== +"@aws-sdk/nested-clients@3.839.0": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/nested-clients/-/nested-clients-3.839.0.tgz#f25df2be30bbbdf13b29ec5e8575190599b9b375" + integrity sha512-Glic0pg2THYP3aRhJORwJJBe1JLtJoEdWV/MFZNyzCklfMwEzpWtZAyxy+tQyFmMeW50uBAnh2R0jhMMcf257w== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.826.0" + "@aws-sdk/core" "3.839.0" "@aws-sdk/middleware-host-header" "3.821.0" "@aws-sdk/middleware-logger" "3.821.0" "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.828.0" + "@aws-sdk/middleware-user-agent" "3.839.0" "@aws-sdk/region-config-resolver" "3.821.0" "@aws-sdk/types" "3.821.0" "@aws-sdk/util-endpoints" "3.828.0" "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.828.0" + "@aws-sdk/util-user-agent-node" "3.839.0" "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" + "@smithy/core" "^3.6.0" "@smithy/fetch-http-handler" "^5.0.4" "@smithy/hash-node" "^4.0.4" "@smithy/invalid-dependency" "^4.0.4" "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-retry" "^4.1.12" + "@smithy/middleware-endpoint" "^4.1.13" + "@smithy/middleware-retry" "^4.1.14" "@smithy/middleware-serde" "^4.0.8" "@smithy/middleware-stack" "^4.0.4" "@smithy/node-config-provider" "^4.1.3" "@smithy/node-http-handler" "^4.0.6" "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.3" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/url-parser" "^4.0.4" "@smithy/util-base64" "^4.0.0" "@smithy/util-body-length-browser" "^4.0.0" "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.19" - "@smithy/util-defaults-mode-node" "^4.0.19" - "@smithy/util-endpoints" "^3.0.6" - "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" - "@smithy/util-utf8" "^4.0.0" - tslib "^2.6.2" - -"@aws-sdk/nested-clients@3.835.0": - version "3.835.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/nested-clients/-/nested-clients-3.835.0.tgz#7f9f3efcc4093476bed48559d838db4385da5dd9" - integrity sha512-UtmOO0U5QkicjCEv+B32qqRAnS7o2ZkZhC+i3ccH1h3fsfaBshpuuNBwOYAzRCRBeKW5fw3ANFrV/+2FTp4jWg== - dependencies: - "@aws-crypto/sha256-browser" "5.2.0" - "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.835.0" - "@aws-sdk/middleware-host-header" "3.821.0" - "@aws-sdk/middleware-logger" "3.821.0" - "@aws-sdk/middleware-recursion-detection" "3.821.0" - "@aws-sdk/middleware-user-agent" "3.835.0" - "@aws-sdk/region-config-resolver" "3.821.0" - "@aws-sdk/types" "3.821.0" - "@aws-sdk/util-endpoints" "3.828.0" - "@aws-sdk/util-user-agent-browser" "3.821.0" - "@aws-sdk/util-user-agent-node" "3.835.0" - "@smithy/config-resolver" "^4.1.4" - "@smithy/core" "^3.5.3" - "@smithy/fetch-http-handler" "^5.0.4" - "@smithy/hash-node" "^4.0.4" - "@smithy/invalid-dependency" "^4.0.4" - "@smithy/middleware-content-length" "^4.0.4" - "@smithy/middleware-endpoint" "^4.1.12" - "@smithy/middleware-retry" "^4.1.13" - "@smithy/middleware-serde" "^4.0.8" - "@smithy/middleware-stack" "^4.0.4" - "@smithy/node-config-provider" "^4.1.3" - "@smithy/node-http-handler" "^4.0.6" - "@smithy/protocol-http" "^5.1.2" - "@smithy/smithy-client" "^4.4.4" - "@smithy/types" "^4.3.1" - "@smithy/url-parser" "^4.0.4" - "@smithy/util-base64" "^4.0.0" - "@smithy/util-body-length-browser" "^4.0.0" - "@smithy/util-body-length-node" "^4.0.0" - "@smithy/util-defaults-mode-browser" "^4.0.20" - "@smithy/util-defaults-mode-node" "^4.0.20" + "@smithy/util-defaults-mode-browser" "^4.0.21" + "@smithy/util-defaults-mode-node" "^4.0.21" "@smithy/util-endpoints" "^3.0.6" "@smithy/util-middleware" "^4.0.4" "@smithy/util-retry" "^4.0.6" @@ -2837,24 +1922,12 @@ dependencies: tslib "^1.8.0" -"@aws-sdk/signature-v4-multi-region@3.826.0": - version "3.826.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.826.0.tgz#14a786feee118abc7b1c1b655f46dc54cff497cc" - integrity sha512-3fEi/zy6tpMzomYosksGtu7jZqGFcdBXoL7YRsG7OEeQzBbOW9B+fVaQZ4jnsViSjzA/yKydLahMrfPnt+iaxg== - dependencies: - "@aws-sdk/middleware-sdk-s3" "3.826.0" - "@aws-sdk/types" "3.821.0" - "@smithy/protocol-http" "^5.1.2" - "@smithy/signature-v4" "^5.1.2" - "@smithy/types" "^4.3.1" - tslib "^2.6.2" - -"@aws-sdk/signature-v4-multi-region@3.835.0": - version "3.835.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.835.0.tgz#520940de6e1d2f6b5dfaa7a9bc4400aae220c001" - integrity sha512-rEtJH4dIwJYlXXe5rIH+uTCQmd2VIjuaoHlDY3Dr4nxF6po6U7vKsLfybIU2tgflGVqoqYQnXsfW/kj/Rh+/ow== +"@aws-sdk/signature-v4-multi-region@3.839.0": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.839.0.tgz#27085b7f787b5ac547c5158a7b03c21e41351c4f" + integrity sha512-/O+lh6qXKTMWPcip8ccGL7OgTceUTDmy3wBD22+tPHLeOUSMGUQTZcsmHeDB7vSHLpVY9H6GhOsdes7uQQMUwA== dependencies: - "@aws-sdk/middleware-sdk-s3" "3.835.0" + "@aws-sdk/middleware-sdk-s3" "3.839.0" "@aws-sdk/types" "3.821.0" "@smithy/protocol-http" "^5.1.2" "@smithy/signature-v4" "^5.1.2" @@ -2879,39 +1952,13 @@ "@aws-sdk/middleware-stack" "3.0.0" tslib "^1.8.0" -"@aws-sdk/token-providers@3.828.0": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.828.0.tgz#423f00ffc68a7f96ade2792acec4eddaa52a5f53" - integrity sha512-JdOjI/TxkfQpY/bWbdGMdCiePESXTbtl6MfnJxz35zZ3tfHvBnxAWCoYJirdmjzY/j/dFo5oEyS6mQuXAG9w2w== - dependencies: - "@aws-sdk/core" "3.826.0" - "@aws-sdk/nested-clients" "3.828.0" - "@aws-sdk/types" "3.821.0" - "@smithy/property-provider" "^4.0.4" - "@smithy/shared-ini-file-loader" "^4.0.4" - "@smithy/types" "^4.3.1" - tslib "^2.6.2" - -"@aws-sdk/token-providers@3.830.0": - version "3.830.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.830.0.tgz#e2717bef393bf450ba9958cea8243aa7e4a27e09" - integrity sha512-aJ4guFwj92nV9D+EgJPaCFKK0I3y2uMchiDfh69Zqnmwfxxxfxat6F79VA7PS0BdbjRfhLbn+Ghjftnomu2c1g== +"@aws-sdk/token-providers@3.839.0": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.839.0.tgz#55be3491195d09d8425e57cabd5bd042d67eef8a" + integrity sha512-2nlafqdSbet/2WtYIoZ7KEGFowFonPBDYlTjrUvwU2yooE10VhvzhLSCTB2aKIVzo2Z2wL5WGFQsqAY5QwK6Bw== dependencies: - "@aws-sdk/core" "3.826.0" - "@aws-sdk/nested-clients" "3.830.0" - "@aws-sdk/types" "3.821.0" - "@smithy/property-provider" "^4.0.4" - "@smithy/shared-ini-file-loader" "^4.0.4" - "@smithy/types" "^4.3.1" - tslib "^2.6.2" - -"@aws-sdk/token-providers@3.835.0": - version "3.835.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.835.0.tgz#c77da1b6850e8305460266f7a647f5509ec6d529" - integrity sha512-zN1P3BE+Rv7w7q/CDA8VCQox6SE9QTn0vDtQ47AHA3eXZQQgYzBqgoLgJxR9rKKBIRGZqInJa/VRskLL95VliQ== - dependencies: - "@aws-sdk/core" "3.835.0" - "@aws-sdk/nested-clients" "3.835.0" + "@aws-sdk/core" "3.839.0" + "@aws-sdk/nested-clients" "3.839.0" "@aws-sdk/types" "3.821.0" "@smithy/property-provider" "^4.0.4" "@smithy/shared-ini-file-loader" "^4.0.4" @@ -3065,23 +2112,12 @@ dependencies: tslib "^1.8.0" -"@aws-sdk/util-user-agent-node@3.828.0": - version "3.828.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.828.0.tgz#f47192429a9407a43c94d7e980c32f330bba4cad" - integrity sha512-LdN6fTBzTlQmc8O8f1wiZN0qF3yBWVGis7NwpWK7FUEzP9bEZRxYfIkV9oV9zpt6iNRze1SedK3JQVB/udxBoA== +"@aws-sdk/util-user-agent-node@3.839.0": + version "3.839.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.839.0.tgz#0c29e2d18e9d6ed1c6dffdf404adf8129f0f40e5" + integrity sha512-MuunkIG1bJVMtTH7MbjXOrhHleU5wjHz5eCAUc6vj7M9rwol71nqjj9b8RLnkO5gsJcKc29Qk8iV6xQuzKWNMw== dependencies: - "@aws-sdk/middleware-user-agent" "3.828.0" - "@aws-sdk/types" "3.821.0" - "@smithy/node-config-provider" "^4.1.3" - "@smithy/types" "^4.3.1" - tslib "^2.6.2" - -"@aws-sdk/util-user-agent-node@3.835.0": - version "3.835.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.835.0.tgz#313ccb97610cc457e4949446ce1ef772e47f56a0" - integrity sha512-gY63QZ4W5w9JYHYuqvUxiVGpn7IbCt1ODPQB0ZZwGGr3WRmK+yyZxCtFjbYhEQDQLgTWpf8YgVxgQLv2ps0PJg== - dependencies: - "@aws-sdk/middleware-user-agent" "3.835.0" + "@aws-sdk/middleware-user-agent" "3.839.0" "@aws-sdk/types" "3.821.0" "@smithy/node-config-provider" "^4.1.3" "@smithy/types" "^4.3.1" @@ -3144,32 +2180,32 @@ picocolors "^1.1.1" "@babel/compat-data@^7.27.2": - version "7.27.5" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.27.5.tgz#7d0658ec1a8420fc866d1df1b03bea0e79934c82" - integrity sha512-KiRAp/VoJaWkkte84TvUd9qjdbZAdiqyvMxrGl1N6vzFogKmaLgoM3L1kgtLicp2HP5fBJS8JrZKLVIZGVJAVg== + version "7.27.7" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.27.7.tgz#7fd698e531050cce432b073ab64857b99e0f3804" + integrity sha512-xgu/ySj2mTiUFmdE9yCMfBxLp4DHd5DwmbbD05YAuICfodYT3VvRxbrh81LGQ/8UpSdtMdfKMn3KouYDX59DGQ== "@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.23.9", "@babel/core@^7.27.4": - version "7.27.4" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.27.4.tgz#cc1fc55d0ce140a1828d1dd2a2eba285adbfb3ce" - integrity sha512-bXYxrXFubeYdvB0NhD/NBB3Qi6aZeV20GOWVI47t2dkecCEoneR4NPVcb7abpXDEvejgrUfFtG6vG/zxAKmg+g== + version "7.27.7" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.27.7.tgz#0ddeab1e7b17317dad8c3c3a887716f66b5c4428" + integrity sha512-BU2f9tlKQ5CAthiMIgpzAh4eDTLWo1mqi9jqE2OxMG0E/OM199VJt2q8BztTxpnSW0i1ymdwLXRJnYzvDM5r2w== dependencies: "@ampproject/remapping" "^2.2.0" "@babel/code-frame" "^7.27.1" - "@babel/generator" "^7.27.3" + "@babel/generator" "^7.27.5" "@babel/helper-compilation-targets" "^7.27.2" "@babel/helper-module-transforms" "^7.27.3" - "@babel/helpers" "^7.27.4" - "@babel/parser" "^7.27.4" + "@babel/helpers" "^7.27.6" + "@babel/parser" "^7.27.7" "@babel/template" "^7.27.2" - "@babel/traverse" "^7.27.4" - "@babel/types" "^7.27.3" + "@babel/traverse" "^7.27.7" + "@babel/types" "^7.27.7" convert-source-map "^2.0.0" debug "^4.1.0" gensync "^1.0.0-beta.2" json5 "^2.2.3" semver "^6.3.1" -"@babel/generator@^7.27.3", "@babel/generator@^7.27.5", "@babel/generator@^7.7.2": +"@babel/generator@^7.27.5", "@babel/generator@^7.7.2": version "7.27.5" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.27.5.tgz#3eb01866b345ba261b04911020cbe22dd4be8c8c" integrity sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw== @@ -3228,7 +2264,7 @@ resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz#fa52f5b1e7db1ab049445b421c4471303897702f" integrity sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg== -"@babel/helpers@^7.27.4": +"@babel/helpers@^7.27.6": version "7.27.6" resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.27.6.tgz#6456fed15b2cb669d2d1fabe84b66b34991d812c" integrity sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug== @@ -3236,12 +2272,12 @@ "@babel/template" "^7.27.2" "@babel/types" "^7.27.6" -"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.26.7", "@babel/parser@^7.27.2", "@babel/parser@^7.27.4", "@babel/parser@^7.27.5": - version "7.27.5" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.27.5.tgz#ed22f871f110aa285a6fd934a0efed621d118826" - integrity sha512-OsQd175SxWkGlzbny8J3K8TnnDD0N3lrIUtB92xwyRpzaenGZhxDvxN/JgU00U3CDZNj9tPuDJ5H0WS4Nt3vKg== +"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.26.7", "@babel/parser@^7.27.2", "@babel/parser@^7.27.5", "@babel/parser@^7.27.7": + version "7.27.7" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.27.7.tgz#1687f5294b45039c159730e3b9c1f1b242e425e9" + integrity sha512-qnzXzDXdr/po3bOTbTIQZ7+TxNKxpkN5IifVLXS+r7qwynkZfPyjZfE7hCXbo7IoO9TNcSyibgONsf2HauUd3Q== dependencies: - "@babel/types" "^7.27.3" + "@babel/types" "^7.27.7" "@babel/plugin-syntax-async-generators@^7.8.4": version "7.8.4" @@ -3371,23 +2407,23 @@ "@babel/parser" "^7.27.2" "@babel/types" "^7.27.1" -"@babel/traverse@^7.27.1", "@babel/traverse@^7.27.3", "@babel/traverse@^7.27.4": - version "7.27.4" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.27.4.tgz#b0045ac7023c8472c3d35effd7cc9ebd638da6ea" - integrity sha512-oNcu2QbHqts9BtOWJosOVJapWjBDSxGCpFvikNR5TGDYDQf3JwpIoMzIKrvfoti93cLfPJEG4tH9SPVeyCGgdA== +"@babel/traverse@^7.27.1", "@babel/traverse@^7.27.3", "@babel/traverse@^7.27.7": + version "7.27.7" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.27.7.tgz#8355c39be6818362eace058cf7f3e25ac2ec3b55" + integrity sha512-X6ZlfR/O/s5EQ/SnUSLzr+6kGnkg8HXGMzpgsMsrJVcfDtH1vIp6ctCN4eZ1LS5c0+te5Cb6Y514fASjMRJ1nw== dependencies: "@babel/code-frame" "^7.27.1" - "@babel/generator" "^7.27.3" - "@babel/parser" "^7.27.4" + "@babel/generator" "^7.27.5" + "@babel/parser" "^7.27.7" "@babel/template" "^7.27.2" - "@babel/types" "^7.27.3" + "@babel/types" "^7.27.7" debug "^4.3.1" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.27.1", "@babel/types@^7.27.3", "@babel/types@^7.27.6", "@babel/types@^7.3.3": - version "7.27.6" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.27.6.tgz#a434ca7add514d4e646c80f7375c0aa2befc5535" - integrity sha512-ETyHEk2VHHvl9b9jZP5IHPavHYk57EhanlRRuae9XCpb/j5bDCbPPMOBfCWhnl/7EDJz0jEMCi/RhccCE8r1+Q== +"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.27.1", "@babel/types@^7.27.3", "@babel/types@^7.27.6", "@babel/types@^7.27.7", "@babel/types@^7.3.3": + version "7.27.7" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.27.7.tgz#40eabd562049b2ee1a205fa589e629f945dce20f" + integrity sha512-8OLQgDScAOHXnAz2cV+RfzzNMipuLVBz2biuAJFMV9bfkNf393je3VM8CLkjQodW5+iWsSJdSgSWT6rsZoXHPw== dependencies: "@babel/helper-string-parser" "^7.27.1" "@babel/helper-validator-identifier" "^7.27.1" @@ -3402,12 +2438,12 @@ resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== -"@cdklabs/cdk-atmosphere-client@^0.0.54": - version "0.0.54" - resolved "https://registry.yarnpkg.com/@cdklabs/cdk-atmosphere-client/-/cdk-atmosphere-client-0.0.54.tgz#3d645f57a96fec20e9f5fb574e0bc5513075e01c" - integrity sha512-ESgmWBUdz20w0d82/bKs594rtsQOSLiTsIt5HcGFJQ6Tv6/9vDuWmM9EWbQzeeqkz2She+wAM/+JdjPDWdxdPA== +"@cdklabs/cdk-atmosphere-client@^0.0.56": + version "0.0.56" + resolved "https://registry.yarnpkg.com/@cdklabs/cdk-atmosphere-client/-/cdk-atmosphere-client-0.0.56.tgz#95f4134287627cd121362d849d82d054e42c8859" + integrity sha512-3SPfe6nBhxSIIDl34AnbT0WiP63AdtDr5u0/g/RL6XcsG6zzowCJjZyHec2GiXFqyxoHVC/P0u+vviz+H2nf1Q== dependencies: - "@aws-sdk/credential-providers" "^3.826.0" + "@aws-sdk/credential-providers" "^3.834.0" aws4fetch "^1.0.20" "@cdklabs/eslint-plugin@^1.3.2": @@ -3651,19 +2687,19 @@ resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.1.tgz#cfc6cffe39df390a3841cde2abccf92eaa7ae0e0" integrity sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ== -"@eslint/config-array@^0.20.1": - version "0.20.1" - resolved "https://registry.yarnpkg.com/@eslint/config-array/-/config-array-0.20.1.tgz#454f89be82b0e5b1ae872c154c7e2f3dd42c3979" - integrity sha512-OL0RJzC/CBzli0DrrR31qzj6d6i6Mm3HByuhflhl4LOBiWxN+3i6/t/ZQQNii4tjksXi8r2CRW1wMpWA2ULUEw== +"@eslint/config-array@^0.21.0": + version "0.21.0" + resolved "https://registry.yarnpkg.com/@eslint/config-array/-/config-array-0.21.0.tgz#abdbcbd16b124c638081766392a4d6b509f72636" + integrity sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ== dependencies: "@eslint/object-schema" "^2.1.6" debug "^4.3.1" minimatch "^3.1.2" -"@eslint/config-helpers@^0.2.1": - version "0.2.3" - resolved "https://registry.yarnpkg.com/@eslint/config-helpers/-/config-helpers-0.2.3.tgz#39d6da64ed05d7662659aa7035b54cd55a9f3672" - integrity sha512-u180qk2Um1le4yf0ruXH3PYFeEZeYC3p/4wCTKrr2U1CmGdzGi3KtY0nuPDH48UJxlKCC5RDzbcbh4X0XlqgHg== +"@eslint/config-helpers@^0.3.0": + version "0.3.0" + resolved "https://registry.yarnpkg.com/@eslint/config-helpers/-/config-helpers-0.3.0.tgz#3e09a90dfb87e0005c7694791e58e97077271286" + integrity sha512-ViuymvFmcJi04qdZeDc2whTHryouGcDlaxPqarTD0ZE10ISpxGUVZGZDx4w01upyIynL3iu6IXH2bS1NhclQMw== "@eslint/core@^0.14.0": version "0.14.0" @@ -3672,10 +2708,10 @@ dependencies: "@types/json-schema" "^7.0.15" -"@eslint/core@^0.15.0": - version "0.15.0" - resolved "https://registry.yarnpkg.com/@eslint/core/-/core-0.15.0.tgz#8fc04709a7b9a179d9f7d93068fc000cb8c5603d" - integrity sha512-b7ePw78tEWWkpgZCDYkbqDOP8dmM6qe+AOC6iuJqlq1R/0ahMAeH3qynpnqKFGkMltrp44ohV4ubGyvLX28tzw== +"@eslint/core@^0.15.1": + version "0.15.1" + resolved "https://registry.yarnpkg.com/@eslint/core/-/core-0.15.1.tgz#d530d44209cbfe2f82ef86d6ba08760196dd3b60" + integrity sha512-bkOp+iumZCCbt1K1CmWf0R9pM5yKpDv+ZXtvSyQpudrI9kuFLp+bM2WOPXImuD/ceQuaa8f5pj93Y7zyECIGNA== dependencies: "@types/json-schema" "^7.0.15" @@ -3694,10 +2730,10 @@ minimatch "^3.1.2" strip-json-comments "^3.1.1" -"@eslint/js@9.29.0": - version "9.29.0" - resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.29.0.tgz#dc6fd117c19825f8430867a662531da36320fe56" - integrity sha512-3PIF4cBw/y+1u2EazflInpV+lYsSG0aByVIQzAgb1m1MhHFSbqTyNqtBKHgWf/9Ykud+DhILS9EGkmekVhbKoQ== +"@eslint/js@9.30.0": + version "9.30.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.30.0.tgz#c396fa450d5505dd9b7b8846b33f0491aebd9a2d" + integrity sha512-Wzw3wQwPvc9sHM+NjakWTcPx11mbZyiYHuwWa/QfZ7cIRX7WK54PSk7bdyXDaoaopUcMatv1zaQvOAAO8hCdww== "@eslint/object-schema@^2.1.6": version "2.1.6" @@ -3705,11 +2741,11 @@ integrity sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA== "@eslint/plugin-kit@^0.3.1": - version "0.3.2" - resolved "https://registry.yarnpkg.com/@eslint/plugin-kit/-/plugin-kit-0.3.2.tgz#0cad96b134d23a653348e3342f485636b5ef4732" - integrity sha512-4SaFZCNfJqvk/kenHpI8xvN42DMaoycy4PzKc5otHxRswww1kAt82OlBuwRVLofCACCTZEcla2Ydxv8scMXaTg== + version "0.3.3" + resolved "https://registry.yarnpkg.com/@eslint/plugin-kit/-/plugin-kit-0.3.3.tgz#32926b59bd407d58d817941e48b2a7049359b1fd" + integrity sha512-1+WqvgNMhmlAambTvT3KPtCl/Ibr68VldY2XY40SL1CE0ZXiakFR/cbTspaF5HsnpDMvcYYoJHfl4980NBjGag== dependencies: - "@eslint/core" "^0.15.0" + "@eslint/core" "^0.15.1" levn "^0.4.1" "@graphql-tools/merge@8.3.1": @@ -3890,10 +2926,10 @@ jest-util "^29.7.0" slash "^3.0.0" -"@jest/core@30.0.2": - version "30.0.2" - resolved "https://registry.yarnpkg.com/@jest/core/-/core-30.0.2.tgz#c84c85baac55e6fa85b491edc4280425631951c7" - integrity sha512-mUMFdDtYWu7la63NxlyNIhgnzynszxunXWrtryR7bV24jV9hmi7XCZTzZHaLJjcBU66MeUAPZ81HjwASVpYhYQ== +"@jest/core@30.0.3": + version "30.0.3" + resolved "https://registry.yarnpkg.com/@jest/core/-/core-30.0.3.tgz#87967dd3ea6bd6bc98e99aa4b47bfbb0b7f2a77e" + integrity sha512-Mgs1N+NSHD3Fusl7bOq1jyxv1JDAUwjy+0DhVR93Q6xcBP9/bAQ+oZhXb5TTnP5sQzAHgb7ROCKQ2SnovtxYtg== dependencies: "@jest/console" "30.0.2" "@jest/pattern" "30.0.1" @@ -3908,15 +2944,15 @@ exit-x "^0.2.2" graceful-fs "^4.2.11" jest-changed-files "30.0.2" - jest-config "30.0.2" + jest-config "30.0.3" jest-haste-map "30.0.2" jest-message-util "30.0.2" jest-regex-util "30.0.1" jest-resolve "30.0.2" - jest-resolve-dependencies "30.0.2" - jest-runner "30.0.2" - jest-runtime "30.0.2" - jest-snapshot "30.0.2" + jest-resolve-dependencies "30.0.3" + jest-runner "30.0.3" + jest-runtime "30.0.3" + jest-snapshot "30.0.3" jest-util "30.0.2" jest-validate "30.0.2" jest-watcher "30.0.2" @@ -3958,11 +2994,6 @@ slash "^3.0.0" strip-ansi "^6.0.0" -"@jest/diff-sequences@30.0.0": - version "30.0.0" - resolved "https://registry.yarnpkg.com/@jest/diff-sequences/-/diff-sequences-30.0.0.tgz#402d27d14e9d5161dedfca98bf181018a8931eb1" - integrity sha512-xMbtoCeKJDto86GW6AiwVv7M4QAuI56R7dVBr1RNGYbOT44M2TIzOiske2RxopBqkumDY+A1H55pGvuribRY9A== - "@jest/diff-sequences@30.0.1": version "30.0.1" resolved "https://registry.yarnpkg.com/@jest/diff-sequences/-/diff-sequences-30.0.1.tgz#0ededeae4d071f5c8ffe3678d15f3a1be09156be" @@ -3988,17 +3019,10 @@ "@types/node" "*" jest-mock "^29.7.0" -"@jest/expect-utils@30.0.0": - version "30.0.0" - resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-30.0.0.tgz#118d41d9df420db61d307308848a9e12f0fc1fad" - integrity sha512-UiWfsqNi/+d7xepfOv8KDcbbzcYtkWBe3a3kVDtg6M1kuN6CJ7b4HzIp5e1YHrSaQaVS8sdCoyCMCZClTLNKFQ== - dependencies: - "@jest/get-type" "30.0.0" - -"@jest/expect-utils@30.0.2": - version "30.0.2" - resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-30.0.2.tgz#d065f68c128cec526540193d88f2fc64c3d4f971" - integrity sha512-FHF2YdtFBUQOo0/qdgt+6UdBFcNPF/TkVzcc+4vvf8uaBzUlONytGBeeudufIHHW1khRfM1sBbRT1VCK7n/0dQ== +"@jest/expect-utils@30.0.3": + version "30.0.3" + resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-30.0.3.tgz#2a9fb40110c8a13ae464da41f877df90d2e6bc3b" + integrity sha512-SMtBvf2sfX2agcT0dA9pXwcUrKvOSDqBY4e4iRfT+Hya33XzV35YVg+98YQFErVGA/VR1Gto5Y2+A6G9LSQ3Yg== dependencies: "@jest/get-type" "30.0.1" @@ -4009,13 +3033,13 @@ dependencies: jest-get-type "^29.6.3" -"@jest/expect@30.0.2": - version "30.0.2" - resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-30.0.2.tgz#b3d5adec28f3884d6fd0746c4b5d0d2473e9e212" - integrity sha512-blWRFPjv2cVfh42nLG6L3xIEbw+bnuiZYZDl/BZlsNG/i3wKV6FpPZ2EPHguk7t5QpLaouIu+7JmYO4uBR6AOg== +"@jest/expect@30.0.3": + version "30.0.3" + resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-30.0.3.tgz#9653e868ca27dd2194f6c20c81b8a690f9669465" + integrity sha512-73BVLqfCeWjYWPEQoYjiRZ4xuQRhQZU0WdgvbyXGRHItKQqg5e6mt2y1kVhzLSuZpmUnccZHbGynoaL7IcLU3A== dependencies: - expect "30.0.2" - jest-snapshot "30.0.2" + expect "30.0.3" + jest-snapshot "30.0.3" "@jest/expect@^29.7.0": version "29.7.0" @@ -4049,23 +3073,18 @@ jest-mock "^29.7.0" jest-util "^29.7.0" -"@jest/get-type@30.0.0": - version "30.0.0" - resolved "https://registry.yarnpkg.com/@jest/get-type/-/get-type-30.0.0.tgz#59dcb5a9cbd9eb0004d3a2ed2fa9c9c3abfbf005" - integrity sha512-VZWMjrBzqfDKngQ7sUctKeLxanAbsBFoZnPxNIG6CmxK7Gv6K44yqd0nzveNIBfuhGZMmk1n5PGbvdSTOu0yTg== - "@jest/get-type@30.0.1": version "30.0.1" resolved "https://registry.yarnpkg.com/@jest/get-type/-/get-type-30.0.1.tgz#0d32f1bbfba511948ad247ab01b9007724fc9f52" integrity sha512-AyYdemXCptSRFirI5EPazNxyPwAL0jXt3zceFjaj8NFiKP9pOi0bfXonf6qkf82z2t3QWPeLCWWw4stPBzctLw== -"@jest/globals@30.0.2": - version "30.0.2" - resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-30.0.2.tgz#3b401bb7cb8cc0a00476630298747a38e40a6fc1" - integrity sha512-DwTtus9jjbG7b6jUdkcVdptf0wtD1v153A+PVwWB/zFwXhqu6hhtSd+uq88jofMhmYPtkmPmVGUBRNCZEKXn+w== +"@jest/globals@30.0.3": + version "30.0.3" + resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-30.0.3.tgz#9c9ef55e6f5e6b7e946244bdbf2af85044b7bb04" + integrity sha512-fIduqNyYpMeeSr5iEAiMn15KxCzvrmxl7X7VwLDRGj7t5CoHtbF+7K3EvKk32mOUIJ4kIvFRlaixClMH2h/Vaw== dependencies: "@jest/environment" "30.0.2" - "@jest/expect" "30.0.2" + "@jest/expect" "30.0.3" "@jest/types" "30.0.1" jest-mock "30.0.2" @@ -4079,14 +3098,6 @@ "@jest/types" "^29.6.3" jest-mock "^29.7.0" -"@jest/pattern@30.0.0": - version "30.0.0" - resolved "https://registry.yarnpkg.com/@jest/pattern/-/pattern-30.0.0.tgz#2d1f04c8b64b31f1bfa71ccb60593a4415d0d452" - integrity sha512-k+TpEThzLVXMkbdxf8KHjZ83Wl+G54ytVJoDIGWwS96Ql4xyASRjc6SU1hs5jHVql+hpyK9G8N7WuFhLpGHRpQ== - dependencies: - "@types/node" "*" - jest-regex-util "30.0.0" - "@jest/pattern@30.0.1": version "30.0.1" resolved "https://registry.yarnpkg.com/@jest/pattern/-/pattern-30.0.1.tgz#d5304147f49a052900b4b853dedb111d080e199f" @@ -4154,13 +3165,6 @@ strip-ansi "^6.0.0" v8-to-istanbul "^9.0.1" -"@jest/schemas@30.0.0": - version "30.0.0" - resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-30.0.0.tgz#427b862696c65ea6f6a138a9221326519877555f" - integrity sha512-NID2VRyaEkevCRz6badhfqYwri/RvMbiHY81rk3AkK/LaiB0LSxi1RdVZ7MpZdTjNugtZeGfpL0mLs9Kp3MrQw== - dependencies: - "@sinclair/typebox" "^0.34.0" - "@jest/schemas@30.0.1": version "30.0.1" resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-30.0.1.tgz#27c00d707d480ece0c19126af97081a1af3bc46e" @@ -4285,19 +3289,6 @@ slash "^3.0.0" write-file-atomic "^4.0.2" -"@jest/types@30.0.0": - version "30.0.0" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-30.0.0.tgz#7afb1d34937f722f667b621eb9c653f0f8fda07e" - integrity sha512-1Nox8mAL52PKPfEnUQWBvKU/bp8FTT6AiDu76bFDEJj/qsRFSAVSldfCH3XYMqialti2zHXKvD5gN0AaHc0yKA== - dependencies: - "@jest/pattern" "30.0.0" - "@jest/schemas" "30.0.0" - "@types/istanbul-lib-coverage" "^2.0.6" - "@types/istanbul-reports" "^3.0.4" - "@types/node" "*" - "@types/yargs" "^17.0.33" - chalk "^4.1.2" - "@jest/types@30.0.1": version "30.0.1" resolved "https://registry.yarnpkg.com/@jest/types/-/types-30.0.1.tgz#a46df6a99a416fa685740ac4264b9f9cd7da1598" @@ -4324,12 +3315,11 @@ chalk "^4.0.0" "@jridgewell/gen-mapping@^0.3.5": - version "0.3.8" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz#4f0e06362e01362f823d348f1872b08f666d8142" - integrity sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA== + version "0.3.9" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.9.tgz#6651c7afca59e19abd00cd40346d13e225026c83" + integrity sha512-xpz6C/vXOegF9VEtlMBlkNNIjHrLhKaFBsO4lmQGr00x5BHp7p+oliR6i7LwIcM5cZU2VjLSwm2R+/zj5IjPWg== dependencies: - "@jridgewell/set-array" "^1.2.1" - "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/sourcemap-codec" "^1.5.0" "@jridgewell/trace-mapping" "^0.3.24" "@jridgewell/resolve-uri@^3.0.3", "@jridgewell/resolve-uri@^3.1.0": @@ -4337,15 +3327,10 @@ resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== -"@jridgewell/set-array@^1.2.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280" - integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== - "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@^1.5.0": - version "1.5.0" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a" - integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ== + version "1.5.1" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.1.tgz#92bc8eb57aea47c13291476e4d2d246928487720" + integrity sha512-mBLKRHc7Ffw/hObYb9+cunuGNjshQk+vZdwZBJoqiysK/mW3Jq0UXosq8aIhMnLevANhR9yoYfdUEOHg6M9y0g== "@jridgewell/trace-mapping@0.3.9": version "0.3.9" @@ -4356,9 +3341,9 @@ "@jridgewell/sourcemap-codec" "^1.4.10" "@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.23", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": - version "0.3.25" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0" - integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== + version "0.3.26" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.26.tgz#c337086fa5c013466b988141e00b0d67c8091a8e" + integrity sha512-Z9rjt4BUVEbLFpw0qjCklVxxf421wrmcbP4w+LmBUxYCyJTYYSclgJD0YsCgGqQCtCIPiz7kjbYYJiAKhjJ3kA== dependencies: "@jridgewell/resolve-uri" "^3.1.0" "@jridgewell/sourcemap-codec" "^1.4.14" @@ -4476,10 +3461,10 @@ lru-cache "^10.0.1" socks-proxy-agent "^8.0.3" -"@npmcli/arborist@^8.0.0": - version "8.0.0" - resolved "https://registry.yarnpkg.com/@npmcli/arborist/-/arborist-8.0.0.tgz#681af823ac8ca067404dee57e0f91a3d27d6ef0a" - integrity sha512-APDXxtXGSftyXibl0dZ3CuZYmmVnkiN3+gkqwXshY4GKC2rof2+Lg0sGuj6H1p2YfBAKd7PRwuMVhu6Pf/nQ/A== +"@npmcli/arborist@^8.0.1": + version "8.0.1" + resolved "https://registry.yarnpkg.com/@npmcli/arborist/-/arborist-8.0.1.tgz#49cfd50c18e5965797bbdb13406ce417633e15ac" + integrity sha512-ZyJWuvP+SdT7JmHkmtGyElm/MkQZP/i4boJXut6HDgx1tmJc/JZ9OwahRuKD+IyowJcLyB/bbaXtYh+RoTCUuw== dependencies: "@isaacs/string-locale-compare" "^1.1.0" "@npmcli/fs" "^4.0.0" @@ -4591,7 +3576,7 @@ resolved "https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-4.0.0.tgz#01f900bae62f0f27f9a5a127b40d443ddfb9d4c6" integrity sha512-+t5DZ6mO/QFh78PByMq1fGSAub/agLJZDRfJRMeOSNCt8s9YVlTjmGpIPwPhvXTGUIJk+WszlT0rQa1W33yzNA== -"@npmcli/package-json@^6.0.0", "@npmcli/package-json@^6.0.1", "@npmcli/package-json@^6.1.0": +"@npmcli/package-json@^6.0.0", "@npmcli/package-json@^6.0.1", "@npmcli/package-json@^6.2.0": version "6.2.0" resolved "https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-6.2.0.tgz#7c7e61e466eefdf729cb87a34c3adc15d76e2f97" integrity sha512-rCNLSB/JzNvot0SEyXqWZ7tX2B5dD2a1br2Dp0vSYVo5jh8Z0EZ7lS9TsZ1UtziddB1UfNUaMCc538/HztnJGA== @@ -4618,12 +3603,12 @@ dependencies: postcss-selector-parser "^7.0.0" -"@npmcli/redact@^3.0.0": +"@npmcli/redact@^3.0.0", "@npmcli/redact@^3.2.2": version "3.2.2" resolved "https://registry.yarnpkg.com/@npmcli/redact/-/redact-3.2.2.tgz#4a6745e0ae269120ad223780ce374d6c59ae34cd" integrity sha512-7VmYAmk4csGv08QzrDKScdzn11jHPFGyqJW39FyPgPuAp3zIaUmuCo1yxw9aGs+NEJuTGQ9Gwqpt93vtJubucg== -"@npmcli/run-script@^9.0.0", "@npmcli/run-script@^9.0.1": +"@npmcli/run-script@^9.0.0", "@npmcli/run-script@^9.0.1", "@npmcli/run-script@^9.1.0": version "9.1.0" resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-9.1.0.tgz#6168c2be4703fe5ed31acb08a2151cb620ed30a4" integrity sha512-aoNSbxtkePXUlbZB+anS1LqsJdctG5n3UVhfU47+CDdwMi6uNTBMF9gPcQRnqghQd2FGzcwwIFBruFMxjhBewg== @@ -4893,7 +3878,7 @@ proc-log "^5.0.0" promise-retry "^2.0.1" -"@sigstore/tuf@^3.0.0", "@sigstore/tuf@^3.1.0": +"@sigstore/tuf@^3.1.0", "@sigstore/tuf@^3.1.1": version "3.1.1" resolved "https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-3.1.1.tgz#b01b261288f646e0da57737782893e7d2695c52e" integrity sha512-eFFvlcBIoGwVkkwmTi/vEQFSva3xs5Ot3WmBcjgjVdiaoelBLQaQ/ZBfhlG0MnG0cmTYScPpk7eDdGDWUcFUmg== @@ -4916,9 +3901,9 @@ integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== "@sinclair/typebox@^0.34.0": - version "0.34.35" - resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.34.35.tgz#185c57551d5edf9a2f6e9d012822b06f942cfbfc" - integrity sha512-C6ypdODf2VZkgRT6sFM8E1F8vR+HcffniX0Kp8MsU8PIfrlXbNCBz0jzj17GjdmjTx1OtZzdH8+iALL21UjF5A== + version "0.34.37" + resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.34.37.tgz#f331e4db64ff8195e9e3d8449343c85aaa237d6e" + integrity sha512-2TRuQVgQYfy+EzHRTIvkhv2ADEouJ2xNS/Vq+W5EuuewBdOrvATvljZTxHWZSTYr2sTjTHpGvucaGAt67S2akw== "@sinonjs/commons@^1.6.0", "@sinonjs/commons@^1.7.0", "@sinonjs/commons@^1.8.1": version "1.8.6" @@ -5027,10 +4012,10 @@ "@smithy/util-middleware" "^4.0.4" tslib "^2.6.2" -"@smithy/core@^3.5.3": - version "3.5.3" - resolved "https://registry.yarnpkg.com/@smithy/core/-/core-3.5.3.tgz#39969839e7cfd656be38fed09951d1691525f8d5" - integrity sha512-xa5byV9fEguZNofCclv6v9ra0FYh5FATQW/da7FQUVTic94DfrN/NvmKZjrMyzbpqfot9ZjBaO8U1UeTbmSLuA== +"@smithy/core@^3.6.0": + version "3.6.0" + resolved "https://registry.yarnpkg.com/@smithy/core/-/core-3.6.0.tgz#be02f2a4a56ba83d37298454a0bddc89cbad510b" + integrity sha512-Pgvfb+TQ4wUNLyHzvgCP4aYZMh16y7GcfF59oirRHcgGgkH1e/s9C0nv/v3WP+Quymyr5je71HeFQCwh+44XLg== dependencies: "@smithy/middleware-serde" "^4.0.8" "@smithy/protocol-http" "^5.1.2" @@ -5189,26 +4174,12 @@ "@smithy/util-middleware" "^1.1.0" tslib "^2.5.0" -"@smithy/middleware-endpoint@^4", "@smithy/middleware-endpoint@^4.1.12": - version "4.1.12" - resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-4.1.12.tgz#1db859a815a2f2bba4b2d39d0e56300e1eaaf588" - integrity sha512-Piy/9UOjh5FtEXhybjPwyOHcC/pGHFknl2Gc/q1YbEkngxY6eQwvBvZTNamXpyDAHCuP3h+lymcVcdyO3WdGqQ== - dependencies: - "@smithy/core" "^3.5.3" - "@smithy/middleware-serde" "^4.0.8" - "@smithy/node-config-provider" "^4.1.3" - "@smithy/shared-ini-file-loader" "^4.0.4" - "@smithy/types" "^4.3.1" - "@smithy/url-parser" "^4.0.4" - "@smithy/util-middleware" "^4.0.4" - tslib "^2.6.2" - -"@smithy/middleware-endpoint@^4.1.11": - version "4.1.11" - resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-4.1.11.tgz#bf23781c55cc3768c5d0f8866d2428bbce786bb4" - integrity sha512-zDogwtRLzKl58lVS8wPcARevFZNBOOqnmzWWxVe9XiaXU2CADFjvJ9XfNibgkOWs08sxLuSr81NrpY4mgp9OwQ== +"@smithy/middleware-endpoint@^4", "@smithy/middleware-endpoint@^4.1.13": + version "4.1.13" + resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-4.1.13.tgz#7d5b5f8f61600270bd8c59aabf311c99b9127aba" + integrity sha512-xg3EHV/Q5ZdAO5b0UiIMj3RIOCobuS40pBBODguUDVdko6YK6QIzCVRrHTogVuEKglBWqWenRnZ71iZnLL3ZAQ== dependencies: - "@smithy/core" "^3.5.3" + "@smithy/core" "^3.6.0" "@smithy/middleware-serde" "^4.0.8" "@smithy/node-config-provider" "^4.1.3" "@smithy/shared-ini-file-loader" "^4.0.4" @@ -5217,30 +4188,15 @@ "@smithy/util-middleware" "^4.0.4" tslib "^2.6.2" -"@smithy/middleware-retry@^4.1.12": - version "4.1.12" - resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-4.1.12.tgz#4d0b60bba95201539c99911c0a36f9275d973802" - integrity sha512-wvIH70c4e91NtRxdaLZF+mbLZ/HcC6yg7ySKUiufL6ESp6zJUSnJucZ309AvG9nqCFHSRB5I6T3Ez1Q9wCh0Ww== - dependencies: - "@smithy/node-config-provider" "^4.1.3" - "@smithy/protocol-http" "^5.1.2" - "@smithy/service-error-classification" "^4.0.5" - "@smithy/smithy-client" "^4.4.3" - "@smithy/types" "^4.3.1" - "@smithy/util-middleware" "^4.0.4" - "@smithy/util-retry" "^4.0.5" - tslib "^2.6.2" - uuid "^9.0.1" - -"@smithy/middleware-retry@^4.1.13": - version "4.1.13" - resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-4.1.13.tgz#699d5b295348679fb23c775f3a98b9e5b12b8b1b" - integrity sha512-5ILvPCJevTcGpl7wAvSV9HKbIGS2Wxz505d0b5dP9kmjBhsFm1SAsSLIteMn925hlxPUkOsjcjMyaEiQDr9s4w== +"@smithy/middleware-retry@^4.1.14": + version "4.1.14" + resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-4.1.14.tgz#53ce619463a1ce4b95025aaafdf51369ef893196" + integrity sha512-eoXaLlDGpKvdmvt+YBfRXE7HmIEtFF+DJCbTPwuLunP0YUnrydl+C4tS+vEM0+nyxXrX3PSUFqC+lP1+EHB1Tw== dependencies: "@smithy/node-config-provider" "^4.1.3" "@smithy/protocol-http" "^5.1.2" "@smithy/service-error-classification" "^4.0.6" - "@smithy/smithy-client" "^4.4.4" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" "@smithy/util-middleware" "^4.0.4" "@smithy/util-retry" "^4.0.6" @@ -5339,13 +4295,6 @@ resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-1.1.0.tgz#264dd432ae513b3f2ad9fc6f461deda8c516173c" integrity sha512-OCTEeJ1igatd5kFrS2VDlYbainNNpf7Lj1siFOxnRWqYOP9oNvC5HOJBd3t+Z8MbrmehBtuDJ2QqeBsfeiNkww== -"@smithy/service-error-classification@^4.0.5": - version "4.0.5" - resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-4.0.5.tgz#cd912cdd0510de9369db6a4d34dc36f36de54a59" - integrity sha512-LvcfhrnCBvCmTee81pRlh1F39yTS/+kYleVeLCwNtkY8wtGg8V/ca9rbZZvYIl8OjlMtL6KIjaiL/lgVqHD2nA== - dependencies: - "@smithy/types" "^4.3.1" - "@smithy/service-error-classification@^4.0.6": version "4.0.6" resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-4.0.6.tgz#5d4d3017f5b62258fbfc1067e14198e125a8286c" @@ -5375,26 +4324,13 @@ "@smithy/util-utf8" "^4.0.0" tslib "^2.6.2" -"@smithy/smithy-client@^4.4.3": - version "4.4.3" - resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-4.4.3.tgz#37499b5bdec39d9a738f3ac1566a49bcb5cad255" - integrity sha512-xxzNYgA0HD6ETCe5QJubsxP0hQH3QK3kbpJz3QrosBCuIWyEXLR/CO5hFb2OeawEKUxMNhz3a1nuJNN2np2RMA== - dependencies: - "@smithy/core" "^3.5.3" - "@smithy/middleware-endpoint" "^4.1.11" - "@smithy/middleware-stack" "^4.0.4" - "@smithy/protocol-http" "^5.1.2" - "@smithy/types" "^4.3.1" - "@smithy/util-stream" "^4.2.2" - tslib "^2.6.2" - -"@smithy/smithy-client@^4.4.4": - version "4.4.4" - resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-4.4.4.tgz#bb98c188bd07d4692203a17c4e590282848ed33e" - integrity sha512-38Ivn1VoArWi+wvJeW6rGl9lcuViYjmGfaZaBgOlFEyoQSIl2Rnr3uOWzwu3FE8NIvHflQVkwbveMQxBAEbd1A== +"@smithy/smithy-client@^4.4.5": + version "4.4.5" + resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-4.4.5.tgz#1c736618f3c4910880cc6862a5826348c1b70d5d" + integrity sha512-+lynZjGuUFJaMdDYSTMnP/uPBBXXukVfrJlP+1U/Dp5SFTEI++w6NMga8DjOENxecOF71V9Z2DllaVDYRnGlkg== dependencies: - "@smithy/core" "^3.5.3" - "@smithy/middleware-endpoint" "^4.1.12" + "@smithy/core" "^3.6.0" + "@smithy/middleware-endpoint" "^4.1.13" "@smithy/middleware-stack" "^4.0.4" "@smithy/protocol-http" "^5.1.2" "@smithy/types" "^4.3.1" @@ -5479,51 +4415,27 @@ dependencies: tslib "^2.6.2" -"@smithy/util-defaults-mode-browser@^4.0.19": - version "4.0.19" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.0.19.tgz#4deaa41201458d353166ab05ffa465b30898d671" - integrity sha512-mvLMh87xSmQrV5XqnUYEPoiFFeEGYeAKIDDKdhE2ahqitm8OHM3aSvhqL6rrK6wm1brIk90JhxDf5lf2hbrLbQ== - dependencies: - "@smithy/property-provider" "^4.0.4" - "@smithy/smithy-client" "^4.4.3" - "@smithy/types" "^4.3.1" - bowser "^2.11.0" - tslib "^2.6.2" - -"@smithy/util-defaults-mode-browser@^4.0.20": - version "4.0.20" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.0.20.tgz#249e3c065a9a1be2f02a822fbda36fc151ea6e4b" - integrity sha512-496BbDMx/8kQrvlhT0EsX7JM7yVpK7CACmG3LsqMX9RaJnF7M/OVlfbxoRceUp5o5S0HqBnV8/xGOX7MYCv2Gw== +"@smithy/util-defaults-mode-browser@^4.0.21": + version "4.0.21" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.0.21.tgz#47895e42d64060d2a7f803a443fd160d0a329d83" + integrity sha512-wM0jhTytgXu3wzJoIqpbBAG5U6BwiubZ6QKzSbP7/VbmF1v96xlAbX2Am/mz0Zep0NLvLh84JT0tuZnk3wmYQA== dependencies: "@smithy/property-provider" "^4.0.4" - "@smithy/smithy-client" "^4.4.4" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" bowser "^2.11.0" tslib "^2.6.2" -"@smithy/util-defaults-mode-node@^4.0.19": - version "4.0.19" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.0.19.tgz#4150b5c807ca90cac7e40a5d29f2e30e3cdb1f34" - integrity sha512-8tYnx+LUfj6m+zkUUIrIQJxPM1xVxfRBvoGHua7R/i6qAxOMjqR6CpEpDwKoIs1o0+hOjGvkKE23CafKL0vJ9w== - dependencies: - "@smithy/config-resolver" "^4.1.4" - "@smithy/credential-provider-imds" "^4.0.6" - "@smithy/node-config-provider" "^4.1.3" - "@smithy/property-provider" "^4.0.4" - "@smithy/smithy-client" "^4.4.3" - "@smithy/types" "^4.3.1" - tslib "^2.6.2" - -"@smithy/util-defaults-mode-node@^4.0.20": - version "4.0.20" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.0.20.tgz#96b0d4462420070b4856807dde54dc585f561afe" - integrity sha512-QsGHToYvRCoMyJQr/bXLG7L+nXNxICpG5LI1lRL0wkdkvLIxP89r4O+LHLWI9UeLzylxJ7VPnsTR/ADJ+F71/w== +"@smithy/util-defaults-mode-node@^4.0.21": + version "4.0.21" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.0.21.tgz#4682143fbfb0a4c6e08a6151f13af97018e6950e" + integrity sha512-/F34zkoU0GzpUgLJydHY8Rxu9lBn8xQC/s/0M0U9lLBkYbA1htaAFjWYJzpzsbXPuri5D1H8gjp2jBum05qBrA== dependencies: "@smithy/config-resolver" "^4.1.4" "@smithy/credential-provider-imds" "^4.0.6" "@smithy/node-config-provider" "^4.1.3" "@smithy/property-provider" "^4.0.4" - "@smithy/smithy-client" "^4.4.4" + "@smithy/smithy-client" "^4.4.5" "@smithy/types" "^4.3.1" tslib "^2.6.2" @@ -5575,15 +4487,6 @@ "@smithy/types" "^4.3.1" tslib "^2.6.2" -"@smithy/util-retry@^4.0.5": - version "4.0.5" - resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-4.0.5.tgz#58eea5bb1869745dac28a3f81a5904f225ec1207" - integrity sha512-V7MSjVDTlEt/plmOFBn1762Dyu5uqMrV2Pl2X0dYk4XvWfdWJNe9Bs5Bzb56wkCuiWjSfClVMGcsuKrGj7S/yg== - dependencies: - "@smithy/service-error-classification" "^4.0.5" - "@smithy/types" "^4.3.1" - tslib "^2.6.2" - "@smithy/util-stream@^4.2.2": version "4.2.2" resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-4.2.2.tgz#beeb1edf690db9b7d7983f46ca4fb66e22253608" @@ -5630,10 +4533,10 @@ "@smithy/types" "^1.2.0" tslib "^2.5.0" -"@smithy/util-waiter@^4", "@smithy/util-waiter@^4.0.5": - version "4.0.5" - resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-4.0.5.tgz#cc7c65c86f5f8330445e27f9cc47d42c53c69bb7" - integrity sha512-4QvC49HTteI1gfemu0I1syWovJgPvGn7CVUoN9ZFkdvr/cCFkrEL7qNCdx/2eICqDWEGnnr68oMdSIPCLAriSQ== +"@smithy/util-waiter@^4", "@smithy/util-waiter@^4.0.6": + version "4.0.6" + resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-4.0.6.tgz#38044da5053f0d9118df05f55cd8fbec14ecf9da" + integrity sha512-slcr1wdRbX7NFphXZOxtxRNA7hXAAtJAXJDE/wdoMAos27SIquVCKiSqfB6/28YzQ8FCsB5NKkhdM5gMADbqxg== dependencies: "@smithy/abort-controller" "^4.0.4" "@smithy/types" "^4.3.1" @@ -5847,7 +4750,15 @@ dependencies: "@types/jest" "*" -"@types/jest@*", "@types/jest@^29.5.14": +"@types/jest@*": + version "30.0.0" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-30.0.0.tgz#5e85ae568006712e4ad66f25433e9bdac8801f1d" + integrity sha512-XTYugzhuwqWjws0CVz8QpM36+T+Dz5mTEBKhNs/esGLnCIlGdRy+Dq78NRjd7ls7r8BC8ZRMOrKlkO1hU0JOwA== + dependencies: + expect "^30.0.0" + pretty-format "^30.0.0" + +"@types/jest@^29.5.14": version "29.5.14" resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.14.tgz#2b910912fa1d6856cadcd0c1f95af7df1d6049e5" integrity sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ== @@ -5880,9 +4791,9 @@ "@types/lodash" "*" "@types/lodash@*": - version "4.17.17" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.17.17.tgz#fb85a04f47e9e4da888384feead0de05f7070355" - integrity sha512-RRVJ+J3J+WmyOTqnz3PiBLA501eKwXl2noseKOrNo/6+XEHjTAxO4xHvxQB6QuNm+s4WRbn6rSiap8+EA+ykFQ== + version "4.17.19" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.17.19.tgz#de18c90b7891f00fed7c1273495a2f851efd99c4" + integrity sha512-NYqRyg/hIQrYPT9lbOeYc3kIRabJDn/k4qQHIXUpx88CBDww2fD15Sg5kbXlW86zm2XEW4g0QxkTI3/Kfkc7xQ== "@types/mime@^2": version "2.0.3" @@ -5912,9 +4823,9 @@ integrity sha512-vpuuVxCnCEM0OakYNoyFs40mjJFJFJahBHyx0Z0Piysof+YwlDJzNO4V1weRvYySAmtAvlb0UHtxVO2IfTcykw== "@types/node@*", "@types/node@ts5.6": - version "24.0.1" - resolved "https://registry.yarnpkg.com/@types/node/-/node-24.0.1.tgz#e9bfcb1c35547437c294403b7bec497772a88b0a" - integrity sha512-MX4Zioh39chHlDJbKmEgydJDS3tspMP/lnQC67G3SWsTnb9NeYVWOjkxpOSy4oMfPs4StcWHwBrvUb4ybfnuaw== + version "24.0.7" + resolved "https://registry.yarnpkg.com/@types/node/-/node-24.0.7.tgz#ee580f7850c7eabaeef61ef96b8d8c04fdf94f53" + integrity sha512-YIEUUr4yf8q8oQoXPpSlnvKNVKDQlPMWrmOcgzoduo7kvA2UF0/BwJ/eMKFTiTtkNL17I0M6Xe2tvwFU7be6iw== dependencies: undici-types "~7.8.0" @@ -5929,9 +4840,9 @@ integrity sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw== "@types/node@^18", "@types/node@^18.11.9": - version "18.19.111" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.111.tgz#e95b89efc24cc625834b43bcd70bd5591a5dfba5" - integrity sha512-90sGdgA+QLJr1F9X79tQuEut0gEYIfkX9pydI4XGRgvFo9g2JWswefI+WUSUHPYVBHYSEfTEqBxA5hQvAZB3Mw== + version "18.19.113" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.113.tgz#f48df552584e47fb4a8bc0b39e1377112be105de" + integrity sha512-TmSTE9vyebJ9vSEiU+P+0Sp4F5tMgjiEOZaQUW6wA3ODvi6uBgkHQ+EsIu0pbiKvf9QHEvyRCiaz03rV0b+IaA== dependencies: undici-types "~5.26.4" @@ -6039,60 +4950,60 @@ integrity sha512-GD4Fk15UoP5NLCNor51YdfL9MSdldKCqOC9EssrRw3HVfar9wUZ5y8Lfnp+qVD6hIinLr8ygklDYnmlnlQo12Q== "@typescript-eslint/eslint-plugin@^8": - version "8.34.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.34.0.tgz#96c9f818782fe24cd5883a5d517ca1826d3fa9c2" - integrity sha512-QXwAlHlbcAwNlEEMKQS2RCgJsgXrTJdjXT08xEgbPFa2yYQgVjBymxP5DrfrE7X7iodSzd9qBUHUycdyVJTW1w== + version "8.35.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.35.0.tgz#515170100ff867445fe0a17ce05c14fc5fd9ca63" + integrity sha512-ijItUYaiWuce0N1SoSMrEd0b6b6lYkYt99pqCPfybd+HKVXtEvYhICfLdwp42MhiI5mp0oq7PKEL+g1cNiz/Eg== dependencies: "@eslint-community/regexpp" "^4.10.0" - "@typescript-eslint/scope-manager" "8.34.0" - "@typescript-eslint/type-utils" "8.34.0" - "@typescript-eslint/utils" "8.34.0" - "@typescript-eslint/visitor-keys" "8.34.0" + "@typescript-eslint/scope-manager" "8.35.0" + "@typescript-eslint/type-utils" "8.35.0" + "@typescript-eslint/utils" "8.35.0" + "@typescript-eslint/visitor-keys" "8.35.0" graphemer "^1.4.0" ignore "^7.0.0" natural-compare "^1.4.0" ts-api-utils "^2.1.0" "@typescript-eslint/parser@^8": - version "8.34.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.34.0.tgz#703270426ac529304ae6988482f487c856d9c13f" - integrity sha512-vxXJV1hVFx3IXz/oy2sICsJukaBrtDEQSBiV48/YIV5KWjX1dO+bcIr/kCPrW6weKXvsaGKFNlwH0v2eYdRRbA== - dependencies: - "@typescript-eslint/scope-manager" "8.34.0" - "@typescript-eslint/types" "8.34.0" - "@typescript-eslint/typescript-estree" "8.34.0" - "@typescript-eslint/visitor-keys" "8.34.0" + version "8.35.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.35.0.tgz#20a0e17778a329a6072722f5ac418d4376b767d2" + integrity sha512-6sMvZePQrnZH2/cJkwRpkT7DxoAWh+g6+GFRK6bV3YQo7ogi3SX5rgF6099r5Q53Ma5qeT7LGmOmuIutF4t3lA== + dependencies: + "@typescript-eslint/scope-manager" "8.35.0" + "@typescript-eslint/types" "8.35.0" + "@typescript-eslint/typescript-estree" "8.35.0" + "@typescript-eslint/visitor-keys" "8.35.0" debug "^4.3.4" -"@typescript-eslint/project-service@8.34.0": - version "8.34.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.34.0.tgz#449119b72fe9fae185013a6bdbaf1ffbfee6bcaf" - integrity sha512-iEgDALRf970/B2YExmtPMPF54NenZUf4xpL3wsCRx/lgjz6ul/l13R81ozP/ZNuXfnLCS+oPmG7JIxfdNYKELw== +"@typescript-eslint/project-service@8.35.0": + version "8.35.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.35.0.tgz#00bd77e6845fbdb5684c6ab2d8a400a58dcfb07b" + integrity sha512-41xatqRwWZuhUMF/aZm2fcUsOFKNcG28xqRSS6ZVr9BVJtGExosLAm5A1OxTjRMagx8nJqva+P5zNIGt8RIgbQ== dependencies: - "@typescript-eslint/tsconfig-utils" "^8.34.0" - "@typescript-eslint/types" "^8.34.0" + "@typescript-eslint/tsconfig-utils" "^8.35.0" + "@typescript-eslint/types" "^8.35.0" debug "^4.3.4" -"@typescript-eslint/scope-manager@8.34.0": - version "8.34.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.34.0.tgz#9fedaec02370cf79c018a656ab402eb00dc69e67" - integrity sha512-9Ac0X8WiLykl0aj1oYQNcLZjHgBojT6cW68yAgZ19letYu+Hxd0rE0veI1XznSSst1X5lwnxhPbVdwjDRIomRw== +"@typescript-eslint/scope-manager@8.35.0": + version "8.35.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.35.0.tgz#8ccb2ab63383544fab98fc4b542d8d141259ff4f" + integrity sha512-+AgL5+mcoLxl1vGjwNfiWq5fLDZM1TmTPYs2UkyHfFhgERxBbqHlNjRzhThJqz+ktBqTChRYY6zwbMwy0591AA== dependencies: - "@typescript-eslint/types" "8.34.0" - "@typescript-eslint/visitor-keys" "8.34.0" + "@typescript-eslint/types" "8.35.0" + "@typescript-eslint/visitor-keys" "8.35.0" -"@typescript-eslint/tsconfig-utils@8.34.0", "@typescript-eslint/tsconfig-utils@^8.34.0": - version "8.34.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.34.0.tgz#97d0a24e89a355e9308cebc8e23f255669bf0979" - integrity sha512-+W9VYHKFIzA5cBeooqQxqNriAP0QeQ7xTiDuIOr71hzgffm3EL2hxwWBIIj4GuofIbKxGNarpKqIq6Q6YrShOA== +"@typescript-eslint/tsconfig-utils@8.35.0", "@typescript-eslint/tsconfig-utils@^8.35.0": + version "8.35.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.35.0.tgz#6e05aeb999999e31d562ceb4fe144f3cbfbd670e" + integrity sha512-04k/7247kZzFraweuEirmvUj+W3bJLI9fX6fbo1Qm2YykuBvEhRTPl8tcxlYO8kZZW+HIXfkZNoasVb8EV4jpA== -"@typescript-eslint/type-utils@8.34.0": - version "8.34.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.34.0.tgz#03e7eb3776129dfd751ba1cac0c6ea4b0fab5ec6" - integrity sha512-n7zSmOcUVhcRYC75W2pnPpbO1iwhJY3NLoHEtbJwJSNlVAZuwqu05zY3f3s2SDWWDSo9FdN5szqc73DCtDObAg== +"@typescript-eslint/type-utils@8.35.0": + version "8.35.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.35.0.tgz#0201eae9d83ffcc3451ef8c94f53ecfbf2319ecc" + integrity sha512-ceNNttjfmSEoM9PW87bWLDEIaLAyR+E6BoYJQ5PfaDau37UGca9Nyq3lBk8Bw2ad0AKvYabz6wxc7DMTO2jnNA== dependencies: - "@typescript-eslint/typescript-estree" "8.34.0" - "@typescript-eslint/utils" "8.34.0" + "@typescript-eslint/typescript-estree" "8.35.0" + "@typescript-eslint/utils" "8.35.0" debug "^4.3.4" ts-api-utils "^2.1.0" @@ -6101,25 +5012,20 @@ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.33.0.tgz#a1e59036a3b53ae8430ceebf2a919dc7f9af6d72" integrity sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ== -"@typescript-eslint/types@8.34.0", "@typescript-eslint/types@^8.11.0", "@typescript-eslint/types@^8.34.0": - version "8.34.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.34.0.tgz#18000f205c59c9aff7f371fc5426b764cf2890fb" - integrity sha512-9V24k/paICYPniajHfJ4cuAWETnt7Ssy+R0Rbcqo5sSFr3QEZ/8TSoUi9XeXVBGXCaLtwTOKSLGcInCAvyZeMA== - -"@typescript-eslint/types@^8.34.1": +"@typescript-eslint/types@8.35.0", "@typescript-eslint/types@^8.11.0", "@typescript-eslint/types@^8.34.1", "@typescript-eslint/types@^8.35.0": version "8.35.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.35.0.tgz#e60d062907930e30008d796de5c4170f02618a93" integrity sha512-0mYH3emanku0vHw2aRLNGqe7EXh9WHEhi7kZzscrMDf6IIRUQ5Jk4wp1QrledE/36KtdZrVfKnE32eZCf/vaVQ== -"@typescript-eslint/typescript-estree@8.34.0", "@typescript-eslint/typescript-estree@^8.23.0": - version "8.34.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.34.0.tgz#c9f3feec511339ef64e9e4884516c3e558f1b048" - integrity sha512-rOi4KZxI7E0+BMqG7emPSK1bB4RICCpF7QD3KCLXn9ZvWoESsOMlHyZPAHyG04ujVplPaHbmEvs34m+wjgtVtg== +"@typescript-eslint/typescript-estree@8.35.0", "@typescript-eslint/typescript-estree@^8.23.0": + version "8.35.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.35.0.tgz#86141e6c55b75bc1eaecc0781bd39704de14e52a" + integrity sha512-F+BhnaBemgu1Qf8oHrxyw14wq6vbL8xwWKKMwTMwYIRmFFY/1n/9T/jpbobZL8vp7QyEUcC6xGrnAO4ua8Kp7w== dependencies: - "@typescript-eslint/project-service" "8.34.0" - "@typescript-eslint/tsconfig-utils" "8.34.0" - "@typescript-eslint/types" "8.34.0" - "@typescript-eslint/visitor-keys" "8.34.0" + "@typescript-eslint/project-service" "8.35.0" + "@typescript-eslint/tsconfig-utils" "8.35.0" + "@typescript-eslint/types" "8.35.0" + "@typescript-eslint/visitor-keys" "8.35.0" debug "^4.3.4" fast-glob "^3.3.2" is-glob "^4.0.3" @@ -6140,15 +5046,15 @@ semver "^7.3.5" tsutils "^3.21.0" -"@typescript-eslint/utils@8.34.0", "@typescript-eslint/utils@^6.0.0 || ^7.0.0 || ^8.0.0", "@typescript-eslint/utils@^8.13.0": - version "8.34.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.34.0.tgz#7844beebc1153b4d3ec34135c2da53a91e076f8d" - integrity sha512-8L4tWatGchV9A1cKbjaavS6mwYwp39jql8xUmIIKJdm+qiaeHy5KMKlBrf30akXAWBzn2SqKsNOtSENWUwg7XQ== +"@typescript-eslint/utils@8.35.0", "@typescript-eslint/utils@^6.0.0 || ^7.0.0 || ^8.0.0", "@typescript-eslint/utils@^8.13.0": + version "8.35.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.35.0.tgz#aaf0afab5ab51ea2f1897002907eacd9834606d5" + integrity sha512-nqoMu7WWM7ki5tPgLVsmPM8CkqtoPUG6xXGeefM5t4x3XumOEKMoUZPdi+7F+/EotukN4R9OWdmDxN80fqoZeg== dependencies: "@eslint-community/eslint-utils" "^4.7.0" - "@typescript-eslint/scope-manager" "8.34.0" - "@typescript-eslint/types" "8.34.0" - "@typescript-eslint/typescript-estree" "8.34.0" + "@typescript-eslint/scope-manager" "8.35.0" + "@typescript-eslint/types" "8.35.0" + "@typescript-eslint/typescript-estree" "8.35.0" "@typescript-eslint/visitor-keys@4.33.0": version "4.33.0" @@ -6158,196 +5064,196 @@ "@typescript-eslint/types" "4.33.0" eslint-visitor-keys "^2.0.0" -"@typescript-eslint/visitor-keys@8.34.0": - version "8.34.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.34.0.tgz#c7a149407be31d755dba71980617d638a40ac099" - integrity sha512-qHV7pW7E85A0x6qyrFn+O+q1k1p3tQCsqIZ1KZ5ESLXY57aTvUd3/a4rdPTeXisvhXn2VQG0VSKUqs8KHF2zcA== +"@typescript-eslint/visitor-keys@8.35.0": + version "8.35.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.35.0.tgz#93e905e7f1e94d26a79771d1b1eb0024cb159dbf" + integrity sha512-zTh2+1Y8ZpmeQaQVIc/ZZxsx8UzgKJyNg1PTvjzC7WMhPSVS8bfDX34k1SrwOf016qd5RU3az2UxUNue3IfQ5g== dependencies: - "@typescript-eslint/types" "8.34.0" - eslint-visitor-keys "^4.2.0" + "@typescript-eslint/types" "8.35.0" + eslint-visitor-keys "^4.2.1" "@ungap/structured-clone@^1.3.0": version "1.3.0" resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.3.0.tgz#d06bbb384ebcf6c505fde1c3d0ed4ddffe0aaff8" integrity sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g== -"@unrs/resolver-binding-android-arm-eabi@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.9.0.tgz#e91317973356eb845c9186db5f9ec43e8d0002eb" - integrity sha512-h1T2c2Di49ekF2TE8ZCoJkb+jwETKUIPDJ/nO3tJBKlLFPu+fyd93f0rGP/BvArKx2k2HlRM4kqkNarj3dvZlg== - -"@unrs/resolver-binding-android-arm64@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.9.0.tgz#fbdd79b2a8e478e02e1c0751dfbc100017522161" - integrity sha512-sG1NHtgXtX8owEkJ11yn34vt0Xqzi3k9TJ8zppDmyG8GZV4kVWw44FHwKwHeEFl07uKPeC4ZoyuQaGh5ruJYPA== - -"@unrs/resolver-binding-darwin-arm64@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.9.0.tgz#24bb42710227ae2f4fea191151f3acc6a75b50d6" - integrity sha512-nJ9z47kfFnCxN1z/oYZS7HSNsFh43y2asePzTEZpEvK7kGyuShSl3RRXnm/1QaqFL+iP+BjMwuB+DYUymOkA5A== - -"@unrs/resolver-binding-darwin-x64@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.9.0.tgz#4a205940ec311ac8396c3f25043644b78cc98a20" - integrity sha512-TK+UA1TTa0qS53rjWn7cVlEKVGz2B6JYe0C++TdQjvWYIyx83ruwh0wd4LRxYBM5HeuAzXcylA9BH2trARXJTw== - -"@unrs/resolver-binding-freebsd-x64@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.9.0.tgz#ed82e000f7248011696ecc8894f574caa197b0be" - integrity sha512-6uZwzMRFcD7CcCd0vz3Hp+9qIL2jseE/bx3ZjaLwn8t714nYGwiE84WpaMCYjU+IQET8Vu/+BNAGtYD7BG/0yA== - -"@unrs/resolver-binding-linux-arm-gnueabihf@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.9.0.tgz#534a8b32118590f7fb9edd21c6576243a89a8aad" - integrity sha512-bPUBksQfrgcfv2+mm+AZinaKq8LCFvt5PThYqRotqSuuZK1TVKkhbVMS/jvSRfYl7jr3AoZLYbDkItxgqMKRkg== - -"@unrs/resolver-binding-linux-arm-musleabihf@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.9.0.tgz#b31718752e77cecbbcf7ba1e01dea97c1a5ee7e0" - integrity sha512-uT6E7UBIrTdCsFQ+y0tQd3g5oudmrS/hds5pbU3h4s2t/1vsGWbbSKhBSCD9mcqaqkBwoqlECpUrRJCmldl8PA== - -"@unrs/resolver-binding-linux-arm64-gnu@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.9.0.tgz#0f11ba195020cfa869533fb74733d68162349d14" - integrity sha512-vdqBh911wc5awE2bX2zx3eflbyv8U9xbE/jVKAm425eRoOVv/VseGZsqi3A3SykckSpF4wSROkbQPvbQFn8EsA== - -"@unrs/resolver-binding-linux-arm64-musl@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.9.0.tgz#8b6bc086cf9efaa22e8f2fef381786d6636b8e19" - integrity sha512-/8JFZ/SnuDr1lLEVsxsuVwrsGquTvT51RZGvyDB/dOK3oYK2UqeXzgeyq6Otp8FZXQcEYqJwxb9v+gtdXn03eQ== - -"@unrs/resolver-binding-linux-ppc64-gnu@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.9.0.tgz#5cd15899af31c2bbf90bfca5f798f64a16770e23" - integrity sha512-FkJjybtrl+rajTw4loI3L6YqSOpeZfDls4SstL/5lsP2bka9TiHUjgMBjygeZEis1oC8LfJTS8FSgpKPaQx2tQ== - -"@unrs/resolver-binding-linux-riscv64-gnu@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.9.0.tgz#4f2c75af52437eb10b48ea5b72750fb65fb174be" - integrity sha512-w/NZfHNeDusbqSZ8r/hp8iL4S39h4+vQMc9/vvzuIKMWKppyUGKm3IST0Qv0aOZ1rzIbl9SrDeIqK86ZpUK37w== - -"@unrs/resolver-binding-linux-riscv64-musl@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.9.0.tgz#6a87e82e0dd39d34ff37ddba6accf73cdb396e86" - integrity sha512-bEPBosut8/8KQbUixPry8zg/fOzVOWyvwzOfz0C0Rw6dp+wIBseyiHKjkcSyZKv/98edrbMknBaMNJfA/UEdqw== - -"@unrs/resolver-binding-linux-s390x-gnu@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.9.0.tgz#6524cc3c01309022de86c4a7317fe7d9f9fb855c" - integrity sha512-LDtMT7moE3gK753gG4pc31AAqGUC86j3AplaFusc717EUGF9ZFJ356sdQzzZzkBk1XzMdxFyZ4f/i35NKM/lFA== - -"@unrs/resolver-binding-linux-x64-gnu@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.9.0.tgz#85fb8a45dccf3823cd73ea4b61b2c3f2e8ab6653" - integrity sha512-WmFd5KINHIXj8o1mPaT8QRjA9HgSXhN1gl9Da4IZihARihEnOylu4co7i/yeaIpcfsI6sYs33cNZKyHYDh0lrA== - -"@unrs/resolver-binding-linux-x64-musl@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.9.0.tgz#235e539da5872df51c03e0e050a1c715e25044ca" - integrity sha512-CYuXbANW+WgzVRIl8/QvZmDaZxrqvOldOwlbUjIM4pQ46FJ0W5cinJ/Ghwa/Ng1ZPMJMk1VFdsD/XwmCGIXBWg== - -"@unrs/resolver-binding-wasm32-wasi@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.9.0.tgz#1bc614ce2ba61330c16bffa1e50f41d95d25c0a6" - integrity sha512-6Rp2WH0OoitMYR57Z6VE8Y6corX8C6QEMWLgOV6qXiJIeZ1F9WGXY/yQ8yDC4iTraotyLOeJ2Asea0urWj2fKQ== +"@unrs/resolver-binding-android-arm-eabi@1.9.2": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.9.2.tgz#6cb01dde20bef06397ffd4924f502596cb458851" + integrity sha512-tS+lqTU3N0kkthU+rYp0spAYq15DU8ld9kXkaKg9sbQqJNF+WPMuNHZQGCgdxrUOEO0j22RKMwRVhF1HTl+X8A== + +"@unrs/resolver-binding-android-arm64@1.9.2": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.9.2.tgz#1672b533f01f98119095860683496def93929a2e" + integrity sha512-MffGiZULa/KmkNjHeuuflLVqfhqLv1vZLm8lWIyeADvlElJ/GLSOkoUX+5jf4/EGtfwrNFcEaB8BRas03KT0/Q== + +"@unrs/resolver-binding-darwin-arm64@1.9.2": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.9.2.tgz#dad66a21553b1ba4088c6eb922332846550bd9b2" + integrity sha512-dzJYK5rohS1sYl1DHdJ3mwfwClJj5BClQnQSyAgEfggbUwA9RlROQSSbKBLqrGfsiC/VyrDPtbO8hh56fnkbsQ== + +"@unrs/resolver-binding-darwin-x64@1.9.2": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.9.2.tgz#bfaedca218078862f3d536d44269fed94a6158e2" + integrity sha512-gaIMWK+CWtXcg9gUyznkdV54LzQ90S3X3dn8zlh+QR5Xy7Y+Efqw4Rs4im61K1juy4YNb67vmJsCDAGOnIeffQ== + +"@unrs/resolver-binding-freebsd-x64@1.9.2": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.9.2.tgz#bdab0e754c45831522b16df0b6fe4b0ffde22628" + integrity sha512-S7QpkMbVoVJb0xwHFwujnwCAEDe/596xqY603rpi/ioTn9VDgBHnCCxh+UFrr5yxuMH+dliHfjwCZJXOPJGPnw== + +"@unrs/resolver-binding-linux-arm-gnueabihf@1.9.2": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.9.2.tgz#2bac9c19599888d4ba4787b437b0273ac7a7a9f2" + integrity sha512-+XPUMCuCCI80I46nCDFbGum0ZODP5NWGiwS3Pj8fOgsG5/ctz+/zzuBlq/WmGa+EjWZdue6CF0aWWNv84sE1uw== + +"@unrs/resolver-binding-linux-arm-musleabihf@1.9.2": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.9.2.tgz#49d27d5d63e5f26cf7b93a0731334b302b9b7fec" + integrity sha512-sqvUyAd1JUpwbz33Ce2tuTLJKM+ucSsYpPGl2vuFwZnEIg0CmdxiZ01MHQ3j6ExuRqEDUCy8yvkDKvjYFPb8Zg== + +"@unrs/resolver-binding-linux-arm64-gnu@1.9.2": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.9.2.tgz#95ba5d1654a04b1049d944871e165d786e8da68f" + integrity sha512-UYA0MA8ajkEDCFRQdng/FVx3F6szBvk3EPnkTTQuuO9lV1kPGuTB+V9TmbDxy5ikaEgyWKxa4CI3ySjklZ9lFA== + +"@unrs/resolver-binding-linux-arm64-musl@1.9.2": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.9.2.tgz#23f90a48b1d343189b1c20c89b694140e2d5a210" + integrity sha512-P/CO3ODU9YJIHFqAkHbquKtFst0COxdphc8TKGL5yCX75GOiVpGqd1d15ahpqu8xXVsqP4MGFP2C3LRZnnL5MA== + +"@unrs/resolver-binding-linux-ppc64-gnu@1.9.2": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.9.2.tgz#076f2c2e95dbcd4824cc9929bc504151b402ac11" + integrity sha512-uKStFlOELBxBum2s1hODPtgJhY4NxYJE9pAeyBgNEzHgTqTiVBPjfTlPFJkfxyTjQEuxZbbJlJnMCrRgD7ubzw== + +"@unrs/resolver-binding-linux-riscv64-gnu@1.9.2": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.9.2.tgz#f7de54d45df430c74bbd12794946a55805bed6dd" + integrity sha512-LkbNnZlhINfY9gK30AHs26IIVEZ9PEl9qOScYdmY2o81imJYI4IMnJiW0vJVtXaDHvBvxeAgEy5CflwJFIl3tQ== + +"@unrs/resolver-binding-linux-riscv64-musl@1.9.2": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.9.2.tgz#ad1fcdcf5f112d7432fcfe38269a084bdccad266" + integrity sha512-vI+e6FzLyZHSLFNomPi+nT+qUWN4YSj8pFtQZSFTtmgFoxqB6NyjxSjAxEC1m93qn6hUXhIsh8WMp+fGgxCoRg== + +"@unrs/resolver-binding-linux-s390x-gnu@1.9.2": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.9.2.tgz#d914a4f12b9048e1a4de0040f64d73274104e301" + integrity sha512-sSO4AlAYhSM2RAzBsRpahcJB1msc6uYLAtP6pesPbZtptF8OU/CbCPhSRW6cnYOGuVmEmWVW5xVboAqCnWTeHQ== + +"@unrs/resolver-binding-linux-x64-gnu@1.9.2": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.9.2.tgz#d8f8cddc42ae267ef45ed4b61ff72b9e22aa3b82" + integrity sha512-jkSkwch0uPFva20Mdu8orbQjv2A3G88NExTN2oPTI1AJ+7mZfYW3cDCTyoH6OnctBKbBVeJCEqh0U02lTkqD5w== + +"@unrs/resolver-binding-linux-x64-musl@1.9.2": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.9.2.tgz#7bfce67acb51b3f4a7cff8383f46600f7b055a96" + integrity sha512-Uk64NoiTpQbkpl+bXsbeyOPRpUoMdcUqa+hDC1KhMW7aN1lfW8PBlBH4mJ3n3Y47dYE8qi0XTxy1mBACruYBaw== + +"@unrs/resolver-binding-wasm32-wasi@1.9.2": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.9.2.tgz#b133c9b6941aba54eea007ca2f27ff6ce917ae55" + integrity sha512-EpBGwkcjDicjR/ybC0g8wO5adPNdVuMrNalVgYcWi+gYtC1XYNuxe3rufcO7dA76OHGeVabcO6cSkPJKVcbCXQ== dependencies: "@napi-rs/wasm-runtime" "^0.2.11" -"@unrs/resolver-binding-win32-arm64-msvc@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.9.0.tgz#0d8704275a9f2634d81b35d8a00a2f4bd8dec7fa" - integrity sha512-rknkrTRuvujprrbPmGeHi8wYWxmNVlBoNW8+4XF2hXUnASOjmuC9FNF1tGbDiRQWn264q9U/oGtixyO3BT8adQ== +"@unrs/resolver-binding-win32-arm64-msvc@1.9.2": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.9.2.tgz#5f95f590f06c1e9ba15b24292c956c21a6294b30" + integrity sha512-EdFbGn7o1SxGmN6aZw9wAkehZJetFPao0VGZ9OMBwKx6TkvDuj6cNeLimF/Psi6ts9lMOe+Dt6z19fZQ9Ye2fw== -"@unrs/resolver-binding-win32-ia32-msvc@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.9.0.tgz#46909cbeb9a38b3f31a64833fe03aa1aebb8da2b" - integrity sha512-Ceymm+iBl+bgAICtgiHyMLz6hjxmLJKqBim8tDzpX61wpZOx2bPK6Gjuor7I2RiUynVjvvkoRIkrPyMwzBzF3A== +"@unrs/resolver-binding-win32-ia32-msvc@1.9.2": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.9.2.tgz#aac6595c6de6b26e5314372ab977b0f6a869c903" + integrity sha512-JY9hi1p7AG+5c/dMU8o2kWemM8I6VZxfGwn1GCtf3c5i+IKcMo2NQ8OjZ4Z3/itvY/Si3K10jOBQn7qsD/whUA== -"@unrs/resolver-binding-win32-x64-msvc@1.9.0": - version "1.9.0" - resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.9.0.tgz#708b957d5d66543c45240b4c6b45ee63ed59b6b7" - integrity sha512-k59o9ZyeyS0hAlcaKFezYSH2agQeRFEB7KoQLXl3Nb3rgkqT1NY9Vwy+SqODiLmYnEjxWJVRE/yq2jFVqdIxZw== +"@unrs/resolver-binding-win32-x64-msvc@1.9.2": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.9.2.tgz#f755c5229f1401bbff7307d037c6e38fa169ad1d" + integrity sha512-ryoo+EB19lMxAd80ln9BVf8pdOAxLb97amrQ3SFN9OCRn/5M5wvwDgAe4i8ZjhpbiHoDeP8yavcTEnpKBo7lZg== "@vitest/expect@>1.6.0": - version "3.2.3" - resolved "https://registry.yarnpkg.com/@vitest/expect/-/expect-3.2.3.tgz#45be98d6036c6dedbbbc51abdeca3bbd1f12450d" - integrity sha512-W2RH2TPWVHA1o7UmaFKISPvdicFJH+mjykctJFoAkUw+SPTJTGjUNdKscFBrqM7IPnCVu6zihtKYa7TkZS1dkQ== + version "3.2.4" + resolved "https://registry.yarnpkg.com/@vitest/expect/-/expect-3.2.4.tgz#8362124cd811a5ee11c5768207b9df53d34f2433" + integrity sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig== dependencies: "@types/chai" "^5.2.2" - "@vitest/spy" "3.2.3" - "@vitest/utils" "3.2.3" + "@vitest/spy" "3.2.4" + "@vitest/utils" "3.2.4" chai "^5.2.0" tinyrainbow "^2.0.0" -"@vitest/pretty-format@3.2.3": - version "3.2.3" - resolved "https://registry.yarnpkg.com/@vitest/pretty-format/-/pretty-format-3.2.3.tgz#ddd30f689fdd8191dbfd0cce8ae769e5de6b7f23" - integrity sha512-yFglXGkr9hW/yEXngO+IKMhP0jxyFw2/qys/CK4fFUZnSltD+MU7dVYGrH8rvPcK/O6feXQA+EU33gjaBBbAng== +"@vitest/pretty-format@3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@vitest/pretty-format/-/pretty-format-3.2.4.tgz#3c102f79e82b204a26c7a5921bf47d534919d3b4" + integrity sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA== dependencies: tinyrainbow "^2.0.0" -"@vitest/spy@3.2.3": - version "3.2.3" - resolved "https://registry.yarnpkg.com/@vitest/spy/-/spy-3.2.3.tgz#c91715ca4db58a1f0dec636d393a76cf9945b695" - integrity sha512-JHu9Wl+7bf6FEejTCREy+DmgWe+rQKbK+y32C/k5f4TBIAlijhJbRBIRIOCEpVevgRsCQR2iHRUH2/qKVM/plw== +"@vitest/spy@3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@vitest/spy/-/spy-3.2.4.tgz#cc18f26f40f3f028da6620046881f4e4518c2599" + integrity sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw== dependencies: tinyspy "^4.0.3" -"@vitest/utils@3.2.3": - version "3.2.3" - resolved "https://registry.yarnpkg.com/@vitest/utils/-/utils-3.2.3.tgz#388afbed1fb3c25ca64c5846a9afb904e3d63bf2" - integrity sha512-4zFBCU5Pf+4Z6v+rwnZ1HU1yzOKKvDkMXZrymE2PBlbjKJRlrOxbvpfPSvJTGRIwGoahaOGvp+kbCoxifhzJ1Q== +"@vitest/utils@3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@vitest/utils/-/utils-3.2.4.tgz#c0813bc42d99527fb8c5b138c7a88516bca46fea" + integrity sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA== dependencies: - "@vitest/pretty-format" "3.2.3" - loupe "^3.1.3" + "@vitest/pretty-format" "3.2.4" + loupe "^3.1.4" tinyrainbow "^2.0.0" -"@vue/compiler-core@3.5.16": - version "3.5.16" - resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.16.tgz#2f95f4f17c16c09c57bbf64399075b921506630b" - integrity sha512-AOQS2eaQOaaZQoL1u+2rCJIKDruNXVBZSiUD3chnUrsoX5ZTQMaCvXlWNIfxBJuU15r1o7+mpo5223KVtIhAgQ== +"@vue/compiler-core@3.5.17": + version "3.5.17" + resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.5.17.tgz#23d291bd01b863da3ef2e26e7db84d8e01a9b4c5" + integrity sha512-Xe+AittLbAyV0pabcN7cP7/BenRBNcteM4aSDCtRvGw0d9OL+HG1u/XHLY/kt1q4fyMeZYXyIYrsHuPSiDPosA== dependencies: - "@babel/parser" "^7.27.2" - "@vue/shared" "3.5.16" + "@babel/parser" "^7.27.5" + "@vue/shared" "3.5.17" entities "^4.5.0" estree-walker "^2.0.2" source-map-js "^1.2.1" -"@vue/compiler-dom@3.5.16": - version "3.5.16" - resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.16.tgz#151d8390252975c0b1a773029220fdfcfaa2d743" - integrity sha512-SSJIhBr/teipXiXjmWOVWLnxjNGo65Oj/8wTEQz0nqwQeP75jWZ0n4sF24Zxoht1cuJoWopwj0J0exYwCJ0dCQ== +"@vue/compiler-dom@3.5.17": + version "3.5.17" + resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.5.17.tgz#7bc19a20e23b670243a64b47ce3a890239b870be" + integrity sha512-+2UgfLKoaNLhgfhV5Ihnk6wB4ljyW1/7wUIog2puUqajiC29Lp5R/IKDdkebh9jTbTogTbsgB+OY9cEWzG95JQ== dependencies: - "@vue/compiler-core" "3.5.16" - "@vue/shared" "3.5.16" + "@vue/compiler-core" "3.5.17" + "@vue/shared" "3.5.17" "@vue/compiler-sfc@^3.5.13": - version "3.5.16" - resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.16.tgz#577f7fd42a46fac8357ffed46e8fb34d32698419" - integrity sha512-rQR6VSFNpiinDy/DVUE0vHoIDUF++6p910cgcZoaAUm3POxgNOOdS/xgoll3rNdKYTYPnnbARDCZOyZ+QSe6Pw== + version "3.5.17" + resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.5.17.tgz#c518871276e26593612bdab36f3f5bcd053b13bf" + integrity sha512-rQQxbRJMgTqwRugtjw0cnyQv9cP4/4BxWfTdRBkqsTfLOHWykLzbOc3C4GGzAmdMDxhzU/1Ija5bTjMVrddqww== dependencies: - "@babel/parser" "^7.27.2" - "@vue/compiler-core" "3.5.16" - "@vue/compiler-dom" "3.5.16" - "@vue/compiler-ssr" "3.5.16" - "@vue/shared" "3.5.16" + "@babel/parser" "^7.27.5" + "@vue/compiler-core" "3.5.17" + "@vue/compiler-dom" "3.5.17" + "@vue/compiler-ssr" "3.5.17" + "@vue/shared" "3.5.17" estree-walker "^2.0.2" magic-string "^0.30.17" - postcss "^8.5.3" + postcss "^8.5.6" source-map-js "^1.2.1" -"@vue/compiler-ssr@3.5.16": - version "3.5.16" - resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.16.tgz#3b7874dff771ab2f85fb09be71f6c76a75fcc5ac" - integrity sha512-d2V7kfxbdsjrDSGlJE7my1ZzCXViEcqN6w14DOsDrUCHEA6vbnVCpRFfrc4ryCP/lCKzX2eS1YtnLE/BuC9f/A== +"@vue/compiler-ssr@3.5.17": + version "3.5.17" + resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.5.17.tgz#14ba3b7bba6e0e1fd02002316263165a5d1046c7" + integrity sha512-hkDbA0Q20ZzGgpj5uZjb9rBzQtIHLS78mMilwrlpWk2Ep37DYntUz0PonQ6kr113vfOEdM+zTBuJDaceNIW0tQ== dependencies: - "@vue/compiler-dom" "3.5.16" - "@vue/shared" "3.5.16" + "@vue/compiler-dom" "3.5.17" + "@vue/shared" "3.5.17" -"@vue/shared@3.5.16": - version "3.5.16" - resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.16.tgz#d5ea7671182742192938a4b4cbf86ef12bef7418" - integrity sha512-c/0fWy3Jw6Z8L9FmTyYfkpM5zklnqqa9+a6dz3DvONRKW2NEbh46BP0FHuLFSWi2TnQEtp91Z6zOWNrU6QiyPg== +"@vue/shared@3.5.17": + version "3.5.17" + resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.5.17.tgz#e8b3a41f0be76499882a89e8ed40d86a70fa4b70" + integrity sha512-CabR+UN630VnsJO/jHWYBC1YVXyMq94KKp6iF5MQgZJs5I8cmjw6oVMO1oDbtBkENSHSSn/UadWlW/OAgdmKrg== "@xmldom/xmldom@^0.9.8": version "0.9.8" @@ -6387,7 +5293,7 @@ abbrev@1: resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== -abbrev@^3.0.0: +abbrev@^3.0.0, abbrev@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-3.0.1.tgz#8ac8b3b5024d31464fe2a5feeea9f4536bf44025" integrity sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg== @@ -6441,14 +5347,6 @@ agent-base@^7.1.0, agent-base@^7.1.2: resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.3.tgz#29435eb821bc4194633a5b89e5bc4703bafc25a1" integrity sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw== -aggregate-error@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" - integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== - dependencies: - clean-stack "^2.0.0" - indent-string "^4.0.0" - ajv-draft-04@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz#3b64761b268ba0b9e668f0b41ba53fce0ad77fc8" @@ -6646,7 +5544,7 @@ array-ify@^1.0.0: resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" integrity sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng== -array-includes@^3.1.8: +array-includes@^3.1.9: version "3.1.9" resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.9.tgz#1f0ccaa08e90cdbc3eb433210f903ad0f17c3f3a" integrity sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ== @@ -6670,7 +5568,7 @@ array-union@^2.1.0: resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== -array.prototype.findlastindex@^1.2.5: +array.prototype.findlastindex@^1.2.6: version "1.2.6" resolved "https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz#cfa1065c81dcb64e34557c9b81d012f6a421c564" integrity sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ== @@ -6683,7 +5581,7 @@ array.prototype.findlastindex@^1.2.5: es-object-atoms "^1.1.1" es-shim-unscopables "^1.1.0" -array.prototype.flat@^1.3.2: +array.prototype.flat@^1.3.3: version "1.3.3" resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz#534aaf9e6e8dd79fb6b9a9917f839ef1ec63afe5" integrity sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg== @@ -6693,7 +5591,7 @@ array.prototype.flat@^1.3.2: es-abstract "^1.23.5" es-shim-unscopables "^1.0.2" -array.prototype.flatmap@^1.3.2: +array.prototype.flatmap@^1.3.3: version "1.3.3" resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz#712cc792ae70370ae40586264629e33aab5dd38b" integrity sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg== @@ -6792,12 +5690,12 @@ available-typed-arrays@^1.0.7: dependencies: possible-typed-array-names "^1.0.0" -aws-cdk-lib@^2.201.0: - version "2.201.0" - resolved "https://registry.yarnpkg.com/aws-cdk-lib/-/aws-cdk-lib-2.201.0.tgz#602e3195c11604c874c4d5885aaa950ea934cb0f" - integrity sha512-0ioqzM5dkJl02uchOfgeCY3thV3jTn9YkyZ/UF5P4Hq9iNGHQqmPu5xE/VcAV7+P72Z/zV+QLV0xkVT6iLF/bw== +aws-cdk-lib@^2.202.0: + version "2.202.0" + resolved "https://registry.yarnpkg.com/aws-cdk-lib/-/aws-cdk-lib-2.202.0.tgz#5cae32d08e6072cc49e6cb090471a1292efdd867" + integrity sha512-JDycQoE8AxUAeCFXFoCx6FGvR78e6W9zYxPgmfW/uPPbntyNCXXBqwyAYo17RGS/lr0RO3zqD/oCBZSNU2e/Yg== dependencies: - "@aws-cdk/asset-awscli-v1" "2.2.237" + "@aws-cdk/asset-awscli-v1" "2.2.240" "@aws-cdk/asset-node-proxy-agent-v6" "^2.1.0" "@aws-cdk/cloud-assembly-schema" "^44.2.0" "@balena/dockerignore" "^1.0.2" @@ -7069,12 +5967,12 @@ brotli-wasm@^3.0.0: integrity sha512-U3K72/JAi3jITpdhZBqzSUq+DUY697tLxOuFXB+FpAE/Ug+5C3VZrv4uA674EUZHxNAuQ9wETXNqQkxZD6oL4A== browserslist@^4.24.0: - version "4.25.0" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.25.0.tgz#986aa9c6d87916885da2b50d8eb577ac8d133b2c" - integrity sha512-PJ8gYKeS5e/whHBh8xrwYK+dAvEj7JXtz6uTucnMRB8OiGTsKccFekoRrjajPBHV8oOY+2tI4uxeceSimKwMFA== + version "4.25.1" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.25.1.tgz#ba9e8e6f298a1d86f829c9b975e07948967bb111" + integrity sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw== dependencies: - caniuse-lite "^1.0.30001718" - electron-to-chromium "^1.5.160" + caniuse-lite "^1.0.30001726" + electron-to-chromium "^1.5.173" node-releases "^2.0.19" update-browserslist-db "^1.1.3" @@ -7204,20 +6102,20 @@ camelcase@^6, camelcase@^6.2.0, camelcase@^6.3.0: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== -caniuse-lite@^1.0.30001718: - version "1.0.30001723" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001723.tgz#c4f3174f02089720736e1887eab345e09bb10944" - integrity sha512-1R/elMjtehrFejxwmexeXAtae5UO9iSyFn6G/I806CYC/BLyyBk1EPhrKBkWhy6wM6Xnm47dSJQec+tLJ39WHw== +caniuse-lite@^1.0.30001726: + version "1.0.30001726" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001726.tgz#a15bd87d5a4bf01f6b6f70ae7c97fdfd28b5ae47" + integrity sha512-VQAUIUzBiZ/UnlM28fSp2CRF3ivUn1BWEvxMcVTNwpw91Py1pGbPIyIKtd+tzct9C3ouceCVdGAXxZOpZAsgdw== case@1.6.3, case@^1.6.3: version "1.6.3" resolved "https://registry.yarnpkg.com/case/-/case-1.6.3.tgz#0a4386e3e9825351ca2e6216c60467ff5f1ea1c9" integrity sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ== -cdk-from-cfn@^0.222.0: - version "0.222.0" - resolved "https://registry.yarnpkg.com/cdk-from-cfn/-/cdk-from-cfn-0.222.0.tgz#ceb56684473da6596cdfc09b7d9c45a6e2f1ad05" - integrity sha512-SMI2z2xZMYFkfMAoVy/e4McCTkmjuIvP4hv3T0O0xMabvnpb+gS6m8zq5ZXwI69zLfTVuy6KxLIK2yEb7FyB/A== +cdk-from-cfn@^0.226.0: + version "0.226.0" + resolved "https://registry.yarnpkg.com/cdk-from-cfn/-/cdk-from-cfn-0.226.0.tgz#392ab5eb2937b1cd0bafd4e81826cc52ce9e66db" + integrity sha512-FZQYea4pSVhy+DChWQMlUV9MUOzOGHpd2zmYKImPJ82w6kwjFQWVlpGPkmm3SXHp+z+fOGcjoh/QII1hdd+cnQ== cdklabs-projen-project-types@^0.3.1: version "0.3.1" @@ -7254,7 +6152,7 @@ chalk@^4, chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^5.3.0: +chalk@^5.4.1: version "5.4.1" resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.4.1.tgz#1b48bf0963ec158dce2aacf69c093ae2dd2092d8" integrity sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w== @@ -7299,7 +6197,7 @@ ci-info@^3.2.0: resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== -ci-info@^4.0.0, ci-info@^4.1.0, ci-info@^4.2.0: +ci-info@^4.0.0, ci-info@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-4.2.0.tgz#cbd21386152ebfe1d56f280a3b5feccbd96764c7" integrity sha512-cYY9mypksY8NRqgDB1XD1RiJL338v/551niynFTGkZOO2LHuB2OmOYxDIe/ttN9AHwrqdum1360G3ald0W9kCg== @@ -7321,11 +6219,6 @@ cjs-module-lexer@^2.1.0: resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-2.1.0.tgz#586e87d4341cb2661850ece5190232ccdebcff8b" integrity sha512-UX0OwmYRYQQetfrLEZeewIFFI+wSTofC+pMBLNuH3RUuu/xzG1oz84UCEDOSoQlN3fZ4+AzmV50ZYvGqkMh9yA== -clean-stack@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" - integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== - cli-columns@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/cli-columns/-/cli-columns-4.0.0.tgz#9fe4d65975238d55218c41bd2ed296a7fa555646" @@ -7817,9 +6710,9 @@ cssesc@^3.0.0: integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== cssstyle@^4.1.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-4.4.0.tgz#a185e81564a6047693586d904d278cbe8565ba07" - integrity sha512-W0Y2HOXlPkb2yaKrCVRjinYKciu/qSLEmK0K9mcfDei3zwlnHFEHAs/Du3cIRwPqY+J4JsiBzUjoHyc8RsJ03A== + version "4.6.0" + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-4.6.0.tgz#ea18007024e3167f4f105315f3ec2d982bf48ed9" + integrity sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg== dependencies: "@asamuzakjp/css-color" "^3.2.0" rrweb-cssom "^0.8.0" @@ -8003,14 +6896,14 @@ depd@2.0.0: integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== dependency-tree@^11.0.0: - version "11.1.1" - resolved "https://registry.yarnpkg.com/dependency-tree/-/dependency-tree-11.1.1.tgz#5ab5fbb223fb32a9b03ed40952eb04bf09929ad6" - integrity sha512-pnkCd8VGOq70EVaEQxDC9mZCjCwYj4yG4j8h+PEJswuWp+rdE6p8zbtVvWk+yPwaVimOjlhNi782U9K5KOU9MQ== + version "11.2.0" + resolved "https://registry.yarnpkg.com/dependency-tree/-/dependency-tree-11.2.0.tgz#ae764155b2903267181def4b20be49b1fd76da5e" + integrity sha512-+C1H3mXhcvMCeu5i2Jpg9dc0N29TWTuT6vJD7mHLAfVmAbo9zW8NlkvQ1tYd3PDMab0IRQM0ccoyX68EZtx9xw== dependencies: commander "^12.1.0" filing-cabinet "^5.0.3" precinct "^12.2.0" - typescript "^5.7.3" + typescript "^5.8.3" dependency-tree@^8.1.1: version "8.1.2" @@ -8277,9 +7170,9 @@ dotenv-expand@~11.0.6: dotenv "^16.4.5" dotenv@^16.4.5: - version "16.5.0" - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.5.0.tgz#092b49f25f808f020050051d1ff258e404c78692" - integrity sha512-m/C+AwOAr9/W1UOIZUo232ejMNnJAJtYQjUbHoNTBNTJSvqzzDh7vnrei3o3r3m9blf6ZoDkvcw0VmozNRFJxg== + version "16.6.1" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.6.1.tgz#773f0e69527a8315c7285d5ee73c4459d20a8020" + integrity sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow== dotenv@~16.4.5: version "16.4.7" @@ -8330,10 +7223,10 @@ ejs@^3.1.10: dependencies: jake "^10.8.5" -electron-to-chromium@^1.5.160: - version "1.5.167" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.167.tgz#dab251d7161985306c54d9df2b7c1e651589a4d2" - integrity sha512-LxcRvnYO5ez2bMOFpbuuVuAI5QNeY1ncVytE/KXaL6ZNfzX1yPlAO0nSOyIHx2fVAuUprMqPs/TdVhUFZy7SIQ== +electron-to-chromium@^1.5.173: + version "1.5.177" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.177.tgz#db730d8254959184e65320a3a0b7edcd29c54f60" + integrity sha512-7EH2G59nLsEMj97fpDuvVcYi6lwTcM1xuWw3PssD8xzboAW7zj7iB3COEEEATUfjLHrs5uKBLQT03V/8URx06g== emittery@^0.13.1: version "0.13.1" @@ -8368,16 +7261,16 @@ encoding@^0.1.13: iconv-lite "^0.6.2" end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: - version "1.4.4" - resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" - integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== + version "1.4.5" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.5.tgz#7344d711dea40e0b74abc2ed49778743ccedb08c" + integrity sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg== dependencies: once "^1.4.0" enhanced-resolve@^5.18.0, enhanced-resolve@^5.8.3: - version "5.18.1" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz#728ab082f8b7b6836de51f1637aab5d3b9568faf" - integrity sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg== + version "5.18.2" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.18.2.tgz#7903c5b32ffd4b2143eeb4b92472bd68effd5464" + integrity sha512-6Jw4sE1maoRJo3q8MsSIn2onJFbLTOjY9hlx4DZXmOKvLRd1Ok2kXmAGXaafL2+ijsJZ1ClYbl/pmqr9+k4iUQ== dependencies: graceful-fs "^4.2.4" tapable "^2.2.0" @@ -8602,12 +7495,12 @@ eslint-config-prettier@^9.1.0: integrity sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw== eslint-import-context@^0.1.8: - version "0.1.8" - resolved "https://registry.yarnpkg.com/eslint-import-context/-/eslint-import-context-0.1.8.tgz#4098b659f4c1a3b3cc3bc896c3baee7907ca636d" - integrity sha512-bq+F7nyc65sKpZGT09dY0S0QrOnQtuDVIfyTGQ8uuvtMIF7oHp6CEP3mouN0rrnYF3Jqo6Ke0BfU/5wASZue1w== + version "0.1.9" + resolved "https://registry.yarnpkg.com/eslint-import-context/-/eslint-import-context-0.1.9.tgz#967b0b2f0a90ef4b689125e088f790f0b7756dbe" + integrity sha512-K9Hb+yRaGAGUbwjhFNHvSmmkZs9+zbuoe3kFQ4V1wYjrepUFYM2dZAfNtjbbj3qsPfUfsA68Bx/ICWQMi+C8Eg== dependencies: get-tsconfig "^4.10.1" - stable-hash-x "^0.1.1" + stable-hash-x "^0.2.0" eslint-import-resolver-node@^0.3.9: version "0.3.9" @@ -8631,52 +7524,52 @@ eslint-import-resolver-typescript@^3.10.1: tinyglobby "^0.2.13" unrs-resolver "^1.6.2" -eslint-import-resolver-typescript@^4.4.3: - version "4.4.3" - resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-4.4.3.tgz#7fdd06f8fd7cdb05656980e3fe9d2c246365b2a2" - integrity sha512-elVDn1eWKFrWlzxlWl9xMt8LltjKl161Ix50JFC50tHXI5/TRP32SNEqlJ/bo/HV+g7Rou/tlPQU2AcRtIhrOg== +eslint-import-resolver-typescript@^4.4.4: + version "4.4.4" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-4.4.4.tgz#3e83a9c25f4a053fe20e1b07b47e04e8519a8720" + integrity sha512-1iM2zeBvrYmUNTj2vSC/90JTHDth+dfOfiNKkxApWRsTJYNrc8rOdxxIf5vazX+BiAXTeOT0UvWpGI/7qIWQOw== dependencies: debug "^4.4.1" eslint-import-context "^0.1.8" get-tsconfig "^4.10.1" is-bun-module "^2.0.0" - stable-hash-x "^0.1.1" + stable-hash-x "^0.2.0" tinyglobby "^0.2.14" unrs-resolver "^1.7.11" -eslint-module-utils@^2.12.0: - version "2.12.0" - resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz#fe4cfb948d61f49203d7b08871982b65b9af0b0b" - integrity sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg== +eslint-module-utils@^2.12.1: + version "2.12.1" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.12.1.tgz#f76d3220bfb83c057651359295ab5854eaad75ff" + integrity sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw== dependencies: debug "^3.2.7" -eslint-plugin-import@^2.31.0: - version "2.31.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.31.0.tgz#310ce7e720ca1d9c0bb3f69adfd1c6bdd7d9e0e7" - integrity sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A== +eslint-plugin-import@^2.32.0: + version "2.32.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz#602b55faa6e4caeaa5e970c198b5c00a37708980" + integrity sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA== dependencies: "@rtsao/scc" "^1.1.0" - array-includes "^3.1.8" - array.prototype.findlastindex "^1.2.5" - array.prototype.flat "^1.3.2" - array.prototype.flatmap "^1.3.2" + array-includes "^3.1.9" + array.prototype.findlastindex "^1.2.6" + array.prototype.flat "^1.3.3" + array.prototype.flatmap "^1.3.3" debug "^3.2.7" doctrine "^2.1.0" eslint-import-resolver-node "^0.3.9" - eslint-module-utils "^2.12.0" + eslint-module-utils "^2.12.1" hasown "^2.0.2" - is-core-module "^2.15.1" + is-core-module "^2.16.1" is-glob "^4.0.3" minimatch "^3.1.2" object.fromentries "^2.0.8" object.groupby "^1.0.3" - object.values "^1.2.0" + object.values "^1.2.1" semver "^6.3.1" - string.prototype.trimend "^1.0.8" + string.prototype.trimend "^1.0.9" tsconfig-paths "^3.15.0" -eslint-plugin-jest@^28.13.5, eslint-plugin-jest@^28.14.0: +eslint-plugin-jest@^28.14.0: version "28.14.0" resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-28.14.0.tgz#02da77dc27d7b4c5480df3552ea26de056857b36" integrity sha512-P9s/qXSMTpRTerE2FQ0qJet2gKbcGyFTPAJipoKxmWqR6uuFqIqk8FuEfg5yBieOezVrEfAMZrEwJ6yEp+1MFQ== @@ -8699,10 +7592,10 @@ eslint-plugin-jsdoc@^50.8.0: semver "^7.7.2" spdx-expression-parse "^4.0.0" -eslint-plugin-jsdoc@^51.0.1: - version "51.2.3" - resolved "https://registry.yarnpkg.com/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-51.2.3.tgz#59b373c53458ef64700d57985a9622cf7021b0d2" - integrity sha512-pagzxFubOih+O6XSB1D8BkDkJjF4G4/v8s9pRg4FkXQJLu0e3QJg621ayhmnhyc5mNBpp3cYCNiUyeLQs7oz7w== +eslint-plugin-jsdoc@^51.2.3: + version "51.3.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-51.3.0.tgz#d75c3f5685214908ceb97bc49a14cbc5cd85fdaf" + integrity sha512-XGXFzg+lwoZnhkIRKBS8Fl8Y3Sx3VAhX8jABaYsM/Ympz7pqKiI6gFgBIwqfK1Un3ADdCYNY/pceYDfQydelnw== dependencies: "@es-joy/jsdoccomment" "~0.52.0" are-docs-informative "^0.0.2" @@ -8715,10 +7608,10 @@ eslint-plugin-jsdoc@^51.0.1: semver "^7.7.2" spdx-expression-parse "^4.0.0" -eslint-plugin-prettier@^5.4.1: - version "5.4.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.4.1.tgz#99b55d7dd70047886b2222fdd853665f180b36af" - integrity sha512-9dF+KuU/Ilkq27A8idRP7N2DH8iUR6qXcjF3FR2wETY21PZdBrIjwCau8oboyGj9b7etWmTGEeM8e7oOed6ZWg== +eslint-plugin-prettier@^5.5.1: + version "5.5.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.5.1.tgz#470820964de9aedb37e9ce62c3266d2d26d08d15" + integrity sha512-dobTkHT6XaEVOo8IO90Q4DOSxnm3Y151QxPJlM/vKC0bVy+d6cVWQZLlFiuZPP0wS6vZwSKeJgKkcS+KfMBlRw== dependencies: prettier-linter-helpers "^1.0.0" synckit "^0.11.7" @@ -8747,17 +7640,17 @@ eslint-visitor-keys@^4.2.0, eslint-visitor-keys@^4.2.1: integrity sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ== eslint@^9: - version "9.29.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-9.29.0.tgz#65e3db3b7e5a5b04a8af541741a0f3648d0a81a6" - integrity sha512-GsGizj2Y1rCWDu6XoEekL3RLilp0voSePurjZIkxL3wlm5o5EC9VpgaP7lrCvjnkuLvzFBQWB3vWB3K5KQTveQ== + version "9.30.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-9.30.0.tgz#fb0c655f5e28fc1b2f4050c28efa1876d78034fc" + integrity sha512-iN/SiPxmQu6EVkf+m1qpBxzUhE12YqFLOSySuOyVLJLEF9nzTf+h/1AJYc1JWzCnktggeNrjvQGLngDzXirU6g== dependencies: "@eslint-community/eslint-utils" "^4.2.0" "@eslint-community/regexpp" "^4.12.1" - "@eslint/config-array" "^0.20.1" - "@eslint/config-helpers" "^0.2.1" + "@eslint/config-array" "^0.21.0" + "@eslint/config-helpers" "^0.3.0" "@eslint/core" "^0.14.0" "@eslint/eslintrc" "^3.3.1" - "@eslint/js" "9.29.0" + "@eslint/js" "9.30.0" "@eslint/plugin-kit" "^0.3.1" "@humanfs/node" "^0.16.6" "@humanwhocodes/module-importer" "^1.0.1" @@ -8893,30 +7786,18 @@ exit@^0.1.2: resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== -expect@30.0.2: - version "30.0.2" - resolved "https://registry.yarnpkg.com/expect/-/expect-30.0.2.tgz#d073942c19d54cb7bc42c9b2a434d850433a7def" - integrity sha512-YN9Mgv2mtTWXVmifQq3QT+ixCL/uLuLJw+fdp8MOjKqu8K3XQh3o5aulMM1tn+O2DdrWNxLZTeJsCY/VofUA0A== +expect@30.0.3, expect@>28.1.3, expect@^30.0.0: + version "30.0.3" + resolved "https://registry.yarnpkg.com/expect/-/expect-30.0.3.tgz#8bf31a67514f78c5e4ac8d67774192ab95d5ec25" + integrity sha512-HXg6NvK35/cSYZCUKAtmlgCFyqKM4frEPbzrav5hRqb0GMz0E0lS5hfzYjSaiaE5ysnp/qI2aeZkeyeIAOeXzQ== dependencies: - "@jest/expect-utils" "30.0.2" + "@jest/expect-utils" "30.0.3" "@jest/get-type" "30.0.1" - jest-matcher-utils "30.0.2" + jest-matcher-utils "30.0.3" jest-message-util "30.0.2" jest-mock "30.0.2" jest-util "30.0.2" -expect@>28.1.3: - version "30.0.0" - resolved "https://registry.yarnpkg.com/expect/-/expect-30.0.0.tgz#460dfda282e0a8de8302aabee951dba7e79a5a53" - integrity sha512-xCdPp6gwiR9q9lsPCHANarIkFTN/IMZso6Kkq03sOm9IIGtzK/UJqml0dkhHibGh8HKOj8BIDIpZ0BZuU7QK6w== - dependencies: - "@jest/expect-utils" "30.0.0" - "@jest/get-type" "30.0.0" - jest-matcher-utils "30.0.0" - jest-message-util "30.0.0" - jest-mock "30.0.0" - jest-util "30.0.0" - expect@^29.0.0, expect@^29.7.0: version "29.7.0" resolved "https://registry.yarnpkg.com/expect/-/expect-29.7.0.tgz#578874590dcb3214514084c08115d8aee61e11bc" @@ -9546,7 +8427,7 @@ glob@^7, glob@^7.1.1, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@^7.1.7, glob@^ once "^1.3.0" path-is-absolute "^1.0.0" -glob@^8, glob@^8.1.0: +glob@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e" integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ== @@ -9722,7 +8603,7 @@ hosted-git-info@^4.0.0, hosted-git-info@^4.0.1: dependencies: lru-cache "^6.0.0" -hosted-git-info@^8.0.0, hosted-git-info@^8.0.2: +hosted-git-info@^8.0.0, hosted-git-info@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-8.1.0.tgz#153cd84c03c6721481e16a5709eb74b1a0ab2ed0" integrity sha512-Rw/B2DNQaPBICNXEm8balFz9a6WpZrkCGpcWFpy7nCj+NyhSdqXipmfvtmWt9xGfp0wZnBxB+iVpLmQMYt47Tw== @@ -10012,14 +8893,14 @@ is-callable@^1.2.7: resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== -is-cidr@^5.1.0: +is-cidr@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/is-cidr/-/is-cidr-5.1.1.tgz#83ec462922c2b9209bc64794c4e3b2a890d23994" integrity sha512-AwzRMjtJNTPOgm7xuYZ71715z99t+4yRnSnSzgK5err5+heYi4zMuvmpUadaJ28+KCXCQo8CjUrKQZRWSPmqTQ== dependencies: cidr-regex "^4.1.1" -is-core-module@^2.13.0, is-core-module@^2.15.1, is-core-module@^2.16.0, is-core-module@^2.5.0: +is-core-module@^2.13.0, is-core-module@^2.16.0, is-core-module@^2.16.1, is-core-module@^2.5.0: version "2.16.1" resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.16.1.tgz#2a98801a849f43e2add644fbb6bc6229b19a4ef4" integrity sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w== @@ -10391,13 +9272,13 @@ jest-changed-files@^29.7.0: jest-util "^29.7.0" p-limit "^3.1.0" -jest-circus@30.0.2: - version "30.0.2" - resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-30.0.2.tgz#a00a408d5d32d2b547f20f9e84a487d236ed8ee1" - integrity sha512-NRozwx4DaFHcCUtwdEd/0jBLL1imyMrCbla3vF//wdsB2g6jIicMbjx9VhqE/BYU4dwsOQld+06ODX0oZ9xOLg== +jest-circus@30.0.3: + version "30.0.3" + resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-30.0.3.tgz#d2de4adb92cfdbce18668e27176c1b9f79afdf5a" + integrity sha512-rD9qq2V28OASJHJWDRVdhoBdRs6k3u3EmBzDYcyuMby8XCO3Ll1uq9kyqM41ZcC4fMiPulMVh3qMw0cBvDbnyg== dependencies: "@jest/environment" "30.0.2" - "@jest/expect" "30.0.2" + "@jest/expect" "30.0.3" "@jest/test-result" "30.0.2" "@jest/types" "30.0.1" "@types/node" "*" @@ -10406,10 +9287,10 @@ jest-circus@30.0.2: dedent "^1.6.0" is-generator-fn "^2.1.0" jest-each "30.0.2" - jest-matcher-utils "30.0.2" + jest-matcher-utils "30.0.3" jest-message-util "30.0.2" - jest-runtime "30.0.2" - jest-snapshot "30.0.2" + jest-runtime "30.0.3" + jest-snapshot "30.0.3" jest-util "30.0.2" p-limit "^3.1.0" pretty-format "30.0.2" @@ -10443,18 +9324,18 @@ jest-circus@^29.7.0: slash "^3.0.0" stack-utils "^2.0.3" -jest-cli@30.0.2: - version "30.0.2" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-30.0.2.tgz#cf8ad8a1157721c3a1dc3a371565f6b7f5e6b549" - integrity sha512-yQ6Qz747oUbMYLNAqOlEby+hwXx7WEJtCl0iolBRpJhr2uvkBgiVMrvuKirBc8utwQBnkETFlDUkYifbRpmBrQ== +jest-cli@30.0.3: + version "30.0.3" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-30.0.3.tgz#2340b69c580c471fd9f4a197f969025a545608dd" + integrity sha512-UWDSj0ayhumEAxpYRlqQLrssEi29kdQ+kddP94AuHhZknrE+mT0cR0J+zMHKFe9XPfX3dKQOc2TfWki3WhFTsA== dependencies: - "@jest/core" "30.0.2" + "@jest/core" "30.0.3" "@jest/test-result" "30.0.2" "@jest/types" "30.0.1" chalk "^4.1.2" exit-x "^0.2.2" import-local "^3.2.0" - jest-config "30.0.2" + jest-config "30.0.3" jest-util "30.0.2" jest-validate "30.0.2" yargs "^17.7.2" @@ -10476,10 +9357,10 @@ jest-cli@^29.7.0: jest-validate "^29.7.0" yargs "^17.3.1" -jest-config@30.0.2: - version "30.0.2" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-30.0.2.tgz#a4884ba3b4d31fb0599b0b78e7a0204efb126f9d" - integrity sha512-vo0fVq+uzDcXETFVnCUyr5HaUCM8ES6DEuS9AFpma34BVXMRRNlsqDyiW5RDHaEFoeFlJHoI4Xjh/WSYIAL58g== +jest-config@30.0.3: + version "30.0.3" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-30.0.3.tgz#978853722b9b0f2d0596025ea423cc6c7b603c07" + integrity sha512-j0L4oRCtJwNyZktXIqwzEiDVQXBbQ4dqXuLD/TZdn++hXIcIfZmjHgrViEy5s/+j4HvITmAXbexVZpQ/jnr0bg== dependencies: "@babel/core" "^7.27.4" "@jest/get-type" "30.0.1" @@ -10492,12 +9373,12 @@ jest-config@30.0.2: deepmerge "^4.3.1" glob "^10.3.10" graceful-fs "^4.2.11" - jest-circus "30.0.2" + jest-circus "30.0.3" jest-docblock "30.0.1" jest-environment-node "30.0.2" jest-regex-util "30.0.1" jest-resolve "30.0.2" - jest-runner "30.0.2" + jest-runner "30.0.3" jest-util "30.0.2" jest-validate "30.0.2" micromatch "^4.0.8" @@ -10534,20 +9415,10 @@ jest-config@^29.7.0: slash "^3.0.0" strip-json-comments "^3.1.1" -jest-diff@30.0.0: - version "30.0.0" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-30.0.0.tgz#d3d4f75e257e3c2cb8729438fe9cec66098f6176" - integrity sha512-TgT1+KipV8JTLXXeFX0qSvIJR/UXiNNojjxb/awh3vYlBZyChU/NEmyKmq+wijKjWEztyrGJFL790nqMqNjTHA== - dependencies: - "@jest/diff-sequences" "30.0.0" - "@jest/get-type" "30.0.0" - chalk "^4.1.2" - pretty-format "30.0.0" - -jest-diff@30.0.2: - version "30.0.2" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-30.0.2.tgz#db77e7ca48a964337c0a4259d5e389c0bb124d7e" - integrity sha512-2UjrNvDJDn/oHFpPrUTVmvYYDNeNtw2DlY3er8bI6vJJb9Fb35ycp/jFLd5RdV59tJ8ekVXX3o/nwPcscgXZJQ== +jest-diff@30.0.3: + version "30.0.3" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-30.0.3.tgz#50ac056b90fe9151d6266b18a27adeb064c30235" + integrity sha512-Q1TAV0cUcBTic57SVnk/mug0/ASyAqtSIOkr7RAlxx97llRYsM74+E8N5WdGJUlwCKwgxPAkVjKh653h1+HA9A== dependencies: "@jest/diff-sequences" "30.0.1" "@jest/get-type" "30.0.1" @@ -10703,24 +9574,14 @@ jest-leak-detector@^29.7.0: jest-get-type "^29.6.3" pretty-format "^29.7.0" -jest-matcher-utils@30.0.0: - version "30.0.0" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-30.0.0.tgz#f72a65e248c0462795f7e14386682bfee6ad4386" - integrity sha512-m5mrunqopkrqwG1mMdJxe1J4uGmS9AHHKYUmoxeQOxBcLjEvirIrIDwuKmUYrecPHVB/PUBpXs2gPoeA2FSSLQ== - dependencies: - "@jest/get-type" "30.0.0" - chalk "^4.1.2" - jest-diff "30.0.0" - pretty-format "30.0.0" - -jest-matcher-utils@30.0.2: - version "30.0.2" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-30.0.2.tgz#2dbb5f9aacfdd9c013fa72ed6132ca4e1b41f8db" - integrity sha512-1FKwgJYECR8IT93KMKmjKHSLyru0DqguThov/aWpFccC0wbiXGOxYEu7SScderBD7ruDOpl7lc5NG6w3oxKfaA== +jest-matcher-utils@30.0.3: + version "30.0.3" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-30.0.3.tgz#e07e4776bade71a3a7948a9bf8aeede311c5013a" + integrity sha512-hMpVFGFOhYmIIRGJ0HgM9htC5qUiJ00famcc9sRFchJJiLZbbVKrAztcgE6VnXLRxA3XZ0bvNA7hQWh3oHXo/A== dependencies: "@jest/get-type" "30.0.1" chalk "^4.1.2" - jest-diff "30.0.2" + jest-diff "30.0.3" pretty-format "30.0.2" jest-matcher-utils@^29.7.0: @@ -10733,21 +9594,6 @@ jest-matcher-utils@^29.7.0: jest-get-type "^29.6.3" pretty-format "^29.7.0" -jest-message-util@30.0.0: - version "30.0.0" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-30.0.0.tgz#b115d408cd877a6e3e711485a3bd240c7a27503c" - integrity sha512-pV3qcrb4utEsa/U7UI2VayNzSDQcmCllBZLSoIucrESRu0geKThFZOjjh0kACDJFJRAQwsK7GVsmS6SpEceD8w== - dependencies: - "@babel/code-frame" "^7.27.1" - "@jest/types" "30.0.0" - "@types/stack-utils" "^2.0.3" - chalk "^4.1.2" - graceful-fs "^4.2.11" - micromatch "^4.0.8" - pretty-format "30.0.0" - slash "^3.0.0" - stack-utils "^2.0.6" - jest-message-util@30.0.2: version "30.0.2" resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-30.0.2.tgz#9dfdc37570d172f0ffdc42a0318036ff4008837f" @@ -10778,15 +9624,6 @@ jest-message-util@^29.7.0: slash "^3.0.0" stack-utils "^2.0.3" -jest-mock@30.0.0: - version "30.0.0" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-30.0.0.tgz#f3b3115cd80c3eec7df93809430ab1feaeeb7229" - integrity sha512-W2sRA4ALXILrEetEOh2ooZG6fZ01iwVs0OWMKSSWRcUlaLr4ESHuiKXDNTg+ZVgOq8Ei5445i/Yxrv59VT+XkA== - dependencies: - "@jest/types" "30.0.0" - "@types/node" "*" - jest-util "30.0.0" - jest-mock@30.0.2: version "30.0.2" resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-30.0.2.tgz#5e4245f25f6f9532714906cab10a2b9e39eb2183" @@ -10810,11 +9647,6 @@ jest-pnp-resolver@^1.2.2, jest-pnp-resolver@^1.2.3: resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz#930b1546164d4ad5937d5540e711d4d38d4cad2e" integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== -jest-regex-util@30.0.0: - version "30.0.0" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-30.0.0.tgz#031f385ebb947e770e409ede703d200b3405413e" - integrity sha512-rT84010qRu/5OOU7a9TeidC2Tp3Qgt9Sty4pOZ/VSDuEmRupIjKZAb53gU3jr4ooMlhwScrgC9UixJxWzVu9oQ== - jest-regex-util@30.0.1: version "30.0.1" resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-30.0.1.tgz#f17c1de3958b67dfe485354f5a10093298f2a49b" @@ -10825,13 +9657,13 @@ jest-regex-util@^29.6.3: resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.6.3.tgz#4a556d9c776af68e1c5f48194f4d0327d24e8a52" integrity sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg== -jest-resolve-dependencies@30.0.2: - version "30.0.2" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-30.0.2.tgz#0c5da8dc5f791f3de10c1d5df294503cd612e5a6" - integrity sha512-Lp1iIXpsF5fGM4vyP8xHiIy2H5L5yO67/nXoYJzH4kz+fQmO+ZMKxzYLyWxYy4EeCLeNQ6a9OozL+uHZV2iuEA== +jest-resolve-dependencies@30.0.3: + version "30.0.3" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-30.0.3.tgz#8278f54a84009028b823f5c1f7033fb968405b2f" + integrity sha512-FlL6u7LiHbF0Oe27k7DHYMq2T2aNpPhxnNo75F7lEtu4A6sSw+TKkNNUGNcVckdFoL0RCWREJsC1HsKDwKRZzQ== dependencies: jest-regex-util "30.0.1" - jest-snapshot "30.0.2" + jest-snapshot "30.0.3" jest-resolve-dependencies@^29.7.0: version "29.7.0" @@ -10870,10 +9702,10 @@ jest-resolve@^29.7.0: resolve.exports "^2.0.0" slash "^3.0.0" -jest-runner@30.0.2: - version "30.0.2" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-30.0.2.tgz#28022ea290e2759864ae97cb5307bcae98e68f2d" - integrity sha512-6H+CIFiDLVt1Ix6jLzASXz3IoIiDukpEIxL9FHtDQ2BD/k5eFtDF5e5N9uItzRE3V1kp7VoSRyrGBytXKra4xA== +jest-runner@30.0.3: + version "30.0.3" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-30.0.3.tgz#baa1d5e77655c70cea9aa4138cfb437f6bada607" + integrity sha512-CxYBzu9WStOBBXAKkLXGoUtNOWsiS1RRmUQb6SsdUdTcqVncOau7m8AJ4cW3Mz+YL1O9pOGPSYLyvl8HBdFmkQ== dependencies: "@jest/console" "30.0.2" "@jest/environment" "30.0.2" @@ -10891,7 +9723,7 @@ jest-runner@30.0.2: jest-leak-detector "30.0.2" jest-message-util "30.0.2" jest-resolve "30.0.2" - jest-runtime "30.0.2" + jest-runtime "30.0.3" jest-util "30.0.2" jest-watcher "30.0.2" jest-worker "30.0.2" @@ -10925,14 +9757,14 @@ jest-runner@^29.7.0: p-limit "^3.1.0" source-map-support "0.5.13" -jest-runtime@30.0.2: - version "30.0.2" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-30.0.2.tgz#db5b4723ebdb8c2158779c055976cb6cc22ce1df" - integrity sha512-H1a51/soNOeAjoggu6PZKTH7DFt8JEGN4mesTSwyqD2jU9PXD04Bp6DKbt2YVtQvh2JcvH2vjbkEerCZ3lRn7A== +jest-runtime@30.0.3: + version "30.0.3" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-30.0.3.tgz#1eb112924426e8b90c37f0ea7da1b51966e252bf" + integrity sha512-Xjosq0C48G9XEQOtmgrjXJwPaUPaq3sPJwHDRaiC+5wi4ZWxO6Lx6jNkizK/0JmTulVNuxP8iYwt77LGnfg3/w== dependencies: "@jest/environment" "30.0.2" "@jest/fake-timers" "30.0.2" - "@jest/globals" "30.0.2" + "@jest/globals" "30.0.3" "@jest/source-map" "30.0.1" "@jest/test-result" "30.0.2" "@jest/transform" "30.0.2" @@ -10948,7 +9780,7 @@ jest-runtime@30.0.2: jest-mock "30.0.2" jest-regex-util "30.0.1" jest-resolve "30.0.2" - jest-snapshot "30.0.2" + jest-snapshot "30.0.3" jest-util "30.0.2" slash "^3.0.0" strip-bom "^4.0.0" @@ -10981,27 +9813,27 @@ jest-runtime@^29.7.0: slash "^3.0.0" strip-bom "^4.0.0" -jest-snapshot@30.0.2: - version "30.0.2" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-30.0.2.tgz#0f9f2c59c2070874a2db96d30c8543dfef657701" - integrity sha512-KeoHikoKGln3OlN7NS7raJ244nIVr2K46fBTNdfuxqYv2/g4TVyWDSO4fmk08YBJQMjs3HNfG1rlLfL/KA+nUw== +jest-snapshot@30.0.3: + version "30.0.3" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-30.0.3.tgz#f605254223eee0946d205c6e7ede7238e87be920" + integrity sha512-F05JCohd3OA1N9+5aEPXA6I0qOfZDGIx0zTq5Z4yMBg2i1p5ELfBusjYAWwTkC12c7dHcbyth4QAfQbS7cRjow== dependencies: "@babel/core" "^7.27.4" "@babel/generator" "^7.27.5" "@babel/plugin-syntax-jsx" "^7.27.1" "@babel/plugin-syntax-typescript" "^7.27.1" "@babel/types" "^7.27.3" - "@jest/expect-utils" "30.0.2" + "@jest/expect-utils" "30.0.3" "@jest/get-type" "30.0.1" "@jest/snapshot-utils" "30.0.1" "@jest/transform" "30.0.2" "@jest/types" "30.0.1" babel-preset-current-node-syntax "^1.1.0" chalk "^4.1.2" - expect "30.0.2" + expect "30.0.3" graceful-fs "^4.2.11" - jest-diff "30.0.2" - jest-matcher-utils "30.0.2" + jest-diff "30.0.3" + jest-matcher-utils "30.0.3" jest-message-util "30.0.2" jest-util "30.0.2" pretty-format "30.0.2" @@ -11034,18 +9866,6 @@ jest-snapshot@^29.7.0: pretty-format "^29.7.0" semver "^7.5.3" -jest-util@30.0.0: - version "30.0.0" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-30.0.0.tgz#d4f20f59e1fd72c7143143f4aa961bb71aeddad0" - integrity sha512-fhNBBM9uSUbd4Lzsf8l/kcAdaHD/4SgoI48en3HXcBEMwKwoleKFMZ6cYEYs21SB779PRuRCyNLmymApAm8tZw== - dependencies: - "@jest/types" "30.0.0" - "@types/node" "*" - chalk "^4.1.2" - ci-info "^4.2.0" - graceful-fs "^4.2.11" - picomatch "^4.0.2" - jest-util@30.0.2: version "30.0.2" resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-30.0.2.tgz#1bd8411f81e6f5e2ca8b31bb2534ebcd7cbac065" @@ -11158,15 +9978,15 @@ jest@^29, jest@^29.7.0: import-local "^3.0.2" jest-cli "^29.7.0" -jest@^30.0.0: - version "30.0.2" - resolved "https://registry.yarnpkg.com/jest/-/jest-30.0.2.tgz#0b3af654548d706bdde6f1bba93099ec343b8772" - integrity sha512-HlSEiHRcmTuGwNyeawLTEzpQUMFn+f741FfoNg7RXG2h0WLJKozVCpcQLT0GW17H6kNCqRwGf+Ii/I1YVNvEGQ== +jest@^30.0.3: + version "30.0.3" + resolved "https://registry.yarnpkg.com/jest/-/jest-30.0.3.tgz#fc3b6b370e2820d718ea299d159a7ba4637dbd35" + integrity sha512-Uy8xfeE/WpT2ZLGDXQmaYNzw2v8NUKuYeKGtkS6sDxwsdQihdgYCXaKIYnph1h95DN5H35ubFDm0dfmsQnjn4Q== dependencies: - "@jest/core" "30.0.2" + "@jest/core" "30.0.3" "@jest/types" "30.0.1" import-local "^3.2.0" - jest-cli "30.0.2" + jest-cli "30.0.3" jju@~1.4.0: version "1.4.0" @@ -11248,9 +10068,9 @@ jsii-diff@^1.112.0: yargs "^16.2.0" jsii-docgen@^10.5.0: - version "10.7.4" - resolved "https://registry.yarnpkg.com/jsii-docgen/-/jsii-docgen-10.7.4.tgz#a9b62ad1e1396b54c513b0f937c13fbec7cc9318" - integrity sha512-ZBlRyNWTQZa/73Fd+rZI1tk8hcfsmP5lyCuzomDSGxWZ7VR0+lwXlGUDLPZhjeu8JCyVgreNhAsJhObVeDuYSg== + version "10.7.5" + resolved "https://registry.yarnpkg.com/jsii-docgen/-/jsii-docgen-10.7.5.tgz#3a6d850d665866d51d1895e73a8ca3dc69e0ca8d" + integrity sha512-XCYz7grFe7VzcMMfg2cCv4W0AmsdQUoKapmVuanZ1oLWjQk0j/2FuCLlaGL9NszfeGsg8R5pzMM8QTDhQRGgAw== dependencies: "@jsii/spec" "^1.112.0" case "^1.6.3" @@ -11496,12 +10316,12 @@ libnpmaccess@^9.0.0: npm-package-arg "^12.0.0" npm-registry-fetch "^18.0.1" -libnpmdiff@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/libnpmdiff/-/libnpmdiff-7.0.0.tgz#808893a36d673e46c927e4a0a836b3742191d307" - integrity sha512-MjvsBJL1AT4ofsSsBRse5clxv7gfPbdgzT0VE+xmVTxE8M92T22laeX9vqFhaQKInSeKiZ2L9w/FVhoCCGPdUg== +libnpmdiff@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/libnpmdiff/-/libnpmdiff-7.0.1.tgz#187c6c596b8a7a518f69667b763437b74f0df9a3" + integrity sha512-CPcLUr23hLwiil/nAlnMQ/eWSTXPPaX+Qe31di8JvcV2ELbbBueucZHBaXlXruUch6zIlSY6c7JCGNAqKN7yaQ== dependencies: - "@npmcli/arborist" "^8.0.0" + "@npmcli/arborist" "^8.0.1" "@npmcli/installed-package-contents" "^3.0.0" binary-extensions "^2.3.0" diff "^5.1.0" @@ -11510,12 +10330,12 @@ libnpmdiff@^7.0.0: pacote "^19.0.0" tar "^6.2.1" -libnpmexec@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/libnpmexec/-/libnpmexec-9.0.0.tgz#4bb43ec4ba88bd33750480fcf73935837af061bf" - integrity sha512-5dOwgvt0srgrOkwsjNWokx23BvQXEaUo87HWIY+9lymvAto2VSunNS+Ih7WXVwvkJk7cZ0jhS2H3rNK8G9Anxw== +libnpmexec@^9.0.1: + version "9.0.1" + resolved "https://registry.yarnpkg.com/libnpmexec/-/libnpmexec-9.0.1.tgz#a2d0473ec92615f4b187c9e60712220290ec359e" + integrity sha512-+SI/x9p0KUkgJdW9L0nDNqtjsFRY3yA5kQKdtGYNMXX4iP/MXQjuXF8MaUAweuV6Awm8plxqn8xCPs2TelZEUg== dependencies: - "@npmcli/arborist" "^8.0.0" + "@npmcli/arborist" "^8.0.1" "@npmcli/run-script" "^9.0.1" ci-info "^4.0.0" npm-package-arg "^12.0.0" @@ -11526,12 +10346,12 @@ libnpmexec@^9.0.0: semver "^7.3.7" walk-up-path "^3.0.1" -libnpmfund@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/libnpmfund/-/libnpmfund-6.0.0.tgz#5f324e9b9fb440af9c197f3f147943362758b49b" - integrity sha512-+7ZTxPyJ0O/Y0xKoEd1CxPCUQ4ldn6EZ2qUMI/E1gJkfzcwb3AdFlSWk1WEXaGBu2+EqMrPf4Xu5lXFWw2Jd3w== +libnpmfund@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/libnpmfund/-/libnpmfund-6.0.1.tgz#49488cf48ccbf2a5d6c90cd292608ab219aece53" + integrity sha512-UBbHY9yhhZVffbBpFJq+TsR2KhhEqpQ2mpsIJa6pt0PPQaZ2zgOjvGUYEjURYIGwg2wL1vfQFPeAtmN5w6i3Gg== dependencies: - "@npmcli/arborist" "^8.0.0" + "@npmcli/arborist" "^8.0.1" libnpmhook@^11.0.0: version "11.0.0" @@ -11549,12 +10369,12 @@ libnpmorg@^7.0.0: aproba "^2.0.0" npm-registry-fetch "^18.0.1" -libnpmpack@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/libnpmpack/-/libnpmpack-8.0.0.tgz#83cb6333861f8a0fe991420feaf0aa48a67d94bf" - integrity sha512-Z5zqR+j8PNOki97D4XnKlekLQjqJYkqCFZeac07XCJYA3aq6O7wYIpn7RqLcNfFm+u3ZsdblY2VQENMoiHA+FQ== +libnpmpack@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/libnpmpack/-/libnpmpack-8.0.1.tgz#36db2d8cda841775f3c80187cb332686feab40f2" + integrity sha512-E53w3QcldAXg5cG9NpXZcsgNiLw5AEtu7ufGJk6+dxudD0/U5Y6vHIws+CJiI76I9rAidXasKmmS2mwiYDncBw== dependencies: - "@npmcli/arborist" "^8.0.0" + "@npmcli/arborist" "^8.0.1" "@npmcli/run-script" "^9.0.1" npm-package-arg "^12.0.0" pacote "^19.0.0" @@ -11726,10 +10546,10 @@ log4js@^6.9.1: rfdc "^1.3.0" streamroller "^3.1.5" -loupe@^3.1.0, loupe@^3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/loupe/-/loupe-3.1.3.tgz#042a8f7986d77f3d0f98ef7990a2b2fef18b0fd2" - integrity sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug== +loupe@^3.1.0, loupe@^3.1.4: + version "3.1.4" + resolved "https://registry.yarnpkg.com/loupe/-/loupe-3.1.4.tgz#784a0060545cb38778ffb19ccde44d7870d5fdd9" + integrity sha512-wJzkKwJrheKtknCOKNEtDK4iqg/MxmZheEMtSTYvnzRdEYaZzmgH976nenp8WdJRdx5Vc1X/9MO0Oszl6ezeXg== lru-cache@^10.0.1, lru-cache@^10.2.0, lru-cache@^10.2.2, lru-cache@^10.4.3: version "10.4.3" @@ -12196,9 +11016,9 @@ module-lookup-amd@^7.0.1: requirejs-config-file "^4.0.0" module-lookup-amd@^9.0.3: - version "9.0.4" - resolved "https://registry.yarnpkg.com/module-lookup-amd/-/module-lookup-amd-9.0.4.tgz#328aff0913a47b25f02dd03c40efc9640d60f38c" - integrity sha512-DWJEuLVvjxh5b8wrvJC5wr2a7qo7pOWXIgdCBNazU416kcIyzO4drxvlqKhsHzYwxcC4cWuhoK+MiWCKCGnv7A== + version "9.0.5" + resolved "https://registry.yarnpkg.com/module-lookup-amd/-/module-lookup-amd-9.0.5.tgz#2563ba8e4f9dbcda914eac3ba4dc3ad8af80eb7d" + integrity sha512-Rs5FVpVcBYRHPLuhHOjgbRhosaQYLtEo3JIeDIbmNo7mSssi1CTzwMh8v36gAzpbzLGXI9wB/yHh+5+3fY1QVw== dependencies: commander "^12.1.0" glob "^7.2.3" @@ -12235,10 +11055,10 @@ nanoid@^3.3.11: resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.11.tgz#4f4f112cefbe303202f2199838128936266d185b" integrity sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w== -napi-postinstall@^0.2.2: - version "0.2.4" - resolved "https://registry.yarnpkg.com/napi-postinstall/-/napi-postinstall-0.2.4.tgz#419697d0288cb524623e422f919624f22a5e4028" - integrity sha512-ZEzHJwBhZ8qQSbknHqYcdtQVr8zUgGyM/q6h6qAyhtyVMNrSgDhrC4disf03dYW0e+czXyLnZINnCTEkWy0eJg== +napi-postinstall@^0.2.4: + version "0.2.5" + resolved "https://registry.yarnpkg.com/napi-postinstall/-/napi-postinstall-0.2.5.tgz#57d8a142f854e5a510c7b71ca101e89c11eddf35" + integrity sha512-kmsgUvCRIJohHjbZ3V8avP0I1Pekw329MVAMDzVxsrkjgdnqiwvMX5XwR+hWV66vsAtZ+iM+fVnq8RTQawUmCQ== native-duplexpair@^1.0.0: version "1.0.0" @@ -12330,7 +11150,7 @@ node-forge@^1.2.1: resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== -node-gyp@^11.0.0: +node-gyp@^11.0.0, node-gyp@^11.2.0: version "11.2.0" resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-11.2.0.tgz#fe2ee7f0511424d6ad70f7a0c88d7346f2fc6a6e" integrity sha512-T0S1zqskVUSxcsSTkAsLc7xCycrRYmtDHadDinzocrThjyQCn5kMlEBSj6H4qDbgsIOSLmmlRIeb0lZXj+UArA== @@ -12390,7 +11210,7 @@ nopt@^4.0.1: abbrev "1" osenv "^0.1.4" -nopt@^8.0.0: +nopt@^8.0.0, nopt@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/nopt/-/nopt-8.1.0.tgz#b11d38caf0f8643ce885818518064127f602eae3" integrity sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A== @@ -12460,7 +11280,7 @@ npm-normalize-package-bin@^4.0.0: resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-4.0.0.tgz#df79e70cd0a113b77c02d1fe243c96b8e618acb1" integrity sha512-TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w== -npm-package-arg@^12.0.0: +npm-package-arg@^12.0.0, npm-package-arg@^12.0.2: version "12.0.2" resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-12.0.2.tgz#3b1e04ebe651cc45028e298664e8c15ce9c0ca40" integrity sha512-f1NpFjNI9O4VbKMOlA5QoBq/vSQPORHcTZ2feJpFkTHJ9eQkdlmZEKSjcAhxTGInC7RlEyScT9ui67NaOsjFWA== @@ -12529,42 +11349,42 @@ npm-user-validate@^3.0.0: integrity sha512-9xi0RdSmJ4mPYTC393VJPz1Sp8LyCx9cUnm/L9Qcb3cFO8gjT4mN20P9FAsea8qDHdQ7LtcN8VLh2UT47SdKCw== npm@^10: - version "10.9.2" - resolved "https://registry.yarnpkg.com/npm/-/npm-10.9.2.tgz#784b3e2194fc151d5709a14692cf49c4afc60dfe" - integrity sha512-iriPEPIkoMYUy3F6f3wwSZAU93E0Eg6cHwIR6jzzOXWSy+SD/rOODEs74cVONHKSx2obXtuUoyidVEhISrisgQ== + version "10.9.3" + resolved "https://registry.yarnpkg.com/npm/-/npm-10.9.3.tgz#e803ef2166aa96eda9b795a9acee1877c8b4e6f2" + integrity sha512-6Eh1u5Q+kIVXeA8e7l2c/HpnFFcwrkt37xDMujD5be1gloWa9p6j3Fsv3mByXXmqJHy+2cElRMML8opNT7xIJQ== dependencies: "@isaacs/string-locale-compare" "^1.1.0" - "@npmcli/arborist" "^8.0.0" + "@npmcli/arborist" "^8.0.1" "@npmcli/config" "^9.0.0" "@npmcli/fs" "^4.0.0" "@npmcli/map-workspaces" "^4.0.2" - "@npmcli/package-json" "^6.1.0" + "@npmcli/package-json" "^6.2.0" "@npmcli/promise-spawn" "^8.0.2" - "@npmcli/redact" "^3.0.0" - "@npmcli/run-script" "^9.0.1" - "@sigstore/tuf" "^3.0.0" - abbrev "^3.0.0" + "@npmcli/redact" "^3.2.2" + "@npmcli/run-script" "^9.1.0" + "@sigstore/tuf" "^3.1.1" + abbrev "^3.0.1" archy "~1.0.0" cacache "^19.0.1" - chalk "^5.3.0" - ci-info "^4.1.0" + chalk "^5.4.1" + ci-info "^4.2.0" cli-columns "^4.0.0" fastest-levenshtein "^1.0.16" fs-minipass "^3.0.3" glob "^10.4.5" graceful-fs "^4.2.11" - hosted-git-info "^8.0.2" + hosted-git-info "^8.1.0" ini "^5.0.0" init-package-json "^7.0.2" - is-cidr "^5.1.0" + is-cidr "^5.1.1" json-parse-even-better-errors "^4.0.0" libnpmaccess "^9.0.0" - libnpmdiff "^7.0.0" - libnpmexec "^9.0.0" - libnpmfund "^6.0.0" + libnpmdiff "^7.0.1" + libnpmexec "^9.0.1" + libnpmfund "^6.0.1" libnpmhook "^11.0.0" libnpmorg "^7.0.0" - libnpmpack "^8.0.0" + libnpmpack "^8.0.1" libnpmpublish "^10.0.1" libnpmsearch "^8.0.0" libnpmteam "^7.0.0" @@ -12574,23 +11394,23 @@ npm@^10: minipass "^7.1.1" minipass-pipeline "^1.2.4" ms "^2.1.2" - node-gyp "^11.0.0" - nopt "^8.0.0" + node-gyp "^11.2.0" + nopt "^8.1.0" normalize-package-data "^7.0.0" npm-audit-report "^6.0.0" npm-install-checks "^7.1.1" - npm-package-arg "^12.0.0" + npm-package-arg "^12.0.2" npm-pick-manifest "^10.0.0" npm-profile "^11.0.1" npm-registry-fetch "^18.0.2" npm-user-validate "^3.0.0" - p-map "^4.0.0" + p-map "^7.0.3" pacote "^19.0.1" parse-conflict-json "^4.0.0" proc-log "^5.0.0" qrcode-terminal "^0.12.0" - read "^4.0.0" - semver "^7.6.3" + read "^4.1.0" + semver "^7.7.2" spdx-expression-parse "^4.0.0" ssri "^12.0.0" supports-color "^9.4.0" @@ -12598,7 +11418,7 @@ npm@^10: text-table "~0.2.0" tiny-relative-date "^1.3.0" treeverse "^3.0.0" - validate-npm-package-name "^6.0.0" + validate-npm-package-name "^6.0.1" which "^5.0.0" write-file-atomic "^6.0.0" @@ -12704,7 +11524,7 @@ object.groupby@^1.0.3: define-properties "^1.2.1" es-abstract "^1.23.2" -object.values@^1.2.0: +object.values@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.2.1.tgz#deed520a50809ff7f75a7cfd4bc64c7a038c6216" integrity sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA== @@ -12878,14 +11698,7 @@ p-locate@^5.0.0: dependencies: p-limit "^3.0.2" -p-map@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" - integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== - dependencies: - aggregate-error "^3.0.0" - -p-map@^7.0.2: +p-map@^7.0.2, p-map@^7.0.3: version "7.0.3" resolved "https://registry.yarnpkg.com/p-map/-/p-map-7.0.3.tgz#7ac210a2d36f81ec28b736134810f7ba4418cdb6" integrity sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA== @@ -13142,9 +11955,9 @@ path-type@^4.0.0: integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== pathval@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/pathval/-/pathval-2.0.0.tgz#7e2550b422601d4f6b8e26f1301bc8f15a741a25" - integrity sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA== + version "2.0.1" + resolved "https://registry.yarnpkg.com/pathval/-/pathval-2.0.1.tgz#8855c5a2899af072d6ac05d11e46045ad0dc605d" + integrity sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ== performance-now@^2.1.0: version "2.1.0" @@ -13246,7 +12059,7 @@ postcss-values-parser@^6.0.2: is-url-superb "^4.0.0" quote-unquote "^1.0.0" -postcss@^8.1.7, postcss@^8.4.6: +postcss@^8.1.7, postcss@^8.4.6, postcss@^8.5.1, postcss@^8.5.6: version "8.5.6" resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.5.6.tgz#2825006615a619b4f62a9e7426cc120b349a8f3c" integrity sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg== @@ -13255,15 +12068,6 @@ postcss@^8.1.7, postcss@^8.4.6: picocolors "^1.1.1" source-map-js "^1.2.1" -postcss@^8.5.1, postcss@^8.5.3: - version "8.5.5" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.5.5.tgz#04de7797f6911fb1c96550e96616d08681537ef3" - integrity sha512-d/jtm+rdNT8tpXuHY5MMtcbJFBkhXE6593XVR9UoGCH8jSFGci7jGvMGH5RYd5PBJW+00NZQt6gf7CbagJCrhg== - dependencies: - nanoid "^3.3.11" - picocolors "^1.1.1" - source-map-js "^1.2.1" - precinct@^12.2.0: version "12.2.0" resolved "https://registry.yarnpkg.com/precinct/-/precinct-12.2.0.tgz#6ab18f48034cc534f2c8fedb318f19a11bcd171b" @@ -13321,16 +12125,7 @@ prettier@^2.8: resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== -pretty-format@30.0.0: - version "30.0.0" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-30.0.0.tgz#a3137bed442af87eadea2c427a1b201189e590a4" - integrity sha512-18NAOUr4ZOQiIR+BgI5NhQE7uREdx4ZyV0dyay5izh4yfQ+1T7BSvggxvRGoXocrRyevqW5OhScUjbi9GB8R8Q== - dependencies: - "@jest/schemas" "30.0.0" - ansi-styles "^5.2.0" - react-is "^18.3.1" - -pretty-format@30.0.2: +pretty-format@30.0.2, pretty-format@^30.0.0: version "30.0.2" resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-30.0.2.tgz#54717b6aa2b4357a2e6d83868e10a2ea8dd647c7" integrity sha512-yC5/EBSOrTtqhCKfLHqoUIAXVRZnukHPwWBJWR7h84Q3Be1DRQZLncwcfLoPA5RPQ65qfiCMqgYwdUuQ//eVpg== @@ -13375,10 +12170,10 @@ proggy@^3.0.0: resolved "https://registry.yarnpkg.com/proggy/-/proggy-3.0.0.tgz#874e91fed27fe00a511758e83216a6b65148bd6c" integrity sha512-QE8RApCM3IaRRxVzxrjbgNMpQEX6Wu0p0KBeoSiSEw5/bsGwZHsshF4LCxH2jp/r6BU+bqA3LrMDEYNfJnpD8Q== -projen@^0.92.10: - version "0.92.10" - resolved "https://registry.yarnpkg.com/projen/-/projen-0.92.10.tgz#88fff4d31725d972d5873270d55abc631f9dea37" - integrity sha512-c60xtQbkPt1tseUhMdCCUURdzcYaV5/Z5OxLJlNQzONwh/0VmpHKEW/creY8X7tw8hk4WgtMKhwisajJHkcf0Q== +projen@^0.94.0: + version "0.94.0" + resolved "https://registry.yarnpkg.com/projen/-/projen-0.94.0.tgz#6d2c7bc3eeb9314e83be79a626a514314259c39e" + integrity sha512-ttlEalyI5pVMgXEtNBvqmDrrE2nA7uIxRyJmGchK8z503AOYHcRk/MKDvQiLicHMQydA4LubAShrK/PCE18hEw== dependencies: "@iarna/toml" "^2.2.5" case "^1.6.3" @@ -13386,8 +12181,8 @@ projen@^0.92.10: comment-json "4.2.2" constructs "^10.0.0" conventional-changelog-config-spec "^2.1.0" + fast-glob "^3.3.3" fast-json-patch "^3.1.1" - glob "^8" ini "^2.0.0" parse-conflict-json "^4.0.0" semver "^7.7.2" @@ -13469,9 +12264,9 @@ proxy-from-env@^1.1.0: integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== pump@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.2.tgz#836f3edd6bc2ee599256c924ffe0d88573ddcbf8" - integrity sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw== + version "3.0.3" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.3.tgz#151d979f1a29668dc0025ec589a455b53282268d" + integrity sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA== dependencies: end-of-stream "^1.1.0" once "^1.3.1" @@ -13659,7 +12454,7 @@ read@^1.0.4: dependencies: mute-stream "~0.0.4" -read@^4.0.0: +read@^4.0.0, read@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/read/-/read-4.1.0.tgz#d97c2556b009b47b16b5bb82311d477cc7503548" integrity sha512-uRfX6K+f+R8OOrYScaM3ixPY4erg69f8DN6pgTvMcA9iRc8iDhwrA4m3Yu8YYKsXJgVvum+m8PkRboZwwuLzYA== @@ -14392,10 +13187,10 @@ ssri@^12.0.0: dependencies: minipass "^7.0.3" -stable-hash-x@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/stable-hash-x/-/stable-hash-x-0.1.1.tgz#1dc602f65183ef049a44a9be4fce249a4c71fc84" - integrity sha512-l0x1D6vhnsNUGPFVDx45eif0y6eedVC8nm5uACTrVFJFtl2mLRW17aWtVyxFCpn5t94VUPkjU8vSLwIuwwqtJQ== +stable-hash-x@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/stable-hash-x/-/stable-hash-x-0.2.0.tgz#dfd76bfa5d839a7470125c6a6b3c8b22061793e9" + integrity sha512-o3yWv49B/o4QZk5ZcsALc6t0+eCelPc44zZsLtCQnZPDwFpDYSWcDnrv2TtMmMbQ7uKo3J0HTURCqckw23czNQ== stable-hash@^0.0.5: version "0.0.5" @@ -14531,7 +13326,7 @@ string.prototype.trim@^1.2.10: es-object-atoms "^1.0.0" has-property-descriptors "^1.0.2" -string.prototype.trimend@^1.0.8, string.prototype.trimend@^1.0.9: +string.prototype.trimend@^1.0.9: version "1.0.9" resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz#62e2731272cd285041b36596054e9f66569b6942" integrity sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ== @@ -15137,7 +13932,7 @@ typescript@^3.9.10, typescript@^3.9.5, typescript@^3.9.7: resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.10.tgz#70f3910ac7a51ed6bef79da7800690b19bf778b8" integrity sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q== -typescript@^5.7.3: +typescript@^5.7.3, typescript@^5.8.3: version "5.8.3" resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.8.3.tgz#92f8a3e5e3cf497356f4178c34cd65a7f5e8440e" integrity sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ== @@ -15212,31 +14007,31 @@ unpipe@1.0.0, unpipe@~1.0.0: integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== unrs-resolver@^1.6.2, unrs-resolver@^1.7.11: - version "1.9.0" - resolved "https://registry.yarnpkg.com/unrs-resolver/-/unrs-resolver-1.9.0.tgz#22877e2e0f1ba3f848f75f7be5ecb81b634066dc" - integrity sha512-wqaRu4UnzBD2ABTC1kLfBjAqIDZ5YUTr/MLGa7By47JV1bJDSW7jq/ZSLigB7enLe7ubNaJhtnBXgrc/50cEhg== + version "1.9.2" + resolved "https://registry.yarnpkg.com/unrs-resolver/-/unrs-resolver-1.9.2.tgz#1a7c73335a5e510643664d7bb4bb6f5c28782e36" + integrity sha512-VUyWiTNQD7itdiMuJy+EuLEErLj3uwX/EpHQF8EOf33Dq3Ju6VW1GXm+swk6+1h7a49uv9fKZ+dft9jU7esdLA== dependencies: - napi-postinstall "^0.2.2" + napi-postinstall "^0.2.4" optionalDependencies: - "@unrs/resolver-binding-android-arm-eabi" "1.9.0" - "@unrs/resolver-binding-android-arm64" "1.9.0" - "@unrs/resolver-binding-darwin-arm64" "1.9.0" - "@unrs/resolver-binding-darwin-x64" "1.9.0" - "@unrs/resolver-binding-freebsd-x64" "1.9.0" - "@unrs/resolver-binding-linux-arm-gnueabihf" "1.9.0" - "@unrs/resolver-binding-linux-arm-musleabihf" "1.9.0" - "@unrs/resolver-binding-linux-arm64-gnu" "1.9.0" - "@unrs/resolver-binding-linux-arm64-musl" "1.9.0" - "@unrs/resolver-binding-linux-ppc64-gnu" "1.9.0" - "@unrs/resolver-binding-linux-riscv64-gnu" "1.9.0" - "@unrs/resolver-binding-linux-riscv64-musl" "1.9.0" - "@unrs/resolver-binding-linux-s390x-gnu" "1.9.0" - "@unrs/resolver-binding-linux-x64-gnu" "1.9.0" - "@unrs/resolver-binding-linux-x64-musl" "1.9.0" - "@unrs/resolver-binding-wasm32-wasi" "1.9.0" - "@unrs/resolver-binding-win32-arm64-msvc" "1.9.0" - "@unrs/resolver-binding-win32-ia32-msvc" "1.9.0" - "@unrs/resolver-binding-win32-x64-msvc" "1.9.0" + "@unrs/resolver-binding-android-arm-eabi" "1.9.2" + "@unrs/resolver-binding-android-arm64" "1.9.2" + "@unrs/resolver-binding-darwin-arm64" "1.9.2" + "@unrs/resolver-binding-darwin-x64" "1.9.2" + "@unrs/resolver-binding-freebsd-x64" "1.9.2" + "@unrs/resolver-binding-linux-arm-gnueabihf" "1.9.2" + "@unrs/resolver-binding-linux-arm-musleabihf" "1.9.2" + "@unrs/resolver-binding-linux-arm64-gnu" "1.9.2" + "@unrs/resolver-binding-linux-arm64-musl" "1.9.2" + "@unrs/resolver-binding-linux-ppc64-gnu" "1.9.2" + "@unrs/resolver-binding-linux-riscv64-gnu" "1.9.2" + "@unrs/resolver-binding-linux-riscv64-musl" "1.9.2" + "@unrs/resolver-binding-linux-s390x-gnu" "1.9.2" + "@unrs/resolver-binding-linux-x64-gnu" "1.9.2" + "@unrs/resolver-binding-linux-x64-musl" "1.9.2" + "@unrs/resolver-binding-wasm32-wasi" "1.9.2" + "@unrs/resolver-binding-win32-arm64-msvc" "1.9.2" + "@unrs/resolver-binding-win32-ia32-msvc" "1.9.2" + "@unrs/resolver-binding-win32-x64-msvc" "1.9.2" update-browserslist-db@^1.1.3: version "1.1.3" @@ -15323,7 +14118,7 @@ validate-npm-package-license@^3.0.1, validate-npm-package-license@^3.0.4: spdx-correct "^3.0.0" spdx-expression-parse "^3.0.0" -validate-npm-package-name@^6.0.0: +validate-npm-package-name@^6.0.0, validate-npm-package-name@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-6.0.1.tgz#7b928e5fe23996045a6de5b5a22eedb3611264dd" integrity sha512-OaI//3H0J7ZkR1OqlhGA8cA+Cbk/2xFOQpJOt5+s27/ta9eZwpeervh4Mxh4w0im/kdgktowaqVNR7QOrUd7Yg== @@ -15567,9 +14362,9 @@ write-file-atomic@^6.0.0: signal-exit "^4.0.1" ws@*, ws@^8.18.0, ws@^8.8.0: - version "8.18.2" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.2.tgz#42738b2be57ced85f46154320aabb51ab003705a" - integrity sha512-DMricUmwGZUVr++AEAe2uiVM7UoO9MAVZMDu05UQOaUII0lp+zOzLLU4Xqh/JvTqklB1T4uELaaPBKyjE1r4fQ== + version "8.18.3" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.3.tgz#b56b88abffde62791c639170400c93dcb0c95472" + integrity sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg== xml-js@^1.6.11: version "1.6.11"