diff --git a/LICENSE.txt b/LICENSE.txt index ca35d0df..1aeebc57 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ Apache License Version 2.0 -Copyright (c) 2025 Salesforce, Inc. +Copyright (c) 2026 Salesforce, Inc. All rights reserved. Apache License diff --git a/package.json b/package.json index 75f413a1..6795a624 100644 --- a/package.json +++ b/package.json @@ -6,9 +6,9 @@ "bugs": "https://github.com/forcedotcom/cli/issues", "dependencies": { "@oclif/core": "^4", - "@salesforce/core": "^8.24.0", + "@salesforce/core": "^8.24.2", "@salesforce/kit": "^3.2.4", - "@salesforce/packaging": "^4.18.7", + "@salesforce/packaging": "^4.18.8", "@salesforce/sf-plugins-core": "^12.2.6", "chalk": "^5.6.2" }, diff --git a/src/commands/package/bundle/create.ts b/src/commands/package/bundle/create.ts index ddf3e7a2..6c5fb3c5 100644 --- a/src/commands/package/bundle/create.ts +++ b/src/commands/package/bundle/create.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/commands/package/bundle/delete.ts b/src/commands/package/bundle/delete.ts index d45af98c..b626e9f8 100644 --- a/src/commands/package/bundle/delete.ts +++ b/src/commands/package/bundle/delete.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/commands/package/bundle/install.ts b/src/commands/package/bundle/install.ts index 25d9296c..975df927 100644 --- a/src/commands/package/bundle/install.ts +++ b/src/commands/package/bundle/install.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -129,13 +129,18 @@ export class PackageBundlesInstall extends SfCommand { const { flags } = await this.parse(PackageBundlesCreate); @@ -98,7 +97,10 @@ export class PackageBundlesCreate extends SfCommand { - if (data.RequestStatus !== BundleSObjects.PkgBundleVersionCreateReqStatus.success && data.RequestStatus !== BundleSObjects.PkgBundleVersionCreateReqStatus.error) { + if ( + data.RequestStatus !== BundleSObjects.PkgBundleVersionCreateReqStatus.success && + data.RequestStatus !== BundleSObjects.PkgBundleVersionCreateReqStatus.error + ) { const status = messages.getMessage('bundleVersionCreateWaitingStatus', [ data.remainingWaitTime.minutes, data.RequestStatus, @@ -123,7 +125,7 @@ export class PackageBundlesCreate extends SfCommand 0 - ? { polling: { timeout: Duration.minutes(flags.wait), frequency: Duration.seconds(5)}} + ? { polling: { timeout: Duration.minutes(flags.wait), frequency: Duration.seconds(5) } } : undefined), }); } catch (error) { @@ -152,9 +154,8 @@ export class PackageBundlesCreate extends SfCommand 0 - ? errorMessages.join('\n') - : 'Unknown error occurred during bundle version creation'; + const errorText = + errorMessages.length > 0 ? errorMessages.join('\n') : 'Unknown error occurred during bundle version creation'; throw messages.createError('multipleErrors', [errorText]); } @@ -169,5 +170,4 @@ export class PackageBundlesCreate extends SfCommand { }); expect(warnStub.callCount).to.equal(0); expect(logStub.callCount).to.equal(1); - expect(logStub.args[0]).to.deep.equal(['Successfully installed bundle version 1Q83i000000fxw1AAA to test@org.org']); + expect(logStub.args[0]).to.deep.equal([ + 'Successfully installed bundle version 1Q83i000000fxw1AAA to test@org.org', + ]); }); it('should install a package bundle version with wait option', async () => { @@ -134,7 +136,9 @@ describe('package:bundle:install - tests', () => { }); expect(warnStub.callCount).to.equal(0); expect(logStub.callCount).to.equal(1); - expect(logStub.args[0]).to.deep.equal(['Successfully installed bundle version 1Q83i000000fxw1AAA to test@org.org']); + expect(logStub.args[0]).to.deep.equal([ + 'Successfully installed bundle version 1Q83i000000fxw1AAA to test@org.org', + ]); }); // This test does very little to test the verbose command except make sure that it is there. @@ -160,7 +164,9 @@ describe('package:bundle:install - tests', () => { }); expect(warnStub.callCount).to.equal(0); expect(logStub.callCount).to.equal(1); - expect(logStub.args[0]).to.deep.equal(['Successfully installed bundle version 1Q83i000000fxw1AAA to test@org.org']); + expect(logStub.args[0]).to.deep.equal([ + 'Successfully installed bundle version 1Q83i000000fxw1AAA to test@org.org', + ]); }); it('should handle queued status', async () => { @@ -225,7 +231,9 @@ describe('package:bundle:install - tests', () => { await cmd.run(); assert.fail('the above should throw an error'); } catch (e) { - expect((e as Error).message).to.equal('Encountered errors installing the bundle! Bundle installation failed. Run \'sf package bundle install report -i 08c3i000000fylXXXX -o test@org.org\' for more details.'); + expect((e as Error).message).to.equal( + "Encountered errors installing the bundle! Bundle installation failed. Run 'sf package bundle install report -i 08c3i000000fylXXXX -o test@org.org' for more details." + ); } }); }); diff --git a/test/commands/bundle/bundleInstallList.test.ts b/test/commands/bundle/bundleInstallList.test.ts index d3aa8a2b..11c759b1 100644 --- a/test/commands/bundle/bundleInstallList.test.ts +++ b/test/commands/bundle/bundleInstallList.test.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/bundle/bundleInstallReport.test.ts b/test/commands/bundle/bundleInstallReport.test.ts index bff2021e..5de872f5 100644 --- a/test/commands/bundle/bundleInstallReport.test.ts +++ b/test/commands/bundle/bundleInstallReport.test.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/bundle/bundleList.test.ts b/test/commands/bundle/bundleList.test.ts index 86f11c8c..fc67d8a0 100644 --- a/test/commands/bundle/bundleList.test.ts +++ b/test/commands/bundle/bundleList.test.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/bundle/bundleVersionCreateList.test.ts b/test/commands/bundle/bundleVersionCreateList.test.ts index 586fe338..e6a1a6bf 100644 --- a/test/commands/bundle/bundleVersionCreateList.test.ts +++ b/test/commands/bundle/bundleVersionCreateList.test.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/bundle/bundleVersionCreateReport.test.ts b/test/commands/bundle/bundleVersionCreateReport.test.ts index 14356cc2..ec2a7679 100644 --- a/test/commands/bundle/bundleVersionCreateReport.test.ts +++ b/test/commands/bundle/bundleVersionCreateReport.test.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/bundle/bundleVersionList.test.ts b/test/commands/bundle/bundleVersionList.test.ts index 6185380d..dd77c4ff 100644 --- a/test/commands/bundle/bundleVersionList.test.ts +++ b/test/commands/bundle/bundleVersionList.test.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/bundle/bundleVersionReport.test.ts b/test/commands/bundle/bundleVersionReport.test.ts index 4b2b9f97..e31b327d 100644 --- a/test/commands/bundle/bundleVersionReport.test.ts +++ b/test/commands/bundle/bundleVersionReport.test.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/bundle/packageBundleVersionCreate.test.ts b/test/commands/bundle/packageBundleVersionCreate.test.ts index a892a297..6150f1ff 100644 --- a/test/commands/bundle/packageBundleVersionCreate.test.ts +++ b/test/commands/bundle/packageBundleVersionCreate.test.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/package/install.nut.ts b/test/commands/package/install.nut.ts index e658d843..afc460db 100644 --- a/test/commands/package/install.nut.ts +++ b/test/commands/package/install.nut.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/package/install.test.ts b/test/commands/package/install.test.ts index 6cd53fb1..cb2598ea 100644 --- a/test/commands/package/install.test.ts +++ b/test/commands/package/install.test.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/package/installReport.test.ts b/test/commands/package/installReport.test.ts index 744030ad..297a1db2 100644 --- a/test/commands/package/installReport.test.ts +++ b/test/commands/package/installReport.test.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/package/packageConvert.test.ts b/test/commands/package/packageConvert.test.ts index 38500425..dd5a1cc1 100644 --- a/test/commands/package/packageConvert.test.ts +++ b/test/commands/package/packageConvert.test.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/package/packageCreateAndDelete.nut.ts b/test/commands/package/packageCreateAndDelete.nut.ts index cd173dd5..7fd41edd 100644 --- a/test/commands/package/packageCreateAndDelete.nut.ts +++ b/test/commands/package/packageCreateAndDelete.nut.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/package/packageInstalledList.nut.ts b/test/commands/package/packageInstalledList.nut.ts index 6d78c49f..d83284e1 100644 --- a/test/commands/package/packageInstalledList.nut.ts +++ b/test/commands/package/packageInstalledList.nut.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/package/packageList.nut.ts b/test/commands/package/packageList.nut.ts index 083e487c..95fea717 100644 --- a/test/commands/package/packageList.nut.ts +++ b/test/commands/package/packageList.nut.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/package/packagePushUpgradeAbort.test.ts b/test/commands/package/packagePushUpgradeAbort.test.ts index de7d6c69..43594952 100644 --- a/test/commands/package/packagePushUpgradeAbort.test.ts +++ b/test/commands/package/packagePushUpgradeAbort.test.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/package/packagePushUpgradeList.test.ts b/test/commands/package/packagePushUpgradeList.test.ts index 4a8478a7..5e35b0b7 100644 --- a/test/commands/package/packagePushUpgradeList.test.ts +++ b/test/commands/package/packagePushUpgradeList.test.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/package/packagePushUpgradeReport.test.ts b/test/commands/package/packagePushUpgradeReport.test.ts index 7ed5a903..aa7146a3 100644 --- a/test/commands/package/packagePushUpgradeReport.test.ts +++ b/test/commands/package/packagePushUpgradeReport.test.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/package/packagePushUpgradeSchedule.test.ts b/test/commands/package/packagePushUpgradeSchedule.test.ts index b0510ffd..66a9736c 100644 --- a/test/commands/package/packagePushUpgradeSchedule.test.ts +++ b/test/commands/package/packagePushUpgradeSchedule.test.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/package/packageUninstall.test.ts b/test/commands/package/packageUninstall.test.ts index c856cc2e..dffaef2d 100644 --- a/test/commands/package/packageUninstall.test.ts +++ b/test/commands/package/packageUninstall.test.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/package/packageVersion.nut.ts b/test/commands/package/packageVersion.nut.ts index 28d36289..3e037b63 100644 --- a/test/commands/package/packageVersion.nut.ts +++ b/test/commands/package/packageVersion.nut.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -496,7 +496,8 @@ describe('package:version:*', () => { before('dependencies project setup', async function () { // Query for Package2VersionCreateRequest records that have CalcTransitiveDependencies set to true // This ensures the dependency graph data is available for the displaydependencies command - const query = 'SELECT Id, Package2Version.SubscriberPackageVersionId FROM Package2VersionCreateRequest WHERE CalcTransitiveDependencies = true LIMIT 10'; + const query = + 'SELECT Id, Package2Version.SubscriberPackageVersionId FROM Package2VersionCreateRequest WHERE CalcTransitiveDependencies = true LIMIT 10'; configAggregator = await ConfigAggregator.create(); devHubOrg = await Org.create({ aliasOrUsername: configAggregator.getPropertyValue('target-dev-hub') }); // Check API version before proceeding diff --git a/test/commands/package/packageVersionCreate.test.ts b/test/commands/package/packageVersionCreate.test.ts index 6bad883e..38204f89 100644 --- a/test/commands/package/packageVersionCreate.test.ts +++ b/test/commands/package/packageVersionCreate.test.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/package/packageVersionCreateReport.test.ts b/test/commands/package/packageVersionCreateReport.test.ts index 1db64d2b..719e23e3 100644 --- a/test/commands/package/packageVersionCreateReport.test.ts +++ b/test/commands/package/packageVersionCreateReport.test.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/package/packageVersionRetrieve.test.ts b/test/commands/package/packageVersionRetrieve.test.ts index 87ae1c9b..6f637cc7 100644 --- a/test/commands/package/packageVersionRetrieve.test.ts +++ b/test/commands/package/packageVersionRetrieve.test.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/package/version.delete.test.ts b/test/commands/package/version.delete.test.ts index ef61bf54..24096c06 100644 --- a/test/commands/package/version.delete.test.ts +++ b/test/commands/package/version.delete.test.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/package/versionPromoteUpdate.nut.ts b/test/commands/package/versionPromoteUpdate.nut.ts index 6e9174c1..436e0dcf 100644 --- a/test/commands/package/versionPromoteUpdate.nut.ts +++ b/test/commands/package/versionPromoteUpdate.nut.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/package/versionReport.test.ts b/test/commands/package/versionReport.test.ts index ebbcbc1a..8c6b5a05 100644 --- a/test/commands/package/versionReport.test.ts +++ b/test/commands/package/versionReport.test.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/package1/versionCreate.nut.ts b/test/commands/package1/versionCreate.nut.ts index 2242897e..c0c36aa4 100644 --- a/test/commands/package1/versionCreate.nut.ts +++ b/test/commands/package1/versionCreate.nut.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/package1/versionCreate.test.ts b/test/commands/package1/versionCreate.test.ts index 79d054c8..c9bb5111 100644 --- a/test/commands/package1/versionCreate.test.ts +++ b/test/commands/package1/versionCreate.test.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/package1/versionCreateGet.test.ts b/test/commands/package1/versionCreateGet.test.ts index e30dbd4d..bc2588df 100644 --- a/test/commands/package1/versionCreateGet.test.ts +++ b/test/commands/package1/versionCreateGet.test.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/package1/versionDisplay.nut.ts b/test/commands/package1/versionDisplay.nut.ts index 369ab602..1f3379f8 100644 --- a/test/commands/package1/versionDisplay.nut.ts +++ b/test/commands/package1/versionDisplay.nut.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/test/commands/package1/versionList.nut.ts b/test/commands/package1/versionList.nut.ts index bf3304d4..aeae3430 100644 --- a/test/commands/package1/versionList.nut.ts +++ b/test/commands/package1/versionList.nut.ts @@ -1,5 +1,5 @@ /* - * Copyright 2025, Salesforce, Inc. + * Copyright 2026, Salesforce, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/yarn.lock b/yarn.lock index 074a27ce..4506601f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -579,7 +579,7 @@ "@smithy/types" "^4.11.0" tslib "^2.6.2" -"@aws-sdk/types@3.957.0": +"@aws-sdk/types@3.957.0", "@aws-sdk/types@^3.222.0": version "3.957.0" resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.957.0.tgz#06e899503028bdb8c655aa11a9a01f562882f361" integrity sha512-wzWC2Nrt859ABk6UCAVY/WYEbAd7FjkdrQL6m24+tfmWYDNRByTJ9uOgU/kw9zqLCAwb//CPvrJdhqjTznWXAg== @@ -587,14 +587,6 @@ "@smithy/types" "^4.11.0" tslib "^2.6.2" -"@aws-sdk/types@^3.222.0": - version "3.936.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.936.0.tgz#ecd3a4bec1a1bd4df834ab21fe52a76e332dc27a" - integrity sha512-uz0/VlMd2pP5MepdrHizd+T+OKfyK4r3OA9JI+L/lPKg0YFQosdJNCKisr6o70E3dh8iMpFYxF1UN/4uZsyARg== - dependencies: - "@smithy/types" "^4.9.0" - tslib "^2.6.2" - "@aws-sdk/util-arn-parser@3.957.0": version "3.957.0" resolved "https://registry.yarnpkg.com/@aws-sdk/util-arn-parser/-/util-arn-parser-3.957.0.tgz#8e5898230d5e41e097ad484a714a004a0555b0fe" @@ -1534,10 +1526,10 @@ strip-ansi "6.0.1" ts-retry-promise "^0.8.1" -"@salesforce/core@^8.18.7", "@salesforce/core@^8.23.1", "@salesforce/core@^8.23.3", "@salesforce/core@^8.23.4", "@salesforce/core@^8.24.0", "@salesforce/core@^8.5.1", "@salesforce/core@^8.8.0": - version "8.24.0" - resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-8.24.0.tgz#13426f9f3b5ed0ec126b8009e5eda68e03db0401" - integrity sha512-8Ra5RT95bRkmHmaaFgABwkXbnHNSNS7l9gbJzJgO6VQpaEeytGPPyymnAE7TcTM2xp/QwlXn+PgX4biX7Lb7JA== +"@salesforce/core@^8.18.7", "@salesforce/core@^8.23.1", "@salesforce/core@^8.23.3", "@salesforce/core@^8.24.0", "@salesforce/core@^8.24.2", "@salesforce/core@^8.5.1", "@salesforce/core@^8.8.0": + version "8.24.2" + resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-8.24.2.tgz#04ac4725065851a471abbad0ec2ea8f0391b68d8" + integrity sha512-1CC4q123FYDF0IGRKLF4cWuodYkHKcKI9RurHCPzrEIHU28C2gYePi9gfujKJlhRdqskPMwQ3Q2EtfQQdS4wtQ== dependencies: "@jsforce/jsforce-node" "^3.10.10" "@salesforce/kit" "^3.2.4" @@ -1603,16 +1595,16 @@ dependencies: "@salesforce/ts-types" "^2.0.12" -"@salesforce/packaging@^4.18.7": - version "4.18.7" - resolved "https://registry.yarnpkg.com/@salesforce/packaging/-/packaging-4.18.7.tgz#38b184e941c1983f4165cf4cbb6904a76e0e2c14" - integrity sha512-zUvE6L3wnJwoP3WKyALNjVlr5vinPvHSxmou3p1MiqhVn6p6J07qxOyV53jcNZzaY+zKKDTT6gGFEbzVVuAk+A== +"@salesforce/packaging@^4.18.8": + version "4.18.8" + resolved "https://registry.yarnpkg.com/@salesforce/packaging/-/packaging-4.18.8.tgz#a73a0a9823a23b6ad18fd5cb2734cae7281c4ead" + integrity sha512-KpeDqy1jBIBOwqZCJwgP2M9tHukllUoDxEQHV++RAFgilvXvYwJFIDu2XG1S5al7igdmFlXjmZ5VzQGBTZYUsA== dependencies: "@jsforce/jsforce-node" "^3.10.10" - "@salesforce/core" "^8.24.0" + "@salesforce/core" "^8.24.2" "@salesforce/kit" "^3.2.4" "@salesforce/schemas" "^1.10.3" - "@salesforce/source-deploy-retrieve" "^12.31.0" + "@salesforce/source-deploy-retrieve" "^12.31.6" "@salesforce/ts-types" "^2.0.12" "@salesforce/types" "^1.6.0" fast-xml-parser "^4.5.0" @@ -1681,15 +1673,15 @@ cli-progress "^3.12.0" terminal-link "^3.0.0" -"@salesforce/source-deploy-retrieve@^12.31.0": - version "12.31.0" - resolved "https://registry.yarnpkg.com/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.31.0.tgz#aed7aac22831b802c44069bdbb50c4f22883cef0" - integrity sha512-imRP5qo+7NT0/UVQcGAJQPWdmD9wlBWQL4Q+rgQvFhea0nGi+ER13cPIwvr8eGTN+wwgWoMeLSfekC3kGVTDfQ== +"@salesforce/source-deploy-retrieve@^12.31.6": + version "12.31.6" + resolved "https://registry.yarnpkg.com/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.31.6.tgz#8c731718c455cd3a1be528f608f85c00551e7e0f" + integrity sha512-88PKzSwGYL6GQWryfgcTPPD462Sgnhw08HkKf/yVLnc9q6U67ebLUdfrdBLGDL/HJ6uRRHP8RVFPvsFxRU6mcQ== dependencies: - "@salesforce/core" "^8.23.4" + "@salesforce/core" "^8.24.0" "@salesforce/kit" "^3.2.4" "@salesforce/ts-types" "^2.0.12" - "@salesforce/types" "^1.5.0" + "@salesforce/types" "^1.6.0" fast-levenshtein "^3.0.0" fast-xml-parser "^4.5.3" got "^11.8.6" @@ -1706,7 +1698,7 @@ resolved "https://registry.yarnpkg.com/@salesforce/ts-types/-/ts-types-2.0.12.tgz#60420622812a7ec7e46d220667bc29b42dc247ff" integrity sha512-BIJyduJC18Kc8z+arUm5AZ9VkPRyw1KKAm+Tk+9LT99eOzhNilyfKzhZ4t+tG2lIGgnJpmytZfVDZ0e2kFul8g== -"@salesforce/types@^1.5.0", "@salesforce/types@^1.6.0": +"@salesforce/types@^1.6.0": version "1.6.0" resolved "https://registry.yarnpkg.com/@salesforce/types/-/types-1.6.0.tgz#926515ce3f6b16c8efe2afcc86475001d419c6cc" integrity sha512-UHk1L3QRaa3WfIqQn5RLmcZmxErXvpFPUteLLgIxlFLrxhcKevvEwkMJF2xNIHpfT4Xj7PcYvqtrRYapX4Pp+A== @@ -2168,13 +2160,6 @@ dependencies: tslib "^2.6.2" -"@smithy/types@^4.9.0": - version "4.9.0" - resolved "https://registry.yarnpkg.com/@smithy/types/-/types-4.9.0.tgz#c6636ddfa142e1ddcb6e4cf5f3e1a628d420486f" - integrity sha512-MvUbdnXDTwykR8cB1WZvNNwqoWVaTRA0RLlLmf/cIFNMM2cKWz01X4Ly6SMC4Kks30r8tT3Cty0jmeWfiuyHTA== - dependencies: - tslib "^2.6.2" - "@smithy/url-parser@^4.2.7": version "4.2.7" resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-4.2.7.tgz#3137e6f190c446dc8d89271c35f46a2e704bca19"