From 68c47d9f325c3fcb092e28e5598b50e043d8fee1 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 10:59:47 -0500 Subject: [PATCH 01/70] chore: jit-plugin matrix --- .github/workflows/test.yml | 11 ++++++++++- package.json | 4 ++-- yarn.lock | 16 ++++++++-------- 3 files changed, 20 insertions(+), 11 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 41af9fbb..e381bb59 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,11 +35,20 @@ jobs: name: manifest path: oclif.manifest.json + get-jit-plugins: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - run: | + JIT=$(jq '.oclif.jitPlugins | keys' package.json) + echo "jit=$JIT" >> "$GITHUB_OUTPUT" + jit-install: needs: [manifest] strategy: matrix: os: [ubuntu-latest, windows-latest] + jitPlugins: ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v3 @@ -51,7 +60,7 @@ jobs: - uses: actions/download-artifact@v2 with: name: manifest - - run: yarn sf-release cli:install:jit:test + - run: yarn sf-release cli:install:jit:test --jit-plugins ${{matrix.jitPlugins}} artifacts: runs-on: ubuntu-latest diff --git a/package.json b/package.json index 3e84763e..521ab82f 100644 --- a/package.json +++ b/package.json @@ -234,7 +234,7 @@ "@oclif/plugin-command-snapshot": "^3.3.0", "@salesforce/dev-config": "^4.0.1", "@salesforce/dev-scripts": "^3.1.1", - "@salesforce/plugin-release-management": "^4.2.2", + "@salesforce/plugin-release-management": "^4.3.1-dev.0", "@salesforce/prettier-config": "^0.0.3", "@salesforce/ts-sinon": "^1.4.15", "@types/debug": "^4.1.8", @@ -256,7 +256,7 @@ "husky": "^7.0.4", "mocha": "^9.2.2", "nyc": "^15.1.0", - "oclif": "^3.16.0", + "oclif": "^3.17.1", "prettier": "^2.8.8", "pretty-quick": "^3.1.3", "sinon": "^11.1.2", diff --git a/yarn.lock b/yarn.lock index 1ee1b8f4..21f24f8b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1797,10 +1797,10 @@ open "^8.4.2" tslib "^2" -"@salesforce/plugin-release-management@^4.2.2": - version "4.2.2" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-release-management/-/plugin-release-management-4.2.2.tgz#6187b91dc5b0d527ac31c68810eb2439e6808a39" - integrity sha512-vMw9O1z89MTnS4lRJ1ktGMrthYRIcMS8K7ceDVAsKydYryuaCxD4Ak+OA59/K+ihJ9fjjzkzqsWNt+NENDMwRQ== +"@salesforce/plugin-release-management@^4.3.1-dev.0": + version "4.3.1-dev.0" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-release-management/-/plugin-release-management-4.3.1-dev.0.tgz#5d893c0823479108856fb9db8c33561c92e12397" + integrity sha512-0GWkRqum5ar3/SSumuD8k4J+nr4wGFfbHyHtgYn6cSZTSs6ll+VaUNxs4rk/0tCJw6EYC/iPgCTt5A6IzwYoFw== dependencies: "@oclif/core" "^2.15.0" "@octokit/core" "^4.2.4" @@ -8219,10 +8219,10 @@ object.values@^1.1.5, object.values@^1.1.6: define-properties "^1.1.4" es-abstract "^1.20.4" -oclif@^3.16.0: - version "3.16.0" - resolved "https://registry.yarnpkg.com/oclif/-/oclif-3.16.0.tgz#b1983f310cbb25944d7da02125aa0c095aa7669d" - integrity sha512-qbPJ9SifBDPeMnuYIyJc0+kGyXmLubJs/lOD1wjrvAiKqTWQ1xy/EFlNMgBGETCf7RQf1iSJmvf+s22ZkLc7Ow== +oclif@^3.17.1: + version "3.17.1" + resolved "https://registry.yarnpkg.com/oclif/-/oclif-3.17.1.tgz#be210c063d4e78995b8dab594c3a220c4cf17710" + integrity sha512-qwop0W9s5nJJ9tTdLsYXxxvGSNc9xKjXccEAGCXM+x8NmGtZ4P89FwqDY4PIG7IeV9VNpYhZKQArpZNwPGn0CQ== dependencies: "@oclif/core" "^2.11.4" "@oclif/plugin-help" "^5.2.14" From a28887ef2c97644c57edc8519d465d6e6da30e19 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 11:12:51 -0500 Subject: [PATCH 02/70] chore: try quotes --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e381bb59..402bef41 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -41,7 +41,7 @@ jobs: - uses: actions/checkout@v3 - run: | JIT=$(jq '.oclif.jitPlugins | keys' package.json) - echo "jit=$JIT" >> "$GITHUB_OUTPUT" + echo "jit='$JIT'" >> "$GITHUB_OUTPUT" jit-install: needs: [manifest] From e4fd914ee2e8ddcc96f90f8eee73c01bc2180a19 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 11:16:15 -0500 Subject: [PATCH 03/70] chore: trying without fromJson --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 402bef41..c4965adf 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -41,14 +41,14 @@ jobs: - uses: actions/checkout@v3 - run: | JIT=$(jq '.oclif.jitPlugins | keys' package.json) - echo "jit='$JIT'" >> "$GITHUB_OUTPUT" + echo "jit=$JIT" >> "$GITHUB_OUTPUT" jit-install: needs: [manifest] strategy: matrix: os: [ubuntu-latest, windows-latest] - jitPlugins: ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} + jitPlugins: ${{ needs.get-jit-plugins.outputs.jit }} runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v3 From 1af1e351be7525d4306ff9905c4327c4dd2f976e Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 11:21:14 -0500 Subject: [PATCH 04/70] chore: try removing newlines --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c4965adf..58c0ac94 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,7 +40,7 @@ jobs: steps: - uses: actions/checkout@v3 - run: | - JIT=$(jq '.oclif.jitPlugins | keys' package.json) + JIT=$(jq '.oclif.jitPlugins | keys' package.json | tr -d '\n') echo "jit=$JIT" >> "$GITHUB_OUTPUT" jit-install: @@ -48,7 +48,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - jitPlugins: ${{ needs.get-jit-plugins.outputs.jit }} + jitPlugins: ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v3 From f7ab839bea535091f0bf6dd7f6e44b7698e28ce9 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 11:23:56 -0500 Subject: [PATCH 05/70] chore: add needs --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 58c0ac94..ccb55129 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -44,7 +44,7 @@ jobs: echo "jit=$JIT" >> "$GITHUB_OUTPUT" jit-install: - needs: [manifest] + needs: [manifest, get-jit-plugins] strategy: matrix: os: [ubuntu-latest, windows-latest] From bc322460dcea056442a753d5aa905b43e7801337 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 11:29:14 -0500 Subject: [PATCH 06/70] chore: add echo --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ccb55129..6e6e2915 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -41,6 +41,8 @@ jobs: - uses: actions/checkout@v3 - run: | JIT=$(jq '.oclif.jitPlugins | keys' package.json | tr -d '\n') + echo "Found JIT plugins:" + echo "$JIT" echo "jit=$JIT" >> "$GITHUB_OUTPUT" jit-install: From 5428fec4e810430e86f2dce6cb5972ca97e8387c Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 11:44:05 -0500 Subject: [PATCH 07/70] chore: testing hardcoded values --- .github/workflows/test.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6e6e2915..9fe54bdc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -50,7 +50,9 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - jitPlugins: ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} + jitPlugins: + - '@salesforce/plugin-community' + - '@salesforce/plugin-env' runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v3 @@ -62,7 +64,7 @@ jobs: - uses: actions/download-artifact@v2 with: name: manifest - - run: yarn sf-release cli:install:jit:test --jit-plugins ${{matrix.jitPlugins}} + - run: yarn sf-release cli:install:jit:test --jit-plugin ${{matrix.jitPlugins}} artifacts: runs-on: ubuntu-latest From a7498e42db06978cbca39a15c3c6ad65f3c75acd Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 13:31:30 -0500 Subject: [PATCH 08/70] chore: echo fromJSON output --- .github/workflows/test.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9fe54bdc..b8061f7b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -45,6 +45,13 @@ jobs: echo "$JIT" echo "jit=$JIT" >> "$GITHUB_OUTPUT" + echo-jit-plugins: + needs: get-jit-plugins + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - run: echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} + jit-install: needs: [manifest, get-jit-plugins] strategy: From 755cfee7d9dcc96d1066f149c0de719a5af3cf61 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 13:36:31 -0500 Subject: [PATCH 09/70] chore: compact jq --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b8061f7b..c9b1375a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,7 +40,7 @@ jobs: steps: - uses: actions/checkout@v3 - run: | - JIT=$(jq '.oclif.jitPlugins | keys' package.json | tr -d '\n') + JIT=$(jq -c '.oclif.jitPlugins | keys' package.json) echo "Found JIT plugins:" echo "$JIT" echo "jit=$JIT" >> "$GITHUB_OUTPUT" From f78d4812b4e0927e1c0d1b0f049c96a8d1a6d5be Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 13:48:47 -0500 Subject: [PATCH 10/70] chore: tojson --- .github/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c9b1375a..e5b97ba3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -50,7 +50,11 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - run: echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} + - run: | + echo "JIT to JSON:" + echo ${{ toJson(needs.get-jit-plugins.outputs.jit) }} + echo "JIT from JSON:" + echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} jit-install: needs: [manifest, get-jit-plugins] From 16f122b2a7a6956b27c5cc5e2bdf5d14afc4f292 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 13:53:29 -0500 Subject: [PATCH 11/70] chore: single quotes --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e5b97ba3..d57eceaa 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -43,7 +43,7 @@ jobs: JIT=$(jq -c '.oclif.jitPlugins | keys' package.json) echo "Found JIT plugins:" echo "$JIT" - echo "jit=$JIT" >> "$GITHUB_OUTPUT" + echo "jit='$JIT'" >> "$GITHUB_OUTPUT" echo-jit-plugins: needs: get-jit-plugins From 3647c4c8fba479cf3269c775b936e9e3c4d1fc37 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 13:59:26 -0500 Subject: [PATCH 12/70] chore: more quotes --- .github/workflows/test.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d57eceaa..f8b17ae5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,9 +40,9 @@ jobs: steps: - uses: actions/checkout@v3 - run: | - JIT=$(jq -c '.oclif.jitPlugins | keys' package.json) + JIT=$(jq '.oclif.jitPlugins | keys' package.json) echo "Found JIT plugins:" - echo "$JIT" + echo "'$JIT'" echo "jit='$JIT'" >> "$GITHUB_OUTPUT" echo-jit-plugins: @@ -61,9 +61,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - jitPlugins: - - '@salesforce/plugin-community' - - '@salesforce/plugin-env' + jitPlugins: ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v3 From 58ac5e0e869569aaa5e0fcbdbc2ee37a6a4e4134 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 14:35:44 -0500 Subject: [PATCH 13/70] chore: remove fromjson --- .github/workflows/test.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f8b17ae5..09808688 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,28 +40,28 @@ jobs: steps: - uses: actions/checkout@v3 - run: | - JIT=$(jq '.oclif.jitPlugins | keys' package.json) + JIT=$(jq -c '.oclif.jitPlugins | keys' package.json) echo "Found JIT plugins:" - echo "'$JIT'" - echo "jit='$JIT'" >> "$GITHUB_OUTPUT" + echo "$JIT" + echo "jit=$JIT" >> "$GITHUB_OUTPUT" - echo-jit-plugins: - needs: get-jit-plugins - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - run: | - echo "JIT to JSON:" - echo ${{ toJson(needs.get-jit-plugins.outputs.jit) }} - echo "JIT from JSON:" - echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} + # echo-jit-plugins: + # needs: get-jit-plugins + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v3 + # - run: | + # echo "JIT to JSON:" + # echo ${{ toJson(needs.get-jit-plugins.outputs.jit) }} + # echo "JIT from JSON:" + # echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} jit-install: needs: [manifest, get-jit-plugins] strategy: matrix: os: [ubuntu-latest, windows-latest] - jitPlugins: ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} + jitPlugins: ${{ needs.get-jit-plugins.outputs.jit }} runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v3 From d91c01212f2bb3adf7912d4f7503b9ecc54a71e9 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 14:43:52 -0500 Subject: [PATCH 14/70] chore: manual input --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 09808688..5c6b5f24 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -61,7 +61,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - jitPlugins: ${{ needs.get-jit-plugins.outputs.jit }} + jitPlugins: ['@salesforce/plugin-community', '@salesforce/plugin-custom-metadata'] runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v3 From a0a4754a807d702f403f0bd0e3b4f7ea5b12c8b3 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 14:48:35 -0500 Subject: [PATCH 15/70] chore: double --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5c6b5f24..782795a0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -61,7 +61,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - jitPlugins: ['@salesforce/plugin-community', '@salesforce/plugin-custom-metadata'] + jitPlugins: ["@salesforce/plugin-community","@salesforce/plugin-custom-metadata"] runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v3 From d859cd6d9c91f63493a63ef422aea7f30286788f Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 14:58:15 -0500 Subject: [PATCH 16/70] chore: why --- .github/workflows/test.yml | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 782795a0..403a4e8d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -43,25 +43,23 @@ jobs: JIT=$(jq -c '.oclif.jitPlugins | keys' package.json) echo "Found JIT plugins:" echo "$JIT" - echo "jit=$JIT" >> "$GITHUB_OUTPUT" + echo "jit='$JIT'" >> "$GITHUB_OUTPUT" - # echo-jit-plugins: - # needs: get-jit-plugins - # runs-on: ubuntu-latest - # steps: - # - uses: actions/checkout@v3 - # - run: | - # echo "JIT to JSON:" - # echo ${{ toJson(needs.get-jit-plugins.outputs.jit) }} - # echo "JIT from JSON:" - # echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} + echo-jit-plugins: + needs: get-jit-plugins + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - run: | + echo "JIT from JSON:" + echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} jit-install: needs: [manifest, get-jit-plugins] strategy: matrix: os: [ubuntu-latest, windows-latest] - jitPlugins: ["@salesforce/plugin-community","@salesforce/plugin-custom-metadata"] + jitPlugins: echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v3 From c020bf4fa24db69b5c83d4af28be6e2c29333330 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 15:12:17 -0500 Subject: [PATCH 17/70] chore: as object --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 403a4e8d..fc2893ca 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,10 +40,10 @@ jobs: steps: - uses: actions/checkout@v3 - run: | - JIT=$(jq -c '.oclif.jitPlugins | keys' package.json) + JIT=$(jq -c '{ plugins: .oclif.jitPlugins | keys }' package.json) echo "Found JIT plugins:" echo "$JIT" - echo "jit='$JIT'" >> "$GITHUB_OUTPUT" + echo "jit=$JIT" >> "$GITHUB_OUTPUT" echo-jit-plugins: needs: get-jit-plugins @@ -52,14 +52,14 @@ jobs: - uses: actions/checkout@v3 - run: | echo "JIT from JSON:" - echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} + echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit).plugins }} jit-install: needs: [manifest, get-jit-plugins] strategy: matrix: os: [ubuntu-latest, windows-latest] - jitPlugins: echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} + jitPlugins: echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit).plugins }} runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v3 From 037a4f0d7929d487e1caadd82edb31848b7e9117 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 15:15:12 -0500 Subject: [PATCH 18/70] chore: single quotes --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fc2893ca..f3b3f4cf 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -43,7 +43,7 @@ jobs: JIT=$(jq -c '{ plugins: .oclif.jitPlugins | keys }' package.json) echo "Found JIT plugins:" echo "$JIT" - echo "jit=$JIT" >> "$GITHUB_OUTPUT" + echo "jit='$JIT'" >> "$GITHUB_OUTPUT" echo-jit-plugins: needs: get-jit-plugins From a160443d24b985d944d5a4a82d270344b1af0245 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 15:20:11 -0500 Subject: [PATCH 19/70] chore: tojson frist --- .github/workflows/test.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f3b3f4cf..8c94294d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,10 +40,11 @@ jobs: steps: - uses: actions/checkout@v3 - run: | - JIT=$(jq -c '{ plugins: .oclif.jitPlugins | keys }' package.json) + JIT=$(jq -c '.oclif.jitPlugins | keys' package.json) + JIT_JSON='${{ toJson($JIT) }}' echo "Found JIT plugins:" - echo "$JIT" - echo "jit='$JIT'" >> "$GITHUB_OUTPUT" + echo "$JIT_JSON" + echo "jit=$JIT_JSON" >> "$GITHUB_OUTPUT" echo-jit-plugins: needs: get-jit-plugins @@ -51,15 +52,17 @@ jobs: steps: - uses: actions/checkout@v3 - run: | + echo "JIT JSON:" + echo ${{ needs.get-jit-plugins.outputs.jit }} echo "JIT from JSON:" - echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit).plugins }} + echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} jit-install: needs: [manifest, get-jit-plugins] strategy: matrix: os: [ubuntu-latest, windows-latest] - jitPlugins: echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit).plugins }} + jitPlugins: echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v3 From 45edef6ccf58dcd2669059785ba5900a2e5e187f Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 15:22:30 -0500 Subject: [PATCH 20/70] chore: tojson --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8c94294d..19fb9704 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -41,10 +41,10 @@ jobs: - uses: actions/checkout@v3 - run: | JIT=$(jq -c '.oclif.jitPlugins | keys' package.json) - JIT_JSON='${{ toJson($JIT) }}' echo "Found JIT plugins:" - echo "$JIT_JSON" - echo "jit=$JIT_JSON" >> "$GITHUB_OUTPUT" + echo "$JIT" + echo "jit=$JIT" >> "$GITHUB_OUTPUT" + echo "$GITHUB_OUTPUT" echo-jit-plugins: needs: get-jit-plugins @@ -53,7 +53,7 @@ jobs: - uses: actions/checkout@v3 - run: | echo "JIT JSON:" - echo ${{ needs.get-jit-plugins.outputs.jit }} + echo ${{ toJson(needs.get-jit-plugins.outputs.jit) }} echo "JIT from JSON:" echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} From b19d9dd37d64e0ec40d4691ebe93c58bc37354e8 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 15:26:50 -0500 Subject: [PATCH 21/70] chore: seperate steps --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 19fb9704..506edfcd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -44,7 +44,6 @@ jobs: echo "Found JIT plugins:" echo "$JIT" echo "jit=$JIT" >> "$GITHUB_OUTPUT" - echo "$GITHUB_OUTPUT" echo-jit-plugins: needs: get-jit-plugins @@ -52,8 +51,9 @@ jobs: steps: - uses: actions/checkout@v3 - run: | - echo "JIT JSON:" - echo ${{ toJson(needs.get-jit-plugins.outputs.jit) }} + echo "JIT to JSON:" + echo ${{ toJSON(needs.get-jit-plugins.outputs.jit) }} + - run: | echo "JIT from JSON:" echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} From 375795be93277a550600b988907d23d073ffe363 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 15:32:19 -0500 Subject: [PATCH 22/70] chore: more logging --- .github/workflows/test.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 506edfcd..41efa974 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -37,6 +37,8 @@ jobs: get-jit-plugins: runs-on: ubuntu-latest + outputs: + jit: ${{ steps.get-jit-plugins.outputs.jit }} steps: - uses: actions/checkout@v3 - run: | @@ -50,6 +52,12 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - run: | + echo "JIT:" + echo ${{ needs.get-jit-plugins.outputs.jit }} + - run: | + echo "Steps": + echo ${{ toJSON(job)}} - run: | echo "JIT to JSON:" echo ${{ toJSON(needs.get-jit-plugins.outputs.jit) }} From a5dd08a7c5558dc974f5d73541ab582caa1a13ca Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 16:04:51 -0500 Subject: [PATCH 23/70] chore: outputs --- .github/workflows/test.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 41efa974..0751d686 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -38,10 +38,12 @@ jobs: get-jit-plugins: runs-on: ubuntu-latest outputs: - jit: ${{ steps.get-jit-plugins.outputs.jit }} + jit: ${{ steps.plugins.outputs.jit }} steps: - uses: actions/checkout@v3 - - run: | + - name: Get JIT plugins + id: plugins + run: | JIT=$(jq -c '.oclif.jitPlugins | keys' package.json) echo "Found JIT plugins:" echo "$JIT" From b2b1ae3c8439960c31c94e45282084f946e0e6b8 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 16:11:51 -0500 Subject: [PATCH 24/70] chore: remove job echo --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0751d686..a771ce9e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -57,9 +57,9 @@ jobs: - run: | echo "JIT:" echo ${{ needs.get-jit-plugins.outputs.jit }} - - run: | - echo "Steps": - echo ${{ toJSON(job)}} + # - run: | + # echo "Steps": + # echo ${{ toJSON(job)}} - run: | echo "JIT to JSON:" echo ${{ toJSON(needs.get-jit-plugins.outputs.jit) }} @@ -72,7 +72,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - jitPlugins: echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} + jitPlugins: ${{ needs.get-jit-plugins.outputs.jit }} runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v3 From 2dde5cf61a3024605d1926de81833bb8792329d4 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 16:15:24 -0500 Subject: [PATCH 25/70] chore: toJson in needs --- .github/workflows/test.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a771ce9e..c963e0a8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -57,9 +57,6 @@ jobs: - run: | echo "JIT:" echo ${{ needs.get-jit-plugins.outputs.jit }} - # - run: | - # echo "Steps": - # echo ${{ toJSON(job)}} - run: | echo "JIT to JSON:" echo ${{ toJSON(needs.get-jit-plugins.outputs.jit) }} @@ -72,7 +69,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - jitPlugins: ${{ needs.get-jit-plugins.outputs.jit }} + jitPlugins: ${{ toJson(needs.get-jit-plugins.outputs.jit) }} runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v3 From d59adad50daf48afa8b001f932fa0d81dc0cbe8b Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 16:18:00 -0500 Subject: [PATCH 26/70] chore: single quotes --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c963e0a8..056e976b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -47,7 +47,7 @@ jobs: JIT=$(jq -c '.oclif.jitPlugins | keys' package.json) echo "Found JIT plugins:" echo "$JIT" - echo "jit=$JIT" >> "$GITHUB_OUTPUT" + echo "jit='$JIT'" >> "$GITHUB_OUTPUT" echo-jit-plugins: needs: get-jit-plugins From 1855fa1cce07d5bafc3b8f8df586c45cd4d0afbb Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 16:20:47 -0500 Subject: [PATCH 27/70] chore: fromjson --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 056e976b..2ae8ddfc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -69,7 +69,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - jitPlugins: ${{ toJson(needs.get-jit-plugins.outputs.jit) }} + jitPlugins: ${{ fromJson(needs.get-jit-plugins.outputs.jit) }} runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v3 From 520d58696efaa4883e3247d5d30d4300819b2a4b Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 16:27:17 -0500 Subject: [PATCH 28/70] chore: fromJSON --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2ae8ddfc..d814121c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -69,7 +69,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - jitPlugins: ${{ fromJson(needs.get-jit-plugins.outputs.jit) }} + jitPlugins: ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v3 From 6527b1a58bee1c43cb4a525c8b4e13d0f46dedd3 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 16:30:56 -0500 Subject: [PATCH 29/70] chore: to and from json --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d814121c..4c137f37 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -69,7 +69,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - jitPlugins: ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} + jitPlugins: ${{ toJSON(fromJSON(needs.get-jit-plugins.outputs.jit)) }} runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v3 From a645059df21d61419a195cb4df9ea42efb72acc5 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 16:33:37 -0500 Subject: [PATCH 30/70] chore: no json --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4c137f37..3b23f7ba 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -69,7 +69,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - jitPlugins: ${{ toJSON(fromJSON(needs.get-jit-plugins.outputs.jit)) }} + jitPlugins: ${{ needs.get-jit-plugins.outputs.jit }} runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v3 From 366464d31b033b828d2778439d0b5fce15a2445f Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 16:41:20 -0500 Subject: [PATCH 31/70] chore: json job --- .github/workflows/test.yml | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3b23f7ba..4e3948ca 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -49,6 +49,20 @@ jobs: echo "$JIT" echo "jit='$JIT'" >> "$GITHUB_OUTPUT" + get-jit-plugins-json: + runs-on: ubuntu-latest + needs: get-jit-plugins + outputs: + jitJson: ${{ steps.jitJson.outputs.jitJson }} + steps: + - name: Get JIT plugins JSON + id: jitJson + run: | + JSON='${{ toJSON(steps.plugins.outputs.jit) }}' + echo "JIT JSON:" + echo "$JSON" + echo "jitJson=$JSON" >> "$GITHUB_OUTPUT" + echo-jit-plugins: needs: get-jit-plugins runs-on: ubuntu-latest @@ -65,11 +79,11 @@ jobs: echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} jit-install: - needs: [manifest, get-jit-plugins] + needs: [manifest, get-jit-plugins-json] strategy: matrix: os: [ubuntu-latest, windows-latest] - jitPlugins: ${{ needs.get-jit-plugins.outputs.jit }} + jitPlugins: ${{ fromJSON(needs.get-jit-plugins-json.outputs.jitJson) }} runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v3 From d271d70d00becabb798b525abae8c47fa4e1e0ce Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 16:43:11 -0500 Subject: [PATCH 32/70] chore: needs not step --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4e3948ca..9fab50e4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -53,7 +53,7 @@ jobs: runs-on: ubuntu-latest needs: get-jit-plugins outputs: - jitJson: ${{ steps.jitJson.outputs.jitJson }} + jitJson: ${{ needs.jitJson.outputs.jitJson }} steps: - name: Get JIT plugins JSON id: jitJson From ec26bca806a8a8f84ac26b5354c85fdaa13e729e Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 16:48:39 -0500 Subject: [PATCH 33/70] chore: swap --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9fab50e4..48ec08a5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -53,12 +53,12 @@ jobs: runs-on: ubuntu-latest needs: get-jit-plugins outputs: - jitJson: ${{ needs.jitJson.outputs.jitJson }} + jitJson: ${{ steps.jitJson.outputs.jitJson }} steps: - name: Get JIT plugins JSON id: jitJson run: | - JSON='${{ toJSON(steps.plugins.outputs.jit) }}' + JSON='${{ toJSON(needs.get-jit-plugins.outputs.jit) }}' echo "JIT JSON:" echo "$JSON" echo "jitJson=$JSON" >> "$GITHUB_OUTPUT" From 8784fb3743985210afe64351a8c32682bc170485 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 17:00:17 -0500 Subject: [PATCH 34/70] chore: tostring --- .github/workflows/test.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 48ec08a5..1ae2271d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -44,10 +44,11 @@ jobs: - name: Get JIT plugins id: plugins run: | - JIT=$(jq -c '.oclif.jitPlugins | keys' package.json) + JIT=$(jq -c '.oclif.jitPlugins | keys | tostring' package.json) echo "Found JIT plugins:" echo "$JIT" - echo "jit='$JIT'" >> "$GITHUB_OUTPUT" + echo $JIT + echo "jit=$JIT" >> "$GITHUB_OUTPUT" get-jit-plugins-json: runs-on: ubuntu-latest @@ -83,7 +84,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - jitPlugins: ${{ fromJSON(needs.get-jit-plugins-json.outputs.jitJson) }} + jitPlugins: ${{ needs.get-jit-plugins.outputs.jit }} runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v3 From bbc0398710aa6e77bd5f2114da75b22c9876fa9d Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Fri, 22 Sep 2023 17:02:56 -0500 Subject: [PATCH 35/70] chore: fromJSON --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1ae2271d..bb21837a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -84,7 +84,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - jitPlugins: ${{ needs.get-jit-plugins.outputs.jit }} + jitPlugins: ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v3 From 2b40b6c078ac37f5591b7c7d4d2147748748edc8 Mon Sep 17 00:00:00 2001 From: svc-cli-bot Date: Sat, 23 Sep 2023 02:07:49 +0000 Subject: [PATCH 36/70] chore(release): bump to 2.11.2 --- package.json | 8 ++++---- yarn.lock | 16 ++++++++-------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/package.json b/package.json index 3e84763e..8aff3363 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@salesforce/cli", "description": "The Salesforce CLI", - "version": "2.11.1", + "version": "2.11.2", "author": "Salesforce", "bin": { "sf": "./bin/run", @@ -76,7 +76,7 @@ "@salesforce/plugin-devops-center": "1.2.0", "@salesforce/plugin-env": "2.2.1", "@salesforce/plugin-functions": "1.22.3", - "@salesforce/plugin-packaging": "1.25.1", + "@salesforce/plugin-packaging": "1.26.0", "@salesforce/plugin-signups": "1.5.0", "@salesforce/sfdx-plugin-lwc-test": "1.1.0", "@salesforce/sfdx-scanner": "3.16.0" @@ -123,10 +123,10 @@ "dependencies": { "@oclif/core": "2.15.0", "@oclif/plugin-autocomplete": "2.3.8", - "@oclif/plugin-commands": "2.2.25", + "@oclif/plugin-commands": "2.2.26", "@oclif/plugin-help": "5.2.19", "@oclif/plugin-not-found": "2.4.1", - "@oclif/plugin-plugins": "3.7.1", + "@oclif/plugin-plugins": "3.8.0", "@oclif/plugin-search": "0.0.22", "@oclif/plugin-update": "3.2.3", "@oclif/plugin-version": "1.3.10", diff --git a/yarn.lock b/yarn.lock index 1ee1b8f4..33e68120 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1187,10 +1187,10 @@ ts-json-schema-generator "^1.2.0" tslib "^2.5.0" -"@oclif/plugin-commands@2.2.25": - version "2.2.25" - resolved "https://registry.yarnpkg.com/@oclif/plugin-commands/-/plugin-commands-2.2.25.tgz#980a012deb0545612ce1ff49b9a6c8887de37313" - integrity sha512-DKlWM0B0b0ypOCvcpJk3PLZ+oKmaSgGuOUa5zjF/JiYUfS1eJXyO3wp47TZ/z67ANui8gEBQc12mFJCjHuc2GA== +"@oclif/plugin-commands@2.2.26": + version "2.2.26" + resolved "https://registry.yarnpkg.com/@oclif/plugin-commands/-/plugin-commands-2.2.26.tgz#a85bd89c9bf8b95280d719d491550c0a928527cc" + integrity sha512-DvJ2EnCt5S/VPLwnb9LApumqBNXsJQ8iIO9DL7tJk4i7+WSIlndvoO2xqRSFOqdXBGojs8LZmDYbCGhcjO4J7g== dependencies: "@oclif/core" "^2.15.0" lodash "^4.17.11" @@ -1228,10 +1228,10 @@ chalk "^4" fast-levenshtein "^3.0.0" -"@oclif/plugin-plugins@3.7.1": - version "3.7.1" - resolved "https://registry.yarnpkg.com/@oclif/plugin-plugins/-/plugin-plugins-3.7.1.tgz#595ad7980862722951a29610ec7a6b42453881a2" - integrity sha512-3YrJZ6XlAntOV2UJNme5iuE7cYx57Yg+PaMSLLkU/1AnDSIoNLlkKk1Y3AQmbd8B3aKOZtI9/bJzFXV8nmvgiw== +"@oclif/plugin-plugins@3.8.0": + version "3.8.0" + resolved "https://registry.yarnpkg.com/@oclif/plugin-plugins/-/plugin-plugins-3.8.0.tgz#d83ad5fb1a1c37864b23dfd1f1180d5d4ba9e5a7" + integrity sha512-yQ+M0REyP7DeCQQ4j4TDYV2bu0wy66tJzrO/ZN/ZHbwdzcyM3JmfQsqo9rBSXDJZf6FU2xL9P2+Gfj2VpG7qMw== dependencies: "@oclif/core" "^2.15.0" chalk "^4.1.2" From 44b116a768809a5c15711cad1ccb4c94e04aa787 Mon Sep 17 00:00:00 2001 From: svc-cli-bot Date: Mon, 25 Sep 2023 02:10:28 +0000 Subject: [PATCH 37/70] chore(release): bump to 2.11.3 --- package.json | 36 +++++++-------- yarn.lock | 128 +++++++++++++++++++++++++-------------------------- 2 files changed, 82 insertions(+), 82 deletions(-) diff --git a/package.json b/package.json index 8aff3363..242c075f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@salesforce/cli", "description": "The Salesforce CLI", - "version": "2.11.2", + "version": "2.11.3", "author": "Salesforce", "bin": { "sf": "./bin/run", @@ -70,14 +70,14 @@ "@salesforce/plugin-user" ], "jitPlugins": { - "@salesforce/plugin-custom-metadata": "2.2.2", - "@salesforce/plugin-community": "2.4.2", + "@salesforce/plugin-custom-metadata": "2.2.4", + "@salesforce/plugin-community": "2.4.4", "@salesforce/plugin-dev": "1.2.0", "@salesforce/plugin-devops-center": "1.2.0", - "@salesforce/plugin-env": "2.2.1", + "@salesforce/plugin-env": "2.2.2", "@salesforce/plugin-functions": "1.22.3", - "@salesforce/plugin-packaging": "1.26.0", - "@salesforce/plugin-signups": "1.5.0", + "@salesforce/plugin-packaging": "1.26.1", + "@salesforce/plugin-signups": "1.5.1", "@salesforce/sfdx-plugin-lwc-test": "1.1.0", "@salesforce/sfdx-scanner": "3.16.0" }, @@ -135,22 +135,22 @@ "@salesforce/core": "^5.2.0", "@salesforce/plugin-apex": "2.3.15", "@salesforce/plugin-auth": "2.8.17", - "@salesforce/plugin-data": "2.5.9", + "@salesforce/plugin-data": "2.5.11", "@salesforce/plugin-deploy-retrieve": "1.18.0", - "@salesforce/plugin-info": "2.6.43", - "@salesforce/plugin-limits": "2.3.34", + "@salesforce/plugin-info": "2.6.44", + "@salesforce/plugin-limits": "2.3.35", "@salesforce/plugin-login": "1.2.31", "@salesforce/plugin-marketplace": "0.2.2", "@salesforce/plugin-org": "2.10.8", - "@salesforce/plugin-schema": "2.3.26", - "@salesforce/plugin-settings": "1.4.29", + "@salesforce/plugin-schema": "2.3.27", + "@salesforce/plugin-settings": "1.4.30", "@salesforce/plugin-sobject": "0.2.7", - "@salesforce/plugin-source": "2.10.34", - "@salesforce/plugin-telemetry": "2.3.3", - "@salesforce/plugin-templates": "55.5.12", - "@salesforce/plugin-trust": "2.6.13", + "@salesforce/plugin-source": "2.10.36", + "@salesforce/plugin-telemetry": "2.3.4", + "@salesforce/plugin-templates": "55.5.13", + "@salesforce/plugin-trust": "2.6.14", "@salesforce/plugin-user": "2.3.32", - "@salesforce/sf-plugins-core": "3.1.23", + "@salesforce/sf-plugins-core": "3.1.24", "debug": "^4.3.4", "tslib": "^2.4.1" }, @@ -188,8 +188,8 @@ "resolutions": { "@salesforce/schemas": "1.6.0", "@salesforce/templates": "59.0.1", - "@salesforce/source-deploy-retrieve": "9.7.15", - "@salesforce/source-tracking": "4.2.13" + "@salesforce/source-deploy-retrieve": "9.7.16", + "@salesforce/source-tracking": "4.2.14" }, "repository": "salesforcecli/cli", "scripts": { diff --git a/yarn.lock b/yarn.lock index 33e68120..8f896ea5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1576,7 +1576,7 @@ strip-ansi "6.0.1" ts-retry-promise "^0.7.1" -"@salesforce/core@^5.2.0", "@salesforce/core@^5.2.5", "@salesforce/core@^5.2.6", "@salesforce/core@^5.2.7", "@salesforce/core@^5.2.9": +"@salesforce/core@^5.2.0", "@salesforce/core@^5.2.10", "@salesforce/core@^5.2.5", "@salesforce/core@^5.2.6", "@salesforce/core@^5.2.7", "@salesforce/core@^5.2.9": version "5.2.10" resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-5.2.10.tgz#7f4824ddcef108b6ccec24434260c620de39012e" integrity sha512-Xj1QRajmHWgl0ahivjKFGKJlGXwe9yFOZ3PwF91qEupGbO74XrCJ8OUM7EVlk53LKy9LlPZQFuy2ATX9MyEDKA== @@ -1698,15 +1698,15 @@ handlebars "^4.7.8" tslib "^2" -"@salesforce/plugin-data@2.5.9": - version "2.5.9" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-data/-/plugin-data-2.5.9.tgz#aaeeb101f3bea4fc9055ebf7efe8370d617a7a4b" - integrity sha512-vxwEmLL1V9R4ZwfjSZKjni8LYSliytmeLWea51PlkNjKQb01b9XQr+e8cdwKnwYYaTe76xAHHusKJ8e/ik0XwQ== +"@salesforce/plugin-data@2.5.11": + version "2.5.11" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-data/-/plugin-data-2.5.11.tgz#667abaa8a7ae3bc422362a49725305166ef12bbd" + integrity sha512-hP2luZnHj2hNSB7gfJsCMAc3eklhfwLfCLBUhP4HWFaueiVpmWDg8D+XIzXiAtZqRk7BA0/J6XS07w99KpvLsg== dependencies: "@oclif/core" "^2.15.0" - "@salesforce/core" "^5.2.0" + "@salesforce/core" "^5.2.10" "@salesforce/kit" "^3.0.9" - "@salesforce/sf-plugins-core" "^3.1.22" + "@salesforce/sf-plugins-core" "^3.1.23" "@salesforce/ts-types" "^2.0.6" chalk "^4.1.0" csv-parse "^4.16.3" @@ -1730,13 +1730,13 @@ shelljs "^0.8.5" tslib "^2" -"@salesforce/plugin-info@2.6.43": - version "2.6.43" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-info/-/plugin-info-2.6.43.tgz#b1a6ac2f653b9b93351f5ef6ef145011730b3ce9" - integrity sha512-Im1UX4lvBxNLxPn2wFD50uEh7tHZQERDU6+9PjhT4ng4PRz2KsTpliIcSLL8e7roliTno8NUhRCTe+KrgUAEQw== +"@salesforce/plugin-info@2.6.44": + version "2.6.44" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-info/-/plugin-info-2.6.44.tgz#b177c92ba447e468973485b0aa64c4002b8564e1" + integrity sha512-m0fTjrEEd2k19MhWwEUovn/grigkJsxR8IYqAazcxWVwtLZau9i82j1+QOJaUfzL3pp0ddP6URgIRge0AAhBFw== dependencies: "@oclif/core" "^2.15.0" - "@salesforce/core" "^5.2.7" + "@salesforce/core" "^5.2.10" "@salesforce/kit" "^3.0.9" "@salesforce/sf-plugins-core" "^3.1.22" got "^11.8.6" @@ -1747,13 +1747,13 @@ semver "^7.5.4" tslib "^2" -"@salesforce/plugin-limits@2.3.34": - version "2.3.34" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-limits/-/plugin-limits-2.3.34.tgz#13f78eea83da6723bf5167f1d0066babeed4c605" - integrity sha512-LQ7O5PznZW32tWh951cBOVSprKbBd+K/G2+rxnvCE3dgcH2Io9hqeiq9me6gmT3FpsMF7/sEVn+BlohG/icXTw== +"@salesforce/plugin-limits@2.3.35": + version "2.3.35" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-limits/-/plugin-limits-2.3.35.tgz#6e1c61a91b191726e2f28f5c1ba72c40a2224c7b" + integrity sha512-ACVXlMAmkg9WIB6DLKh+8dpkXlT2dmbWJmsK9f3c89wCntE+lS7c6RnTDkxKUbsoQJe6BFGtYBkfvKGPYBwQQQ== dependencies: "@oclif/core" "^2.15.0" - "@salesforce/core" "^5.2.0" + "@salesforce/core" "^5.2.10" "@salesforce/kit" "^3.0.11" "@salesforce/sf-plugins-core" "^3.1.22" "@salesforce/ts-types" "^2.0.6" @@ -1826,23 +1826,23 @@ tslib "^2" yarn-deduplicate "^3.1.0" -"@salesforce/plugin-schema@2.3.26": - version "2.3.26" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-schema/-/plugin-schema-2.3.26.tgz#52935edf4385a9e7d550e7918fe00f494a952101" - integrity sha512-r7Ipxj/ex7Dta1PnY9Kjz9qiPfqwNF0uamoEEXH68Gv8VoM6LLX9s2Q8t6mu35Wbqo1MB3GwqK0rtQHcKOgOVA== +"@salesforce/plugin-schema@2.3.27": + version "2.3.27" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-schema/-/plugin-schema-2.3.27.tgz#c50e27c42afb24335781afe19e3eb59a9249fa6e" + integrity sha512-5llOET9Tnw1MypsRV1EwgZx7ys05+uUqFfuuUic1W8UEK5zIsrgV1pr9emLfIddez9De84cIxIWyrU6CxQpUjg== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.2.5" - "@salesforce/sf-plugins-core" "^3.1.22" + "@salesforce/sf-plugins-core" "^3.1.23" tslib "^2" -"@salesforce/plugin-settings@1.4.29": - version "1.4.29" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-settings/-/plugin-settings-1.4.29.tgz#045b23d8ed0a4a456dd17e3cb0b95b72052818ee" - integrity sha512-9fuGm75rcliHeevQNgVzzfDe3Ob+0ka8opi+P7j30OxHJr/Z6huZvp/beq4RrIXdTYr9kHuWXYDJ28vp+HadUQ== +"@salesforce/plugin-settings@1.4.30": + version "1.4.30" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-settings/-/plugin-settings-1.4.30.tgz#9786484a812d38c5a3493272c50e61da5714b6ec" + integrity sha512-eezOWSoGNuVRbfyqXNSuLnRycdtIIyLxskcq0QldQIp/1jcQTeA+d1aM8DTatSnxyhbw2Z3JJA0+DL+2noKk+g== dependencies: "@oclif/core" "^2.15.0" - "@salesforce/core" "^5.2.0" + "@salesforce/core" "^5.2.10" "@salesforce/sf-plugins-core" "^3.1.22" fast-levenshtein "^3.0.0" tslib "^2" @@ -1863,56 +1863,56 @@ js2xmlparser "^4.0.2" tslib "^2" -"@salesforce/plugin-source@2.10.34": - version "2.10.34" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-source/-/plugin-source-2.10.34.tgz#a73f91c2902858ae73b9e4b9b6b8b8b5d1a741eb" - integrity sha512-gHV4XU8+iEV7xeK5YOctK9k/VkRPS40nnMK6FAoVUu53xGeY/bxxiPiRLJPkbIe4IHOk3Ovs4+X3XF+bNiegYg== +"@salesforce/plugin-source@2.10.36": + version "2.10.36" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-source/-/plugin-source-2.10.36.tgz#16e85f2c2530915303c9a40cefc99ad621917d56" + integrity sha512-zX/BPSQceFDlokaMqtUM+Tb/xLlG3FE5U1p9XQbqcXn+T51UM1u6OFcRAuBzueFprnXpzrOdSn9kt5mIOdGamQ== dependencies: "@oclif/core" "^2.15.0" "@salesforce/apex-node" "^2.1.0" "@salesforce/core" "^5.2.0" "@salesforce/kit" "^3.0.9" - "@salesforce/sf-plugins-core" "^3.1.20" + "@salesforce/sf-plugins-core" "^3.1.23" "@salesforce/source-deploy-retrieve" "^9.7.4" "@salesforce/source-tracking" "^4.2.10" chalk "^4.1.2" got "^11.8.6" - proxy-agent "^6.3.0" + proxy-agent "^6.3.1" tslib "^2" -"@salesforce/plugin-telemetry@2.3.3": - version "2.3.3" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-telemetry/-/plugin-telemetry-2.3.3.tgz#7f6771358515862e80bda953640e806e61cd6da1" - integrity sha512-1DSYpJt4LdYDFku5G34xlck4dMPDuWKl6L/jGEnwM0dzERC+8YXwLsHfoOtnUNBQrTp2MXs5vxK6nV9vHVZmYg== +"@salesforce/plugin-telemetry@2.3.4": + version "2.3.4" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-telemetry/-/plugin-telemetry-2.3.4.tgz#3a168ef2ba15ffd2a18b0319f414a635279c0ca3" + integrity sha512-wyiK583/zFtu+KqYjmvZhe9SJZjLh567c24NSiYzPie/EW0F6N4JJLx8kJ+g6o9kJbRdXNyx9bTzKIEJwr/M0A== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.2.9" - "@salesforce/sf-plugins-core" "^3.1.20" + "@salesforce/sf-plugins-core" "^3.1.23" "@salesforce/telemetry" "^4.1.3" debug "^4.3.4" tslib "^2" -"@salesforce/plugin-templates@55.5.12": - version "55.5.12" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-templates/-/plugin-templates-55.5.12.tgz#7d9653515ee21c7b2e1557d960639fa93a03ef78" - integrity sha512-4SlyRVZeFvRy6u5xbG08ZTFTCl6lE/gCZ5pSVLUT7OLbJ8sgMOSrqXtv2lHLUrIDn6znbFzgjydKsmvBfbHY7w== +"@salesforce/plugin-templates@55.5.13": + version "55.5.13" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-templates/-/plugin-templates-55.5.13.tgz#88b224d59ec169337b456152441a89ef6b06dfbb" + integrity sha512-tX4EjtTDIhu88XW3IrWn2xBtQQH2hh1PPpUR0mEDRITLfn9SUD/3nEpGBjvmplWUH74/eiGoHXsoi+rTs4ZbJw== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.2.9" - "@salesforce/sf-plugins-core" "^3.1.20" + "@salesforce/sf-plugins-core" "^3.1.23" "@salesforce/templates" "^59.0.1" tslib "^2" yeoman-environment "^3.19.3" yeoman-generator "^5.9.0" -"@salesforce/plugin-trust@2.6.13", "@salesforce/plugin-trust@^2.6.8": - version "2.6.13" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-trust/-/plugin-trust-2.6.13.tgz#8d7cf0569b5ce8330f1e16464756e2c47c76ae2c" - integrity sha512-tB1sF69TAg5LXkz7LfLIDnbyuWM4J8t9mcmh6r5RkZmdWHiyaHYtk8DDu+xEwTuB9zSXEfVrJeiQPaY07h9VJw== +"@salesforce/plugin-trust@2.6.14", "@salesforce/plugin-trust@^2.6.8": + version "2.6.14" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-trust/-/plugin-trust-2.6.14.tgz#88f5114762197c97ed134cf9c902819093d01de5" + integrity sha512-EAPvsm9KJAYi0aVbnRVUmEMjAMt50EKy8xFIk2hSBmCZ+3G/j+xTNmz2AmLFK9IjVJd6lQD9T5rNaUFrEQ2BMg== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.2.9" - "@salesforce/sf-plugins-core" "^3.1.22" + "@salesforce/sf-plugins-core" "^3.1.23" got "^11" npm "9.6.7" npm-run-path "^4.0.1" @@ -1947,24 +1947,24 @@ resolved "https://registry.yarnpkg.com/@salesforce/schemas/-/schemas-1.6.0.tgz#14505ebad2fb2d4f7b14837545d662766d293561" integrity sha512-SwhDTLucj/GRbPpxlEoDZeqlX22o+G6fiebTXTu1cZKmd1oE0W2L7SlTTgJnWck8bhTeBIgQi9cpD8c2t5ISKA== -"@salesforce/sf-plugins-core@3.1.23", "@salesforce/sf-plugins-core@^3.1.14", "@salesforce/sf-plugins-core@^3.1.20", "@salesforce/sf-plugins-core@^3.1.22": - version "3.1.23" - resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-3.1.23.tgz#c458b4a24d16d6bf1de084cf76cf085623cfcb7c" - integrity sha512-cGa1jh6VBQhiqz2LyBqNkex0rVLmK1Xl/jRCj0odr6CApWz10AqgshqusQX2JEqkP/uxiH4n0aDZ/3y+n+ny/A== +"@salesforce/sf-plugins-core@3.1.24", "@salesforce/sf-plugins-core@^3.1.14", "@salesforce/sf-plugins-core@^3.1.20", "@salesforce/sf-plugins-core@^3.1.22", "@salesforce/sf-plugins-core@^3.1.23": + version "3.1.24" + resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-3.1.24.tgz#3b68fc5f69ee3910f023467f45d96634cab866d4" + integrity sha512-VzYalv5ArjpKOn0PAAXmLjRv3xnyf1MhoYygFtmcWIvOWvlqndtqtZaC5JkLQgJduF905YDEg5dKsIAUd6R6Sg== dependencies: "@oclif/core" "^2.15.0" - "@salesforce/core" "^5.2.9" + "@salesforce/core" "^5.2.10" "@salesforce/kit" "^3.0.11" "@salesforce/ts-types" "^2.0.7" chalk "^4" inquirer "^8.2.5" -"@salesforce/source-deploy-retrieve@9.7.15", "@salesforce/source-deploy-retrieve@^9.7.13", "@salesforce/source-deploy-retrieve@^9.7.15", "@salesforce/source-deploy-retrieve@^9.7.4": - version "9.7.15" - resolved "https://registry.yarnpkg.com/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-9.7.15.tgz#a891e95101816a7e33854bc42ba21fafbdb1728e" - integrity sha512-av9Ojd9B/uegLNJth41aVPvAVPh8N0CllzfiDG5qbtDXW7WV/bqgWjiiiGc1U6RWnJ9OmQZNL/EjaSX0UPhiLA== +"@salesforce/source-deploy-retrieve@9.7.16", "@salesforce/source-deploy-retrieve@^9.7.13", "@salesforce/source-deploy-retrieve@^9.7.15", "@salesforce/source-deploy-retrieve@^9.7.4": + version "9.7.16" + resolved "https://registry.yarnpkg.com/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-9.7.16.tgz#580dae1e9af63cb2974c0578d9357daa596515ed" + integrity sha512-N84aFHRR6dGQQz/RayVnsZdU7BzL4Ug13lVfgqj5MmTPuPh/49SsbOfWKSgc8jKjDWUfT4Pf25cu32EJVCXGMA== dependencies: - "@salesforce/core" "^5.2.9" + "@salesforce/core" "^5.2.10" "@salesforce/kit" "^3.0.11" "@salesforce/ts-types" "^2.0.7" fast-levenshtein "^3.0.0" @@ -1978,14 +1978,14 @@ proxy-agent "^6.3.1" unzipper "0.10.14" -"@salesforce/source-tracking@4.2.13", "@salesforce/source-tracking@^4.2.10", "@salesforce/source-tracking@^4.2.12": - version "4.2.13" - resolved "https://registry.yarnpkg.com/@salesforce/source-tracking/-/source-tracking-4.2.13.tgz#cdebd77782483b854f70ca2a6d839f08eecb8725" - integrity sha512-vz9jVVkQU0nNq/+/gLzBcRhchMWD322Ch15QP/C8QVjn7I+0EsHEJqToxpjeKMf18sX7Fpg0q558fyx606khcQ== +"@salesforce/source-tracking@4.2.14", "@salesforce/source-tracking@^4.2.10", "@salesforce/source-tracking@^4.2.12": + version "4.2.14" + resolved "https://registry.yarnpkg.com/@salesforce/source-tracking/-/source-tracking-4.2.14.tgz#27772df901efc81aa1f1c0a9f08d427d5c25b2ef" + integrity sha512-Oa9StBkvNlA5ER+n6hbgmQY991c6Pv0ms8SLMKh9s4EIA8lfZfqzSCNXOskMdO4zPnoJKPRfZNG0119krfbuhQ== dependencies: "@salesforce/core" "^5.2.0" "@salesforce/kit" "^3.0.9" - "@salesforce/source-deploy-retrieve" "^9.7.13" + "@salesforce/source-deploy-retrieve" "^9.7.15" "@salesforce/ts-types" "^2.0.6" fast-xml-parser "^4.2.5" graceful-fs "^4.2.11" @@ -8850,7 +8850,7 @@ proper-lockfile@^4.1.2: retry "^0.12.0" signal-exit "^3.0.2" -proxy-agent@^6.2.1, proxy-agent@^6.3.0, proxy-agent@^6.3.1: +proxy-agent@^6.2.1, proxy-agent@^6.3.1: version "6.3.1" resolved "https://registry.yarnpkg.com/proxy-agent/-/proxy-agent-6.3.1.tgz#40e7b230552cf44fd23ffaf7c59024b692612687" integrity sha512-Rb5RVBy1iyqOtNl15Cw/llpeLH8bsb37gM1FUfKQ+Wck6xHlbAhWGUFiTRHtkjqGTA5pSHz6+0hrPW/oECihPQ== From a1c85acaa5defcb5a2c9e11dde6bcec2ab5a5d59 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Mon, 25 Sep 2023 09:33:46 -0500 Subject: [PATCH 38/70] chore: tojson in outputs --- .github/workflows/test.yml | 33 ++++++++++++++++----------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bb21837a..5bf7f45d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -38,31 +38,30 @@ jobs: get-jit-plugins: runs-on: ubuntu-latest outputs: - jit: ${{ steps.plugins.outputs.jit }} + jit: ${{ toJSON(steps.plugins.outputs.jit) }} steps: - uses: actions/checkout@v3 - name: Get JIT plugins id: plugins run: | - JIT=$(jq -c '.oclif.jitPlugins | keys | tostring' package.json) + JIT=$(jq -c '.oclif.jitPlugins | keys' package.json) echo "Found JIT plugins:" echo "$JIT" - echo $JIT echo "jit=$JIT" >> "$GITHUB_OUTPUT" - get-jit-plugins-json: - runs-on: ubuntu-latest - needs: get-jit-plugins - outputs: - jitJson: ${{ steps.jitJson.outputs.jitJson }} - steps: - - name: Get JIT plugins JSON - id: jitJson - run: | - JSON='${{ toJSON(needs.get-jit-plugins.outputs.jit) }}' - echo "JIT JSON:" - echo "$JSON" - echo "jitJson=$JSON" >> "$GITHUB_OUTPUT" + # get-jit-plugins-json: + # runs-on: ubuntu-latest + # needs: get-jit-plugins + # outputs: + # jitJson: ${{ steps.jitJson.outputs.jitJson }} + # steps: + # - name: Get JIT plugins JSON + # id: jitJson + # run: | + # JSON='${{ toJSON(needs.get-jit-plugins.outputs.jit) }}' + # echo "JIT JSON:" + # echo "$JSON" + # echo "jitJson=$JSON" >> "$GITHUB_OUTPUT" echo-jit-plugins: needs: get-jit-plugins @@ -80,7 +79,7 @@ jobs: echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} jit-install: - needs: [manifest, get-jit-plugins-json] + needs: [manifest] strategy: matrix: os: [ubuntu-latest, windows-latest] From 7493a8df40df0ecba93bc891da9cb2602de5e8af Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Mon, 25 Sep 2023 09:35:35 -0500 Subject: [PATCH 39/70] chore: forgot needs --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5bf7f45d..4b35b375 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -79,7 +79,7 @@ jobs: echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} jit-install: - needs: [manifest] + needs: [manifest, get-jit-plugins] strategy: matrix: os: [ubuntu-latest, windows-latest] From 33157d6dda45b578859c014a98d4441faa57ae9f Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Mon, 25 Sep 2023 09:40:33 -0500 Subject: [PATCH 40/70] chore: order --- .github/workflows/test.yml | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4b35b375..c516fffe 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -36,6 +36,7 @@ jobs: path: oclif.manifest.json get-jit-plugins: + needs: manifest runs-on: ubuntu-latest outputs: jit: ${{ toJSON(steps.plugins.outputs.jit) }} @@ -63,27 +64,27 @@ jobs: # echo "$JSON" # echo "jitJson=$JSON" >> "$GITHUB_OUTPUT" - echo-jit-plugins: - needs: get-jit-plugins - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - run: | - echo "JIT:" - echo ${{ needs.get-jit-plugins.outputs.jit }} - - run: | - echo "JIT to JSON:" - echo ${{ toJSON(needs.get-jit-plugins.outputs.jit) }} - - run: | - echo "JIT from JSON:" - echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} + # echo-jit-plugins: + # needs: get-jit-plugins + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v3 + # - run: | + # echo "JIT:" + # echo ${{ needs.get-jit-plugins.outputs.jit }} + # - run: | + # echo "JIT to JSON:" + # echo ${{ toJSON(needs.get-jit-plugins.outputs.jit) }} + # - run: | + # echo "JIT from JSON:" + # echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} jit-install: - needs: [manifest, get-jit-plugins] + needs: [get-jit-plugins] strategy: matrix: - os: [ubuntu-latest, windows-latest] jitPlugins: ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} + os: [ubuntu-latest, windows-latest] runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v3 From e52896c43caeea7b48097ccf2dcfba9992ed391d Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Mon, 25 Sep 2023 09:50:57 -0500 Subject: [PATCH 41/70] chore: quotes --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c516fffe..1f0fdf3a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -48,7 +48,7 @@ jobs: JIT=$(jq -c '.oclif.jitPlugins | keys' package.json) echo "Found JIT plugins:" echo "$JIT" - echo "jit=$JIT" >> "$GITHUB_OUTPUT" + echo "jit=$JIT" >> $GITHUB_OUTPUT # get-jit-plugins-json: # runs-on: ubuntu-latest From 67d9d82e18d2c574c3aa16a5007f92ea25269da6 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Mon, 25 Sep 2023 09:54:18 -0500 Subject: [PATCH 42/70] chore: singlequotes --- .github/workflows/test.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1f0fdf3a..19e9b09b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -48,7 +48,7 @@ jobs: JIT=$(jq -c '.oclif.jitPlugins | keys' package.json) echo "Found JIT plugins:" echo "$JIT" - echo "jit=$JIT" >> $GITHUB_OUTPUT + echo "jit='$JIT'" >> $GITHUB_OUTPUT # get-jit-plugins-json: # runs-on: ubuntu-latest @@ -64,20 +64,20 @@ jobs: # echo "$JSON" # echo "jitJson=$JSON" >> "$GITHUB_OUTPUT" - # echo-jit-plugins: - # needs: get-jit-plugins - # runs-on: ubuntu-latest - # steps: - # - uses: actions/checkout@v3 - # - run: | - # echo "JIT:" - # echo ${{ needs.get-jit-plugins.outputs.jit }} - # - run: | - # echo "JIT to JSON:" - # echo ${{ toJSON(needs.get-jit-plugins.outputs.jit) }} - # - run: | - # echo "JIT from JSON:" - # echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} + echo-jit-plugins: + needs: get-jit-plugins + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - run: | + echo "JIT:" + echo ${{ needs.get-jit-plugins.outputs.jit }} + - run: | + echo "JIT to JSON:" + echo ${{ toJSON(needs.get-jit-plugins.outputs.jit) }} + - run: | + echo "JIT from JSON:" + echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} jit-install: needs: [get-jit-plugins] From a7ec57392e9c9d45807dfc0ae09f147a7309fd26 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Mon, 25 Sep 2023 09:58:53 -0500 Subject: [PATCH 43/70] chore: wildcard --- .github/workflows/test.yml | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 19e9b09b..702fcd27 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,16 +39,20 @@ jobs: needs: manifest runs-on: ubuntu-latest outputs: - jit: ${{ toJSON(steps.plugins.outputs.jit) }} + jit: ${{ toJSON(steps.*.outputs.jit) }} steps: - uses: actions/checkout@v3 - - name: Get JIT plugins - id: plugins - run: | - JIT=$(jq -c '.oclif.jitPlugins | keys' package.json) - echo "Found JIT plugins:" - echo "$JIT" - echo "jit='$JIT'" >> $GITHUB_OUTPUT + - id: comm + run: echo "jit=@salesforce/plugin-community" >> $GITHUB_OUTPUT + - id: env + run: echo "jit=@salesforce/plugin-env" >> $GITHUB_OUTPUT + # - name: Get JIT plugins + # id: plugins + # run: | + # JIT=$(jq -c '.oclif.jitPlugins | keys' package.json) + # echo "Found JIT plugins:" + # echo "$JIT" + # echo "jit='$JIT'" >> $GITHUB_OUTPUT # get-jit-plugins-json: # runs-on: ubuntu-latest From 7f2295a9beeeec39e4b2375a7e760905e38d9e50 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Mon, 25 Sep 2023 10:03:51 -0500 Subject: [PATCH 44/70] chore: oh my it worked, now to tweak it --- .github/workflows/test.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 702fcd27..d2d7d976 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -36,7 +36,6 @@ jobs: path: oclif.manifest.json get-jit-plugins: - needs: manifest runs-on: ubuntu-latest outputs: jit: ${{ toJSON(steps.*.outputs.jit) }} @@ -84,7 +83,7 @@ jobs: echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} jit-install: - needs: [get-jit-plugins] + needs: [manifest, get-jit-plugins] strategy: matrix: jitPlugins: ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} From a585964e14ae20821c1c4b3a1e483e361284092c Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Mon, 25 Sep 2023 10:06:59 -0500 Subject: [PATCH 45/70] chore: non-compact --- .github/workflows/test.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d2d7d976..ab235067 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -41,17 +41,17 @@ jobs: jit: ${{ toJSON(steps.*.outputs.jit) }} steps: - uses: actions/checkout@v3 - - id: comm - run: echo "jit=@salesforce/plugin-community" >> $GITHUB_OUTPUT - - id: env - run: echo "jit=@salesforce/plugin-env" >> $GITHUB_OUTPUT - # - name: Get JIT plugins - # id: plugins - # run: | - # JIT=$(jq -c '.oclif.jitPlugins | keys' package.json) - # echo "Found JIT plugins:" - # echo "$JIT" - # echo "jit='$JIT'" >> $GITHUB_OUTPUT + # - id: comm + # run: echo "jit=@salesforce/plugin-community" >> $GITHUB_OUTPUT + # - id: env + # run: echo "jit=@salesforce/plugin-env" >> $GITHUB_OUTPUT + - name: Get JIT plugins + id: plugins + run: | + JIT=$(jq '.oclif.jitPlugins | keys' package.json) + echo "Found JIT plugins:" + echo "$JIT" + echo "jit='$JIT'" >> $GITHUB_OUTPUT # get-jit-plugins-json: # runs-on: ubuntu-latest From 603949bd497443d91325cadbd2273310a3cf3e6d Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Mon, 25 Sep 2023 10:14:04 -0500 Subject: [PATCH 46/70] chore: eof --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ab235067..756a9f4b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -38,7 +38,7 @@ jobs: get-jit-plugins: runs-on: ubuntu-latest outputs: - jit: ${{ toJSON(steps.*.outputs.jit) }} + jit: ${{ toJSON(steps.plugins.outputs.jit) }} steps: - uses: actions/checkout@v3 # - id: comm @@ -49,9 +49,9 @@ jobs: id: plugins run: | JIT=$(jq '.oclif.jitPlugins | keys' package.json) - echo "Found JIT plugins:" - echo "$JIT" - echo "jit='$JIT'" >> $GITHUB_OUTPUT + echo "jit<> $GITHUB_OUTPUT + echo "$JIT" >> $GITHUB_OUTPUT + echo "EOF" >> $GITHUB_OUTPUT # get-jit-plugins-json: # runs-on: ubuntu-latest From 62e3f9a4746404f34ee62cf06f90503992816c97 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Mon, 25 Sep 2023 10:22:27 -0500 Subject: [PATCH 47/70] chore: hmmm --- .github/workflows/test.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 756a9f4b..82763a81 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -49,9 +49,9 @@ jobs: id: plugins run: | JIT=$(jq '.oclif.jitPlugins | keys' package.json) - echo "jit<> $GITHUB_OUTPUT - echo "$JIT" >> $GITHUB_OUTPUT - echo "EOF" >> $GITHUB_OUTPUT + echo "jit<> "$GITHUB_OUTPUT" + echo "$JIT" >> "$GITHUB_OUTPUT" + echo "EOF" >> "$GITHUB_OUTPUT" # get-jit-plugins-json: # runs-on: ubuntu-latest @@ -72,9 +72,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - run: | - echo "JIT:" - echo ${{ needs.get-jit-plugins.outputs.jit }} + # - run: | + # echo "JIT:" + # echo ${{ needs.get-jit-plugins.outputs.jit }} - run: | echo "JIT to JSON:" echo ${{ toJSON(needs.get-jit-plugins.outputs.jit) }} From 137d67d9f129c5e28d8145ffae686c6d21985b12 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Mon, 25 Sep 2023 10:49:54 -0500 Subject: [PATCH 48/70] chore: different format --- .github/workflows/test.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 82763a81..cb0dbee2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -48,10 +48,11 @@ jobs: - name: Get JIT plugins id: plugins run: | - JIT=$(jq '.oclif.jitPlugins | keys' package.json) - echo "jit<> "$GITHUB_OUTPUT" - echo "$JIT" >> "$GITHUB_OUTPUT" - echo "EOF" >> "$GITHUB_OUTPUT" + { + echo 'jit<> "$GITHUB_OUTPUT" # get-jit-plugins-json: # runs-on: ubuntu-latest From ba7dfe7485ab781601916e8fca0a5cd1a871efa6 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Mon, 25 Sep 2023 10:53:45 -0500 Subject: [PATCH 49/70] chore: remove tojson --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cb0dbee2..518eee63 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -38,7 +38,7 @@ jobs: get-jit-plugins: runs-on: ubuntu-latest outputs: - jit: ${{ toJSON(steps.plugins.outputs.jit) }} + jit: ${{ steps.plugins.outputs.jit }} steps: - uses: actions/checkout@v3 # - id: comm From c36a26a457083271242ccad09d9ab203102e1c5c Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Mon, 25 Sep 2023 11:20:15 -0500 Subject: [PATCH 50/70] chore: move jit tests to own workflow --- .github/workflows/jit-install-smoke.yml | 67 ++++++++++++++++++++ .github/workflows/test.yml | 84 +------------------------ 2 files changed, 70 insertions(+), 81 deletions(-) create mode 100644 .github/workflows/jit-install-smoke.yml diff --git a/.github/workflows/jit-install-smoke.yml b/.github/workflows/jit-install-smoke.yml new file mode 100644 index 00000000..08220e60 --- /dev/null +++ b/.github/workflows/jit-install-smoke.yml @@ -0,0 +1,67 @@ +name: jit-install-smoke + +on: + workflow_dispatch: + workflow_call: + +jobs: + manifest: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + cache: yarn + - run: yarn install + - run: yarn build + - run: yarn oclif manifest + - uses: actions/upload-artifact@v2 + with: + name: manifest + path: oclif.manifest.json + + get-jit-plugins: + runs-on: ubuntu-latest + outputs: + jit: ${{ steps.plugins.outputs.jit }} + steps: + - uses: actions/checkout@v3 + - name: Get JIT plugins + id: plugins + # This was a pain to get working, be weary of changing it... + # For the dynamic matrix to work, you have to have a VERY specific format: + # Output must be multiline (no jq -c), quotes matter, cannot use toJSON on output, etc... + # The dynamic matrix needs to use fromJSON when reading the needs output + # Multiline format: https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#example-of-a-multiline-string + run: | + { + echo 'jit<> "$GITHUB_OUTPUT" + + jit-install: + needs: [manifest, get-jit-plugins] + strategy: + matrix: + os: [ubuntu-latest, windows-latest] + jitPlugins: ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} + runs-on: ${{matrix.os}} + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: lts/* + cache: yarn + - run: yarn install + - run: yarn build + - uses: actions/download-artifact@v2 + with: + name: manifest + - name: Install JIT plugin + uses: nick-fields/retry@943e742917ac94714d2f408a0e8320f2d1fcafcd + with: + max_attempts: 3 + retry_wait_seconds: 60 + command: yarn sf-release cli:install:jit:test --jit-plugin ${{matrix.jitPlugins}} + timeout_minutes: 60 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 518eee63..bbd52857 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,87 +20,9 @@ jobs: uses: salesforcecli/github-workflows/.github/workflows/tarballs.yml@main secrets: inherit - manifest: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - cache: yarn - - run: yarn install - - run: yarn build - - run: yarn oclif manifest - - uses: actions/upload-artifact@v2 - with: - name: manifest - path: oclif.manifest.json - - get-jit-plugins: - runs-on: ubuntu-latest - outputs: - jit: ${{ steps.plugins.outputs.jit }} - steps: - - uses: actions/checkout@v3 - # - id: comm - # run: echo "jit=@salesforce/plugin-community" >> $GITHUB_OUTPUT - # - id: env - # run: echo "jit=@salesforce/plugin-env" >> $GITHUB_OUTPUT - - name: Get JIT plugins - id: plugins - run: | - { - echo 'jit<> "$GITHUB_OUTPUT" - - # get-jit-plugins-json: - # runs-on: ubuntu-latest - # needs: get-jit-plugins - # outputs: - # jitJson: ${{ steps.jitJson.outputs.jitJson }} - # steps: - # - name: Get JIT plugins JSON - # id: jitJson - # run: | - # JSON='${{ toJSON(needs.get-jit-plugins.outputs.jit) }}' - # echo "JIT JSON:" - # echo "$JSON" - # echo "jitJson=$JSON" >> "$GITHUB_OUTPUT" - - echo-jit-plugins: - needs: get-jit-plugins - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - # - run: | - # echo "JIT:" - # echo ${{ needs.get-jit-plugins.outputs.jit }} - - run: | - echo "JIT to JSON:" - echo ${{ toJSON(needs.get-jit-plugins.outputs.jit) }} - - run: | - echo "JIT from JSON:" - echo ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} - - jit-install: - needs: [manifest, get-jit-plugins] - strategy: - matrix: - jitPlugins: ${{ fromJSON(needs.get-jit-plugins.outputs.jit) }} - os: [ubuntu-latest, windows-latest] - runs-on: ${{matrix.os}} - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - cache: yarn - - run: yarn install - - run: yarn build - - uses: actions/download-artifact@v2 - with: - name: manifest - - run: yarn sf-release cli:install:jit:test --jit-plugin ${{matrix.jitPlugins}} + jit-install-smoke: + uses: ./.github/workflows/jit-install-smoke.yml + secrets: inherit artifacts: runs-on: ubuntu-latest From 93dfb9a3221583281242eb05c1ed65cf900e7b15 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Mon, 25 Sep 2023 13:26:26 -0500 Subject: [PATCH 51/70] chore: testing removing yarn cache --- .github/workflows/jit-install-smoke.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/jit-install-smoke.yml b/.github/workflows/jit-install-smoke.yml index 08220e60..3a14d28c 100644 --- a/.github/workflows/jit-install-smoke.yml +++ b/.github/workflows/jit-install-smoke.yml @@ -52,7 +52,6 @@ jobs: - uses: actions/setup-node@v3 with: node-version: lts/* - cache: yarn - run: yarn install - run: yarn build - uses: actions/download-artifact@v2 From 45d32497c83617ccba0c456d50099b437b259ca7 Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Mon, 25 Sep 2023 13:52:23 -0500 Subject: [PATCH 52/70] chore: add install retries --- .github/workflows/jit-install-smoke.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/jit-install-smoke.yml b/.github/workflows/jit-install-smoke.yml index 3a14d28c..e11d1808 100644 --- a/.github/workflows/jit-install-smoke.yml +++ b/.github/workflows/jit-install-smoke.yml @@ -52,7 +52,9 @@ jobs: - uses: actions/setup-node@v3 with: node-version: lts/* - - run: yarn install + - uses: salesforcecli/github-workflows/.github/actions/yarnInstallWithRetries@main + with: + ignore-scripts: true - run: yarn build - uses: actions/download-artifact@v2 with: From f1b2a910b1ebc48305717e151d1fc297d1d8b44c Mon Sep 17 00:00:00 2001 From: Eric Willhoit Date: Mon, 25 Sep 2023 14:06:04 -0500 Subject: [PATCH 53/70] chore: upload/download v3 --- .github/workflows/jit-install-smoke.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/jit-install-smoke.yml b/.github/workflows/jit-install-smoke.yml index e11d1808..5086fa75 100644 --- a/.github/workflows/jit-install-smoke.yml +++ b/.github/workflows/jit-install-smoke.yml @@ -15,7 +15,7 @@ jobs: - run: yarn install - run: yarn build - run: yarn oclif manifest - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: manifest path: oclif.manifest.json @@ -56,7 +56,7 @@ jobs: with: ignore-scripts: true - run: yarn build - - uses: actions/download-artifact@v2 + - uses: actions/download-artifact@v3 with: name: manifest - name: Install JIT plugin From 3dafa72705d2cabc8f8c0a3c94b1d2b54358addc Mon Sep 17 00:00:00 2001 From: mshanemc Date: Mon, 25 Sep 2023 16:10:56 -0500 Subject: [PATCH 54/70] ci: stampy at 2:30a --- .github/workflows/get-signed-from-stampy.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/get-signed-from-stampy.yml b/.github/workflows/get-signed-from-stampy.yml index cc67ef56..58f4719e 100644 --- a/.github/workflows/get-signed-from-stampy.yml +++ b/.github/workflows/get-signed-from-stampy.yml @@ -2,7 +2,8 @@ name: get-signed-installers-from-stampy on: workflow_dispatch: schedule: - - cron: '25 * * * *' + # 2:35 am central time + - cron: '35 7 * * *' jobs: get-signed-from-stampy: From 4d66f9b70ffa635970b815f9c7eaca59df1a9e18 Mon Sep 17 00:00:00 2001 From: svc-cli-bot Date: Tue, 26 Sep 2023 02:10:16 +0000 Subject: [PATCH 55/70] chore(release): bump to 2.11.4 --- package.json | 8 ++++---- yarn.lock | 30 +++++++++++++++--------------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/package.json b/package.json index 242c075f..3a451b30 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@salesforce/cli", "description": "The Salesforce CLI", - "version": "2.11.3", + "version": "2.11.4", "author": "Salesforce", "bin": { "sf": "./bin/run", @@ -135,14 +135,14 @@ "@salesforce/core": "^5.2.0", "@salesforce/plugin-apex": "2.3.15", "@salesforce/plugin-auth": "2.8.17", - "@salesforce/plugin-data": "2.5.11", + "@salesforce/plugin-data": "2.5.12", "@salesforce/plugin-deploy-retrieve": "1.18.0", - "@salesforce/plugin-info": "2.6.44", + "@salesforce/plugin-info": "2.6.45", "@salesforce/plugin-limits": "2.3.35", "@salesforce/plugin-login": "1.2.31", "@salesforce/plugin-marketplace": "0.2.2", "@salesforce/plugin-org": "2.10.8", - "@salesforce/plugin-schema": "2.3.27", + "@salesforce/plugin-schema": "2.3.28", "@salesforce/plugin-settings": "1.4.30", "@salesforce/plugin-sobject": "0.2.7", "@salesforce/plugin-source": "2.10.36", diff --git a/yarn.lock b/yarn.lock index 8f896ea5..93250490 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1576,7 +1576,7 @@ strip-ansi "6.0.1" ts-retry-promise "^0.7.1" -"@salesforce/core@^5.2.0", "@salesforce/core@^5.2.10", "@salesforce/core@^5.2.5", "@salesforce/core@^5.2.6", "@salesforce/core@^5.2.7", "@salesforce/core@^5.2.9": +"@salesforce/core@^5.2.0", "@salesforce/core@^5.2.10", "@salesforce/core@^5.2.6", "@salesforce/core@^5.2.7", "@salesforce/core@^5.2.9": version "5.2.10" resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-5.2.10.tgz#7f4824ddcef108b6ccec24434260c620de39012e" integrity sha512-Xj1QRajmHWgl0ahivjKFGKJlGXwe9yFOZ3PwF91qEupGbO74XrCJ8OUM7EVlk53LKy9LlPZQFuy2ATX9MyEDKA== @@ -1698,10 +1698,10 @@ handlebars "^4.7.8" tslib "^2" -"@salesforce/plugin-data@2.5.11": - version "2.5.11" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-data/-/plugin-data-2.5.11.tgz#667abaa8a7ae3bc422362a49725305166ef12bbd" - integrity sha512-hP2luZnHj2hNSB7gfJsCMAc3eklhfwLfCLBUhP4HWFaueiVpmWDg8D+XIzXiAtZqRk7BA0/J6XS07w99KpvLsg== +"@salesforce/plugin-data@2.5.12": + version "2.5.12" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-data/-/plugin-data-2.5.12.tgz#78dc1446216d772267fa9fd299d3f110bcf953f3" + integrity sha512-EvRyLnvXXzBUKzBOGRJAYOikAQHV9qHXB2ayZ3khaFldAdpAHi05f9s0p3PLBhum80xuESzHYtzhQ4Blrl81TQ== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.2.10" @@ -1730,15 +1730,15 @@ shelljs "^0.8.5" tslib "^2" -"@salesforce/plugin-info@2.6.44": - version "2.6.44" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-info/-/plugin-info-2.6.44.tgz#b177c92ba447e468973485b0aa64c4002b8564e1" - integrity sha512-m0fTjrEEd2k19MhWwEUovn/grigkJsxR8IYqAazcxWVwtLZau9i82j1+QOJaUfzL3pp0ddP6URgIRge0AAhBFw== +"@salesforce/plugin-info@2.6.45": + version "2.6.45" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-info/-/plugin-info-2.6.45.tgz#6a898c92ae443444b678dae18780867440755e78" + integrity sha512-1OIbnZz8cx98T6O/qbHw+5dKHWBPSZxYnyV8k/xWwzqbO2vNAVzV3PS9jKiXDz6K8NhL45xJw9SwgrGT3n2UPA== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.2.10" "@salesforce/kit" "^3.0.9" - "@salesforce/sf-plugins-core" "^3.1.22" + "@salesforce/sf-plugins-core" "^3.1.23" got "^11.8.6" marked "^4.3.0" marked-terminal "^4.2.0" @@ -1826,13 +1826,13 @@ tslib "^2" yarn-deduplicate "^3.1.0" -"@salesforce/plugin-schema@2.3.27": - version "2.3.27" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-schema/-/plugin-schema-2.3.27.tgz#c50e27c42afb24335781afe19e3eb59a9249fa6e" - integrity sha512-5llOET9Tnw1MypsRV1EwgZx7ys05+uUqFfuuUic1W8UEK5zIsrgV1pr9emLfIddez9De84cIxIWyrU6CxQpUjg== +"@salesforce/plugin-schema@2.3.28": + version "2.3.28" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-schema/-/plugin-schema-2.3.28.tgz#d25bc63701d1599868abf103fa3e795795a7067e" + integrity sha512-13UEwwz1TDfTi7fPX4LiHz66qUdWfAZNsZuBeYx3MPMfiGAOkxEAvwn8Moq/48WQ/RXDJJq6MnfLiIRYXi3WFg== dependencies: "@oclif/core" "^2.15.0" - "@salesforce/core" "^5.2.5" + "@salesforce/core" "^5.2.10" "@salesforce/sf-plugins-core" "^3.1.23" tslib "^2" From 60202182546528233c65a332ecca1d629936207a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Sep 2023 23:27:46 -0500 Subject: [PATCH 56/70] build(deps-dev): bump aws-sdk from 2.1461.0 to 2.1464.0 (#1174) Bumps [aws-sdk](https://github.com/aws/aws-sdk-js) from 2.1461.0 to 2.1464.0. - [Release notes](https://github.com/aws/aws-sdk-js/releases) - [Commits](https://github.com/aws/aws-sdk-js/compare/v2.1461.0...v2.1464.0) --- updated-dependencies: - dependency-name: aws-sdk dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 3a451b30..e98ba2c6 100644 --- a/package.json +++ b/package.json @@ -240,7 +240,7 @@ "@types/debug": "^4.1.8", "@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/parser": "^5.62.0", - "aws-sdk": "^2.1461.0", + "aws-sdk": "^2.1464.0", "chai": "^4.3.8", "eslint": "^8.49.0", "eslint-config-oclif": "^3.1", diff --git a/yarn.lock b/yarn.lock index 93250490..3a8d7a1e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2934,10 +2934,10 @@ available-typed-arrays@^1.0.5: resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== -aws-sdk@^2.1231.0, aws-sdk@^2.1440.0, aws-sdk@^2.1461.0: - version "2.1461.0" - resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.1461.0.tgz#9c4f6fd79bf94aada84aefd2c1cf2414d3e909ab" - integrity sha512-oRZqsSEx5jkXq8Xq4Nkhhwupnjzw0UuFyEKGLsEDFjiFGOzdJoYspGg/Oa4RfTpa8ITLGHIRkYeik/7fN8ccng== +aws-sdk@^2.1231.0, aws-sdk@^2.1440.0, aws-sdk@^2.1464.0: + version "2.1464.0" + resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.1464.0.tgz#352352b75fd48e3e095e42106fcc1ee3112c91d4" + integrity sha512-GsYibfJmyI6UbZaTkMkibtfxvcG2hyqac+vfrDuJwqQ6i4b//Q2f3tYubwn950bO6F87C/um96SSHc9UMlfbfw== dependencies: buffer "4.9.2" events "1.1.1" From 1b082758af0795e0cb75302b8d2004558cba94f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 Sep 2023 02:26:00 -0500 Subject: [PATCH 57/70] build(deps-dev): bump @types/debug from 4.1.8 to 4.1.9 (#1172) Bumps [@types/debug](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/debug) from 4.1.8 to 4.1.9. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/debug) --- updated-dependencies: - dependency-name: "@types/debug" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index e98ba2c6..4990b2e0 100644 --- a/package.json +++ b/package.json @@ -237,7 +237,7 @@ "@salesforce/plugin-release-management": "^4.2.2", "@salesforce/prettier-config": "^0.0.3", "@salesforce/ts-sinon": "^1.4.15", - "@types/debug": "^4.1.8", + "@types/debug": "^4.1.9", "@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/parser": "^5.62.0", "aws-sdk": "^2.1464.0", diff --git a/yarn.lock b/yarn.lock index 3a8d7a1e..95469bcf 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2218,10 +2218,10 @@ dependencies: "@types/node" "*" -"@types/debug@^4.1.8": - version "4.1.8" - resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.8.tgz#cef723a5d0a90990313faec2d1e22aee5eecb317" - integrity sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ== +"@types/debug@^4.1.9": + version "4.1.9" + resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.9.tgz#906996938bc672aaf2fb8c0d3733ae1dda05b005" + integrity sha512-8Hz50m2eoS56ldRlepxSBa6PWEVCtzUo/92HgLc2qTMnotJNIm7xP+UZhyWoYsyOdd5dxZ+NZLb24rsKyFs2ow== dependencies: "@types/ms" "*" From 63c50883d1f6b4870b94a3af8df5f8b776842387 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 Sep 2023 05:28:53 -0500 Subject: [PATCH 58/70] build(deps-dev): bump eslint from 8.49.0 to 8.50.0 (#1170) Bumps [eslint](https://github.com/eslint/eslint) from 8.49.0 to 8.50.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.49.0...v8.50.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- yarn.lock | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 4990b2e0..60a34e46 100644 --- a/package.json +++ b/package.json @@ -242,7 +242,7 @@ "@typescript-eslint/parser": "^5.62.0", "aws-sdk": "^2.1464.0", "chai": "^4.3.8", - "eslint": "^8.49.0", + "eslint": "^8.50.0", "eslint-config-oclif": "^3.1", "eslint-config-oclif-typescript": "^0.2.0", "eslint-config-prettier": "^8.10.0", diff --git a/yarn.lock b/yarn.lock index 95469bcf..d101fcf6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -534,10 +534,10 @@ minimatch "^3.1.2" strip-json-comments "^3.1.1" -"@eslint/js@8.49.0": - version "8.49.0" - resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.49.0.tgz#86f79756004a97fa4df866835093f1df3d03c333" - integrity sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w== +"@eslint/js@8.50.0": + version "8.50.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.50.0.tgz#9e93b850f0f3fa35f5fa59adfd03adae8488e484" + integrity sha512-NCC3zz2+nvYd+Ckfh87rA47zfu2QsQpvc6k1yzTk+b9KzRj0wkGa8LSoGOXN6Zv4lRf/EIoZ80biDh9HOI+RNQ== "@gar/promisify@^1.0.1", "@gar/promisify@^1.1.3": version "1.1.3" @@ -4875,15 +4875,15 @@ eslint@^7.27.0: text-table "^0.2.0" v8-compile-cache "^2.0.3" -eslint@^8.49.0: - version "8.49.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.49.0.tgz#09d80a89bdb4edee2efcf6964623af1054bf6d42" - integrity sha512-jw03ENfm6VJI0jA9U+8H5zfl5b+FvuU3YYvZRdZHOlU2ggJkxrlkJH4HcDrZpj6YwD8kuYqvQM8LyesoazrSOQ== +eslint@^8.50.0: + version "8.50.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.50.0.tgz#2ae6015fee0240fcd3f83e1e25df0287f487d6b2" + integrity sha512-FOnOGSuFuFLv/Sa+FDVRZl4GGVAAFFi8LecRsI5a1tMO5HIE8nCm4ivAlzt4dT3ol/PaaGC0rJEEXQmHJBGoOg== dependencies: "@eslint-community/eslint-utils" "^4.2.0" "@eslint-community/regexpp" "^4.6.1" "@eslint/eslintrc" "^2.1.2" - "@eslint/js" "8.49.0" + "@eslint/js" "8.50.0" "@humanwhocodes/config-array" "^0.11.11" "@humanwhocodes/module-importer" "^1.0.1" "@nodelib/fs.walk" "^1.2.8" From 52d1d479a91aa308634757da5c164986be4ea2bb Mon Sep 17 00:00:00 2001 From: Willhoit Date: Tue, 26 Sep 2023 09:53:18 -0500 Subject: [PATCH 59/70] chore: bump rel-man --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6d9ecf88..c0590256 100644 --- a/package.json +++ b/package.json @@ -234,7 +234,7 @@ "@oclif/plugin-command-snapshot": "^3.3.0", "@salesforce/dev-config": "^4.0.1", "@salesforce/dev-scripts": "^3.1.1", - "@salesforce/plugin-release-management": "^4.3.1-dev.0", + "@salesforce/plugin-release-management": "^4.4.0", "@salesforce/prettier-config": "^0.0.3", "@salesforce/ts-sinon": "^1.4.15", "@types/debug": "^4.1.8", From 3dd9aada1cbd2a6890f9f33f441c8d500b8c5793 Mon Sep 17 00:00:00 2001 From: svc-cli-bot Date: Tue, 26 Sep 2023 17:37:56 +0000 Subject: [PATCH 60/70] chore(release): bump to 2.11.5 --- package.json | 8 +- yarn.lock | 625 ++++++++++++++++++++++++++++++++++++++++++--------- 2 files changed, 528 insertions(+), 105 deletions(-) diff --git a/package.json b/package.json index 57c8344d..69e6cad9 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@salesforce/cli", "description": "The Salesforce CLI", - "version": "2.11.4", + "version": "2.11.5", "author": "Salesforce", "bin": { "sf": "./bin/run", @@ -126,7 +126,7 @@ "@oclif/plugin-commands": "2.2.26", "@oclif/plugin-help": "5.2.19", "@oclif/plugin-not-found": "2.4.1", - "@oclif/plugin-plugins": "3.8.0", + "@oclif/plugin-plugins": "3.8.2", "@oclif/plugin-search": "0.0.22", "@oclif/plugin-update": "3.2.3", "@oclif/plugin-version": "1.3.10", @@ -136,7 +136,7 @@ "@salesforce/plugin-apex": "2.3.15", "@salesforce/plugin-auth": "2.8.17", "@salesforce/plugin-data": "2.5.12", - "@salesforce/plugin-deploy-retrieve": "1.18.0", + "@salesforce/plugin-deploy-retrieve": "1.18.1", "@salesforce/plugin-info": "2.6.45", "@salesforce/plugin-limits": "2.3.35", "@salesforce/plugin-login": "1.2.31", @@ -148,7 +148,7 @@ "@salesforce/plugin-source": "2.10.36", "@salesforce/plugin-telemetry": "2.3.4", "@salesforce/plugin-templates": "55.5.13", - "@salesforce/plugin-trust": "2.6.14", + "@salesforce/plugin-trust": "2.6.15", "@salesforce/plugin-user": "2.3.32", "@salesforce/sf-plugins-core": "3.1.24", "debug": "^4.3.4", diff --git a/yarn.lock b/yarn.lock index 8adcbd6f..b87782dc 100644 --- a/yarn.lock +++ b/yarn.lock @@ -698,6 +698,16 @@ "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" +"@npmcli/agent@^2.0.0": + version "2.1.1" + resolved "https://registry.yarnpkg.com/@npmcli/agent/-/agent-2.1.1.tgz#31095663b8feef27ec3eccd5254a35b8fc70353a" + integrity sha512-6RlbiOAi6L6uUYF4/CDEkDZQnKw0XDsFJVrEpnib8rAx2WRMOsUyAdgnvDpX/fdkDWxtqE+NHwF465llI2wR0g== + dependencies: + http-proxy-agent "^7.0.0" + https-proxy-agent "^7.0.1" + lru-cache "^10.0.1" + socks-proxy-agent "^8.0.1" + "@npmcli/arborist@^4.0.4": version "4.3.1" resolved "https://registry.yarnpkg.com/@npmcli/arborist/-/arborist-4.3.1.tgz#a08cddce3339882f688c1dea1651f6971e781c44" @@ -775,10 +785,49 @@ treeverse "^3.0.0" walk-up-path "^3.0.1" -"@npmcli/config@^6.1.7": - version "6.2.1" - resolved "https://registry.yarnpkg.com/@npmcli/config/-/config-6.2.1.tgz#954cc09b727b6bfc087cb1d2a48994dc342e45cc" - integrity sha512-Cj/OrSbrLvnwWuzquFCDTwFN8QmR+SWH6qLNCBttUreDkKM5D5p36SeSMbcEUiCGdwjUrVy2yd8C0REwwwDPEw== +"@npmcli/arborist@^7.1.0": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@npmcli/arborist/-/arborist-7.1.0.tgz#f240e2437201cf796d50311fb3bd39746e30baeb" + integrity sha512-QwVVXZ1kt9VREBuZ6Q9y6jyrT/GRME+/xl3X6/xFUSdd7SGGG+fEbIdWBc25tqqUEuPZfuCEPxJIUngEpXMogw== + dependencies: + "@isaacs/string-locale-compare" "^1.1.0" + "@npmcli/fs" "^3.1.0" + "@npmcli/installed-package-contents" "^2.0.2" + "@npmcli/map-workspaces" "^3.0.2" + "@npmcli/metavuln-calculator" "^7.0.0" + "@npmcli/name-from-folder" "^2.0.0" + "@npmcli/node-gyp" "^3.0.0" + "@npmcli/package-json" "^5.0.0" + "@npmcli/query" "^3.0.0" + "@npmcli/run-script" "^7.0.1" + bin-links "^4.0.1" + cacache "^18.0.0" + common-ancestor-path "^1.0.1" + hosted-git-info "^7.0.0" + json-parse-even-better-errors "^3.0.0" + json-stringify-nice "^1.1.4" + minimatch "^9.0.0" + nopt "^7.0.0" + npm-install-checks "^6.2.0" + npm-package-arg "^11.0.0" + npm-pick-manifest "^9.0.0" + npm-registry-fetch "^16.0.0" + npmlog "^7.0.1" + pacote "^17.0.4" + parse-conflict-json "^3.0.0" + proc-log "^3.0.0" + promise-all-reject-late "^1.0.0" + promise-call-limit "^1.0.2" + read-package-json-fast "^3.0.2" + semver "^7.3.7" + ssri "^10.0.5" + treeverse "^3.0.0" + walk-up-path "^3.0.1" + +"@npmcli/config@^6.1.7", "@npmcli/config@^6.2.1": + version "6.3.0" + resolved "https://registry.yarnpkg.com/@npmcli/config/-/config-6.3.0.tgz#9fda323682fdd0505e9584358f6de502b0d01a81" + integrity sha512-gV64pm5cQ7F2oeoSJ5HTfaKxjFsvC4dAbCsQbtbOkEOymM6iZI62yNGCOLjcq/rfYX9+wVn34ThxK7GZpUwWFg== dependencies: "@npmcli/map-workspaces" "^3.0.2" ci-info "^3.8.0" @@ -847,6 +896,20 @@ semver "^7.3.5" which "^3.0.0" +"@npmcli/git@^5.0.0": + version "5.0.3" + resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-5.0.3.tgz#ad3ede0994bcf716ddb63d361f3ea16cb72d878c" + integrity sha512-UZp9NwK+AynTrKvHn5k3KviW/hA5eENmFsu3iAPe7sWRt0lFUdsY/wXIYjpDFe7cdSNwOIzbObfwgt6eL5/2zw== + dependencies: + "@npmcli/promise-spawn" "^7.0.0" + lru-cache "^10.0.1" + npm-pick-manifest "^9.0.0" + proc-log "^3.0.0" + promise-inflight "^1.0.1" + promise-retry "^2.0.1" + semver "^7.3.5" + which "^4.0.0" + "@npmcli/installed-package-contents@^1.0.6", "@npmcli/installed-package-contents@^1.0.7": version "1.0.7" resolved "https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-1.0.7.tgz#ab7408c6147911b970a8abe261ce512232a3f4fa" @@ -903,6 +966,16 @@ pacote "^15.0.0" semver "^7.3.5" +"@npmcli/metavuln-calculator@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/metavuln-calculator/-/metavuln-calculator-7.0.0.tgz#fb59245926d7f677db904177f9aca15ac883d6cb" + integrity sha512-Pw0tyX02VkpqlIQlG2TeiJNsdrecYeUU0ubZZa9pi3N37GCsxI+en43u4hYFdq+eSx1A9a9vwFAUyqEtKFsbHQ== + dependencies: + cacache "^18.0.0" + json-parse-even-better-errors "^3.0.0" + pacote "^17.0.0" + semver "^7.3.5" + "@npmcli/move-file@^1.0.1", "@npmcli/move-file@^1.1.0": version "1.1.2" resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.1.2.tgz#1a82c3e372f7cae9253eb66d72543d6b8685c674" @@ -958,17 +1031,31 @@ npm-normalize-package-bin "^3.0.1" proc-log "^3.0.0" -"@npmcli/package-json@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-4.0.0.tgz#a63ae5084eb031e7cdadd3d40b511445f1fe8631" - integrity sha512-ZeXtZBQ/xjSUmrZj9R1Y2gsQRfkdhP5H31SCieJbAd8bHbn4YRglOoajcEZTJTM9m9BuEE7KiDcMPEoD/OgJkw== +"@npmcli/package-json@^4.0.0", "@npmcli/package-json@^4.0.1": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-4.0.1.tgz#1a07bf0e086b640500791f6bf245ff43cc27fa37" + integrity sha512-lRCEGdHZomFsURroh522YvA/2cVb9oPIJrjHanCJZkiasz1BzcnLr3tBJhlV7S86MBJBuAQ33is2D60YitZL2Q== dependencies: "@npmcli/git" "^4.1.0" glob "^10.2.2" + hosted-git-info "^6.1.1" json-parse-even-better-errors "^3.0.0" normalize-package-data "^5.0.0" - npm-normalize-package-bin "^3.0.1" proc-log "^3.0.0" + semver "^7.5.3" + +"@npmcli/package-json@^5.0.0": + version "5.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-5.0.0.tgz#77d0f8b17096763ccbd8af03b7117ba6e34d6e91" + integrity sha512-OI2zdYBLhQ7kpNPaJxiflofYIpkNLi+lnGdzqUOfRmCF3r2l1nadcjtCYMJKv/Utm/ZtlffaUuTiAktPHbc17g== + dependencies: + "@npmcli/git" "^5.0.0" + glob "^10.2.2" + hosted-git-info "^7.0.0" + json-parse-even-better-errors "^3.0.0" + normalize-package-data "^6.0.0" + proc-log "^3.0.0" + semver "^7.5.3" "@npmcli/promise-spawn@^1.2.0", "@npmcli/promise-spawn@^1.3.2": version "1.3.2" @@ -977,13 +1064,20 @@ dependencies: infer-owner "^1.0.4" -"@npmcli/promise-spawn@^6.0.0", "@npmcli/promise-spawn@^6.0.1": +"@npmcli/promise-spawn@^6.0.0", "@npmcli/promise-spawn@^6.0.1", "@npmcli/promise-spawn@^6.0.2": version "6.0.2" resolved "https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-6.0.2.tgz#c8bc4fa2bd0f01cb979d8798ba038f314cfa70f2" integrity sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg== dependencies: which "^3.0.0" +"@npmcli/promise-spawn@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-7.0.0.tgz#fd1c64ed4ff2341e503e1f390c62640a6540df09" + integrity sha512-wBqcGsMELZna0jDblGd7UXgOby45TQaMWmbFwWX+SEotk4HV6zG2t6rT9siyLhPk4P6YYqgfL1UO8nMWDBVJXQ== + dependencies: + which "^4.0.0" + "@npmcli/query@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@npmcli/query/-/query-3.0.0.tgz#51a0dfb85811e04f244171f164b6bc83b36113a7" @@ -1012,6 +1106,17 @@ read-package-json-fast "^3.0.0" which "^3.0.0" +"@npmcli/run-script@^7.0.0", "@npmcli/run-script@^7.0.1": + version "7.0.1" + resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-7.0.1.tgz#18eebaed96214357f618a82510411319181417bd" + integrity sha512-Od/JMrgkjZ8alyBE0IzeqZDiF1jgMez9Gkc/OYrCkHHiXNwM0wc6s7+h+xM7kYDZkS0tAoOLr9VvygyE5+2F7g== + dependencies: + "@npmcli/node-gyp" "^3.0.0" + "@npmcli/promise-spawn" "^7.0.0" + node-gyp "^9.0.0" + read-package-json-fast "^3.0.0" + which "^4.0.0" + "@oclif/command@^1.8.14", "@oclif/command@^1.8.15": version "1.8.30" resolved "https://registry.yarnpkg.com/@oclif/command/-/command-1.8.30.tgz#3e20c8ebe5c9b1056a97e825f5e4f939d461ede9" @@ -1060,7 +1165,7 @@ is-wsl "^2.1.1" tslib "^2.5.0" -"@oclif/core@2.15.0", "@oclif/core@^2.11.10", "@oclif/core@^2.11.4", "@oclif/core@^2.11.7", "@oclif/core@^2.11.8", "@oclif/core@^2.15.0", "@oclif/core@^2.8.5", "@oclif/core@^2.9.3": +"@oclif/core@2.15.0", "@oclif/core@^2.11.10", "@oclif/core@^2.11.4", "@oclif/core@^2.11.8", "@oclif/core@^2.15.0", "@oclif/core@^2.8.5", "@oclif/core@^2.9.3": version "2.15.0" resolved "https://registry.yarnpkg.com/@oclif/core/-/core-2.15.0.tgz#f27797b30a77d13279fba88c1698fc34a0bd0d2a" integrity sha512-fNEMG5DzJHhYmI3MgpByTvltBOMyFcnRIUMxbiz2ai8rhaYgaTHMG3Q38HcosfIvtw9nCjxpcQtC8MN8QtVCcA== @@ -1228,10 +1333,10 @@ chalk "^4" fast-levenshtein "^3.0.0" -"@oclif/plugin-plugins@3.8.0": - version "3.8.0" - resolved "https://registry.yarnpkg.com/@oclif/plugin-plugins/-/plugin-plugins-3.8.0.tgz#d83ad5fb1a1c37864b23dfd1f1180d5d4ba9e5a7" - integrity sha512-yQ+M0REyP7DeCQQ4j4TDYV2bu0wy66tJzrO/ZN/ZHbwdzcyM3JmfQsqo9rBSXDJZf6FU2xL9P2+Gfj2VpG7qMw== +"@oclif/plugin-plugins@3.8.2": + version "3.8.2" + resolved "https://registry.yarnpkg.com/@oclif/plugin-plugins/-/plugin-plugins-3.8.2.tgz#5089a56cc616ed8124a9f9a15012abd510bd7517" + integrity sha512-ajQGE6k5gti4p//J9qPBo1RjA4RICJhrqQf9eRVFtuL7QQY2bFkpxoXPi4jx0W0AcLwJ1kC6c2ayxMlcHSescA== dependencies: "@oclif/core" "^2.15.0" chalk "^4.1.2" @@ -1561,12 +1666,12 @@ istanbul-lib-report "^3.0.1" istanbul-reports "^3.1.6" -"@salesforce/cli-plugins-testkit@^4.3.4": - version "4.3.5" - resolved "https://registry.yarnpkg.com/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-4.3.5.tgz#3efd4433c57f51dcf0acbcda4337cf530c5b3b33" - integrity sha512-pP9PpyLtwXKj3jvkdVGpuxOAgqML+JcTVmyjuORyiOg4BLTQVGnju/e1GXirasNrIA3Wh1DLVymFDqN4HAc32w== +"@salesforce/cli-plugins-testkit@^4.3.6": + version "4.4.0" + resolved "https://registry.yarnpkg.com/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-4.4.0.tgz#e23b7fe2c5290aa739c57891aae4185968863e52" + integrity sha512-pE9HgFqT89ka983B56NFSGJ6l1iul4TWz3DSsnx9AEk7coVTw0BIYk0mkkPq7V9PyALa9pe2QNa/LslGrxk0UQ== dependencies: - "@salesforce/core" "^5.2.7" + "@salesforce/core" "^5.2.9" "@salesforce/kit" "^3.0.11" "@salesforce/ts-types" "^2.0.6" "@types/shelljs" "^0.8.12" @@ -1684,16 +1789,16 @@ open "^8.2.1" tslib "^2" -"@salesforce/plugin-command-reference@^3.0.25": - version "3.0.25" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-command-reference/-/plugin-command-reference-3.0.25.tgz#b87afdd5e3bc01c17ebf0c6dd9e90e380f8deff0" - integrity sha512-ddieOyDapcK49HTqmbHy5bF+Iwzy59rkXr6iRoedRYEAGjj+5fYW1U2co9X/nuSUIRzT5uD13YpNqUVYG/LsbQ== +"@salesforce/plugin-command-reference@^3.0.33": + version "3.0.35" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-command-reference/-/plugin-command-reference-3.0.35.tgz#4257db5883392e43f673c26ceaa1905f920b49e1" + integrity sha512-YDl3XJ48J1UVVmEKAv/u4rAlkhvAU8blXMduw+VuuAKUXIMp20619L6H5oVmMQPLiFHAGCyIpH0q9ZE2BKRp0A== dependencies: - "@oclif/core" "^2.11.7" - "@salesforce/core" "^5.2.0" + "@oclif/core" "^2.15.0" + "@salesforce/core" "^5.2.10" "@salesforce/kit" "^3.0.9" - "@salesforce/sf-plugins-core" "^3.1.14" - "@salesforce/ts-types" "^2.0.6" + "@salesforce/sf-plugins-core" "^3.1.23" + "@salesforce/ts-types" "^2.0.7" chalk "^4" handlebars "^4.7.8" tslib "^2" @@ -1714,10 +1819,10 @@ jsforce "^2.0.0-beta.27" tslib "^2" -"@salesforce/plugin-deploy-retrieve@1.18.0": - version "1.18.0" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-1.18.0.tgz#b8ca5a6c1b856aa6c8c9bc674adb5072cd595d47" - integrity sha512-kcwyYtp+rWMcvh8OlQKPeO+Cybi715nRSGJROiMYCOLENeyYnCWPNrSC0krYVqtCjvVOh5IM4Fxz8RNnqQ6dIA== +"@salesforce/plugin-deploy-retrieve@1.18.1": + version "1.18.1" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-1.18.1.tgz#bc9a91a5ff77cd81efc9c5cd478be48da17d1758" + integrity sha512-hnRWubS4Z91Hq7WICylaB6siDcOW8iQVAhuHWip5Glg83PmX+ERATeQyYmy6YfqJQx9JJ0Lhz1xEiEvPNJUssw== dependencies: "@oclif/core" "^2.15.0" "@salesforce/apex-node" "^2.1.0" @@ -1797,19 +1902,19 @@ open "^8.4.2" tslib "^2" -"@salesforce/plugin-release-management@^4.3.1-dev.0": - version "4.3.1-dev.0" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-release-management/-/plugin-release-management-4.3.1-dev.0.tgz#5d893c0823479108856fb9db8c33561c92e12397" - integrity sha512-0GWkRqum5ar3/SSumuD8k4J+nr4wGFfbHyHtgYn6cSZTSs6ll+VaUNxs4rk/0tCJw6EYC/iPgCTt5A6IzwYoFw== +"@salesforce/plugin-release-management@^4.4.0": + version "4.4.0" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-release-management/-/plugin-release-management-4.4.0.tgz#fe0f4eb4a42e463de1a55981db870638860f8599" + integrity sha512-kudJEHykS3CR8B1tkdxIbHVYRX5Gym1eemmf0XcKa1PaAEO/1Bx11riC/Ak7pYVgVNMgFXoOzKOsiXcmdPkybg== dependencies: "@oclif/core" "^2.15.0" "@octokit/core" "^4.2.4" "@octokit/plugin-paginate-rest" "^6.1.2" "@octokit/plugin-throttling" "^5.2.3" - "@salesforce/cli-plugins-testkit" "^4.3.4" - "@salesforce/core" "^5.2.7" + "@salesforce/cli-plugins-testkit" "^4.3.6" + "@salesforce/core" "^5.2.10" "@salesforce/kit" "^3.0.9" - "@salesforce/plugin-command-reference" "^3.0.25" + "@salesforce/plugin-command-reference" "^3.0.33" "@salesforce/plugin-trust" "^2.6.8" "@salesforce/sf-plugins-core" "^3.1.22" "@salesforce/ts-types" "^2.0.6" @@ -1905,16 +2010,16 @@ yeoman-environment "^3.19.3" yeoman-generator "^5.9.0" -"@salesforce/plugin-trust@2.6.14", "@salesforce/plugin-trust@^2.6.8": - version "2.6.14" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-trust/-/plugin-trust-2.6.14.tgz#88f5114762197c97ed134cf9c902819093d01de5" - integrity sha512-EAPvsm9KJAYi0aVbnRVUmEMjAMt50EKy8xFIk2hSBmCZ+3G/j+xTNmz2AmLFK9IjVJd6lQD9T5rNaUFrEQ2BMg== +"@salesforce/plugin-trust@2.6.15", "@salesforce/plugin-trust@^2.6.8": + version "2.6.15" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-trust/-/plugin-trust-2.6.15.tgz#1e9a8f5c65b8f0b5591f5e6a79cfbb284371a2a7" + integrity sha512-/lnVMyr+FebW3g663UQVoamrklHL0YJnat52XRemVmdWGWd7CNWoVtHQ2I8iaOMu0mBLDt3/3BaVqQFAxJgVHw== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.2.9" "@salesforce/sf-plugins-core" "^3.1.23" got "^11" - npm "9.6.7" + npm "9.8.1" npm-run-path "^4.0.1" proxy-agent "^6.3.1" shelljs "^0.8.4" @@ -2034,19 +2139,59 @@ dependencies: tslib "^2.6.2" -"@sigstore/protobuf-specs@^0.1.0": - version "0.1.0" - resolved "https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.1.0.tgz#957cb64ea2f5ce527cc9cf02a096baeb0d2b99b4" - integrity sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ== +"@sigstore/bundle@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@sigstore/bundle/-/bundle-1.1.0.tgz#17f8d813b09348b16eeed66a8cf1c3d6bd3d04f1" + integrity sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog== + dependencies: + "@sigstore/protobuf-specs" "^0.2.0" -"@sigstore/tuf@^1.0.1": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-1.0.2.tgz#acbb2c8399fb03aca0c90fa1dc1934bda4160623" - integrity sha512-vjwcYePJzM01Ha6oWWZ9gNcdIgnzyFxfqfWzph483DPJTH8Tb7f7bQRRll3CYVkyH56j0AgcPAcl6Vg95DPF+Q== +"@sigstore/bundle@^2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@sigstore/bundle/-/bundle-2.1.0.tgz#c6140ca97b68815edf7c4fb7bdbf58d656525c39" + integrity sha512-89uOo6yh/oxaU8AeOUnVrTdVMcGk9Q1hJa7Hkvalc6G3Z3CupWk4Xe9djSgJm9fMkH69s0P0cVHUoKSOemLdng== dependencies: - "@sigstore/protobuf-specs" "^0.1.0" + "@sigstore/protobuf-specs" "^0.2.1" + +"@sigstore/protobuf-specs@^0.2.0", "@sigstore/protobuf-specs@^0.2.1": + version "0.2.1" + resolved "https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.2.1.tgz#be9ef4f3c38052c43bd399d3f792c97ff9e2277b" + integrity sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A== + +"@sigstore/sign@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@sigstore/sign/-/sign-1.0.0.tgz#6b08ebc2f6c92aa5acb07a49784cb6738796f7b4" + integrity sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA== + dependencies: + "@sigstore/bundle" "^1.1.0" + "@sigstore/protobuf-specs" "^0.2.0" + make-fetch-happen "^11.0.1" + +"@sigstore/sign@^2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@sigstore/sign/-/sign-2.1.0.tgz#801f4b5f60e13ecd1925117a7d084ab7b2199f01" + integrity sha512-4VRpfJxs+8eLqzLVrZngVNExVA/zAhVbi4UT4zmtLi4xRd7vz5qie834OgkrGsLlLB1B2nz/3wUxT1XAUBe8gw== + dependencies: + "@sigstore/bundle" "^2.1.0" + "@sigstore/protobuf-specs" "^0.2.1" + make-fetch-happen "^13.0.0" + +"@sigstore/tuf@^1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-1.0.3.tgz#2a65986772ede996485728f027b0514c0b70b160" + integrity sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg== + dependencies: + "@sigstore/protobuf-specs" "^0.2.0" tuf-js "^1.1.7" +"@sigstore/tuf@^2.1.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-2.2.0.tgz#ef636239687e41af3f2ce10667ab88f5ca6165b3" + integrity sha512-KKATZ5orWfqd9ZG6MN8PtCIx4eevWSuGRKQvofnWXRpyMyUEpmrzg5M5BrCpjM+NfZ0RbNGOh5tCz/P2uoRqOA== + dependencies: + "@sigstore/protobuf-specs" "^0.2.1" + tuf-js "^2.1.0" + "@sindresorhus/is@^4.0.0": version "4.6.0" resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz#3c7c9c46e678feefe7a2e5bb609d3dbd665ffb3f" @@ -2188,6 +2333,11 @@ resolved "https://registry.yarnpkg.com/@tufjs/canonical-json/-/canonical-json-1.0.0.tgz#eade9fd1f537993bc1f0949f3aea276ecc4fab31" integrity sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ== +"@tufjs/canonical-json@2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@tufjs/canonical-json/-/canonical-json-2.0.0.tgz#a52f61a3d7374833fca945b2549bc30a2dd40d0a" + integrity sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA== + "@tufjs/models@1.0.4": version "1.0.4" resolved "https://registry.yarnpkg.com/@tufjs/models/-/models-1.0.4.tgz#5a689630f6b9dbda338d4b208019336562f176ef" @@ -2196,6 +2346,14 @@ "@tufjs/canonical-json" "1.0.0" minimatch "^9.0.0" +"@tufjs/models@2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@tufjs/models/-/models-2.0.0.tgz#c7ab241cf11dd29deb213d6817dabb8c99ce0863" + integrity sha512-c8nj8BaOExmZKO2DXhDfegyhSGcG9E/mPN3U13L+/PsoWm1uaGiHHjxqSHQiasDBQwDA3aHuw9+9spYAP1qvvg== + dependencies: + "@tufjs/canonical-json" "2.0.0" + minimatch "^9.0.3" + "@types/cacheable-request@^6.0.1": version "6.0.3" resolved "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz#a430b3260466ca7b5ca5bfd735693b36e7a9d183" @@ -3191,7 +3349,7 @@ cacache@^16.1.0: tar "^6.1.11" unique-filename "^2.0.0" -cacache@^17.0.0, cacache@^17.0.4, cacache@^17.1.2: +cacache@^17.0.0, cacache@^17.0.4, cacache@^17.1.2, cacache@^17.1.3: version "17.1.4" resolved "https://registry.yarnpkg.com/cacache/-/cacache-17.1.4.tgz#b3ff381580b47e85c6e64f801101508e26604b35" integrity sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A== @@ -3209,6 +3367,24 @@ cacache@^17.0.0, cacache@^17.0.4, cacache@^17.1.2: tar "^6.1.11" unique-filename "^3.0.0" +cacache@^18.0.0: + version "18.0.0" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-18.0.0.tgz#17a9ecd6e1be2564ebe6cdca5f7cfed2bfeb6ddc" + integrity sha512-I7mVOPl3PUCeRub1U8YoGz2Lqv9WOBpobZ8RyWFXmReuILz+3OAyTa5oH3QPdtKZD7N0Yk00aLfzn0qvp8dZ1w== + dependencies: + "@npmcli/fs" "^3.1.0" + fs-minipass "^3.0.0" + glob "^10.2.2" + lru-cache "^10.0.1" + minipass "^7.0.3" + minipass-collect "^1.0.2" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.4" + p-map "^4.0.0" + ssri "^10.0.0" + tar "^6.1.11" + unique-filename "^3.0.0" + cacheable-lookup@^5.0.3: version "5.0.4" resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz#5a6b865b2c44357be3d5ebc2a467b032719a7005" @@ -3344,6 +3520,11 @@ 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: + version "5.3.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.3.0.tgz#67c20a7ebef70e7f3970a01f90fa210cb6860385" + integrity sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w== + change-case@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/change-case/-/change-case-4.1.2.tgz#fedfc5f136045e2398c0410ee441f95704641e12" @@ -5583,13 +5764,13 @@ glob@7.2.0: once "^1.3.0" path-is-absolute "^1.0.0" -glob@^10.2.2, glob@^10.2.4: - version "10.3.3" - resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.3.tgz#8360a4ffdd6ed90df84aa8d52f21f452e86a123b" - integrity sha512-92vPiMb/iqpmEgsOoIDvTjc50wf9CCCvMzsi6W0JLPeUKE8TWP1a73PgqSrqy7iAZxaSD1YdzU7QZR5LF51MJw== +glob@^10.2.2, glob@^10.2.4, glob@^10.2.7: + version "10.3.9" + resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.9.tgz#181ae87640ecce9b2fc5b96e4e2d70b7c3629ab8" + integrity sha512-2tU/LKevAQvDVuVJ9pg9Yv9xcbSh+TqHuTaXTNbQwf+0kDl9Fm6bMovi4Nm5c8TVvfxo2LLcqCGtmO9KoJaGWg== dependencies: foreground-child "^3.1.0" - jackspeak "^2.0.3" + jackspeak "^2.3.5" minimatch "^9.0.1" minipass "^5.0.0 || ^6.0.2 || ^7.0.0" path-scurry "^1.10.1" @@ -5829,6 +6010,13 @@ hosted-git-info@^6.0.0, hosted-git-info@^6.1.1: dependencies: lru-cache "^7.5.1" +hosted-git-info@^7.0.0: + version "7.0.1" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-7.0.1.tgz#9985fcb2700467fecf7f33a4d4874e30680b5322" + integrity sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA== + dependencies: + lru-cache "^10.0.1" + html-escaper@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" @@ -5898,7 +6086,7 @@ https-proxy-agent@^5.0.0: agent-base "6" debug "4" -https-proxy-agent@^7.0.2: +https-proxy-agent@^7.0.1, https-proxy-agent@^7.0.2: version "7.0.2" resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz#e2645b846b90e96c6e6f347fb5b2e41f1590b09b" integrity sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA== @@ -6042,7 +6230,7 @@ ini@^1.3.2, ini@^1.3.4: resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== -ini@^4.1.0: +ini@^4.1.0, ini@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/ini/-/ini-4.1.1.tgz#d95b3d843b1e906e56d6747d5447904ff50ce7a1" integrity sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g== @@ -6420,6 +6608,11 @@ isexe@^2.0.0: resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== +isexe@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-3.1.1.tgz#4a407e2bd78ddfb14bea0c27c6f7072dde775f0d" + integrity sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ== + isomorphic-git@1.23.0: version "1.23.0" resolved "https://registry.yarnpkg.com/isomorphic-git/-/isomorphic-git-1.23.0.tgz#3afaeb2831e57a2eb95d6ef503cf8251424f03f2" @@ -6497,10 +6690,10 @@ istanbul-reports@^3.0.2, istanbul-reports@^3.1.6: html-escaper "^2.0.0" istanbul-lib-report "^3.0.0" -jackspeak@^2.0.3: - version "2.2.1" - resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.2.1.tgz#655e8cf025d872c9c03d3eb63e8f0c024fef16a6" - integrity sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw== +jackspeak@^2.3.5: + version "2.3.5" + resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.3.5.tgz#443f237f9eeeb0d7c6ec34835ef5289bb4acb068" + integrity sha512-Ratx+B8WeXLAtRJn26hrhY8S1+Jz6pxPMrkrdkgb/NstTNiqMhX0/oFVu5wX+g5n6JlEu2LPsDJmY8nRP4+alw== dependencies: "@isaacs/cliui" "^8.0.2" optionalDependencies: @@ -6773,7 +6966,7 @@ libnpmaccess@^7.0.2: npm-package-arg "^10.1.0" npm-registry-fetch "^14.0.3" -libnpmdiff@^5.0.17: +libnpmdiff@^5.0.17, libnpmdiff@^5.0.19: version "5.0.19" resolved "https://registry.yarnpkg.com/libnpmdiff/-/libnpmdiff-5.0.19.tgz#c56a8b1fcd7690f12e527c0ab21dbdbd259c27fe" integrity sha512-caqIA7SzPeyqOn55GodejyEJRIXaFnzuqxrO9uyXtH4soom4wjDAkU97L1WrBSuVtDk3IZQD72daVeT2GqHSjA== @@ -6806,12 +6999,29 @@ libnpmexec@^5.0.17: semver "^7.3.7" walk-up-path "^3.0.1" -libnpmfund@^4.0.17: - version "4.0.19" - resolved "https://registry.yarnpkg.com/libnpmfund/-/libnpmfund-4.0.19.tgz#ec615b9a5fb996185fca132420b6be265dc485f1" - integrity sha512-g2XV/oqBLo0Mau/nmqvIoNHRmAQqzSvSjSR9npO0+buEqGmyRHDeQJKDI3RxpLcQgd0IuNNAoTjXXpoKcX90EQ== +libnpmexec@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/libnpmexec/-/libnpmexec-6.0.3.tgz#f7ea9c028443d890297e1bbe2d5605f68b118470" + integrity sha512-E87xEzxChUe0qZgoqht5D5t13B876rPoTD877v9ZUSMztBFpuChQn5UNO3z5NaeBpEwWq/BAnQfMYRWR6sVAZA== dependencies: "@npmcli/arborist" "^6.3.0" + "@npmcli/run-script" "^6.0.0" + ci-info "^3.7.1" + npm-package-arg "^10.1.0" + npmlog "^7.0.1" + pacote "^15.0.8" + proc-log "^3.0.0" + read "^2.0.0" + read-package-json-fast "^3.0.2" + semver "^7.3.7" + walk-up-path "^3.0.1" + +libnpmfund@^4.0.17, libnpmfund@^4.0.19: + version "4.1.1" + resolved "https://registry.yarnpkg.com/libnpmfund/-/libnpmfund-4.1.1.tgz#d2093d6e47e3bd1cf34ef5eb01b9bb31db0e027b" + integrity sha512-ILL3sDhEqF2iYFBPqraFW/Ma8cDZbbSAf3NJsGBrmw0i7k5wpC4tjBhBxLy43wzRq/bxnijb3jS7Flq6GwjQDw== + dependencies: + "@npmcli/arborist" "^7.1.0" libnpmhook@^9.0.3: version "9.0.3" @@ -6829,7 +7039,7 @@ libnpmorg@^5.0.4: aproba "^2.0.0" npm-registry-fetch "^14.0.3" -libnpmpack@^5.0.17: +libnpmpack@^5.0.17, libnpmpack@^5.0.19: version "5.0.19" resolved "https://registry.yarnpkg.com/libnpmpack/-/libnpmpack-5.0.19.tgz#e9790ebbcb078469d59dbb7e5ee7defe3039cc22" integrity sha512-xxkROnxTZF3imCJ9ve+6ELtRYvOBMwvrKlMGJx6JhmvD5lqIPGOJpY8oY+w8XLmLX1N06scYuLonkFpF2ayrjQ== @@ -6839,7 +7049,7 @@ libnpmpack@^5.0.17: npm-package-arg "^10.1.0" pacote "^15.0.8" -libnpmpublish@^7.2.0: +libnpmpublish@^7.2.0, libnpmpublish@^7.5.0: version "7.5.0" resolved "https://registry.yarnpkg.com/libnpmpublish/-/libnpmpublish-7.5.0.tgz#a118c8fdc680947c960648ed8b4c94d15e42e0ab" integrity sha512-zctH6QcTJ093lpxmkufr2zr3AJ9V90hcRilDFNin6n91ODj+S28RdyMFFJpa9NwyztmyV2hlWLyZv0GaOQBDyA== @@ -7148,6 +7358,11 @@ lowercase-keys@^2.0.0: resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== +lru-cache@^10.0.1, "lru-cache@^9.1.1 || ^10.0.0": + version "10.0.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.0.1.tgz#0a3be479df549cca0e5d693ac402ff19537a6b7a" + integrity sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g== + lru-cache@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" @@ -7167,11 +7382,6 @@ lru-cache@^7.14.1, lru-cache@^7.4.4, lru-cache@^7.5.1, lru-cache@^7.7.1: resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.18.3.tgz#f793896e0fd0e954a59dfdd82f0773808df6aa89" integrity sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA== -"lru-cache@^9.1.1 || ^10.0.0": - version "10.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.0.0.tgz#b9e2a6a72a129d81ab317202d93c7691df727e61" - integrity sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw== - lunr@^2.3.9: version "2.3.9" resolved "https://registry.yarnpkg.com/lunr/-/lunr-2.3.9.tgz#18b123142832337dd6e964df1a5a7707b25d35e1" @@ -7239,6 +7449,23 @@ make-fetch-happen@^11.0.0, make-fetch-happen@^11.0.1, make-fetch-happen@^11.0.3, socks-proxy-agent "^7.0.0" ssri "^10.0.0" +make-fetch-happen@^13.0.0: + version "13.0.0" + resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-13.0.0.tgz#705d6f6cbd7faecb8eac2432f551e49475bfedf0" + integrity sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A== + dependencies: + "@npmcli/agent" "^2.0.0" + cacache "^18.0.0" + http-cache-semantics "^4.1.1" + is-lambda "^1.0.1" + minipass "^7.0.2" + minipass-fetch "^3.0.0" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.4" + negotiator "^0.6.3" + promise-retry "^2.0.1" + ssri "^10.0.0" + make-fetch-happen@^9.1.0: version "9.1.0" resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz#53085a09e7971433e6765f7971bf63f4e05cb968" @@ -7414,7 +7641,7 @@ minimatch@^7.2.0: dependencies: brace-expansion "^2.0.1" -minimatch@^9.0.0, minimatch@^9.0.1: +minimatch@^9.0.0, minimatch@^9.0.1, minimatch@^9.0.3: version "9.0.3" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825" integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== @@ -7523,7 +7750,7 @@ minipass@^5.0.0: resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== -"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.3: +"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.2, minipass@^7.0.3: version "7.0.3" resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.3.tgz#05ea638da44e475037ed94d1c7efcc76a25e1974" integrity sha512-LhbbwCfz3vsb12j/WkWQPZfKTsgqIe1Nf/ti1pKjYESGLHIVjWU96G9/ljLH4F9mWNVhlQOm0VySdAWzf05dpg== @@ -7778,7 +8005,7 @@ node-gyp@^8.2.0: tar "^6.1.2" which "^2.0.2" -node-gyp@^9.0.0, node-gyp@^9.3.1: +node-gyp@^9.0.0, node-gyp@^9.3.1, node-gyp@^9.4.0: version "9.4.0" resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-9.4.0.tgz#2a7a91c7cba4eccfd95e949369f27c9ba704f369" integrity sha512-dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg== @@ -7821,7 +8048,7 @@ nopt@^6.0.0: dependencies: abbrev "^1.0.0" -nopt@^7.0.0, nopt@^7.1.0: +nopt@^7.0.0, nopt@^7.1.0, nopt@^7.2.0: version "7.2.0" resolved "https://registry.yarnpkg.com/nopt/-/nopt-7.2.0.tgz#067378c68116f602f552876194fd11f1292503d7" integrity sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA== @@ -7858,6 +8085,16 @@ normalize-package-data@^5.0.0: semver "^7.3.5" validate-npm-package-license "^3.0.4" +normalize-package-data@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-6.0.0.tgz#68a96b3c11edd462af7189c837b6b1064a484196" + integrity sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg== + dependencies: + hosted-git-info "^7.0.0" + is-core-module "^2.8.1" + semver "^7.3.5" + validate-npm-package-license "^3.0.4" + normalize-path@^3.0.0, normalize-path@~3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" @@ -7875,6 +8112,11 @@ npm-audit-report@^4.0.0: dependencies: chalk "^4.0.0" +npm-audit-report@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/npm-audit-report/-/npm-audit-report-5.0.0.tgz#83ac14aeff249484bde81eff53c3771d5048cf95" + integrity sha512-EkXrzat7zERmUhHaoren1YhTxFwsOu5jypE84k6632SXTHcQE1z8V51GC6GVZt8LxkC+tbBcKMUBZAgk8SUSbw== + npm-bundled@^1.1.1: version "1.1.2" resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.2.tgz#944c78789bd739035b70baa2ca5cc32b8d860bc1" @@ -7896,10 +8138,10 @@ npm-install-checks@^4.0.0: dependencies: semver "^7.1.1" -npm-install-checks@^6.0.0, npm-install-checks@^6.1.1: - version "6.1.1" - resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-6.1.1.tgz#b459b621634d06546664207fde16810815808db1" - integrity sha512-dH3GmQL4vsPtld59cOn8uY0iOqRmqKvV+DLGwNXV/Q7MDgD2QfOADWd/mFXcIE5LVhYYGjA3baz6W9JneqnuCw== +npm-install-checks@^6.0.0, npm-install-checks@^6.1.1, npm-install-checks@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-6.2.0.tgz#fae55b9967b03ac309695ec96629492d5cedf371" + integrity sha512-744wat5wAAHsxa4590mWO0tJ8PKxR8ORZsH9wGpQc3nWTzozMAgBN/XyqYw7mg3yqLM8dLwEnwSfKMmXAjF69g== dependencies: semver "^7.1.1" @@ -7928,6 +8170,16 @@ npm-package-arg@^10.0.0, npm-package-arg@^10.1.0: semver "^7.3.5" validate-npm-package-name "^5.0.0" +npm-package-arg@^11.0.0: + version "11.0.1" + resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-11.0.1.tgz#f208b0022c29240a1c532a449bdde3f0a4708ebc" + integrity sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ== + dependencies: + hosted-git-info "^7.0.0" + proc-log "^3.0.0" + semver "^7.3.5" + validate-npm-package-name "^5.0.0" + npm-package-arg@^8.0.1, npm-package-arg@^8.1.2, npm-package-arg@^8.1.5: version "8.1.5" resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-8.1.5.tgz#3369b2d5fe8fdc674baa7f1786514ddc15466e44" @@ -7954,6 +8206,13 @@ npm-packlist@^7.0.0: dependencies: ignore-walk "^6.0.0" +npm-packlist@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-8.0.0.tgz#4e7f51fe1d5e69b19508ed8dc6cd3ae2e7b38c17" + integrity sha512-ErAGFB5kJUciPy1mmx/C2YFbvxoJ0QJ9uwkCZOeR6CqLLISPZBOiFModAbSXnjjlwW5lOhuhXva+fURsSGJqyw== + dependencies: + ignore-walk "^6.0.0" + npm-pick-manifest@^6.0.0, npm-pick-manifest@^6.1.0, npm-pick-manifest@^6.1.1: version "6.1.1" resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-6.1.1.tgz#7b5484ca2c908565f43b7f27644f36bb816f5148" @@ -7974,6 +8233,16 @@ npm-pick-manifest@^8.0.0, npm-pick-manifest@^8.0.1: npm-package-arg "^10.0.0" semver "^7.3.5" +npm-pick-manifest@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-9.0.0.tgz#f87a4c134504a2c7931f2bb8733126e3c3bb7e8f" + integrity sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg== + dependencies: + npm-install-checks "^6.0.0" + npm-normalize-package-bin "^3.0.0" + npm-package-arg "^11.0.0" + semver "^7.3.5" + npm-profile@^7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/npm-profile/-/npm-profile-7.0.1.tgz#a37dae08b22e662ece2c6e08946f9fcd9fdef663" @@ -8007,6 +8276,19 @@ npm-registry-fetch@^14.0.0, npm-registry-fetch@^14.0.3, npm-registry-fetch@^14.0 npm-package-arg "^10.0.0" proc-log "^3.0.0" +npm-registry-fetch@^16.0.0: + version "16.0.0" + resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-16.0.0.tgz#7529dd7c64c16a1bc8af72f99df73dfe98bb9549" + integrity sha512-JFCpAPUpvpwfSydv99u85yhP68rNIxSFmDpNbNnRWKSe3gpjHnWL8v320gATwRzjtgmZ9Jfe37+ZPOLZPwz6BQ== + dependencies: + make-fetch-happen "^13.0.0" + minipass "^7.0.2" + minipass-fetch "^3.0.0" + minipass-json-stream "^1.0.1" + minizlib "^2.1.2" + npm-package-arg "^11.0.0" + proc-log "^3.0.0" + npm-run-path@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" @@ -8098,6 +8380,80 @@ npm@9.6.7: which "^3.0.1" write-file-atomic "^5.0.1" +npm@9.8.1: + version "9.8.1" + resolved "https://registry.yarnpkg.com/npm/-/npm-9.8.1.tgz#b8f070cc770128b38017160491504184863329f0" + integrity sha512-AfDvThQzsIXhYgk9zhbk5R+lh811lKkLAeQMMhSypf1BM7zUafeIIBzMzespeuVEJ0+LvY36oRQYf7IKLzU3rw== + dependencies: + "@isaacs/string-locale-compare" "^1.1.0" + "@npmcli/arborist" "^6.3.0" + "@npmcli/config" "^6.2.1" + "@npmcli/fs" "^3.1.0" + "@npmcli/map-workspaces" "^3.0.4" + "@npmcli/package-json" "^4.0.1" + "@npmcli/promise-spawn" "^6.0.2" + "@npmcli/run-script" "^6.0.2" + abbrev "^2.0.0" + archy "~1.0.0" + cacache "^17.1.3" + chalk "^5.3.0" + ci-info "^3.8.0" + cli-columns "^4.0.0" + cli-table3 "^0.6.3" + columnify "^1.6.0" + fastest-levenshtein "^1.0.16" + fs-minipass "^3.0.2" + glob "^10.2.7" + graceful-fs "^4.2.11" + hosted-git-info "^6.1.1" + ini "^4.1.1" + init-package-json "^5.0.0" + is-cidr "^4.0.2" + json-parse-even-better-errors "^3.0.0" + libnpmaccess "^7.0.2" + libnpmdiff "^5.0.19" + libnpmexec "^6.0.3" + libnpmfund "^4.0.19" + libnpmhook "^9.0.3" + libnpmorg "^5.0.4" + libnpmpack "^5.0.19" + libnpmpublish "^7.5.0" + libnpmsearch "^6.0.2" + libnpmteam "^5.0.3" + libnpmversion "^4.0.2" + make-fetch-happen "^11.1.1" + minimatch "^9.0.3" + minipass "^5.0.0" + minipass-pipeline "^1.2.4" + ms "^2.1.2" + node-gyp "^9.4.0" + nopt "^7.2.0" + npm-audit-report "^5.0.0" + npm-install-checks "^6.1.1" + npm-package-arg "^10.1.0" + npm-pick-manifest "^8.0.1" + npm-profile "^7.0.1" + npm-registry-fetch "^14.0.5" + npm-user-validate "^2.0.0" + npmlog "^7.0.1" + p-map "^4.0.0" + pacote "^15.2.0" + parse-conflict-json "^3.0.1" + proc-log "^3.0.0" + qrcode-terminal "^0.12.0" + read "^2.1.0" + semver "^7.5.4" + sigstore "^1.7.0" + ssri "^10.0.4" + supports-color "^9.4.0" + tar "^6.1.15" + text-table "~0.2.0" + tiny-relative-date "^1.3.0" + treeverse "^3.0.0" + validate-npm-package-name "^5.0.0" + which "^3.0.1" + write-file-atomic "^5.0.1" + npmlog@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-5.0.1.tgz#f06678e80e29419ad67ab964e0fa69959c1eb8b0" @@ -8500,6 +8856,30 @@ pacote@^15.0.0, pacote@^15.0.8, pacote@^15.1.3, pacote@^15.2.0: ssri "^10.0.0" tar "^6.1.11" +pacote@^17.0.0, pacote@^17.0.4: + version "17.0.4" + resolved "https://registry.yarnpkg.com/pacote/-/pacote-17.0.4.tgz#4bac6c0745967bde96985ec12fbbfc8dea7140e8" + integrity sha512-eGdLHrV/g5b5MtD5cTPyss+JxOlaOloSMG3UwPMAvL8ywaLJ6beONPF40K4KKl/UI6q5hTKCJq5rCu8tkF+7Dg== + dependencies: + "@npmcli/git" "^5.0.0" + "@npmcli/installed-package-contents" "^2.0.1" + "@npmcli/promise-spawn" "^7.0.0" + "@npmcli/run-script" "^7.0.0" + cacache "^18.0.0" + fs-minipass "^3.0.0" + minipass "^7.0.2" + npm-package-arg "^11.0.0" + npm-packlist "^8.0.0" + npm-pick-manifest "^9.0.0" + npm-registry-fetch "^16.0.0" + proc-log "^3.0.0" + promise-retry "^2.0.1" + read-package-json "^7.0.0" + read-package-json-fast "^3.0.0" + sigstore "^2.0.0" + ssri "^10.0.0" + tar "^6.1.11" + pako@^1.0.10, pako@~1.0.2: version "1.0.11" resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" @@ -9004,6 +9384,16 @@ read-package-json@^6.0.0, read-package-json@^6.0.3: normalize-package-data "^5.0.0" npm-normalize-package-bin "^3.0.0" +read-package-json@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-7.0.0.tgz#d605c9dcf6bc5856da24204aa4e9518ee9714be0" + integrity sha512-uL4Z10OKV4p6vbdvIXB+OzhInYtIozl/VxUBPgNkBuUi2DeRonnuspmaVAMcrkmfjKGNmRndyQAbE7/AmzGwFg== + dependencies: + glob "^10.2.2" + json-parse-even-better-errors "^3.0.0" + normalize-package-data "^6.0.0" + npm-normalize-package-bin "^3.0.0" + read-pkg-up@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" @@ -9522,15 +9912,27 @@ signal-exit@^4.0.1: resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.0.2.tgz#ff55bb1d9ff2114c13b400688fa544ac63c36967" integrity sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q== -sigstore@^1.3.0, sigstore@^1.4.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/sigstore/-/sigstore-1.7.0.tgz#9186e6c8ce1ab0cba5d97b414212d40f0a01564e" - integrity sha512-KP7QULhWdlu3hlp+jw2EvgWKlOGOY9McLj/jrchLjHNlNPK0KWIwF919cbmOp6QiKXLmPijR2qH/5KYWlbtG9Q== +sigstore@^1.3.0, sigstore@^1.4.0, sigstore@^1.7.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/sigstore/-/sigstore-1.9.0.tgz#1e7ad8933aa99b75c6898ddd0eeebc3eb0d59875" + integrity sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A== dependencies: - "@sigstore/protobuf-specs" "^0.1.0" - "@sigstore/tuf" "^1.0.1" + "@sigstore/bundle" "^1.1.0" + "@sigstore/protobuf-specs" "^0.2.0" + "@sigstore/sign" "^1.0.0" + "@sigstore/tuf" "^1.0.3" make-fetch-happen "^11.0.1" +sigstore@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/sigstore/-/sigstore-2.1.0.tgz#c577b596642b3f360dc4135d476466e6edeb2364" + integrity sha512-kPIj+ZLkyI3QaM0qX8V/nSsweYND3W448pwkDgS6CQ74MfhEkIR8ToK5Iyx46KJYRjseVcD3Rp9zAmUAj6ZjPw== + dependencies: + "@sigstore/bundle" "^2.1.0" + "@sigstore/protobuf-specs" "^0.2.1" + "@sigstore/sign" "^2.1.0" + "@sigstore/tuf" "^2.1.0" + simple-concat@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" @@ -9627,7 +10029,7 @@ socks-proxy-agent@^7.0.0: debug "^4.3.3" socks "^2.6.2" -socks-proxy-agent@^8.0.2: +socks-proxy-agent@^8.0.1, socks-proxy-agent@^8.0.2: version "8.0.2" resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.2.tgz#5acbd7be7baf18c46a3f293a840109a430a640ad" integrity sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g== @@ -9738,12 +10140,12 @@ sprintf-js@~1.0.2: resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== -ssri@^10.0.0, ssri@^10.0.1, ssri@^10.0.4: - version "10.0.4" - resolved "https://registry.yarnpkg.com/ssri/-/ssri-10.0.4.tgz#5a20af378be586df139ddb2dfb3bf992cf0daba6" - integrity sha512-12+IR2CB2C28MMAw0Ncqwj5QbTcs0nGIhgJzYWzDkb21vWmfNI83KS4f3Ci6GI98WreIfG7o9UXp3C0qbpA8nQ== +ssri@^10.0.0, ssri@^10.0.1, ssri@^10.0.4, ssri@^10.0.5: + version "10.0.5" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-10.0.5.tgz#e49efcd6e36385196cb515d3a2ad6c3f0265ef8c" + integrity sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A== dependencies: - minipass "^5.0.0" + minipass "^7.0.3" ssri@^8.0.0, ssri@^8.0.1: version "8.0.1" @@ -9942,6 +10344,11 @@ supports-color@^7.0.0, supports-color@^7.1.0, supports-color@^7.2.0: dependencies: has-flag "^4.0.0" +supports-color@^9.4.0: + version "9.4.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-9.4.0.tgz#17bfcf686288f531db3dea3215510621ccb55954" + integrity sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw== + supports-hyperlinks@^2.1.0, supports-hyperlinks@^2.2.0: version "2.3.0" resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz#3943544347c1ff90b15effb03fc14ae45ec10624" @@ -9987,10 +10394,10 @@ tar-stream@^2.1.4: inherits "^2.0.3" readable-stream "^3.1.1" -tar@^6.0.2, tar@^6.1.0, tar@^6.1.11, tar@^6.1.13, tar@^6.1.14, tar@^6.1.2: - version "6.1.15" - resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.15.tgz#c9738b0b98845a3b344d334b8fa3041aaba53a69" - integrity sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A== +tar@^6.0.2, tar@^6.1.0, tar@^6.1.11, tar@^6.1.13, tar@^6.1.14, tar@^6.1.15, tar@^6.1.2: + version "6.2.0" + resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.0.tgz#b14ce49a79cb1cd23bc9b016302dea5474493f73" + integrity sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ== dependencies: chownr "^2.0.0" fs-minipass "^2.0.0" @@ -10194,6 +10601,15 @@ tuf-js@^1.1.7: debug "^4.3.4" make-fetch-happen "^11.1.1" +tuf-js@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/tuf-js/-/tuf-js-2.1.0.tgz#87aa36d5a166e7522f1e2050eb502a3a9b0bde72" + integrity sha512-eD7YPPjVlMzdggrOeE8zwoegUaG/rt6Bt3jwoQPunRiNVzgcCE009UDFJKJjG+Gk9wFu6W/Vi+P5d/5QpdD9jA== + dependencies: + "@tufjs/models" "2.0.0" + debug "^4.3.4" + make-fetch-happen "^13.0.0" + tunnel-agent@*, tunnel-agent@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" @@ -10653,6 +11069,13 @@ which@^3.0.0, which@^3.0.1: dependencies: isexe "^2.0.0" +which@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/which/-/which-4.0.0.tgz#cd60b5e74503a3fbcfbf6cd6b4138a8bae644c1a" + integrity sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg== + dependencies: + isexe "^3.1.1" + wide-align@^1.1.2, wide-align@^1.1.5: version "1.1.5" resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" From 2208d306cb3e5e5f194c442faea3fd3e54c52386 Mon Sep 17 00:00:00 2001 From: svc-cli-bot Date: Tue, 26 Sep 2023 18:15:55 +0000 Subject: [PATCH 61/70] chore(release): bump to 2.11.6 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 69e6cad9..c2575d99 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@salesforce/cli", "description": "The Salesforce CLI", - "version": "2.11.5", + "version": "2.11.6", "author": "Salesforce", "bin": { "sf": "./bin/run", From e1655a7127d07ddb249147c76cb7341cf34516e3 Mon Sep 17 00:00:00 2001 From: svc-cli-bot Date: Wed, 27 Sep 2023 02:10:12 +0000 Subject: [PATCH 62/70] chore(release): bump to 2.11.7 --- package.json | 4 ++-- yarn.lock | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index c2575d99..2abe2f5a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@salesforce/cli", "description": "The Salesforce CLI", - "version": "2.11.6", + "version": "2.11.7", "author": "Salesforce", "bin": { "sf": "./bin/run", @@ -188,7 +188,7 @@ "resolutions": { "@salesforce/schemas": "1.6.0", "@salesforce/templates": "59.0.1", - "@salesforce/source-deploy-retrieve": "9.7.16", + "@salesforce/source-deploy-retrieve": "9.7.17", "@salesforce/source-tracking": "4.2.14" }, "repository": "salesforcecli/cli", diff --git a/yarn.lock b/yarn.lock index b87782dc..780cb43d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2064,10 +2064,10 @@ chalk "^4" inquirer "^8.2.5" -"@salesforce/source-deploy-retrieve@9.7.16", "@salesforce/source-deploy-retrieve@^9.7.13", "@salesforce/source-deploy-retrieve@^9.7.15", "@salesforce/source-deploy-retrieve@^9.7.4": - version "9.7.16" - resolved "https://registry.yarnpkg.com/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-9.7.16.tgz#580dae1e9af63cb2974c0578d9357daa596515ed" - integrity sha512-N84aFHRR6dGQQz/RayVnsZdU7BzL4Ug13lVfgqj5MmTPuPh/49SsbOfWKSgc8jKjDWUfT4Pf25cu32EJVCXGMA== +"@salesforce/source-deploy-retrieve@9.7.17", "@salesforce/source-deploy-retrieve@^9.7.13", "@salesforce/source-deploy-retrieve@^9.7.15", "@salesforce/source-deploy-retrieve@^9.7.4": + version "9.7.17" + resolved "https://registry.yarnpkg.com/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-9.7.17.tgz#a418e9b3fe60e7c67b4c5827a73c83be269ba377" + integrity sha512-lRCzPUYiSSvkSO2pbs/bDQIADXRZM5GZvz/gC12ZUWv3BfVnMUfZQ4VMlQOkPlUR5wPzMQqfjP4iy9Hfi+z23Q== dependencies: "@salesforce/core" "^5.2.10" "@salesforce/kit" "^3.0.11" From cd13d399362d185e801317ac9ad2221c80b0779a Mon Sep 17 00:00:00 2001 From: Mike Donnalley Date: Wed, 27 Sep 2023 11:50:52 -0600 Subject: [PATCH 63/70] feat: prompt when single partial command match --- src/hooks/incomplete.ts | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/hooks/incomplete.ts b/src/hooks/incomplete.ts index 36691d0a..cdeb4e66 100644 --- a/src/hooks/incomplete.ts +++ b/src/hooks/incomplete.ts @@ -8,7 +8,6 @@ import * as os from 'os'; import { Hook, toConfiguredId, toStandardizedId, Interfaces, Command, loadHelpClass } from '@oclif/core'; import { Prompter } from '@salesforce/sf-plugins-core'; -import { Lifecycle } from '@salesforce/core'; function buildChoices( matches: Command.Loadable[], @@ -27,7 +26,6 @@ function buildChoices( } async function determineCommand(config: Interfaces.Config, matches: Command.Loadable[]): Promise { - if (matches.length === 1) return matches[0].id; const prompter = new Prompter(); const choices = buildChoices(matches, config); const { command } = await prompter.timedPrompt<{ command: Command.Loadable }>([ @@ -52,15 +50,6 @@ const hook: Hook.CommandIncomplete = async function ({ config, matches, argv }) return help.showHelp([toStandardizedId(command, config), ...argv]); } - if (matches.length === 1) { - await Lifecycle.getInstance().emitWarning( - `One command matches the partial command entered, running command:${os.EOL}${config.bin} ${toConfiguredId( - command, - config - )} ${argv.join(' ')}` - ); - } - return config.runCommand(toStandardizedId(command, config), argv); }; From 9137a9900c7b4e97891a6e28fc8c2f65e41a715f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 27 Sep 2023 20:39:18 -0500 Subject: [PATCH 64/70] build(deps): bump get-func-name from 2.0.0 to 2.0.2 (#1181) Bumps [get-func-name](https://github.com/chaijs/get-func-name) from 2.0.0 to 2.0.2. - [Release notes](https://github.com/chaijs/get-func-name/releases) - [Commits](https://github.com/chaijs/get-func-name/commits/v2.0.2) --- updated-dependencies: - dependency-name: get-func-name dependency-type: indirect ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index 780cb43d..bb4f2b88 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5628,9 +5628,9 @@ get-caller-file@^2.0.1, get-caller-file@^2.0.5: integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== get-func-name@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" - integrity sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig== + version "2.0.2" + resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.2.tgz#0d7cf20cd13fda808669ffa88f4ffc7a3943fc41" + integrity sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ== get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0, get-intrinsic@^1.2.1: version "1.2.1" From 10e97542f12a9f4a0062cf8c0fc62a8cc628599f Mon Sep 17 00:00:00 2001 From: svc-cli-bot Date: Thu, 28 Sep 2023 02:10:19 +0000 Subject: [PATCH 65/70] chore(release): bump to 2.12.0 --- package.json | 6 +++--- yarn.lock | 16 ++++++++-------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/package.json b/package.json index 2abe2f5a..ffafef48 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@salesforce/cli", "description": "The Salesforce CLI", - "version": "2.11.7", + "version": "2.12.0", "author": "Salesforce", "bin": { "sf": "./bin/run", @@ -136,7 +136,7 @@ "@salesforce/plugin-apex": "2.3.15", "@salesforce/plugin-auth": "2.8.17", "@salesforce/plugin-data": "2.5.12", - "@salesforce/plugin-deploy-retrieve": "1.18.1", + "@salesforce/plugin-deploy-retrieve": "1.18.2", "@salesforce/plugin-info": "2.6.45", "@salesforce/plugin-limits": "2.3.35", "@salesforce/plugin-login": "1.2.31", @@ -188,7 +188,7 @@ "resolutions": { "@salesforce/schemas": "1.6.0", "@salesforce/templates": "59.0.1", - "@salesforce/source-deploy-retrieve": "9.7.17", + "@salesforce/source-deploy-retrieve": "9.7.18", "@salesforce/source-tracking": "4.2.14" }, "repository": "salesforcecli/cli", diff --git a/yarn.lock b/yarn.lock index bb4f2b88..bea54b93 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1819,10 +1819,10 @@ jsforce "^2.0.0-beta.27" tslib "^2" -"@salesforce/plugin-deploy-retrieve@1.18.1": - version "1.18.1" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-1.18.1.tgz#bc9a91a5ff77cd81efc9c5cd478be48da17d1758" - integrity sha512-hnRWubS4Z91Hq7WICylaB6siDcOW8iQVAhuHWip5Glg83PmX+ERATeQyYmy6YfqJQx9JJ0Lhz1xEiEvPNJUssw== +"@salesforce/plugin-deploy-retrieve@1.18.2": + version "1.18.2" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-1.18.2.tgz#6e5a2ca544c290278e17047e89b07eaf10e5b69e" + integrity sha512-uL5JHe+hmegb/aZhyxGyl/utno74fUDwsUy6WZGAutRpsv35+k57gvz5GkByCjaV1ROlSBy38YQkfWqYCdFSZA== dependencies: "@oclif/core" "^2.15.0" "@salesforce/apex-node" "^2.1.0" @@ -2064,10 +2064,10 @@ chalk "^4" inquirer "^8.2.5" -"@salesforce/source-deploy-retrieve@9.7.17", "@salesforce/source-deploy-retrieve@^9.7.13", "@salesforce/source-deploy-retrieve@^9.7.15", "@salesforce/source-deploy-retrieve@^9.7.4": - version "9.7.17" - resolved "https://registry.yarnpkg.com/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-9.7.17.tgz#a418e9b3fe60e7c67b4c5827a73c83be269ba377" - integrity sha512-lRCzPUYiSSvkSO2pbs/bDQIADXRZM5GZvz/gC12ZUWv3BfVnMUfZQ4VMlQOkPlUR5wPzMQqfjP4iy9Hfi+z23Q== +"@salesforce/source-deploy-retrieve@9.7.18", "@salesforce/source-deploy-retrieve@^9.7.13", "@salesforce/source-deploy-retrieve@^9.7.15", "@salesforce/source-deploy-retrieve@^9.7.4": + version "9.7.18" + resolved "https://registry.yarnpkg.com/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-9.7.18.tgz#38b1577eec7ae08c3ed627c7a38f59c87632b01d" + integrity sha512-kdnX8P/cjUwgKnDF60kXlvm4zwP2xXpFqEB3KniSrvuvbzXKrPbaa05cJvHVnTohAcYTNPHiM+LNkTgZuENNmA== dependencies: "@salesforce/core" "^5.2.10" "@salesforce/kit" "^3.0.11" From de457916c1b95a566cb7d864431c3f1fd5a9c0c4 Mon Sep 17 00:00:00 2001 From: svc-cli-bot Date: Fri, 29 Sep 2023 02:10:13 +0000 Subject: [PATCH 66/70] chore(release): bump to 2.12.1 --- package.json | 66 ++++++++-------- yarn.lock | 216 +++++++++++++++++++++++++-------------------------- 2 files changed, 141 insertions(+), 141 deletions(-) diff --git a/package.json b/package.json index ffafef48..8cfb59e1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@salesforce/cli", "description": "The Salesforce CLI", - "version": "2.12.0", + "version": "2.12.1", "author": "Salesforce", "bin": { "sf": "./bin/run", @@ -70,13 +70,13 @@ "@salesforce/plugin-user" ], "jitPlugins": { - "@salesforce/plugin-custom-metadata": "2.2.4", - "@salesforce/plugin-community": "2.4.4", + "@salesforce/plugin-custom-metadata": "2.2.5", + "@salesforce/plugin-community": "2.4.5", "@salesforce/plugin-dev": "1.2.0", - "@salesforce/plugin-devops-center": "1.2.0", - "@salesforce/plugin-env": "2.2.2", + "@salesforce/plugin-devops-center": "1.2.1", + "@salesforce/plugin-env": "2.2.3", "@salesforce/plugin-functions": "1.22.3", - "@salesforce/plugin-packaging": "1.26.1", + "@salesforce/plugin-packaging": "1.26.2", "@salesforce/plugin-signups": "1.5.1", "@salesforce/sfdx-plugin-lwc-test": "1.1.0", "@salesforce/sfdx-scanner": "3.16.0" @@ -122,35 +122,35 @@ }, "dependencies": { "@oclif/core": "2.15.0", - "@oclif/plugin-autocomplete": "2.3.8", - "@oclif/plugin-commands": "2.2.26", - "@oclif/plugin-help": "5.2.19", - "@oclif/plugin-not-found": "2.4.1", - "@oclif/plugin-plugins": "3.8.2", - "@oclif/plugin-search": "0.0.22", - "@oclif/plugin-update": "3.2.3", + "@oclif/plugin-autocomplete": "2.3.9", + "@oclif/plugin-commands": "2.2.27", + "@oclif/plugin-help": "5.2.20", + "@oclif/plugin-not-found": "2.4.2", + "@oclif/plugin-plugins": "3.8.3", + "@oclif/plugin-search": "0.0.23", + "@oclif/plugin-update": "3.2.4", "@oclif/plugin-version": "1.3.10", - "@oclif/plugin-warn-if-update-available": "2.1.0", - "@oclif/plugin-which": "2.2.32", + "@oclif/plugin-warn-if-update-available": "2.1.1", + "@oclif/plugin-which": "2.2.33", "@salesforce/core": "^5.2.0", - "@salesforce/plugin-apex": "2.3.15", - "@salesforce/plugin-auth": "2.8.17", - "@salesforce/plugin-data": "2.5.12", - "@salesforce/plugin-deploy-retrieve": "1.18.2", - "@salesforce/plugin-info": "2.6.45", - "@salesforce/plugin-limits": "2.3.35", - "@salesforce/plugin-login": "1.2.31", - "@salesforce/plugin-marketplace": "0.2.2", - "@salesforce/plugin-org": "2.10.8", - "@salesforce/plugin-schema": "2.3.28", - "@salesforce/plugin-settings": "1.4.30", - "@salesforce/plugin-sobject": "0.2.7", - "@salesforce/plugin-source": "2.10.36", - "@salesforce/plugin-telemetry": "2.3.4", - "@salesforce/plugin-templates": "55.5.13", - "@salesforce/plugin-trust": "2.6.15", - "@salesforce/plugin-user": "2.3.32", - "@salesforce/sf-plugins-core": "3.1.24", + "@salesforce/plugin-apex": "2.3.16", + "@salesforce/plugin-auth": "2.8.18", + "@salesforce/plugin-data": "2.5.14", + "@salesforce/plugin-deploy-retrieve": "1.18.3", + "@salesforce/plugin-info": "2.6.46", + "@salesforce/plugin-limits": "2.3.36", + "@salesforce/plugin-login": "1.2.32", + "@salesforce/plugin-marketplace": "0.2.3", + "@salesforce/plugin-org": "2.10.9", + "@salesforce/plugin-schema": "2.3.29", + "@salesforce/plugin-settings": "1.4.31", + "@salesforce/plugin-sobject": "0.2.8", + "@salesforce/plugin-source": "2.10.37", + "@salesforce/plugin-telemetry": "2.3.5", + "@salesforce/plugin-templates": "55.5.14", + "@salesforce/plugin-trust": "2.6.16", + "@salesforce/plugin-user": "2.3.33", + "@salesforce/sf-plugins-core": "3.1.25", "debug": "^4.3.4", "tslib": "^2.4.1" }, diff --git a/yarn.lock b/yarn.lock index bea54b93..1eb249b6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1270,10 +1270,10 @@ chalk "^4.1.0" tslib "^2.6.0" -"@oclif/plugin-autocomplete@2.3.8": - version "2.3.8" - resolved "https://registry.yarnpkg.com/@oclif/plugin-autocomplete/-/plugin-autocomplete-2.3.8.tgz#b651d6d2f3d251b473387f4b78dbae5917afde8f" - integrity sha512-cmRPss9OQxz8sRoaw5C/4t/Da7eBEIDJWKRsuzUSQBcPJCN3kTgjp24VTjPHT3j86197s/qkjCRct+3P0IGArg== +"@oclif/plugin-autocomplete@2.3.9": + version "2.3.9" + resolved "https://registry.yarnpkg.com/@oclif/plugin-autocomplete/-/plugin-autocomplete-2.3.9.tgz#7a8204cd4904cd00edc769ddc42455f2b3b197e4" + integrity sha512-MLmJtyp2iVnihDaogMDy+U323wI5vlV2raHOHKfe6mwzq6ObowimiOXnT9l2a0HELGHI0Fmd1tKeCgPrJE152A== dependencies: "@oclif/core" "^2.15.0" chalk "^4.1.0" @@ -1292,10 +1292,10 @@ ts-json-schema-generator "^1.2.0" tslib "^2.5.0" -"@oclif/plugin-commands@2.2.26": - version "2.2.26" - resolved "https://registry.yarnpkg.com/@oclif/plugin-commands/-/plugin-commands-2.2.26.tgz#a85bd89c9bf8b95280d719d491550c0a928527cc" - integrity sha512-DvJ2EnCt5S/VPLwnb9LApumqBNXsJQ8iIO9DL7tJk4i7+WSIlndvoO2xqRSFOqdXBGojs8LZmDYbCGhcjO4J7g== +"@oclif/plugin-commands@2.2.27": + version "2.2.27" + resolved "https://registry.yarnpkg.com/@oclif/plugin-commands/-/plugin-commands-2.2.27.tgz#25fa4da2ea338b0983f336578324486bca570dee" + integrity sha512-o20GA34rSHggccP8PacIxAHMRdqlJ3vDKyXlRAezzGkmJ4ctJLXKJOScSXLZUPSJnmCgDBUs9TkR5O7tjex7mA== dependencies: "@oclif/core" "^2.15.0" lodash "^4.17.11" @@ -1317,26 +1317,26 @@ widest-line "^3.1.0" wrap-ansi "^6.2.0" -"@oclif/plugin-help@5.2.19", "@oclif/plugin-help@^5.2.14": - version "5.2.19" - resolved "https://registry.yarnpkg.com/@oclif/plugin-help/-/plugin-help-5.2.19.tgz#be8019730c6540eefeb30e95fe13ff0b91364bf0" - integrity sha512-gf6/dFtzMJ8RA4ovlBCBGJsZsd4jPXhYWJho+Gh6KmA+Ev9LupoExbE0qT+a2uHJyHEvIg4uX/MBW3qdERD/8g== +"@oclif/plugin-help@5.2.20", "@oclif/plugin-help@^5.2.14": + version "5.2.20" + resolved "https://registry.yarnpkg.com/@oclif/plugin-help/-/plugin-help-5.2.20.tgz#4035a0ac231f95fb8e334da342175e3ca00f6abc" + integrity sha512-u+GXX/KAGL9S10LxAwNUaWdzbEBARJ92ogmM7g3gDVud2HioCmvWQCDohNRVZ9GYV9oKwZ/M8xwd6a1d95rEKQ== dependencies: "@oclif/core" "^2.15.0" -"@oclif/plugin-not-found@2.4.1", "@oclif/plugin-not-found@^2.3.32": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@oclif/plugin-not-found/-/plugin-not-found-2.4.1.tgz#c323a66ea876f9786e83139b063bd6b4a64dc613" - integrity sha512-LqW7qpw5Q8ploRiup2jEIMQJXcxHP1tpwj45GApKQMe7GRdGdRdjBT9Tu+U2tdEgMqgMplAIhOsYCx2nc2nMSw== +"@oclif/plugin-not-found@2.4.2", "@oclif/plugin-not-found@^2.3.32": + version "2.4.2" + resolved "https://registry.yarnpkg.com/@oclif/plugin-not-found/-/plugin-not-found-2.4.2.tgz#4bfb22c643eadd02bd718108e3155d01a7057ae4" + integrity sha512-NT/MRj5haUhkJJGf7wiF9+PslMfceQzkn8YkmdWON/X0iMPeoEst3aa50eSZvw79id+Kckl9kneJndqrUgWu/w== dependencies: "@oclif/core" "^2.15.0" chalk "^4" fast-levenshtein "^3.0.0" -"@oclif/plugin-plugins@3.8.2": - version "3.8.2" - resolved "https://registry.yarnpkg.com/@oclif/plugin-plugins/-/plugin-plugins-3.8.2.tgz#5089a56cc616ed8124a9f9a15012abd510bd7517" - integrity sha512-ajQGE6k5gti4p//J9qPBo1RjA4RICJhrqQf9eRVFtuL7QQY2bFkpxoXPi4jx0W0AcLwJ1kC6c2ayxMlcHSescA== +"@oclif/plugin-plugins@3.8.3": + version "3.8.3" + resolved "https://registry.yarnpkg.com/@oclif/plugin-plugins/-/plugin-plugins-3.8.3.tgz#e428678274a47961d88320170da906723c2e0050" + integrity sha512-dUpTfqwNfcCSnGfk8RV/BOouyvc2zd7vYY5ORdTpnm+LmDG1zT+045r5k0WqynO68ubh1isVZvfcBT6zgW3k3A== dependencies: "@oclif/core" "^2.15.0" chalk "^4.1.2" @@ -1351,10 +1351,10 @@ validate-npm-package-name "^5.0.0" yarn "^1.22.18" -"@oclif/plugin-search@0.0.22": - version "0.0.22" - resolved "https://registry.yarnpkg.com/@oclif/plugin-search/-/plugin-search-0.0.22.tgz#a59749866f1539f5d09d8df040228177bcd5552a" - integrity sha512-YPOGOm2/hclKeNfddMHX753TgbVFXUJYrGX/abeduXBdFV+h+ZYrp6PK0fCPTWPjJZQt63b8Ejvkd418dF5lMg== +"@oclif/plugin-search@0.0.23": + version "0.0.23" + resolved "https://registry.yarnpkg.com/@oclif/plugin-search/-/plugin-search-0.0.23.tgz#1d59cd69babc967a4f105b63d740beea2b8f3c48" + integrity sha512-KkRbglnDIAr6ycEIr82VyA8iKhrSj53CL7Ou5pSpshlrQZUD7HM0TGATXC4td504Ga6o8b3qE7YZwSuC4B+FtQ== dependencies: "@oclif/core" "^2.9.3" chalk "^4" @@ -1362,10 +1362,10 @@ inquirer "^8.2.6" rxjs "^7.8.1" -"@oclif/plugin-update@3.2.3": - version "3.2.3" - resolved "https://registry.yarnpkg.com/@oclif/plugin-update/-/plugin-update-3.2.3.tgz#133b42efff532d62be1f260612fd2c23ae44be25" - integrity sha512-JVKwp4ysG9GU4RmG59MZYMunz8onRI+wEQzJThyYkUFd0VfZviYt2FHsyoNtxi30l0tInC8APgKp1pCCO4e+FQ== +"@oclif/plugin-update@3.2.4": + version "3.2.4" + resolved "https://registry.yarnpkg.com/@oclif/plugin-update/-/plugin-update-3.2.4.tgz#02ebf1e9f9a4b004773865c06f54d8c5c46eea0f" + integrity sha512-41G7NTKND+yTpb8LHlvlMIcNoaEUIIJuEwju9igL+ME/pN/53opeXgFV2IjjeFiexXj50OfesY9OQ6lqOZHw+g== dependencies: "@oclif/core" "^2.11.8" chalk "^4" @@ -1387,10 +1387,10 @@ dependencies: "@oclif/core" "^2.15.0" -"@oclif/plugin-warn-if-update-available@2.1.0", "@oclif/plugin-warn-if-update-available@^2.0.44": - version "2.1.0" - resolved "https://registry.yarnpkg.com/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-2.1.0.tgz#1390b3a7c789ae1c4eeaefd6eef119db099e0bda" - integrity sha512-liTWd/qSIqALsikr88CAB9o2xGFt0LdT5REbhxtrx16/trRmkxQ+0RHK1FieGZAzEENx/4D3YcC/Y67a0uyO0g== +"@oclif/plugin-warn-if-update-available@2.1.1", "@oclif/plugin-warn-if-update-available@^2.0.44": + version "2.1.1" + resolved "https://registry.yarnpkg.com/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-2.1.1.tgz#e645d3d735241422d3f75e8fbf5c68db575f4c23" + integrity sha512-y7eSzT6R5bmTIJbiMMXgOlbBpcWXGlVhNeQJBLBCCy1+90Wbjyqf6uvY0i2WcO4sh/THTJ20qCW80j3XUlgDTA== dependencies: "@oclif/core" "^2.15.0" chalk "^4.1.0" @@ -1399,10 +1399,10 @@ lodash.template "^4.5.0" semver "^7.5.4" -"@oclif/plugin-which@2.2.32": - version "2.2.32" - resolved "https://registry.yarnpkg.com/@oclif/plugin-which/-/plugin-which-2.2.32.tgz#ecd7257ba7f9c5882a82a4bfb30e904f41316bca" - integrity sha512-6kWSBkw9tlGSfy2PF4dNoGc/c1a+FIitXSJTbMcXopWym8iZ8Jr7JrI24PxuqWqM6ciTzZqrqcnOs+EddlYAnw== +"@oclif/plugin-which@2.2.33": + version "2.2.33" + resolved "https://registry.yarnpkg.com/@oclif/plugin-which/-/plugin-which-2.2.33.tgz#ce56e52c8cba48e523c9c45bc1ac3e145445c942" + integrity sha512-se6vCAt0h19s3AswEpyb9i0P8AhqJ3zf8yEBvGf3lM1oYeAAALdYal8wKdvXWhvQTORGnTiUlPRse94DNNRXfQ== dependencies: "@oclif/core" "^2.11.10" tslib "^2.6.2" @@ -1762,10 +1762,10 @@ "@salesforce/ts-types" "^2.0.7" tslib "^2.6.2" -"@salesforce/plugin-apex@2.3.15": - version "2.3.15" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-apex/-/plugin-apex-2.3.15.tgz#2053f6017eb30b082eff4cf78f7374224b1e0a7a" - integrity sha512-OM5D+LS9E8sdIhhrtqStNblzFGMQVpNaxJRnfhj5Az3xRvoQ42XawRHiLNbULnJFM/PKb1K4rn7SIaBhRGoMpQ== +"@salesforce/plugin-apex@2.3.16": + version "2.3.16" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-apex/-/plugin-apex-2.3.16.tgz#f304c809230993eb80af6063b3020f93e93c79ad" + integrity sha512-WazQSOiAnAiRynPNmHygvFIUsVylRpcUde0lvLuIppDcu1koqdkdzX2fXSFY2UN+XCxRjgSXPQSrXlxg7383ow== dependencies: "@oclif/core" "^2.15.0" "@salesforce/apex-node" "^2.1.0" @@ -1774,10 +1774,10 @@ chalk "^4.1.0" tslib "^2" -"@salesforce/plugin-auth@2.8.17": - version "2.8.17" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-auth/-/plugin-auth-2.8.17.tgz#e8480177ae9fa227b3958c0cb5afccef78faf660" - integrity sha512-BEwZJDbQac73IMWrSFe6eWUDL+BDiF6Rv/lfKanp+P5kiUcX360n+TlzZ6MsHq6/RVFSs/RybmKDMTBPOnSFIQ== +"@salesforce/plugin-auth@2.8.18": + version "2.8.18" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-auth/-/plugin-auth-2.8.18.tgz#5b594a6ce46b3b10c91145e3c24a6ce32ac716f6" + integrity sha512-O57oZRamWwYJu/R3dtLgtpmhrHz4REvAW011rTvhgR2ypCV6HWM6u9gsQoc4Km3zMBk+bR649rnDrqiprwLFcg== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.2.0" @@ -1803,10 +1803,10 @@ handlebars "^4.7.8" tslib "^2" -"@salesforce/plugin-data@2.5.12": - version "2.5.12" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-data/-/plugin-data-2.5.12.tgz#78dc1446216d772267fa9fd299d3f110bcf953f3" - integrity sha512-EvRyLnvXXzBUKzBOGRJAYOikAQHV9qHXB2ayZ3khaFldAdpAHi05f9s0p3PLBhum80xuESzHYtzhQ4Blrl81TQ== +"@salesforce/plugin-data@2.5.14": + version "2.5.14" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-data/-/plugin-data-2.5.14.tgz#f9b8764e57d383141bc151531ee3842979a6e758" + integrity sha512-tk2gVNBAtr3G4Xd1A8mZFidlvY6pVco3DjrbJUtUxyb2g+o3VtdIftOadfoQ+YAQpU/04tNN2JsPURgkbQJ8Zg== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.2.10" @@ -1819,10 +1819,10 @@ jsforce "^2.0.0-beta.27" tslib "^2" -"@salesforce/plugin-deploy-retrieve@1.18.2": - version "1.18.2" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-1.18.2.tgz#6e5a2ca544c290278e17047e89b07eaf10e5b69e" - integrity sha512-uL5JHe+hmegb/aZhyxGyl/utno74fUDwsUy6WZGAutRpsv35+k57gvz5GkByCjaV1ROlSBy38YQkfWqYCdFSZA== +"@salesforce/plugin-deploy-retrieve@1.18.3": + version "1.18.3" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-1.18.3.tgz#0020a978819f2910a37a310418c8d9421baae7e5" + integrity sha512-Frqt7RNgZcn2pHEI0p9NGSICRZipALzSPrtAhzpGUrAh1Hao08BbRNZRqWh1oOkwSGK67wV4Y+NxJAQ1SFPiAw== dependencies: "@oclif/core" "^2.15.0" "@salesforce/apex-node" "^2.1.0" @@ -1835,10 +1835,10 @@ shelljs "^0.8.5" tslib "^2" -"@salesforce/plugin-info@2.6.45": - version "2.6.45" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-info/-/plugin-info-2.6.45.tgz#6a898c92ae443444b678dae18780867440755e78" - integrity sha512-1OIbnZz8cx98T6O/qbHw+5dKHWBPSZxYnyV8k/xWwzqbO2vNAVzV3PS9jKiXDz6K8NhL45xJw9SwgrGT3n2UPA== +"@salesforce/plugin-info@2.6.46": + version "2.6.46" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-info/-/plugin-info-2.6.46.tgz#dccfc5e9d8c2fb44b6de6e3c9d0a278635ef9e65" + integrity sha512-Ab/SQIlHdDXW9U42IhVrdHNrHuDERolZlspaA0qbj77HDzDzOM3VX6jnMh8CSoCHHwS4fdiTjgkI4OB1DXeQ3g== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.2.10" @@ -1852,10 +1852,10 @@ semver "^7.5.4" tslib "^2" -"@salesforce/plugin-limits@2.3.35": - version "2.3.35" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-limits/-/plugin-limits-2.3.35.tgz#6e1c61a91b191726e2f28f5c1ba72c40a2224c7b" - integrity sha512-ACVXlMAmkg9WIB6DLKh+8dpkXlT2dmbWJmsK9f3c89wCntE+lS7c6RnTDkxKUbsoQJe6BFGtYBkfvKGPYBwQQQ== +"@salesforce/plugin-limits@2.3.36": + version "2.3.36" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-limits/-/plugin-limits-2.3.36.tgz#39494d49dce3fa3544155842b3648da85875504f" + integrity sha512-uqJCk15Zkiu3T/sBK8LPeKQQuPRzoieMHcLLCwRoeGpL3n1rxuq++r73yCYXWFQt7X6P06VyjpRyiFcZQ0Y3wQ== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.2.10" @@ -1864,10 +1864,10 @@ "@salesforce/ts-types" "^2.0.6" tslib "^2" -"@salesforce/plugin-login@1.2.31": - version "1.2.31" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-login/-/plugin-login-1.2.31.tgz#ba9053b16865c6f538d78a9cffd787dcf817ed28" - integrity sha512-IXivS5MQ9a1yei4JQNdAU1kZa21cIUOrXqxRlslElmdjMR83E+t15LAsx+L2hCFzj7X55CwUcufhiM687xP1ZA== +"@salesforce/plugin-login@1.2.32": + version "1.2.32" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-login/-/plugin-login-1.2.32.tgz#986ffb0003c56ca1316385756ebb5c10072c4419" + integrity sha512-6M2BiEkvngfLkm1goMdEGbEtJVYXWTK6j07aww7RCgSiuf4wzLsk2SH0/HFjiy4dumzoL0ngaSb/j9uybdN2xw== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.2.9" @@ -1876,10 +1876,10 @@ inquirer "^8.2.6" tslib "^2" -"@salesforce/plugin-marketplace@0.2.2": - version "0.2.2" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-marketplace/-/plugin-marketplace-0.2.2.tgz#9492ff4f599756490478876a402120cf7ff898ea" - integrity sha512-Uuxzxo0FljtP8TO4WkkZmN+reMyjQlk29kjWq+UTqWF6fdPsREYBmquGshZNccLh/07vFr2Jds/zysXrG7+XeA== +"@salesforce/plugin-marketplace@0.2.3": + version "0.2.3" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-marketplace/-/plugin-marketplace-0.2.3.tgz#450936c0b4a911e9d2d66b6915e074c7a21fff0b" + integrity sha512-w6f4mRhccMwfqC/Bkj7soNjIQ30idNRlMYkyROGQbFtfPqZPFdLTtyL9uTXTAY1k+WsZ68eb+c2/szZ14mdfKA== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.2.9" @@ -1889,10 +1889,10 @@ proxy-agent "^6.3.1" tslib "^2" -"@salesforce/plugin-org@2.10.8": - version "2.10.8" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-org/-/plugin-org-2.10.8.tgz#696a9a6d29ccb2a74e8e57def0722fdb8351f026" - integrity sha512-/j60Ht8bwdnp9cCBFz1jEyaDNlyoOPnYSwlhp7PGUThLqxbW+lp6Wd7JzjgiVpOf4+Es1YdVfLvTDgyMBs6dBw== +"@salesforce/plugin-org@2.10.9": + version "2.10.9" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-org/-/plugin-org-2.10.9.tgz#c131bd0a3ad75c8952642dd4c35fb725654265e7" + integrity sha512-UAHjLitKTRlBg1US4RmqhYmfNrqTOzW1UfXDrsctLJpDlbDz2IBRdxBJbeq9k4dA/f8Wb9/1JSb6WuqgVHwZ3g== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.2.0" @@ -1931,20 +1931,20 @@ tslib "^2" yarn-deduplicate "^3.1.0" -"@salesforce/plugin-schema@2.3.28": - version "2.3.28" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-schema/-/plugin-schema-2.3.28.tgz#d25bc63701d1599868abf103fa3e795795a7067e" - integrity sha512-13UEwwz1TDfTi7fPX4LiHz66qUdWfAZNsZuBeYx3MPMfiGAOkxEAvwn8Moq/48WQ/RXDJJq6MnfLiIRYXi3WFg== +"@salesforce/plugin-schema@2.3.29": + version "2.3.29" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-schema/-/plugin-schema-2.3.29.tgz#ce03b90524030bb70854de37efe09e49b0153f12" + integrity sha512-OCPvOzDOrT74+p4zU3VHYWFlWVjsu9x7/+hkqOuP4y9IWfEFhcTCSNn4cGd7ZsMz5o6F0YZotjP7ODHgqZ8D9A== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.2.10" "@salesforce/sf-plugins-core" "^3.1.23" tslib "^2" -"@salesforce/plugin-settings@1.4.30": - version "1.4.30" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-settings/-/plugin-settings-1.4.30.tgz#9786484a812d38c5a3493272c50e61da5714b6ec" - integrity sha512-eezOWSoGNuVRbfyqXNSuLnRycdtIIyLxskcq0QldQIp/1jcQTeA+d1aM8DTatSnxyhbw2Z3JJA0+DL+2noKk+g== +"@salesforce/plugin-settings@1.4.31": + version "1.4.31" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-settings/-/plugin-settings-1.4.31.tgz#4215fa3ad44184a9c757c5ca2ff2162e4b111a86" + integrity sha512-EprhzfV0Xhh2Ndbay2wdfx9hOI0xXLOfB3mstTaKa4Fg46uyJpVDVM+A74/xHUOxg7maBsLbJp2Il+zyM3KFsQ== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.2.10" @@ -1952,10 +1952,10 @@ fast-levenshtein "^3.0.0" tslib "^2" -"@salesforce/plugin-sobject@0.2.7": - version "0.2.7" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-sobject/-/plugin-sobject-0.2.7.tgz#10645a40304c81c60501ee39577f676a1e32b853" - integrity sha512-Tiv5IxIDnSSEe1NRKZEIjnsmiBvQLGhVQrhdN6SEAuw8R0auqQCEgzu4GsWAwRm/mqBTouVnQwl5ZS2+ysFQPg== +"@salesforce/plugin-sobject@0.2.8": + version "0.2.8" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-sobject/-/plugin-sobject-0.2.8.tgz#c732ee67a52b15cdbbb0acac3ea5c6d2ffba4e80" + integrity sha512-y5tgrov2YVBxnmC5eS/SFxFnczAd60PwNkiE8XzujrQiDSRbmkboH3rhBGv89F9aBkzBLw+lJUd9S+AEc3fn7A== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.2.0" @@ -1968,10 +1968,10 @@ js2xmlparser "^4.0.2" tslib "^2" -"@salesforce/plugin-source@2.10.36": - version "2.10.36" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-source/-/plugin-source-2.10.36.tgz#16e85f2c2530915303c9a40cefc99ad621917d56" - integrity sha512-zX/BPSQceFDlokaMqtUM+Tb/xLlG3FE5U1p9XQbqcXn+T51UM1u6OFcRAuBzueFprnXpzrOdSn9kt5mIOdGamQ== +"@salesforce/plugin-source@2.10.37": + version "2.10.37" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-source/-/plugin-source-2.10.37.tgz#baaffa07d16cc98dc6ef1f4b83cd3dca3b6058ba" + integrity sha512-XQFtRVXNTRCOq1qD3yvbqpnt/XcFdGmRHV+ivRZpjq9b+wcHG3h6nAxZ8wNQf/0zMCjI+p2H+OcOqE4tG7zLOg== dependencies: "@oclif/core" "^2.15.0" "@salesforce/apex-node" "^2.1.0" @@ -1985,10 +1985,10 @@ proxy-agent "^6.3.1" tslib "^2" -"@salesforce/plugin-telemetry@2.3.4": - version "2.3.4" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-telemetry/-/plugin-telemetry-2.3.4.tgz#3a168ef2ba15ffd2a18b0319f414a635279c0ca3" - integrity sha512-wyiK583/zFtu+KqYjmvZhe9SJZjLh567c24NSiYzPie/EW0F6N4JJLx8kJ+g6o9kJbRdXNyx9bTzKIEJwr/M0A== +"@salesforce/plugin-telemetry@2.3.5": + version "2.3.5" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-telemetry/-/plugin-telemetry-2.3.5.tgz#1c45a425aac0421f134e8763fd1957d756c10666" + integrity sha512-Kh3mvZmh2ZWkot9BoHmZkgTAhc1KoglAI9P4ORS2xqV1AJhtq2R2q2hfvhaCnjFQ217xivHaW9vD23dHtPA0Iw== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.2.9" @@ -1997,10 +1997,10 @@ debug "^4.3.4" tslib "^2" -"@salesforce/plugin-templates@55.5.13": - version "55.5.13" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-templates/-/plugin-templates-55.5.13.tgz#88b224d59ec169337b456152441a89ef6b06dfbb" - integrity sha512-tX4EjtTDIhu88XW3IrWn2xBtQQH2hh1PPpUR0mEDRITLfn9SUD/3nEpGBjvmplWUH74/eiGoHXsoi+rTs4ZbJw== +"@salesforce/plugin-templates@55.5.14": + version "55.5.14" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-templates/-/plugin-templates-55.5.14.tgz#252c7f0bfc0322541e51e2969a2bf3e189bb86a4" + integrity sha512-Otu+kcDpf4uO7le8wg8ulP6EJO4I71+PHdygxp7sJ0iXDWgcHEO7ZZJwLiyI44eNi6hngw9+KWa/pIWdpaTYHg== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.2.9" @@ -2010,10 +2010,10 @@ yeoman-environment "^3.19.3" yeoman-generator "^5.9.0" -"@salesforce/plugin-trust@2.6.15", "@salesforce/plugin-trust@^2.6.8": - version "2.6.15" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-trust/-/plugin-trust-2.6.15.tgz#1e9a8f5c65b8f0b5591f5e6a79cfbb284371a2a7" - integrity sha512-/lnVMyr+FebW3g663UQVoamrklHL0YJnat52XRemVmdWGWd7CNWoVtHQ2I8iaOMu0mBLDt3/3BaVqQFAxJgVHw== +"@salesforce/plugin-trust@2.6.16", "@salesforce/plugin-trust@^2.6.8": + version "2.6.16" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-trust/-/plugin-trust-2.6.16.tgz#e075fe6f9d805cb2e799ab47ac09dfea0eb825d3" + integrity sha512-cBM8dJ3mf1VeY/ysg8Syb02gtGxjvt+yU4w/byHyLUtijhsieCREKP6OzvbMSq9asez+iuQa/haHI/yNDzeSuA== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.2.9" @@ -2025,10 +2025,10 @@ shelljs "^0.8.4" tslib "^2" -"@salesforce/plugin-user@2.3.32": - version "2.3.32" - resolved "https://registry.yarnpkg.com/@salesforce/plugin-user/-/plugin-user-2.3.32.tgz#5087126b232cf7e07944cb8b53ebcf492683e58b" - integrity sha512-Msljq9lATskNYzVZsHrxBDzSLOiju9Khtbw7irlfdDrpCRV0K9aViyLDZC6HcV5rfWkeW4T8dSnvnqLNp6EMRg== +"@salesforce/plugin-user@2.3.33": + version "2.3.33" + resolved "https://registry.yarnpkg.com/@salesforce/plugin-user/-/plugin-user-2.3.33.tgz#84e60a825e9a18d1dc2ba5a84a3290a19cba1ac9" + integrity sha512-xlq/qRfFekPrWCNM/pq1Yg0zHW4YtFS1sXXlemOuLVisUVp1CleyNSBFFIoB86T7NhsPqyHRoIMD+5RTrZ5viA== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.2.6" @@ -2052,10 +2052,10 @@ resolved "https://registry.yarnpkg.com/@salesforce/schemas/-/schemas-1.6.0.tgz#14505ebad2fb2d4f7b14837545d662766d293561" integrity sha512-SwhDTLucj/GRbPpxlEoDZeqlX22o+G6fiebTXTu1cZKmd1oE0W2L7SlTTgJnWck8bhTeBIgQi9cpD8c2t5ISKA== -"@salesforce/sf-plugins-core@3.1.24", "@salesforce/sf-plugins-core@^3.1.14", "@salesforce/sf-plugins-core@^3.1.20", "@salesforce/sf-plugins-core@^3.1.22", "@salesforce/sf-plugins-core@^3.1.23": - version "3.1.24" - resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-3.1.24.tgz#3b68fc5f69ee3910f023467f45d96634cab866d4" - integrity sha512-VzYalv5ArjpKOn0PAAXmLjRv3xnyf1MhoYygFtmcWIvOWvlqndtqtZaC5JkLQgJduF905YDEg5dKsIAUd6R6Sg== +"@salesforce/sf-plugins-core@3.1.25", "@salesforce/sf-plugins-core@^3.1.14", "@salesforce/sf-plugins-core@^3.1.20", "@salesforce/sf-plugins-core@^3.1.22", "@salesforce/sf-plugins-core@^3.1.23": + version "3.1.25" + resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-3.1.25.tgz#35042667270e95211a910ea28bd5cd620dc662e9" + integrity sha512-n2cjdp3oWgeXzMmmF1ZOIUBbidxist9qJdbDrWwVbDW2dQS3Kb23vWKsrFci7l1Hf9sQA1AApxTiwJ1DQEqKBA== dependencies: "@oclif/core" "^2.15.0" "@salesforce/core" "^5.2.10" From bf9c1bf78b92ca162a49cdfe93a36c9d288256aa Mon Sep 17 00:00:00 2001 From: svc-cli-bot Date: Fri, 29 Sep 2023 16:41:16 +0000 Subject: [PATCH 67/70] chore(release): bump to 2.12.2 --- README.md | 7714 ++++++++++++++++++++++++++++++++++++++------------ package.json | 8 +- yarn.lock | 48 +- 3 files changed, 5940 insertions(+), 1830 deletions(-) diff --git a/README.md b/README.md index 06c63175..217e272b 100644 --- a/README.md +++ b/README.md @@ -5,11 +5,10 @@ [![Downloads/week](https://img.shields.io/npm/dw/@salesforce/cli.svg)](https://npmjs.org/package/@salesforce/cli) [![License](https://img.shields.io/npm/l/@salesforce/cli.svg)](https://github.com/salesforcecli/cli/blob/master/package.json) - # Getting Started - Read the [sf Plugin Developer Guide](https://github.com/salesforcecli/cli/wiki/Quick-Introduction-to-Developing-sf-Plugins) to learn how to develop a `sf` plugin. -- Are you migrating an `sfdx` plugin to `sf`? Then check out the [migration section](https://github.com/salesforcecli/cli/wiki/Migrate-Plugins-Built-for-sfdx) of the developer guide. +- Are you migrating an `sfdx` plugin to `sf`? Then check out the [migration section](https://github.com/salesforcecli/cli/wiki/Migrate-Plugins-Built-for-sfdx) of the developer guide. - Read [this section of the Setup Guide](https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_setup_move_to_sf_v2.htm) for easy instructions on how to move from your `sfdx` (v7) installation to `sf` (v2). # Feedback @@ -25,7 +24,7 @@ $ npm install -g @salesforce/cli $ sf COMMAND running command... $ sf (--version|-v) -@salesforce/cli/1.46.0 linux-x64 node-v14.20.0 +@salesforce/cli/2.12.2 linux-x64 node-v18.18.0 $ sf --help [COMMAND] USAGE $ sf COMMAND @@ -42,2821 +41,6711 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI. +- [`sf alias list`](#sf-alias-list) +- [`sf alias set`](#sf-alias-set) +- [`sf alias unset`](#sf-alias-unset) +- [`sf analytics generate template`](#sf-analytics-generate-template) +- [`sf apex generate class`](#sf-apex-generate-class) +- [`sf apex generate trigger`](#sf-apex-generate-trigger) +- [`sf apex get log`](#sf-apex-get-log) +- [`sf apex get test`](#sf-apex-get-test) +- [`sf apex list log`](#sf-apex-list-log) +- [`sf apex run`](#sf-apex-run) +- [`sf apex run test`](#sf-apex-run-test) +- [`sf apex tail log`](#sf-apex-tail-log) - [`sf autocomplete [SHELL]`](#sf-autocomplete-shell) +- [`sf commands`](#sf-commands) - [`sf config get`](#sf-config-get) - [`sf config list`](#sf-config-list) - [`sf config set`](#sf-config-set) - [`sf config unset`](#sf-config-unset) -- [`sf deploy`](#sf-deploy) -- [`sf deploy functions`](#sf-deploy-functions) -- [`sf deploy metadata`](#sf-deploy-metadata) -- [`sf deploy metadata cancel`](#sf-deploy-metadata-cancel) -- [`sf deploy metadata preview`](#sf-deploy-metadata-preview) -- [`sf deploy metadata quick`](#sf-deploy-metadata-quick) -- [`sf deploy metadata report`](#sf-deploy-metadata-report) -- [`sf deploy metadata resume`](#sf-deploy-metadata-resume) -- [`sf deploy metadata validate`](#sf-deploy-metadata-validate) -- [`sf env compute collaborator add`](#sf-env-compute-collaborator-add) -- [`sf env create compute`](#sf-env-create-compute) -- [`sf env create sandbox`](#sf-env-create-sandbox) -- [`sf env create scratch`](#sf-env-create-scratch) -- [`sf env delete`](#sf-env-delete) -- [`sf env delete sandbox`](#sf-env-delete-sandbox) -- [`sf env delete scratch`](#sf-env-delete-scratch) -- [`sf env display`](#sf-env-display) -- [`sf env list`](#sf-env-list) -- [`sf env log`](#sf-env-log) -- [`sf env log tail`](#sf-env-log-tail) -- [`sf env logdrain add`](#sf-env-logdrain-add) -- [`sf env logdrain list`](#sf-env-logdrain-list) -- [`sf env logdrain remove`](#sf-env-logdrain-remove) -- [`sf env open`](#sf-env-open) -- [`sf env resume sandbox`](#sf-env-resume-sandbox) -- [`sf env resume scratch`](#sf-env-resume-scratch) -- [`sf env var get KEY`](#sf-env-var-get-key) -- [`sf env var list`](#sf-env-var-list) -- [`sf env var set`](#sf-env-var-set) -- [`sf env var unset`](#sf-env-var-unset) -- [`sf generate function`](#sf-generate-function) -- [`sf generate metadata field`](#sf-generate-metadata-field) -- [`sf generate metadata platformevent`](#sf-generate-metadata-platformevent) -- [`sf generate metadata sobject`](#sf-generate-metadata-sobject) -- [`sf generate metadata tab`](#sf-generate-metadata-tab) -- [`sf generate project`](#sf-generate-project) -- [`sf help [COMMAND]`](#sf-help-command) -- [`sf info:releasenotes:display [-v ] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sf-inforeleasenotesdisplay--v-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal) +- [`sf data create record`](#sf-data-create-record) +- [`sf data delete bulk`](#sf-data-delete-bulk) +- [`sf data delete record`](#sf-data-delete-record) +- [`sf data delete resume`](#sf-data-delete-resume) +- [`sf data export tree`](#sf-data-export-tree) +- [`sf data get record`](#sf-data-get-record) +- [`sf data import tree`](#sf-data-import-tree) +- [`sf data query`](#sf-data-query) +- [`sf data query resume`](#sf-data-query-resume) +- [`sf data resume`](#sf-data-resume) +- [`sf data update record`](#sf-data-update-record) +- [`sf data upsert bulk`](#sf-data-upsert-bulk) +- [`sf data upsert resume`](#sf-data-upsert-resume) +- [`sf doctor`](#sf-doctor) +- [`sf force data bulk delete`](#sf-force-data-bulk-delete) +- [`sf force data bulk status`](#sf-force-data-bulk-status) +- [`sf force data bulk upsert`](#sf-force-data-bulk-upsert) +- [`sf force mdapi deploy`](#sf-force-mdapi-deploy) +- [`sf force mdapi deploy cancel`](#sf-force-mdapi-deploy-cancel) +- [`sf force mdapi deploy report`](#sf-force-mdapi-deploy-report) +- [`sf force mdapi retrieve`](#sf-force-mdapi-retrieve) +- [`sf force mdapi retrieve report`](#sf-force-mdapi-retrieve-report) +- [`sf force org clone`](#sf-force-org-clone) +- [`sf force org create`](#sf-force-org-create) +- [`sf force org delete`](#sf-force-org-delete) +- [`sf force org status`](#sf-force-org-status) +- [`sf force source deploy`](#sf-force-source-deploy) +- [`sf force source deploy cancel`](#sf-force-source-deploy-cancel) +- [`sf force source deploy report`](#sf-force-source-deploy-report) +- [`sf force source pull`](#sf-force-source-pull) +- [`sf force source push`](#sf-force-source-push) +- [`sf force source retrieve`](#sf-force-source-retrieve) +- [`sf force source status`](#sf-force-source-status) +- [`sf force user password generate`](#sf-force-user-password-generate) +- [`sf help [COMMANDS]`](#sf-help-commands) +- [`sf info releasenotes display`](#sf-info-releasenotes-display) +- [`sf lightning generate app`](#sf-lightning-generate-app) +- [`sf lightning generate component`](#sf-lightning-generate-component) +- [`sf lightning generate event`](#sf-lightning-generate-event) +- [`sf lightning generate interface`](#sf-lightning-generate-interface) +- [`sf lightning generate test`](#sf-lightning-generate-test) +- [`sf limits api display`](#sf-limits-api-display) +- [`sf limits recordcounts display`](#sf-limits-recordcounts-display) - [`sf login`](#sf-login) -- [`sf login functions`](#sf-login-functions) -- [`sf login functions jwt`](#sf-login-functions-jwt) -- [`sf login org`](#sf-login-org) -- [`sf login org jwt`](#sf-login-org-jwt) - [`sf logout`](#sf-logout) -- [`sf logout functions`](#sf-logout-functions) -- [`sf logout org`](#sf-logout-org) +- [`sf org assign permset`](#sf-org-assign-permset) +- [`sf org assign permsetlicense`](#sf-org-assign-permsetlicense) +- [`sf org create sandbox`](#sf-org-create-sandbox) +- [`sf org create scratch`](#sf-org-create-scratch) +- [`sf org create user`](#sf-org-create-user) +- [`sf org delete sandbox`](#sf-org-delete-sandbox) +- [`sf org delete scratch`](#sf-org-delete-scratch) +- [`sf org display`](#sf-org-display) +- [`sf org display user`](#sf-org-display-user) +- [`sf org generate password`](#sf-org-generate-password) +- [`sf org list`](#sf-org-list) +- [`sf org list auth`](#sf-org-list-auth) +- [`sf org list metadata`](#sf-org-list-metadata) +- [`sf org list metadata-types`](#sf-org-list-metadata-types) +- [`sf org list users`](#sf-org-list-users) +- [`sf org login access-token`](#sf-org-login-access-token) +- [`sf org login device`](#sf-org-login-device) +- [`sf org login jwt`](#sf-org-login-jwt) +- [`sf org login sfdx-url`](#sf-org-login-sfdx-url) +- [`sf org login web`](#sf-org-login-web) +- [`sf org logout`](#sf-org-logout) +- [`sf org open`](#sf-org-open) +- [`sf org resume sandbox`](#sf-org-resume-sandbox) +- [`sf org resume scratch`](#sf-org-resume-scratch) - [`sf plugins`](#sf-plugins) -- [`sf plugins:install PLUGIN...`](#sf-pluginsinstall-plugin) +- [`sf plugins discover`](#sf-plugins-discover) - [`sf plugins:inspect PLUGIN...`](#sf-pluginsinspect-plugin) -- [`sf plugins:install PLUGIN...`](#sf-pluginsinstall-plugin-1) +- [`sf plugins:install PLUGIN...`](#sf-pluginsinstall-plugin) - [`sf plugins:link PLUGIN`](#sf-pluginslink-plugin) +- [`sf plugins trust verify`](#sf-plugins-trust-verify) - [`sf plugins:uninstall PLUGIN...`](#sf-pluginsuninstall-plugin) -- [`sf plugins:trust:verify -n [-r ] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sf-pluginstrustverify--n-string--r-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal) -- [`sf plugins:uninstall PLUGIN...`](#sf-pluginsuninstall-plugin-1) -- [`sf plugins:uninstall PLUGIN...`](#sf-pluginsuninstall-plugin-2) - [`sf plugins update`](#sf-plugins-update) -- [`sf retrieve metadata`](#sf-retrieve-metadata) -- [`sf retrieve metadata preview`](#sf-retrieve-metadata-preview) -- [`sf run function`](#sf-run-function) -- [`sf run function start`](#sf-run-function-start) -- [`sf run function start container`](#sf-run-function-start-container) -- [`sf run function start local`](#sf-run-function-start-local) +- [`sf project convert mdapi`](#sf-project-convert-mdapi) +- [`sf project convert source`](#sf-project-convert-source) +- [`sf project delete source`](#sf-project-delete-source) +- [`sf project delete tracking`](#sf-project-delete-tracking) +- [`sf project deploy cancel`](#sf-project-deploy-cancel) +- [`sf project deploy preview`](#sf-project-deploy-preview) +- [`sf project deploy quick`](#sf-project-deploy-quick) +- [`sf project deploy report`](#sf-project-deploy-report) +- [`sf project deploy resume`](#sf-project-deploy-resume) +- [`sf project deploy start`](#sf-project-deploy-start) +- [`sf project deploy validate`](#sf-project-deploy-validate) +- [`sf project generate`](#sf-project-generate) +- [`sf project generate manifest`](#sf-project-generate-manifest) +- [`sf project list ignored`](#sf-project-list-ignored) +- [`sf project reset tracking`](#sf-project-reset-tracking) +- [`sf project retrieve preview`](#sf-project-retrieve-preview) +- [`sf project retrieve start`](#sf-project-retrieve-start) +- [`sf schema generate field`](#sf-schema-generate-field) +- [`sf schema generate platformevent`](#sf-schema-generate-platformevent) +- [`sf schema generate sobject`](#sf-schema-generate-sobject) +- [`sf schema generate tab`](#sf-schema-generate-tab) - [`sf search`](#sf-search) +- [`sf sobject describe`](#sf-sobject-describe) +- [`sf sobject list`](#sf-sobject-list) +- [`sf static-resource generate`](#sf-static-resource-generate) - [`sf update [CHANNEL]`](#sf-update-channel) - [`sf version`](#sf-version) -- [`sf whatsnew [-v ] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sf-whatsnew--v-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal) -- [`sf whoami functions`](#sf-whoami-functions) +- [`sf visualforce generate component`](#sf-visualforce-generate-component) +- [`sf visualforce generate page`](#sf-visualforce-generate-page) +- [`sf which`](#sf-which) -## `sf autocomplete [SHELL]` +## `sf alias list` -display autocomplete installation instructions +List all aliases currently set on your local computer. ``` USAGE - $ sf autocomplete [SHELL] [-r] + $ sf alias list [--json] -ARGUMENTS - SHELL shell type +GLOBAL FLAGS + --json Format output as json. -FLAGS - -r, --refresh-cache Refresh cache (ignores displaying instructions) +DESCRIPTION + List all aliases currently set on your local computer. + + Aliases are global, which means that you can use all the listed aliases in any Salesforce DX project on your computer. + +ALIASES + $ sf force alias list + +EXAMPLES + List all the aliases you've set: + + $ sf alias list +``` + +_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/1.4.31/src/commands/alias/list.ts)_ + +## `sf alias set` + +Set one or more aliases on your local computer. + +``` +USAGE + $ sf alias set [--json] + +GLOBAL FLAGS + --json Format output as json. DESCRIPTION - display autocomplete installation instructions + Set one or more aliases on your local computer. + + Aliases are user-defined short names that make it easier to use the CLI. For example, users often set an alias for a + scratch org usernames because they're long and unintuitive. Check the --help of a CLI command to determine where you + can use an alias. + + You can associate an alias with only one value at a time. If you set an alias multiple times, the alias points to the + most recent value. Aliases are global; after you set an alias, you can use it in any Salesforce DX project on your + computer. + + Use quotes to specify an alias value that contains spaces. You typically use an equal sign to set your alias, although + you don't need it if you're setting a single alias in a command. + +ALIASES + $ sf force alias set EXAMPLES - $ sf autocomplete + Set an alias for a scratch org username: - $ sf autocomplete bash + $ sf alias set my-scratch-org=test-sadbiytjsupn@example.com - $ sf autocomplete zsh + Set multiple aliases with a single command: - $ sf autocomplete --refresh-cache + $ sf alias set my-scratch-org=test-sadbiytjsupn@example.com my-other-scratch-org=test-ss0xut7txzxf@example.com + + Set an alias that contains spaces: + + $ sf alias set my-alias='alias with spaces' + + Set a single alias without using an equal sign: + + $ sf alias set my-scratch-org test-ss0xut7txzxf@example.com ``` -_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v1.3.0/src/commands/autocomplete/index.ts)_ +_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/1.4.31/src/commands/alias/set.ts)_ -## `sf config get` +## `sf alias unset` -Get the value of a configuration variable. +Unset one or more aliases that are currently set on your local computer. ``` USAGE - $ sf config get [--json] [--verbose] + $ sf alias unset [--json] [-a] [-p] FLAGS - --verbose Display whether the configuration variables are set locally or globally. + -a, --all Unset all currently set aliases. + -p, --no-prompt Don't prompt the user for confirmation when unsetting all aliases. GLOBAL FLAGS --json Format output as json. DESCRIPTION - Get the value of a configuration variable. + Unset one or more aliases that are currently set on your local computer. - Run "sf config list" to see all the configuration variables you've set. Global configuration variable are always - displayed; local ones are displayed if you run the command in a project directory. Run "sf config set" to set a - configuration variable. + Aliases are global, so when you unset one it's no longer available in any Salesforce DX project. + +ALIASES + $ sf force alias unset EXAMPLES - Get the value of the "target-org" configuration variable. + Unset an alias: - $ sf config get target-org + $ sf alias unset my-alias - Get multiple configuration variables and display whether they're set locally or globally: + Unset multiple aliases with a single command: - $ sf config get target-org api-version --verbose + $ sf alias unset my-alias my-other-alias -CONFIGURATION VARIABLES - apiVersion API version of your project. Default: API version of your Dev Hub org. (sfdx only) - disableTelemetry Disables the collection of usage and user environment information, etc. Default: false. (sfdx only) - instanceUrl URL of the Salesforce instance hosting your org. Default: https://login.salesforce.com. (sfdx only) - maxQueryLimit Maximum number of Salesforce records returned by a CLI command. Default: 10,000. (sfdx only) - restDeploy Whether deployments use the Metadata REST API (true) or SOAP API (false, default value). (sfdx only) - target-org Username or alias of the org that all commands run against by default. (sf only) - target-dev-hub Username or alias of your default Dev Hub org. (sf only) + Unset all aliases: + + $ sf alias unset --all [--no-prompt] ``` -## `sf config list` +_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/1.4.31/src/commands/alias/unset.ts)_ -List the configuration variables that you've previously set. +## `sf analytics generate template` + +Generate a simple Analytics template. ``` USAGE - $ sf config list [--json] + $ sf analytics generate template -n [--json] [-d ] [--api-version ] + +FLAGS + -d, --output-dir= [default: .] Directory for saving the created files. + -n, --name= (required) Name of the Analytics template. + --api-version= Override the api version used for api requests made by this command GLOBAL FLAGS --json Format output as json. DESCRIPTION - List the configuration variables that you've previously set. + Generate a simple Analytics template. + + The metadata files associated with the Analytics template must be contained in a parent directory called + "waveTemplates" in your package directory. Either run this command from an existing directory of this name, or use the + --output-dir flag to generate one or point to an existing one. - Global configuration variables apply to any directory and are always displayed. If you run this command from a project - directory, local configuration variables are also displayed. +ALIASES + $ sf force analytics template create EXAMPLES - List both global configuration variables and those local to your project: + Generate the metadata files for a simple Analytics template file called myTemplate in the + force-app/main/default/waveTemplates directory: - $ sf config list + $ sf analytics generate template --name myTemplate --output-dir force-app/main/default/waveTemplates + +FLAG DESCRIPTIONS + -d, --output-dir= Directory for saving the created files. + + The location can be an absolute path or relative to the current working directory. The default is the current + directory. ``` -## `sf config set` +_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/55.5.14/src/commands/analytics/generate/template.ts)_ -Set one or more configuration variables, such as your default org. +## `sf apex generate class` + +Generate an Apex class. ``` USAGE - $ sf config set [--json] [-g] + $ sf apex generate class -n [--json] [-t ApexException|ApexUnitTest|DefaultApexClass|InboundEmailService] [-d + ] [--api-version ] FLAGS - -g, --global Set the configuration variables globally, so they can be used from any directory. + -d, --output-dir= [default: .] Directory for saving the created files. + -n, --name= (required) Name of the generated Apex class. + -t, --template=