Skip to content

Commit 5c9e82d

Browse files
chore: merge main, resolve conflicts
2 parents e75bd43 + 1a3956a commit 5c9e82d

File tree

4 files changed

+16
-14
lines changed

4 files changed

+16
-14
lines changed

.github/workflows/onRelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: salesforcecli/github-workflows/.github/workflows/npmPublish.yml@main
2626
needs: [getDistTag]
2727
with:
28-
ctc: true
28+
# ctc: true
2929
sign: true
3030
tag: ${{ needs.getDistTag.outputs.tag || 'latest' }}
3131
githubTag: ${{ github.event.release.tag_name || inputs.tag }}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,17 @@
2525
},
2626
"devDependencies": {
2727
"@oclif/plugin-command-snapshot": "^5.2.19",
28-
"@oclif/test": "^4.1.0",
28+
"@oclif/test": "^4.1.14",
2929
"@salesforce/cli-plugins-testkit": "^5.3.41",
3030
"@salesforce/dev-scripts": "^11.0.4",
31-
"@salesforce/plugin-command-reference": "^3.1.67",
31+
"@salesforce/plugin-command-reference": "^3.1.72",
3232
"@types/inquirer": "^9.0.9",
3333
"@types/react": "^18.3.3",
3434
"eslint-config-xo": "^0.49.0",
3535
"eslint-config-xo-react": "^0.27.0",
3636
"eslint-plugin-react": "^7.34.3",
3737
"eslint-plugin-react-hooks": "^4.6.2",
38-
"eslint-plugin-sf-plugin": "^1.20.20",
38+
"eslint-plugin-sf-plugin": "^1.20.33",
3939
"esmock": "^2.7.1",
4040
"oclif": "^4.22.14",
4141
"ts-node": "^10.9.2",

test/nuts/agent.nut.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,8 +193,10 @@ describe('plugin-agent NUTs', () => {
193193
execCmd(`agent activate --api-name ${botApiName} --target-org ${username} --json`, { ensureExitCode: 0 });
194194
} catch (err) {
195195
const errMsg = err instanceof Error ? err.message : 'unknown';
196-
console.log(`Error activating agent due to ${errMsg}. \nWaiting 2 minutes and trying again...`);
197-
await sleep(120_000);
196+
const waitMin = 3;
197+
console.log(`Error activating agent due to ${errMsg}. \nWaiting ${waitMin} minutes and trying again...`);
198+
await sleep(waitMin * 60 * 1000);
199+
console.log(`${waitMin} minutes is up, retrying now.`);
198200
execCmd(`agent activate --api-name ${botApiName} --target-org ${username} --json`, { ensureExitCode: 0 });
199201
}
200202

yarn.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1539,7 +1539,7 @@
15391539
strip-ansi "^7.1.2"
15401540
wrap-ansi "^9.0.2"
15411541

1542-
"@oclif/test@^4.1.0":
1542+
"@oclif/test@^4.1.14":
15431543
version "4.1.14"
15441544
resolved "https://registry.yarnpkg.com/@oclif/test/-/test-4.1.14.tgz#3138664c28199957289d88aff78c4bd50a276fbf"
15451545
integrity sha512-FKPUBOnC1KnYZBcYOMNmt0DfdqTdSo2Vx8OnqgnMslHVPRPqrUF1bxfEHaw5W/+vOQLwF7MiEPq8DObpXfJJbg==
@@ -1607,7 +1607,7 @@
16071607
strip-ansi "6.0.1"
16081608
ts-retry-promise "^0.8.1"
16091609

1610-
"@salesforce/core@^8.18.7", "@salesforce/core@^8.19.1", "@salesforce/core@^8.22.0", "@salesforce/core@^8.23.0", "@salesforce/core@^8.23.1", "@salesforce/core@^8.5.1", "@salesforce/core@^8.8.0":
1610+
"@salesforce/core@^8.18.7", "@salesforce/core@^8.19.1", "@salesforce/core@^8.22.0", "@salesforce/core@^8.23.1", "@salesforce/core@^8.5.1", "@salesforce/core@^8.8.0":
16111611
version "8.23.1"
16121612
resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-8.23.1.tgz#89e04518d6d4033ef6a248380eb952328068797c"
16131613
integrity sha512-/mQMu6g0gmkKQsl+G93VkkU+yrLEjnBzdUu0sPlS0WY5jM4M9sxg97LmRXa6dchECU3c/ugamsXaP6j6QmEfsQ==
@@ -1676,7 +1676,7 @@
16761676
dependencies:
16771677
"@salesforce/ts-types" "^2.0.12"
16781678

1679-
"@salesforce/plugin-command-reference@^3.1.67":
1679+
"@salesforce/plugin-command-reference@^3.1.72":
16801680
version "3.1.72"
16811681
resolved "https://registry.yarnpkg.com/@salesforce/plugin-command-reference/-/plugin-command-reference-3.1.72.tgz#cfd03311c2a0d1dc3083d1ebf59ce9b9175626c3"
16821682
integrity sha512-/i4F7u16M3IT4oh3w7uYQM6Lk6cGsHldtcz+sV+uNKdFoYK3ikcEt1dX/RSXhm9SHMFGzcbhvDwGFZpGrHvplw==
@@ -4319,12 +4319,12 @@ eslint-plugin-react@^7.34.3:
43194319
string.prototype.matchall "^4.0.12"
43204320
string.prototype.repeat "^1.0.0"
43214321

4322-
eslint-plugin-sf-plugin@^1.20.20:
4323-
version "1.20.32"
4324-
resolved "https://registry.yarnpkg.com/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.20.32.tgz#9a3c1c84295090088addcf801abc082bb4980e35"
4325-
integrity sha512-laSlqqFgJEbffPw5XOxIgIdswsM7JxHqI0F7azKVmezIC0+ceEw0fkbIY1cI9cE/Ihu57/46GM5+fXRUYrodzw==
4322+
eslint-plugin-sf-plugin@^1.20.33:
4323+
version "1.20.33"
4324+
resolved "https://registry.yarnpkg.com/eslint-plugin-sf-plugin/-/eslint-plugin-sf-plugin-1.20.33.tgz#c59f7b330d71f09f02ff71a75e06ae7a98ceca40"
4325+
integrity sha512-qzl3IJ2Tqe33IXMlytehBk1Taz5o8CMu3Ujli3VW965k9RI90nCHxXj/JyRm8q7PqA02ENjJpNRR4Y5UP5kwIg==
43264326
dependencies:
4327-
"@salesforce/core" "^8.23.0"
4327+
"@salesforce/core" "^8.23.1"
43284328
"@typescript-eslint/utils" "^7.18.0"
43294329

43304330
eslint-plugin-unicorn@^50.0.1:

0 commit comments

Comments
 (0)