Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@salesforce/plugin-release-management

salesforcecli89kBSD-3-Clause5.7.40TypeScript support: included

A plugin for preparing and publishing npm packages

force, salesforce, sfdx, salesforcedx, sfdx-plugin

readme

plugin-release-management

NPM Downloads/week License

Plugin designed to handle all tasks related to signing, releasing, and testing npm packages.

Releases

The following steps are automated for package releases

Version Bump | Prerelease | ChangeLog

This plugin will not bump your package version for you. Use https://github.com/salesforcecli/github-workflows?tab=readme-ov-file#githubrelease and conventional commit tags to manage that.

It used to.

Build

After determining the next version, the plugin builds the package using yarn build. This means that you must have a build script included in the package.json

Signing

If you pass the --sign (-s) flag into the release command, then the plugin will sign the package and verify that the signature exists in S3.

Publishing

Once the package has been built and signed it will be published to npm. The command will not exit until the new version is found on the npm registry.

Install

sfdx plugins:install release-management@x.y.z

Issues

Please report any issues at https://github.com/forcedotcom/cli/issues

Contributing

  1. Please read our Code of Conduct
  2. Create a new issue before starting your project so that we can keep track of what you are trying to add/fix. That way, we can also offer suggestions or let you know if there is already an effort in progress.
  3. Fork this repository.
  4. Build the plugin locally
  5. Create a topic branch in your fork. Note, this step is recommended but technically not required if contributing using a fork.
  6. Edit the code in your fork.
  7. Write appropriate tests for your changes. Try to achieve at least 95% code coverage on any new code. No pull request will be accepted without unit tests.
  8. Sign CLA (see CLA below).
  9. Send us a pull request when you are done. We'll review your code, suggest any needed changes, and merge it in.

CLA

External contributors will be required to sign a Contributor's License Agreement. You can do so by going to https://cla.salesforce.com/sign-cla.

Build

To build the plugin locally, make sure to have yarn installed and run the following commands:

# Clone the repository
git clone git@github.com:salesforcecli/plugin-release-management

# Install the dependencies and compile
yarn install
yarn build

To use your plugin, run using the local ./bin/dev or ./bin/dev.cmd file.

# Run using local run file.
./bin/dev npm

There should be no differences when running via the Salesforce CLI or using the local run file. However, it can be useful to link the plugin to do some additional testing or run your commands from anywhere on your machine.

# Link your plugin to the sfdx cli
sfdx plugins:link .
# To verify
sfdx plugins

Commands

sfdx channel promote

promote a s3 channel

USAGE
  $ sfdx channel promote -t <value> -c sf|sfdx [--json] [--flags-dir <value>] [-d] [-C <value>] [-p win|macos|deb...]
    [-s <value>] [-m <value>] [-i] [-x] [-T linux-x64|linux-arm|win32-x64|win32-x86|darwin-x64...] [-v <value>]

FLAGS
  -C, --promote-from-channel=<value>     the channel name that you want to promote
  -T, --architecture-target=<option>...  comma-separated targets to promote (e.g.: linux-arm,win32-x64)
                                         <options: linux-x64|linux-arm|win32-x64|win32-x86|darwin-x64>
  -c, --cli=<option>                     (required) the cli name to promote
                                         <options: sf|sfdx>
  -d, --dryrun                           If true, only show what would happen
  -i, --[no-]indexes                     append the promoted urls into the index files
  -m, --max-age=<value>                  [default: 300] cache control max-age in seconds
  -p, --platform=<option>...             the platform to promote
                                         <options: win|macos|deb>
  -s, --sha=<value>                      the short sha to promote
  -t, --promote-to-channel=<value>       (required) [default: stable] the channel name that you are promoting to
  -v, --version=<value>                  the version of the candidate to be promoted, which must exist already in s3.
                                         Used to fetch the correct sha
  -x, --[no-]xz                          also upload xz

GLOBAL FLAGS
  --flags-dir=<value>  Import flag values from a directory.
  --json               Format output as json.

DESCRIPTION
  promote a s3 channel

  promote a s3 channel

EXAMPLES
  $ sfdx channel promote --candidate latest-rc --target latest --platform win --platform mac

See code: src/commands/channel/promote.ts

sfdx cli artifacts compare

Look for breaking changes in artifacts (schemas and snapshots) from plugins. Must be run in CLI directory.

USAGE
  $ sfdx cli artifacts compare [--json] [--flags-dir <value>] [-p <value>...] [-r <value>] [-c <value>]

FLAGS
  -c, --current=<value>    Current CLI version to compare against. Defaults to the version on the CLI in the current
                           directory.
  -p, --plugin=<value>...  List of plugins to check for breaking changes.
  -r, --previous=<value>   Previous CLI version to compare against. Defaults to the last published version.

GLOBAL FLAGS
  --flags-dir=<value>  Import flag values from a directory.
  --json               Format output as json.

EXAMPLES
  $ sfdx cli artifacts compare

See code: src/commands/cli/artifacts/compare.ts

sfdx cli install jit test

Test that all JIT plugins can be successfully installed.

USAGE
  $ sfdx cli install jit test [--json] [--flags-dir <value>] [-j <value>...]

FLAGS
  -j, --jit-plugin=<value>...  JIT plugin(s) to test, example: @salesforce/plugin-community

GLOBAL FLAGS
  --flags-dir=<value>  Import flag values from a directory.
  --json               Format output as json.

EXAMPLES
  $ sfdx cli install jit test

See code: src/commands/cli/install/jit/test.ts

sfdx cli install test

install sf or sfdx

USAGE
  $ sfdx cli install test -c sf|sfdx -m installer|npm|tarball [--json] [--flags-dir <value>] [--channel
    legacy|stable|stable-rc|latest|latest-rc] [--output-file <value>]

FLAGS
  -c, --cli=<option>         (required) the cli to install
                             <options: sf|sfdx>
  -m, --method=<option>      (required) the installation method to use
                             <options: installer|npm|tarball>
      --channel=<option>     [default: stable] the channel to install from
                             <options: legacy|stable|stable-rc|latest|latest-rc>
      --output-file=<value>  [default: test-results.json] the file to write the JSON results to (must be .json)

GLOBAL FLAGS
  --flags-dir=<value>  Import flag values from a directory.
  --json               Format output as json.

DESCRIPTION
  install sf or sfdx

  install sf or sfdx

EXAMPLES
  $ sfdx cli install test --cli sfdx --method installer

  $ sfdx cli install test --cli sfdx --method npm

  $ sfdx cli install test --cli sfdx --method tarball

  $ sfdx cli install test --cli sf --method tarball

  $ sfdx cli install test --cli sf --method tarball --channel stable-rc

See code: src/commands/cli/install/test.ts

sfdx cli release automerge

Attempt to automerge nightly PR

USAGE
  $ sfdx cli release automerge (--owner <value> --repo <value>) --pull-number <value> [--json] [--flags-dir <value>] [-d]
    [--verbose]

FLAGS
  -d, --dry-run              Run all checks, but do not merge PR
      --owner=<value>        (required) Github owner (org), example: salesforcecli
      --pull-number=<value>  (required) Github pull request number to merge
      --repo=<value>         (required) Github repo, example: sfdx-cli
      --verbose              Show additional debug output

GLOBAL FLAGS
  --flags-dir=<value>  Import flag values from a directory.
  --json               Format output as json.

DESCRIPTION
  Attempt to automerge nightly PR

  Attempt to automerge nightly PR

EXAMPLES
  $ sfdx cli release automerge --owner salesforcecli --repo sfdx-cli --pul-number 1049

See code: src/commands/cli/release/automerge.ts

sfdx cli release build

builds a new release from a designated starting point and optionally creates PR in Github

USAGE
  $ sfdx cli release build -c <value> [--json] [--flags-dir <value>] [-d <value>] [-g <value>] [--build-only]
    [--resolutions] [--only <value>...] [--pinned-deps] [--jit] [--label <value>...] [--patch] [--empty]
    [--pr-base-branch <value>]

FLAGS
  -c, --release-channel=<value>          (required) the channel intended for this release, examples: nightly, latest-rc,
                                         latest, dev, beta, etc...
  -d, --start-from-npm-dist-tag=<value>  the npm dist-tag to start the release from, examples: nightly, latest-rc
  -g, --start-from-github-ref=<value>    a Github ref to start the release from, examples: main, 7.144.0, f476e8e
      --build-only                       only build the release, do not git add/commit/push
      --empty                            create an empty release PR for pushing changes to later (version will still be
                                         bumped)
      --[no-]jit                         bump the versions of the packages listed in the jitPlugins (just-in-time)
                                         section
      --label=<value>...                 add one or more labels to the Github PR
      --only=<value>...                  only bump the version of the packages passed in, uses latest if version is not
                                         provided
      --patch                            bump the release as a patch of an existing version, not a new minor version
      --[no-]pinned-deps                 bump the versions of the packages listed in the pinnedDependencies section
      --pr-base-branch=<value>           base branch to create the PR against; if not specified, the build determines
                                         the branch for you
      --[no-]resolutions                 bump the versions of packages listed in the resolutions section

GLOBAL FLAGS
  --flags-dir=<value>  Import flag values from a directory.
  --json               Format output as json.

DESCRIPTION
  builds a new release from a designated starting point and optionally creates PR in Github

  builds a new release from a designated starting point and optionally creates PR in Github

ALIASES
  $ sfdx cli latestrc build

EXAMPLES
  $ sfdx cli release build

  $ sfdx cli release build --patch

  $ sfdx cli release build --start-from-npm-dist-tag latest-rc --patch

  $ sfdx cli release build --start-from-github-ref 7.144.0

  $ sfdx cli release build --start-from-github-ref main

  $ sfdx cli release build --start-from-github-ref f476e8e

  $ sfdx cli release build --start-from-github-ref main --prerelease beta

  $ sfdx cli release build --build-only

  $ sfdx cli release build --only @salesforce/plugin-source,@salesforce/plugin-info@1.2.3

See code: src/commands/cli/release/build.ts

sfdx cli releasenotes

pull all relevant information for writing release notes.

USAGE
  $ sfdx cli releasenotes -c sf|sfdx [--json] [--flags-dir <value>] [-s <value>] [-m]

FLAGS
  -c, --cli=<option>   (required) the cli to pull information for
                       <options: sf|sfdx>
  -m, --markdown       format the output in markdown
  -s, --since=<value>  the version number of the previous release. Defaults to the latest-rc version on npm

GLOBAL FLAGS
  --flags-dir=<value>  Import flag values from a directory.
  --json               Format output as json.

DESCRIPTION
  pull all relevant information for writing release notes.
  Requires the GH_TOKEN to be set in the environment.

  pull all relevant information for writing release notes.
  Requires the GH_TOKEN to be set in the environment.

EXAMPLES
  $ sfdx cli releasenotes --cli sf

  $ sfdx cli releasenotes --cli sfdx

  $ sfdx cli releasenotes --cli sf --since 1.0.0

  $ sfdx cli releasenotes --cli sfdx --since 7.19.0

  $ sfdx cli releasenotes --cli sf > changes.txt

  $ sfdx cli releasenotes --cli sf --markdown > changes.md

See code: src/commands/cli/releasenotes.ts

sfdx cli tarballs prepare

remove unnecessary files from node_modules

USAGE
  $ sfdx cli tarballs prepare [--json] [--flags-dir <value>] [-d] [-t] [--verbose]

FLAGS
  -d, --dryrun   only show what would be removed from node_modules
  -t, --types    remove all types (.d.ts) files from node_modules
      --verbose  show all files paths being removed

GLOBAL FLAGS
  --flags-dir=<value>  Import flag values from a directory.
  --json               Format output as json.

DESCRIPTION
  remove unnecessary files from node_modules

  remove unnecessary files from node_modules

EXAMPLES
  $ sfdx cli tarballs prepare

See code: src/commands/cli/tarballs/prepare.ts

sfdx cli tarballs smoke

smoke tests for the sf CLI

USAGE
  $ sfdx cli tarballs smoke [--json] [--flags-dir <value>] [--verbose]

FLAGS
  --verbose  show the --help output for each command

GLOBAL FLAGS
  --flags-dir=<value>  Import flag values from a directory.
  --json               Format output as json.

DESCRIPTION
  smoke tests for the sf CLI
  Tests that the CLI and every command can be initialized.

  smoke tests for the sf CLI
  Tests that the CLI and every command can be initialized.

EXAMPLES
  $ sfdx cli tarballs smoke

  $ sfdx cli tarballs smoke

See code: src/commands/cli/tarballs/smoke.ts

sfdx cli tarballs verify

verify that tarballs are ready to be uploaded

USAGE
  $ sfdx cli tarballs verify [--json] [--flags-dir <value>] [-c sf|sfdx] [-w <value>]

FLAGS
  -c, --cli=<option>                     [default: sfdx] the cli to verify
                                         <options: sf|sfdx>
  -w, --windows-username-buffer=<value>  [default: 41] the number of characters to allow for windows usernames

GLOBAL FLAGS
  --flags-dir=<value>  Import flag values from a directory.
  --json               Format output as json.

DESCRIPTION
  verify that tarballs are ready to be uploaded

  verify that tarballs are ready to be uploaded

EXAMPLES
  $ sfdx cli tarballs verify

  $ sfdx cli tarballs verify --cli sfdx

  $ sfdx cli tarballs verify --cli sf

See code: src/commands/cli/tarballs/verify.ts

sfdx cli versions inspect

inspect the CLI version across all install paths

USAGE
  $ sfdx cli versions inspect -c stable|stable-rc|latest|latest-rc|nightly... -l archive|npm... [--json] [--flags-dir
    <value>] [-d <value>...] [-s] [--ignore-missing]

FLAGS
  -c, --channels=<option>...     (required) the channel you want to inspect (for achives, latest and latest-rc are
                                 translated to stable and stable-rc. And vice-versa for npm)
                                 <options: stable|stable-rc|latest|latest-rc|nightly>
  -d, --dependencies=<value>...  glob pattern of dependencies you want to see the version of
  -l, --locations=<option>...    (required) the location you want to inspect
                                 <options: archive|npm>
  -s, --salesforce               show versions of salesforce owned dependencies
      --ignore-missing           skip missing archives. Useful when supporting new architectures in oclif

GLOBAL FLAGS
  --flags-dir=<value>  Import flag values from a directory.
  --json               Format output as json.

DESCRIPTION
  inspect the CLI version across all install paths

  inspect the CLI version across all install paths

EXAMPLES
  $ sfdx cli versions inspect -l archive -c stable

  $ sfdx cli versions inspect -l archive -c stable-rc

  $ sfdx cli versions inspect -l archive npm -c stable

  $ sfdx cli versions inspect -l archive npm -c latest

  $ sfdx cli versions inspect -l archive npm -c latest latest-rc

  $ sfdx cli versions inspect -l archive npm -c stable stable-rc

  $ sfdx cli versions inspect -l npm -c latest --salesforce

  $ sfdx cli versions inspect -l npm -c latest -d @salesforce/core

  $ sfdx cli versions inspect -l npm -c latest -d @salesforce/\*\*/ salesforce-alm

  $ sfdx cli versions inspect -l npm -c latest -d chalk -s

See code: src/commands/cli/versions/inspect.ts

sfdx dependabot automerge

automatically merge one green, mergeable PR up to the specified maximum bump type

USAGE
  $ sfdx dependabot automerge -m major|minor|patch [--json] [--flags-dir <value>] [-o <value> -r <value>] [-d] [-s]
    [--merge-method merge|squash|rebase]

FLAGS
  -d, --dryrun                     only show what would happen if you consolidated dependabot PRs
  -m, --max-version-bump=<option>  (required) [default: minor] the maximum version bump you want to be included
                                   <options: major|minor|patch>
  -o, --owner=<value>              the organization that the repository belongs to. This defaults to the owner specified
                                   in the package.json
  -r, --repo=<value>               the repository you want to consolidate PRs on. This defaults to the repository
                                   specified in the package.json
  -s, --skip-ci                    add [skip ci] to the merge commit title
      --merge-method=<option>      [default: merge] merge method to use
                                   <options: merge|squash|rebase>

GLOBAL FLAGS
  --flags-dir=<value>  Import flag values from a directory.
  --json               Format output as json.

DESCRIPTION
  automatically merge one green, mergeable PR up to the specified maximum bump type

  automatically merge one green, mergeable PR up to the specified maximum bump type

EXAMPLES
  $ sfdx dependabot automerge --max-version-bump patch

  $ sfdx dependabot automerge --max-version-bump minor

  $ sfdx dependabot automerge --max-version-bump major

See code: src/commands/dependabot/automerge.ts

sfdx github check closed

Show open Github issues with GUS WI

USAGE
  $ sfdx github check closed -o <value> --github-token <value> [--json] [--flags-dir <value>]

FLAGS
  -o, --gus=<value>           (required) Username/alias of your GUS org connection
      --github-token=<value>  (required) Github token--store this in the environment as GITHUB_TOKEN

GLOBAL FLAGS
  --flags-dir=<value>  Import flag values from a directory.
  --json               Format output as json.

DESCRIPTION
  Show open Github issues with GUS WI

  Description of a command.

EXAMPLES
  $ sfdx github check closed -o me@gus.com

See code: src/commands/github/check/closed.ts

sfdx npm dependencies pin

lock a list of dependencies to a target tag or default to 'latest', place these entries in 'pinnedDependencies' entry in the package.json

USAGE
  $ sfdx npm dependencies pin [--json] [--flags-dir <value>] [-d] [-t <value>]

FLAGS
  -d, --dryrun       If true, will not make any changes to the package.json
  -t, --tag=<value>  [default: latest] The name of the tag you want, e.g. 'latest-rc', or 'latest'

GLOBAL FLAGS
  --flags-dir=<value>  Import flag values from a directory.
  --json               Format output as json.

DESCRIPTION
  lock a list of dependencies to a target tag or default to 'latest', place these entries in 'pinnedDependencies' entry
  in the package.json

  lock a list of dependencies to a target tag or default to 'latest', place these entries in 'pinnedDependencies' entry
  in the package.json

See code: src/commands/npm/dependencies/pin.ts

sfdx npm package release

publish npm package

USAGE
  $ sfdx npm package release [--json] [--flags-dir <value>] [-d] [-s] [-t <value>] [-a <value>] [--install] [--prerelease
    <value>] [--verify] [--githubtag <value>]

FLAGS
  -a, --npmaccess=<value>   [default: public] access level to use when publishing to npm
  -d, --dryrun              If true, will not commit changes to repo or push any tags
  -s, --sign                If true, then the package will be signed and the signature will be uploaded to S3
  -t, --npmtag=<value>      [default: latest] tag to use when publishing to npm
      --githubtag=<value>   given a github tag, release the version specified in the package.json as is. Useful when
                            you've already done a release and only need npm publish features
      --[no-]install        run yarn install and build on repository
      --prerelease=<value>  determine the next version as <version>-<prerelease>.0 if version is not manually set
      --[no-]verify         verify npm registry has new version after publish and digital signature

GLOBAL FLAGS
  --flags-dir=<value>  Import flag values from a directory.
  --json               Format output as json.

DESCRIPTION
  publish npm package

  publish npm package

See code: src/commands/npm/package/release.ts

sfdx plugins trust verify

Validate a digital signature.

USAGE
  $ sfdx plugins trust verify -n <value> [--json] [--flags-dir <value>] [-r <value>]

FLAGS
  -n, --npm=<value>       (required) Specify the npm name. This can include a tag/version.
  -r, --registry=<value>  The registry name. The behavior is the same as npm.

GLOBAL FLAGS
  --flags-dir=<value>  Import flag values from a directory.
  --json               Format output as json.

DESCRIPTION
  Validate a digital signature.

  Verifies the digital signature on an npm package matches the signature and key stored at the expected URLs.

EXAMPLES
  $ sfdx plugins trust verify --npm @scope/npmName --registry https://npm.pkg.github.com

  $ sfdx plugins trust verify --npm @scope/npmName

See code: @salesforce/plugin-trust

sfdx repositories

list repositories owned and supported by Salesforce CLI

USAGE
  $ sfdx repositories [--json] [--flags-dir <value>] [--columns <value> | -x] [--filter <value>] [--no-header |
    [--csv | --no-truncate]] [--output csv|json|yaml |  | ] [--sort <value>]

FLAGS
  -x, --extended         Show extra columns.
      --columns=<value>  Only show provided columns (comma-separated).
      --csv              Output is csv format.
      --filter=<value>   Filter property by partial string matching, ex: name=foo.
      --no-header        Hide table header from output.
      --no-truncate      Do not truncate output to fit screen.
      --output=<option>  Output in a more machine friendly format.
                         <options: csv|json|yaml>
      --sort=<value>     Property to sort by (prepend '-' for descending).

GLOBAL FLAGS
  --flags-dir=<value>  Import flag values from a directory.
  --json               Format output as json.

DESCRIPTION
  list repositories owned and supported by Salesforce CLI
  For more information on the list of repositories, visit https://github.com/salesforcecli/status.

  list repositories owned and supported by Salesforce CLI
  For more information on the list of repositories, visit https://github.com/salesforcecli/status.

EXAMPLES
  $ sfdx repositories --columns=url --filter='Name=sfdx-core' --no-header | xargs open

  $ sfdx repositories --json | jq -r '.result[] | select(.name=="sfdx-core") | .packages[] | .url

See code: src/commands/repositories/index.ts

changelog

5.7.40 (2025-06-29)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 12.2.2 to 12.2.3 (bbfe785)

5.7.39 (2025-06-28)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (71fe378)

5.7.38 (2025-06-21)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (0d62422)

5.7.37 (2025-06-21)

Bug Fixes

  • deps: bump @oclif/core from 4.3.3 to 4.4.0 (22d4ef6)

5.7.36 (2025-06-15)

Bug Fixes

  • deps: bump @oclif/core from 4.3.2 to 4.3.3 (bc6e497)

5.7.35 (2025-06-14)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (bf8f90c)

5.7.34 (2025-06-07)

Bug Fixes

  • deps: bump @oclif/core from 4.3.0 to 4.3.2 (204cea1)

5.7.33 (2025-06-07)

Bug Fixes

  • deps: bump @salesforce/core from 8.11.4 to 8.12.0 (7bb4dc5)

5.7.32 (2025-05-24)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (b857cbd)

5.7.31 (2025-05-24)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 12.2.1 to 12.2.2 (4340e90)

5.7.30 (2025-05-18)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.87 to 3.7.89 (028031b)

5.7.29 (2025-05-17)

Bug Fixes

  • deps: bump semver from 7.7.1 to 7.7.2 (03fd943)

5.7.28 (2025-05-17)

Bug Fixes

  • deps: bump @salesforce/core from 8.10.1 to 8.11.0 (d2d3c17)

5.7.27 (2025-05-10)

Bug Fixes

  • deps: bump shelljs from 0.9.2 to 0.10.0 (19fd983)

5.7.26 (2025-05-10)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.86 to 3.7.87 (ee5c232)

5.7.25 (2025-05-10)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (46d82de)

5.7.24 (2025-05-04)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.83 to 3.7.85 (5902710)

5.7.23 (2025-05-03)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (22fff5d)

5.7.22 (2025-05-03)

Bug Fixes

  • deps: bump @salesforce/core from 8.10.0 to 8.10.1 (d80fbbd)

5.7.21 (2025-05-03)

Bug Fixes

  • deps: bump @oclif/core from 4.2.10 to 4.3.0 (80eb144)

5.7.20 (2025-04-26)

Bug Fixes

  • deps: bump @salesforce/core from 8.9.1 to 8.10.0 (f8ab224)

5.7.19 (2025-04-26)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.81 to 3.7.83 (83ee06f)

5.7.18 (2025-04-19)

Bug Fixes

  • deps: bump @salesforce/core from 8.9.0 to 8.9.1 (65cdaf1)

5.7.17 (2025-04-19)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.79 to 3.7.81 (146d77d)

5.7.16 (2025-04-13)

Bug Fixes

  • deps: bump @octokit/core from 6.1.4 to 6.1.5 (0f3435b)

5.7.15 (2025-04-12)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.78 to 3.7.79 (9c12e2d)

5.7.14 (2025-04-12)

Bug Fixes

  • deps: bump @octokit/plugin-paginate-rest from 11.4.3 to 11.6.0 (8e7d033)

5.7.13 (2025-04-12)

Bug Fixes

  • deps: bump @salesforce/core from 8.8.7 to 8.9.0 (4e4992f)

5.7.12 (2025-04-05)

Bug Fixes

  • deps: bump @octokit/plugin-throttling from 9.6.0 to 9.6.1 (7c3df74)

5.7.11 (2025-04-05)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.70 to 3.7.78 (959265c)

5.7.10 (2025-03-29)

Bug Fixes

  • deps: bump @salesforce/core from 8.8.6 to 8.8.7 (7a8a7d1)

5.7.9 (2025-03-29)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 12.2.0 to 12.2.1 (5885e63)

5.7.8 (2025-03-23)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (8c58887)

5.7.7 (2025-03-23)

Bug Fixes

  • deps: bump @octokit/plugin-throttling from 9.4.0 to 9.6.0 (2213ac3)

5.7.6 (2025-03-22)

Bug Fixes

  • deps: bump @salesforce/core from 8.8.5 to 8.8.6 (9ae0e8e)

5.7.5 (2025-03-22)

Bug Fixes

  • deps: bump shelljs from 0.9.1 to 0.9.2 (a089f9b)

5.7.4 (2025-03-16)

Bug Fixes

  • deps: bump shelljs from 0.8.5 to 0.9.1 (f961abb)

5.7.3 (2025-03-15)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.69 to 3.7.70 (fe3fd39)

5.7.2 (2025-03-15)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (9723c18)

5.7.1 (2025-03-15)

Bug Fixes

  • deps: bump @octokit/plugin-paginate-rest from 11.4.2 to 11.4.3 (0f7d588)

5.7.0 (2025-03-14)

Features

  • paginates listObjectsV2 (ffb4c2d)

5.6.60 (2025-03-09)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (808184b)

5.6.59 (2025-03-08)

Bug Fixes

  • deps: bump @salesforce/core from 8.8.4 to 8.8.5 (fbe2a04)

5.6.58 (2025-03-08)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 12.1.4 to 12.2.0 (4c2b102)

5.6.57 (2025-03-08)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.67 to 3.7.69 (df01fa6)

5.6.56 (2025-03-02)

Bug Fixes

  • deps: bump @salesforce/core from 8.8.3 to 8.8.4 (362dc78)

5.6.55 (2025-03-01)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.66 to 3.7.67 (2aaa3ed)

5.6.54 (2025-03-01)

Bug Fixes

  • deps: bump @oclif/core from 4.2.7 to 4.2.8 (79b3538)

5.6.53 (2025-02-23)

Bug Fixes

  • deps: bump @salesforce/core from 8.8.2 to 8.8.3 (ae4835b)

5.6.52 (2025-02-22)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.64 to 3.7.66 (46b3c4e)

5.6.51 (2025-02-22)

Bug Fixes

  • deps: bump @oclif/core from 4.2.6 to 4.2.7 (d227f01)

5.6.50 (2025-02-20)

Bug Fixes

  • bump octokit dependencies (7eda59c)

5.6.49 (2025-02-15)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.59 to 3.7.64 (454ad57)

5.6.48 (2025-02-15)

Bug Fixes

  • deps: bump @octokit/plugin-paginate-rest from 6.1.2 to 11.4.1 (06cf778)

5.6.47 (2025-02-08)

Bug Fixes

  • deps: bump @oclif/core from 4.2.5 to 4.2.6 (fb4a1e3)

5.6.46 (2025-02-08)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (410183a)

5.6.45 (2025-02-08)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 12.1.3 to 12.1.4 (120c005)

5.6.44 (2025-02-01)

Bug Fixes

  • deps: bump semver from 7.6.3 to 7.7.0 (f52a964)

5.6.43 (2025-02-01)

Bug Fixes

  • deps: bump @oclif/core from 4.2.4 to 4.2.5 (41e6a7a)

5.6.42 (2025-02-01)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 12.1.2 to 12.1.3 (c9b3475)

5.6.41 (2025-02-01)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (42e6f4b)

5.6.40 (2025-01-26)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.53 to 3.7.59 (d1ceb5a)

5.6.39 (2025-01-25)

Bug Fixes

  • deps: bump @oclif/core from 4.2.3 to 4.2.4 (b8aafe3)

5.6.38 (2025-01-25)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (9396d11)

5.6.37 (2025-01-19)

Bug Fixes

  • deps: bump @oclif/core from 4.2.2 to 4.2.3 (61f4b00)

5.6.36 (2025-01-18)

Bug Fixes

  • deps: bump @salesforce/core from 8.8.0 to 8.8.2 (4e3beeb)

5.6.35 (2025-01-18)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (5ea6fb6)

5.6.34 (2025-01-11)

Bug Fixes

  • deps: bump fast-glob from 3.3.2 to 3.3.3 (e0e695f)

5.6.33 (2025-01-11)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 12.1.1 to 12.1.2 (163bee1)

5.6.32 (2025-01-11)

Bug Fixes

  • deps: bump @oclif/core from 4.2.0 to 4.2.2 (5f55921)

5.6.31 (2025-01-04)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.52 to 3.7.53 (ccf1cca)

5.6.30 (2024-12-28)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (14da8e7)

5.6.29 (2024-12-28)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.51 to 3.7.52 (f99e2d7)

5.6.28 (2024-12-22)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.50 to 3.7.51 (17377d4)

5.6.27 (2024-12-22)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (926813b)

5.6.26 (2024-12-21)

Bug Fixes

  • deps: bump chalk from 5.3.0 to 5.4.0 (de49745)

5.6.25 (2024-12-14)

Bug Fixes

  • deps: bump @salesforce/cli-plugins-testkit from 5.3.38 to 5.3.39 (aa9a222)

5.6.24 (2024-12-14)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 12.1.0 to 12.1.1 (e34f954)

5.6.23 (2024-12-14)

Bug Fixes

  • deps: bump @oclif/core from 4.0.34 to 4.0.37 (ffbd674)

5.6.22 (2024-12-14)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.45 to 3.7.50 (e3a7775)

5.6.21 (2024-12-07)

Bug Fixes

  • deps: bump @oclif/core from 4.0.33 to 4.0.34 (81730fc)

5.6.20 (2024-12-07)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (eea4451)

5.6.19 (2024-12-07)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.44 to 3.7.45 (9bf72c8)

5.6.18 (2024-11-30)

Bug Fixes

  • deps: bump @salesforce/cli-plugins-testkit from 5.3.36 to 5.3.38 (f7a1741)

5.6.17 (2024-11-30)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.43 to 3.7.44 (053ac2f)

5.6.16 (2024-11-30)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 12.0.13 to 12.1.0 (0c1568a)

5.6.15 (2024-11-24)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (2387c91)

5.6.14 (2024-11-23)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 12.0.11 to 12.0.13 (8567475)

5.6.13 (2024-11-23)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.40 to 3.7.43 (29740e8)

5.6.12 (2024-11-16)

Bug Fixes

  • deps: bump aws-sdk from 2.1691.0 to 2.1692.0 (6033944)

5.6.11 (2024-11-16)

Bug Fixes

  • deps: bump cross-spawn from 7.0.3 to 7.0.5 (cdf8881)

5.6.10 (2024-11-16)

Bug Fixes

  • deps: bump @salesforce/core from 8.6.4 to 8.8.0 (014db95)

5.6.9 (2024-11-10)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (45fbb29)

5.6.8 (2024-11-09)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.38 to 3.7.40 (d1b096a)

5.6.7 (2024-11-09)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 12.0.9 to 12.0.11 (05e429a)

5.6.6 (2024-11-03)

Bug Fixes

  • deps: bump @salesforce/cli-plugins-testkit from 5.3.33 to 5.3.36 (7e5bc99)

5.6.5 (2024-11-02)

Bug Fixes

  • deps: bump @oclif/core from 4.0.30 to 4.0.31 (ecef284)

5.6.4 (2024-11-02)

Bug Fixes

  • deps: bump @salesforce/core from 8.6.3 to 8.6.4 (03ac96d)

5.6.3 (2024-10-29)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (16a1f6e)

5.6.2 (2024-10-29)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 12.0.8 to 12.0.9 (917d982)

5.6.1 (2024-10-29)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.35 to 3.7.38 (72c5788)

5.6.0 (2024-10-28)

Features

5.5.41 (2024-10-12)

Bug Fixes

  • deps: bump @oclif/core from 4.0.19 to 4.0.28 (2b5ea18)

5.5.40 (2024-10-12)

Bug Fixes

  • deps: bump @salesforce/core from 8.6.1 to 8.6.2 (d9cbfc9)

5.5.39 (2024-10-05)

Bug Fixes

  • deps: bump @salesforce/cli-plugins-testkit from 5.3.28 to 5.3.33 (4615fc2)

5.5.38 (2024-09-28)

Bug Fixes

  • deps: bump @salesforce/core from 8.5.7 to 8.6.1 (d611d38)

5.5.37 (2024-09-14)

Bug Fixes

  • deps: bump @salesforce/core from 8.5.4 to 8.5.7 (a5f1cb5)

5.5.36 (2024-09-14)

Bug Fixes

  • deps: bump aws-sdk from 2.1687.0 to 2.1691.0 (6231e89)

5.5.35 (2024-09-07)

Bug Fixes

  • deps: bump @salesforce/cli-plugins-testkit from 5.3.26 to 5.3.28 (c89e334)

5.5.34 (2024-08-31)

Bug Fixes

  • deps: bump aws-sdk from 2.1672.0 to 2.1687.0 (a72bb4c)

5.5.33 (2024-08-31)

Bug Fixes

  • deps: bump @oclif/core from 4.0.18 to 4.0.19 (141c708)

5.5.32 (2024-08-24)

Bug Fixes

  • deps: bump @oclif/core from 4.0.13 to 4.0.18 (9e9687d)

5.5.31 (2024-08-24)

Bug Fixes

  • deps: bump @salesforce/cli-plugins-testkit from 5.3.20 to 5.3.26 (1658ce8)

5.5.30 (2024-08-24)

Bug Fixes

  • deps: bump micromatch from 4.0.5 to 4.0.8 (e3bca97)

5.5.29 (2024-08-17)

Bug Fixes

  • deps: bump @salesforce/core from 8.2.8 to 8.4.0 (4328c4a)

5.5.28 (2024-08-10)

Bug Fixes

  • deps: bump aws-sdk from 2.1659.0 to 2.1672.0 (90f456f)

5.5.27 (2024-08-03)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.10 to 3.7.17 (a26597d)

5.5.26 (2024-08-03)

Bug Fixes

  • deps: bump @salesforce/kit from 3.1.6 to 3.2.0 (f5f91eb)

5.5.25 (2024-07-30)

Bug Fixes

  • lint undefined template literals (150b2b7)

5.5.24 (2024-07-28)

Bug Fixes

  • deps: bump @salesforce/cli-plugins-testkit from 5.3.18 to 5.3.20 (25c2f13)

5.5.23 (2024-07-27)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (4527dc9)

5.5.22 (2024-07-27)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 11.2.0 to 11.2.1 (b244771)

5.5.21 (2024-07-21)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 11.1.6 to 11.2.0 (ed99f1d)

5.5.20 (2024-07-20)

Bug Fixes

  • deps: bump semver from 7.6.2 to 7.6.3 (b32d40f)

5.5.19 (2024-07-20)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (3f57633)

5.5.18 (2024-07-13)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 11.1.2 to 11.1.6 (9783a13)

5.5.17 (2024-07-13)

Bug Fixes

  • deps: bump aws-sdk from 2.1655.0 to 2.1659.0 (04fd814)

5.5.16 (2024-07-06)

Bug Fixes

  • deps: bump @salesforce/cli-plugins-testkit from 5.3.15 to 5.3.18 (1afdc07)

5.5.15 (2024-07-06)

Bug Fixes

  • deps: bump aws-sdk from 2.1651.0 to 2.1655.0 (527ce4b)

5.5.14 (2024-07-06)

Bug Fixes

  • deps: bump @oclif/core from 4.0.6 to 4.0.8 (a499fcc)

5.5.13 (2024-06-30)

Bug Fixes

  • deps: bump @salesforce/core from 8.0.3 to 8.1.0 (50d7e6c)

5.5.12 (2024-06-29)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.8 to 3.7.10 (10296c4)

5.5.11 (2024-06-29)

Bug Fixes

  • deps: bump aws-sdk from 2.1646.0 to 2.1651.0 (c84bcea)

5.5.10 (2024-06-22)

Bug Fixes

  • deps: bump aws-sdk from 2.1632.0 to 2.1646.0 (2046341)

5.5.9 (2024-06-22)

Bug Fixes

  • deps: bump @salesforce/core from 8.0.2 to 8.0.3 (3f51b9d)

5.5.8 (2024-06-21)

Bug Fixes

5.5.7 (2024-06-15)

Bug Fixes

  • deps: bump @salesforce/ts-types from 2.0.9 to 2.0.10 (30bde59)

5.5.6 (2024-06-15)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.5 to 3.7.6 (bf83891)

5.5.5 (2024-06-15)

Bug Fixes

  • deps: bump @salesforce/kit from 3.1.2 to 3.1.4 (ce5d309)

5.5.4 (2024-06-14)

Bug Fixes

  • deps: bump braces from 3.0.2 to 3.0.3 (c17d795)

5.5.3 (2024-06-09)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (9a570d8)

5.5.2 (2024-06-09)

Bug Fixes

  • deps: bump @salesforce/core from 7.3.10 to 7.3.12 (348410e)

5.5.1 (2024-06-08)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.7.0 to 3.7.5 (0eca511)

5.5.0 (2024-06-06)

Features

5.4.8 (2024-06-06)

Bug Fixes

  • replace NamedError with SfError (857a694)

5.4.7 (2024-06-02)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 9.0.12 to 9.1.1 (adabc93)

5.4.6 (2024-06-01)

Bug Fixes

  • deps: bump @salesforce/cli-plugins-testkit from 5.3.4 to 5.3.9 (f46d14e)

5.4.5 (2024-06-01)

Bug Fixes

  • deps: bump @salesforce/kit from 3.1.1 to 3.1.2 (451dccc)

5.4.4 (2024-06-01)

Bug Fixes

  • deps: bump aws-sdk from 2.1623.0 to 2.1632.0 (15d0e55)

5.4.3 (2024-05-31)

Bug Fixes

  • more attemps at npm view json workaround (#1102) (707b98d)

5.4.2 (2024-05-30)

Bug Fixes

5.4.1 (2024-05-30)

Bug Fixes

5.4.0 (2024-05-29)

Features

5.3.1 (2024-05-25)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.6.11 to 3.7.0 (802b6cf)

5.3.0 (2024-05-21)

Features

  • log additional info for json parse errors (#1093) (7b37432)

5.2.17 (2024-05-18)

Bug Fixes

  • deps: bump aws-sdk from 2.1618.0 to 2.1623.0 (951c994)

5.2.16 (2024-05-18)

Bug Fixes

  • deps: bump @salesforce/cli-plugins-testkit from 5.3.2 to 5.3.4 (daa325c)

5.2.15 (2024-05-18)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.6.8 to 3.6.11 (4c9b82e)

5.2.14 (2024-05-12)

Bug Fixes

  • deps: bump aws-sdk from 2.1613.0 to 2.1618.0 (c6e2609)

5.2.13 (2024-05-11)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (a960afa)

5.2.12 (2024-05-11)

Bug Fixes

  • deps: bump @salesforce/cli-plugins-testkit from 5.2.0 to 5.3.2 (41c1ad1)

5.2.11 (2024-05-05)

Bug Fixes

  • deps: bump aws-sdk from 2.1599.0 to 2.1613.0 (c1596ce)

5.2.10 (2024-05-05)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.6.3 to 3.6.8 (1be66ba)

5.2.9 (2024-05-04)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (4704ad7)

5.2.8 (2024-05-04)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 9.0.5 to 9.0.7 (1bce42e)

5.2.7 (2024-04-27)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 9.0.1 to 9.0.5 (2e388e7)

5.2.6 (2024-04-27)

Bug Fixes

  • deps: bump @salesforce/core from 7.2.0 to 7.3.1 (6e296e5)

5.2.5 (2024-04-20)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (71b92b0)

5.2.4 (2024-04-20)

Bug Fixes

  • deps: bump @oclif/core from 3.26.2 to 3.26.4 (5957e94)

5.2.3 (2024-04-13)

Bug Fixes

  • deps: bump aws-sdk from 2.1594.0 to 2.1599.0 (939a861)

5.2.2 (2024-04-13)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.6.1 to 3.6.3 (6a0d682)

5.2.1 (2024-04-12)

Bug Fixes

  • deps: bump tar from 6.2.0 to 6.2.1 (b890f0f)

5.2.0 (2024-04-11)

Features

5.1.0 (2024-04-11)

Features

5.0.2 (2024-04-08)

Bug Fixes

  • restore standardVersion stuff for cli publish scripts (#1057) (b956b45)

5.0.1 (2024-04-06)

Bug Fixes

  • deps: bump aws-sdk from 2.1593.0 to 2.1594.0 (e26eaea)

5.0.0 (2024-04-05)

  • feat!: remove versioning code (#1053) (c2a8348), closes #1053

BREAKING CHANGES

  • don't calculate the next version. Throw an error if the version in pjson is already published.

  • fix: use npmName from plugin-trust

  • chore: new snapshot because flagsDir

  • test: oclif runHook stubs

  • feat!: publish doesn't do versioning

  • chore: snapshot generate for flags-dir

  • refactor: eslint likes # over _

  • fix: don't mutate params

  • chore: bump sf plugin

  • refactor: no param reassign

  • chore: bump plugin-trust for npmName lowercasing

4.7.34 (2024-03-30)

Bug Fixes

  • deps: bump aws-sdk from 2.1584.0 to 2.1589.0 (89cca57)

4.7.33 (2024-03-30)

Bug Fixes

  • deps: bump @salesforce/kit from 3.0.15 to 3.1.0 (1ccd44f)

4.7.32 (2024-03-24)

Bug Fixes

  • deps: bump aws-sdk from 2.1579.0 to 2.1584.0 (1759081)

4.7.31 (2024-03-23)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 7.1.15 to 7.1.16 (93e4998)

4.7.30 (2024-03-23)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.3.16 to 3.3.17 (a17de57)

4.7.29 (2024-03-17)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (ac56821)

4.7.28 (2024-03-16)

Bug Fixes

  • deps: bump @salesforce/core from 6.7.0 to 6.7.1 (c943c52)

4.7.27 (2024-03-16)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 7.1.14 to 7.1.15 (b47f23f)

4.7.26 (2024-03-16)

Bug Fixes

  • deps: bump aws-sdk from 2.1574.0 to 2.1579.0 (9ba4eae)

4.7.25 (2024-03-12)

Bug Fixes

4.7.24 (2024-03-10)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.3.14 to 3.3.16 (ebc95ba)

4.7.23 (2024-03-09)

Bug Fixes

  • deps: bump aws-sdk from 2.1565.0 to 2.1574.0 (d6a59aa)

4.7.22 (2024-03-02)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (9a1726e)

4.7.21 (2024-03-02)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.3.10 to 3.3.14 (0d79db2)

4.7.20 (2024-02-29)

Bug Fixes

4.7.19 (2024-02-25)

Bug Fixes

  • deps: bump aws-sdk from 2.1560.0 to 2.1565.0 (dbc700f)

4.7.18 (2024-02-24)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (26a3ce7)

4.7.17 (2024-02-24)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.3.8 to 3.3.10 (08ec8a0)

4.7.16 (2024-02-24)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 7.1.9 to 7.1.11 (10d3be4)

4.7.15 (2024-02-21)

Bug Fixes

  • deps: bump ip from 1.1.8 to 1.1.9 (520b224)

4.7.14 (2024-02-18)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.3.5 to 3.3.8 (6b11749)

4.7.13 (2024-02-17)

Bug Fixes

  • deps: bump proxy-agent from 6.3.1 to 6.4.0 (b9613b5)

4.7.12 (2024-02-17)

Bug Fixes

  • deps: bump aws-sdk from 2.1555.0 to 2.1560.0 (7d95929)

4.7.11 (2024-02-17)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (0774819)

4.7.10 (2024-02-10)

Bug Fixes

  • deps: bump @salesforce/core from 6.5.1 to 6.5.3 (e9f579a)

4.7.9 (2024-02-10)

Bug Fixes

  • deps: bump aws-sdk from 2.1550.0 to 2.1555.0 (69681d9)

4.7.8 (2024-02-10)

Bug Fixes

  • deps: bump semver from 7.5.4 to 7.6.0 (bb1451a)

4.7.7 (2024-02-05)

Bug Fixes

  • expect theme.json in tarball (233be54)

4.7.6 (2024-02-04)

Bug Fixes

  • deps: bump @oclif/core from 3.18.1 to 3.18.2 (b02025e)

4.7.5 (2024-02-03)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (3f48f10)

4.7.4 (2024-02-03)

Bug Fixes

  • deps: bump aws-sdk from 2.1545.0 to 2.1550.0 (aa657cf)

4.7.3 (2024-02-03)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.3.2 to 3.3.5 (07450d8)

4.7.2 (2024-01-27)

Bug Fixes

  • deps: bump aws-sdk from 2.1535.0 to 2.1545.0 (05ded12)

4.7.1 (2024-01-27)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 7.1.3 to 7.1.4 (735d10f)

4.7.0 (2024-01-22)

Bug Fixes

  • deps: use plugins-core7 (0b6d49d)

Features

  • delete unused deprecated command (5c1352e)
  • remove npm alias code (af66a0a)

4.6.3 (2024-01-20)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 3.3.1 to 3.3.2 (7d57f2c)

4.6.2 (2024-01-20)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (7b29495)

4.6.1 (2024-01-20)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 7.1.1 to 7.1.3 (f84630a)

4.6.0 (2024-01-19)

Features

4.5.27 (2024-01-16)

Bug Fixes

  • swap plugin-alias install (374a0e4)

4.5.26 (2024-01-14)

Bug Fixes

  • deps: bump @salesforce/core from 6.4.4 to 6.4.7 (b9c7d6d)

4.5.25 (2024-01-13)

Bug Fixes

  • deps: bump @oclif/core from 3.16.0 to 3.18.1 (f068307)

4.5.24 (2024-01-13)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (e7e20dd)

4.5.23 (2024-01-13)

Bug Fixes

  • deps: bump aws-sdk from 2.1531.0 to 2.1535.0 (1b1b8dc)

4.5.22 (2024-01-06)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (498be78)

4.5.21 (2024-01-06)

Bug Fixes

  • deps: bump @salesforce/core from 6.4.2 to 6.4.4 (403dbbd)

4.5.20 (2024-01-06)

Bug Fixes

  • deps: bump aws-sdk from 2.1528.0 to 2.1531.0 (4d5481e)

4.5.19 (2023-12-30)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 5.0.12 to 5.0.13 (9c88992)

4.5.18 (2023-12-30)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (f1abc23)

4.5.17 (2023-12-30)

Bug Fixes

  • deps: bump aws-sdk from 2.1525.0 to 2.1528.0 (0aa85a6)

4.5.16 (2023-12-30)

Bug Fixes

  • deps: bump @oclif/core from 3.15.0 to 3.15.1 (59ca125)

4.5.15 (2023-12-24)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (3036215)

4.5.14 (2023-12-23)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 5.0.10 to 5.0.12 (67adb93)

4.5.13 (2023-12-23)

Bug Fixes

  • deps: bump aws-sdk from 2.1515.0 to 2.1525.0 (837454e)

4.5.12 (2023-12-23)

Bug Fixes

  • deps: bump @salesforce/core from 6.4.1 to 6.4.2 (d156bc2)

4.5.11 (2023-12-16)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (6b71e22)

4.5.10 (2023-12-09)

Bug Fixes

  • deps: bump aws-sdk from 2.1510.0 to 2.1515.0 (706d5ca)

4.5.9 (2023-12-09)

Bug Fixes

  • deps: bump @salesforce/core from 6.2.2 to 6.4.0 (815ca2c)

4.5.8 (2023-12-09)

Bug Fixes

  • deps: bump @oclif/core from 3.13.1 to 3.14.1 (d09b219)

4.5.7 (2023-12-07)

Bug Fixes

  • strict enum comparisons (959214a)

4.5.6 (2023-12-02)

Bug Fixes

  • deps: bump aws-sdk from 2.1502.0 to 2.1510.0 (39e5db1)

4.5.5 (2023-12-02)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (ddb7367)

4.5.4 (2023-11-29)

Bug Fixes

  • remove unused jsforce stuff (ec982f3)

4.5.3 (2023-11-25)

Bug Fixes

  • deps: bump aws-sdk from 2.1499.0 to 2.1502.0 (e66ea80)

4.5.2 (2023-11-25)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (a626dea)

4.5.1 (2023-11-20)

Bug Fixes

4.5.0 (2023-11-20)

Features

4.4.24 (2023-11-18)

Bug Fixes

  • deps: bump aws-sdk from 2.1488.0 to 2.1499.0 (0272b83)

4.4.23 (2023-11-18)

Bug Fixes

  • deps: bump fast-glob from 3.3.1 to 3.3.2 (55223ac)

4.4.22 (2023-11-11)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 2.6.22 to 2.6.23 (fdc1763)

4.4.21 (2023-11-04)

Bug Fixes

  • deps: bump @salesforce/cli-plugins-testkit from 4.4.10 to 4.4.12 (ea57263)

4.4.20 (2023-11-04)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 2.6.21 to 2.6.22 (988e777)

4.4.19 (2023-11-04)

Bug Fixes

  • deps: bump aws-sdk from 2.1467.0 to 2.1488.0 (a9eaae9)

4.4.18 (2023-10-28)

Bug Fixes

  • deps: bump @salesforce/core from 5.3.10 to 5.3.14 (1c2d5ab)

4.4.17 (2023-10-28)

Bug Fixes

  • deps: bump @salesforce/kit from 3.0.14 to 3.0.15 (db9e382)

4.4.16 (2023-10-28)

Bug Fixes

  • deps: bump @salesforce/ts-types from 2.0.8 to 2.0.9 (ab2ae45)

4.4.15 (2023-10-22)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 2.6.19 to 2.6.21 (f51ccba)

4.4.14 (2023-10-22)

Bug Fixes

  • deps: bump @salesforce/cli-plugins-testkit from 4.4.7 to 4.4.10 (4f46804)

4.4.13 (2023-10-21)

Bug Fixes

  • deps: bump @salesforce/kit from 3.0.13 to 3.0.14 (f2a9e55)

4.4.12 (2023-10-19)

Bug Fixes

  • deps: bump @babel/traverse from 7.22.5 to 7.23.2 (ba9596f)

4.4.11 (2023-10-14)

Bug Fixes

  • deps: bump @salesforce/cli-plugins-testkit from 4.3.6 to 4.4.7 (a18c863)

4.4.10 (2023-10-14)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 2.6.8 to 2.6.19 (5da6e51)

4.4.9 (2023-10-07)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 3.1.25 to 3.1.28 (c7c669c)

4.4.8 (2023-10-07)

Bug Fixes

  • deps: bump @salesforce/kit from 3.0.11 to 3.0.13 (f58a4bb)

4.4.7 (2023-10-02)

Bug Fixes

4.4.6 (2023-10-01)

Bug Fixes

  • deps: bump @salesforce/core from 5.2.10 to 5.3.1 (fe1d1c8)

4.4.5 (2023-10-01)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (38661cb)

4.4.4 (2023-09-30)

Bug Fixes

  • deps: bump @salesforce/ts-types from 2.0.7 to 2.0.8 (e532ea0)

4.4.3 (2023-09-30)

Bug Fixes

  • deps: bump aws-sdk from 2.1440.0 to 2.1467.0 (09e4334)

4.4.2 (2023-09-29)

Bug Fixes

  • generate readme during cli PR build (8c13ede)

4.4.1 (2023-09-28)

Bug Fixes

  • deps: bump get-func-name from 2.0.0 to 2.0.2 (b15085a)

4.4.0 (2023-09-26)

4.3.1-dev.0 (2023-09-22)

Features

  • allow passing jitPlugins to install test (5d13b00)

4.3.3 (2023-09-23)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (fbb1879)

4.3.2 (2023-09-23)

Bug Fixes

  • deps: bump @salesforce/cli-plugins-testkit from 4.3.4 to 4.3.6 (f8274e8)

4.3.1 (2023-09-23)

Bug Fixes

  • deps: bump @salesforce/core from 5.2.9 to 5.2.10 (2f8ebf8)

4.3.1-dev.0 (2023-09-22)

Features

  • allow passing jitPlugins to install test (5d13b00)

4.3.0 (2023-09-21)

Bug Fixes

Features

4.2.2 (2023-09-19)

Bug Fixes

4.2.1 (2023-09-16)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 3.1.20 to 3.1.22 (ee61bf5)

4.2.0 (2023-09-13)

Features

  • remove cli flag from cli:tarballs:smoke (421bbc4)

4.1.29-dev.0 (2023-09-08)

Features

4.1.31 (2023-09-09)

Bug Fixes

  • deps: bump @salesforce/cli-plugins-testkit from 4.3.2 to 4.3.4 (da99fa1)

4.1.30 (2023-09-09)

Bug Fixes

  • deps: bump @salesforce/core from 5.2.1 to 5.2.7 (b6eab7c)

4.1.29 (2023-09-09)

Bug Fixes

  • deps: bump proxy-agent from 6.3.0 to 6.3.1 (6799a3c)

4.1.29-dev.0 (2023-09-08)

Features

4.1.28 (2023-09-03)

Bug Fixes

  • deps: bump fast-glob from 3.3.0 to 3.3.1 (6a74289)

4.1.27 (2023-09-02)

Bug Fixes

  • deps: bump @salesforce/cli-plugins-testkit from 4.3.0 to 4.3.2 (c5d4411)

4.1.26 (2023-09-02)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 2.6.1 to 2.6.8 (ed7eef4)

4.1.25 (2023-09-01)

Bug Fixes

4.1.24 (2023-08-26)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 3.1.14 to 3.1.18 (d5f9d54)

4.1.23 (2023-08-20)

Bug Fixes

  • deps: bump aws-sdk from 2.1413.0 to 2.1440.0 (fe89473)

4.1.22 (2023-08-19)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 2.6.0 to 2.6.1 (c61e3d8)

4.1.21 (2023-08-15)

Bug Fixes

4.1.20 (2023-08-12)

Bug Fixes

  • deps: bump @salesforce/cli-plugins-testkit from 4.2.9 to 4.3.0 (6303688)

4.1.19 (2023-08-07)

Bug Fixes

4.1.18 (2023-08-05)

Bug Fixes

  • deps: bump @oclif/core from 2.11.1 to 2.11.7 (18b1480)

4.1.17 (2023-07-30)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 3.1.7 to 3.1.12 (df56ceb)

4.1.16 (2023-07-29)

Bug Fixes

  • deps: bump @salesforce/cli-plugins-testkit from 4.2.3 to 4.2.7 (b67fc25)

4.1.15 (2023-07-29)

Bug Fixes

  • deps: bump proxy-agent from 6.2.1 to 6.3.0 (1e14e2a)

4.1.14 (2023-07-23)

Bug Fixes

  • deps: bump @salesforce/core from 4.3.10 to 4.3.11 (44bd304)

4.1.13 (2023-07-22)

Bug Fixes

  • deps: bump @salesforce/ts-types from 2.0.4 to 2.0.5 (5492d9f)

4.1.12 (2023-07-19)

Bug Fixes

  • deps: bump word-wrap from 1.2.3 to 1.2.4 (a6005d5)

4.1.11 (2023-07-15)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 3.0.4 to 3.1.7 (5e352bf)

4.1.10 (2023-07-15)

Bug Fixes

  • deps: bump fast-glob from 3.2.12 to 3.3.0 (4f83dcb)

4.1.9 (2023-07-09)

Bug Fixes

  • deps: bump @salesforce/cli-plugins-testkit from 4.1.1 to 4.2.3 (4b1ad38)

4.1.8 (2023-07-09)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference (f63fcaf)

4.1.7 (2023-07-08)

Bug Fixes

  • deps: bump @salesforce/ts-types from 2.0.3 to 2.0.4 (7e34200)

4.1.6 (2023-07-08)

Bug Fixes

  • deps: bump aws-sdk from 2.1409.0 to 2.1413.0 (e9fd6cc)

4.1.5 (2023-07-02)

Bug Fixes

  • deps: bump @salesforce/core from 4.3.1 to 4.3.5 (f2e9842)

4.1.4 (2023-07-01)

Bug Fixes

  • deps: bump tslib from 2.5.3 to 2.6.0 (a231624)

4.1.3 (2023-07-01)

Bug Fixes

  • deps: bump aws-sdk from 2.1404.0 to 2.1409.0 (7ca51dd)

4.1.2 (2023-06-27)

Bug Fixes

  • generate shrinkwrap lockfile before packing tarball (6498816)

4.1.1 (2023-06-27)

Bug Fixes

  • force rm shrinkwrap lockfile (f825ec9)

4.1.0 (2023-06-27)

Features

4.0.15 (2023-06-24)

Bug Fixes

  • deps: bump aws-sdk from 2.1399.0 to 2.1404.0 (377d37c)

4.0.14 (2023-06-24)

Bug Fixes

  • deps: bump semver from 7.5.1 to 7.5.2 (b0acebf)

4.0.13 (2023-06-18)

Bug Fixes

  • deps: bump @octokit/core from 4.2.1 to 4.2.4 (641c0fa)

4.0.12 (2023-06-18)

Bug Fixes

  • deps: bump aws-sdk from 2.1395.0 to 2.1399.0 (c1a6c92)

4.0.11 (2023-06-17)

Bug Fixes

  • deps: bump @salesforce/core from 4.2.1 to 4.3.1 (226689f)

4.0.10 (2023-06-12)

Bug Fixes

  • bump proxy-agent to new major version (#792) (1f7435e)

4.0.9 (2023-06-11)

Bug Fixes

  • deps: bump @salesforce/core from 4.0.1 to 4.2.1 (8b6c77e)

4.0.8 (2023-06-11)

Bug Fixes

  • deps: bump @salesforce/kit from 3.0.2 to 3.0.3 (0f772bb)

4.0.7 (2023-06-10)

Bug Fixes

  • deps: bump aws-sdk from 2.1390.0 to 2.1395.0 (9146ad4)

4.0.6 (2023-06-10)

Bug Fixes

  • deps: bump @salesforce/ts-types from 2.0.2 to 2.0.3 (a67a91d)

4.0.5 (2023-06-06)

Bug Fixes

  • unexpected null versions (563da96)

4.0.4 (2023-06-05)

Bug Fixes

4.0.3 (2023-06-04)

Bug Fixes

  • deps: bump aws-sdk from 2.1377.0 to 2.1390.0 (569a1b7)

4.0.2 (2023-06-03)

Bug Fixes

  • deps: bump tslib from 2.5.2 to 2.5.3 (b484df8)

4.0.1 (2023-06-03)

Bug Fixes

  • deps: bump @octokit/plugin-throttling from 5.1.1 to 5.2.3 (67e1f14)

3.17.8 (2023-05-27)

Bug Fixes

  • deps: bump @salesforce/core from 3.36.1 to 3.36.2 (9c93270)

3.17.7 (2023-05-27)

Bug Fixes

  • deps: bump @octokit/plugin-paginate-rest from 6.0.0 to 6.1.2 (4400cce)

3.17.6 (2023-05-20)

Bug Fixes

  • deps: bump @octokit/core from 4.2.0 to 4.2.1 (b1b03a2)

3.17.5 (2023-05-20)

Bug Fixes

  • deps: bump semver and @types/semver (79b670d)

3.17.4 (2023-05-16)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 2.2.4 to 2.4.3 (51c1056)

3.17.3 (2023-05-16)

Bug Fixes

  • deps: bump vm2 from 3.9.17 to 3.9.18 (43df61e)

3.17.2 (2023-05-13)

Bug Fixes

  • deps: bump aws-sdk from 2.1373.0 to 2.1377.0 (aba44d1)

3.17.1 (2023-05-06)

Bug Fixes

  • deps: bump aws-sdk from 2.1359.0 to 2.1373.0 (a9bcdf8)

3.17.0 (2023-05-01)

Features

  • allow the pr-base-branch to be passed (b93711e)

3.16.12 (2023-04-29)

Bug Fixes

  • deps: bump @oclif/core from 2.8.0 to 2.8.2 (fd1d2f5)

3.16.11 (2023-04-25)

Bug Fixes

  • correctly find the closest previous version (5bb2f90)

3.16.10 (2023-04-22)

Bug Fixes

  • deps: bump @octokit/plugin-throttling from 5.0.1 to 5.1.1 (c31157a)

3.16.9 (2023-04-21)

Bug Fixes

  • deps: bump vm2 from 3.9.16 to 3.9.17 (dbdc8de)

3.16.8 (2023-04-15)

Bug Fixes

  • deps: bump aws-sdk from 2.1338.0 to 2.1359.0 (f559db3)

3.16.7 (2023-04-15)

Bug Fixes

  • deps: bump semver from 7.3.8 to 7.4.0 (c3419d9)

3.16.6 (2023-04-13)

Bug Fixes

  • deps: bump vm2 from 3.9.15 to 3.9.16 (84003fd)

3.16.5 (2023-04-08)

Bug Fixes

  • deps: bump vm2 from 3.9.11 to 3.9.15 (7c33330)

3.16.4 (2023-04-07)

Bug Fixes

  • throttle help smoke tests (54b2703)

3.16.3 (2023-04-06)

Bug Fixes

3.16.2 (2023-04-01)

Bug Fixes

  • deps: bump @oclif/core from 2.7.1 to 2.8.0 (31bb15c)

3.16.1 (2023-03-28)

Bug Fixes

3.16.0 (2023-03-27)

Features

3.15.9 (2023-03-25)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference from 2.3.1 to 2.4.1 (c0052be)

3.15.8 (2023-03-18)

Bug Fixes

  • deps: bump aws-sdk from 2.1333.0 to 2.1338.0 (5bd3839)

3.15.7 (2023-03-12)

Bug Fixes

  • deps: bump aws-sdk from 2.1313.0 to 2.1333.0 (9b95d6a)

3.15.6 (2023-03-11)

Bug Fixes

  • deps: bump @salesforce/kit from 1.9.0 to 1.9.2 (4a635b1)

3.15.5 (2023-03-08)

Bug Fixes

  • adds base branch for patches (e240754)

3.15.4 (2023-03-04)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 2.2.3 to 2.2.4 (12d8e18)

3.15.3 (2023-03-03)

Bug Fixes

  • adds nightly channel, adds arm64 tars (#704) (6e4a44b)

3.15.2 (2023-03-01)

Bug Fixes

3.15.1 (2023-02-28)

Bug Fixes

3.15.0 (2023-02-27)

Features

3.14.2 (2023-02-25)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 2.4.1 to 2.4.2 (951276e)

3.14.1 (2023-02-24)

Bug Fixes

  • use correct path for verifying install (#695) (c41a0a5)

3.14.0 (2023-02-24)

Features

  • add labels to release PR (7daf234)

3.13.3 (2023-02-23)

Bug Fixes

  • only run JIT smoke tests for main executable (#693) (276bfc4)

3.13.2 (2023-02-23)

Bug Fixes

3.13.1 (2023-02-22)

Bug Fixes

3.13.0 (2023-02-22)

Features

  • ensure plugin versions are pinned before comparing artifacts (#689) (6abc9a3)

3.12.1 (2023-02-18)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 2.2.3 to 2.4.1 (0b54741)

3.12.0 (2023-02-14)

Features

3.11.2 (2023-02-12)

Bug Fixes

  • deps: bump aws-sdk from 2.1299.0 to 2.1313.0 (113ca38)

3.11.1 (2023-02-11)

Bug Fixes

  • deps: bump @salesforce/ts-types from 1.7.2 to 1.7.3 (ac423b2)

3.11.0 (2023-02-07)

Features

  • automerge dev-scripts updates when green (6feba92)

3.10.1 (2023-02-07)

Bug Fixes

  • deps: bump http-cache-semantics from 4.1.0 to 4.1.1 (6bbebab)

3.10.0 (2023-02-06)

Features

3.9.2 (2023-02-04)

Bug Fixes

  • deps: bump @oclif/core from 2.0.7 to 2.0.8 (730b3f8)

3.9.1 (2023-02-01)

3.9.0 (2023-01-31)

Features

3.8.12 (2023-01-31)

Bug Fixes

3.8.11 (2023-01-28)

Bug Fixes

  • deps: bump @oclif/core from 1.23.1 to 1.26.1 (b019adc)

3.8.10 (2023-01-27)

Bug Fixes

  • don't swallow execSync error (b244b53)

3.8.9 (2023-01-25)

Bug Fixes

3.8.8 (2023-01-23)

Bug Fixes

  • dont delete remote branch if build-only (a4095ef)

3.8.7 (2023-01-21)

Bug Fixes

  • deps: bump aws-sdk from 2.1295.0 to 2.1299.0 (0b90978)

3.8.6 (2023-01-19)

Bug Fixes

  • delete remote branches before release build (#644) (99c67f8)

3.8.5 (2023-01-14)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 1.21.5 to 1.22.1 (1c95969)

3.8.4 (2023-01-14)

Bug Fixes

  • deps: bump aws-sdk from 2.1238.0 to 2.1295.0 (62c8667)

3.8.3 (2023-01-10)

Bug Fixes

3.8.2 (2023-01-10)

Bug Fixes

  • rc: set base to main when creating a PR (e6d414c)

3.8.1 (2023-01-06)

Bug Fixes

3.8.0 (2023-01-05)

Bug Fixes

Features

  • support prereleases and allow multiple starting points (7e59d22)
  • support semver starting point (4759f65)

3.7.10 (2023-01-05)

Bug Fixes

  • bugs around sha and platform (cd406a1)

3.7.9 (2023-01-05)

Bug Fixes

  • deps: bump json5 from 1.0.1 to 1.0.2 (cb96e8c)

3.7.8 (2023-01-05)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 1.21.1 to 1.21.5 (5df1152)

3.7.7 (2023-01-05)

Bug Fixes

3.7.6 (2022-12-31)

Bug Fixes

  • deps: bump @oclif/core from 1.22.0 to 1.23.0 (a933e9e)

3.7.5 (2022-12-24)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 2.2.1 to 2.2.3 (cfafac6)

3.7.4 (2022-12-17)

Bug Fixes

  • deps: bump @salesforce/sf-plugins-core from 1.21.0 to 1.21.1 (90070e2)

3.7.3 (2022-12-11)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 2.1.0 to 2.2.1 (780cf3a)

3.7.2 (2022-12-10)

Bug Fixes

  • deps: bump got from 11.8.5 to 11.8.6 (356d4b5)

3.7.1 (2022-12-10)

Bug Fixes

  • deps: bump @salesforce/core from 3.32.8 to 3.32.9 (e819319)

3.7.0 (2022-12-08)

Bug Fixes

  • match class/run typings (e901716)

Features

  • sfdxCommand => sfCommand (f2fbb56)

3.6.0 (2022-11-29)

Features

  • parallelize smoke tests (fc53b34)
  • parallelize tarball verify (f709901)

Performance Improvements

  • drop shelljs for native exec (1a739fe)

3.5.17 (2022-11-04)

Reverts

  • Revert "fix: allow inspecting any channel" (c0d893d)

3.5.16 (2022-11-04)

Bug Fixes

  • allow inspecting any channel (52c8e8d)

3.5.15 (2022-11-04)

Bug Fixes

3.5.14 (2022-11-04)

Bug Fixes

  • accept any valid semver for version flag (608b931)

3.5.13 (2022-10-29)

Bug Fixes

  • deps: bump @octokit/core from 4.0.5 to 4.1.0 (b1ed23b)

3.5.12 (2022-10-29)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference from 1.4.3 to 1.4.7 (6eb6956)

3.5.11 (2022-10-22)

Bug Fixes

  • deps: bump @oclif/core from 1.16.5 to 1.19.1 (ffd0f7f)

3.5.10 (2022-10-22)

Bug Fixes

  • deps: bump aws-sdk from 2.1233.0 to 2.1238.0 (f72f6ee)

3.5.9 (2022-10-15)

Bug Fixes

  • deps: bump aws-sdk from 2.1231.0 to 2.1233.0 (99c7581)

3.5.8 (2022-10-09)

Bug Fixes

  • deps: bump aws-sdk from 2.1227.0 to 2.1231.0 (a5faecb)

3.5.7 (2022-10-08)

Bug Fixes

  • deps: bump @salesforce/plugin-command-reference from 1.4.0 to 1.4.3 (6c13b86)

3.5.6 (2022-10-08)

Bug Fixes

  • deps: bump semver from 7.3.7 to 7.3.8 (5214bc1)

3.5.5 (2022-10-08)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 2.0.4 to 2.1.0 (65159c7)

3.5.4 (2022-10-01)

Bug Fixes

  • deps: bump aws-sdk from 2.1226.0 to 2.1227.0 (58e799e)

3.5.3 (2022-09-30)

Bug Fixes

  • deps: bump @salesforce/command from 5.2.8 to 5.2.11 (f177134)

3.5.2 (2022-09-30)

Bug Fixes

  • deps: bump aws-sdk from 2.1223.0 to 2.1226.0 (42f5de2)

3.5.1 (2022-09-29)

Bug Fixes

  • deps: bump vm2 from 3.9.7 to 3.9.11 (3d46fdc)

3.5.0 (2022-09-27)

Features

  • fewer false positives for npm outages (#521) (0c465fd)

3.4.8 (2022-09-26)

Bug Fixes

  • remove caret in plugin specifier (54a6499)

3.4.7 (2022-09-26)

Bug Fixes

  • deps: bump fast-glob from 3.2.11 to 3.2.12 (d6c7200)

3.4.6 (2022-09-26)

Bug Fixes

  • deps: bump @salesforce/kit from 1.6.0 to 1.6.1 (6d8ed96)

3.4.5 (2022-09-25)

Bug Fixes

  • deps: bump @salesforce/command from 5.2.6 to 5.2.8 (f98871e)

3.4.4 (2022-09-25)

Bug Fixes

  • deps: bump aws-sdk from 2.1207.0 to 2.1223.0 (6f717f0)

3.4.3 (2022-09-25)

Bug Fixes

  • deps: bump @oclif/core from 1.16.0 to 1.16.4 (868c747)

3.4.2 (2022-09-23)

Bug Fixes

  • deps: bump @salesforce/ts-types from 1.5.20 to 1.5.21 (f51ae94)

3.4.1 (2022-09-23)

Bug Fixes

  • deps: bump @salesforce/plugin-trust from 2.0.3 to 2.0.4 (bcd2b26)

3.4.0 (2022-09-22)

Features

3.3.2 (2022-09-20)

Bug Fixes

3.3.1 (2022-09-20)

Bug Fixes

  • call sf-release from sf-release (4a39af0)

3.3.0 (2022-09-20)

Features

  • schema and snapshot on rc build command (8f3d24e)

3.2.0 (2022-09-13)

Bug Fixes

  • flags override pjson properly (20e0c63)
  • update automerge logic to look for gha checks (9899d19)

Features

  • flags require each other (6e93f48)

3.1.0 (2022-08-26)

Bug Fixes

Features

  • publish a released github tag (929a812)

3.0.3 (2022-08-25)

3.0.2 (2022-08-16)

3.0.1 (2022-08-09)

Bug Fixes

3.0.0 (2022-08-09)

2.14.0 (2022-08-03)

Features

2.13.1 (2022-07-07)

Bug Fixes

  • normalize paths after fg gets them for x-platform compatibility (ac74bae)

2.13.0 (2022-06-23)

Features

2.12.5 (2022-06-01)

Bug Fixes

  • throw a warn when signature verification fails (#474) (7f8cff9)

2.12.4 (2022-04-28)

Bug Fixes

  • no-verfiy when building latest-rc (203519c)

2.12.3 (2022-04-27)

Bug Fixes

  • output of downgraded plugins (8097882)

2.12.2 (2022-04-13)

Bug Fixes

2.12.1 (2022-04-07)

Bug Fixes

2.12.0 (2022-04-06)

Features

  • improve releasenotes command (3b803d0)

2.11.1 (2022-02-15)

Bug Fixes

2.11.0 (2022-02-01)

Features

  • patch flag and deduplicate step (8622fd0)

2.10.3 (2022-01-18)

2.10.2 (2022-01-10)

Bug Fixes

  • handle no existing versions when validating next version (40f7d7d)

2.10.1 (2022-01-10)

Bug Fixes

  • handle scenario where no versions exist yet (#407) (87126b5)

2.10.0 (2022-01-06)

Features

  • optionally skip resolutions and pinnedDeps in latestrc build (#406) (0fcf6ba)

2.9.1 (2022-01-06)

Bug Fixes

  • remove invalid flag reference for merge-method (c8ab1fb)

2.9.0 (2022-01-05)

Features

  • add --merge-method flag to automerge (3371c1b)
  • add --squash flag to automerge (3493bf3)

2.8.3 (2021-12-14)

Bug Fixes

2.8.2 (2021-12-09)

2.8.1 (2021-12-08)

Bug Fixes

  • remove expectation that sf will exist alongside sfdx npm installs (5c6d1c5)

2.8.0 (2021-12-05)

Features

2.7.2 (2021-11-23)

Bug Fixes

  • allow any script to be included in tarball (#362) (1efc454)

2.7.1 (2021-11-22)

Bug Fixes

  • only set git config if does not exist (#361) (0a0ed83)

2.7.0 (2021-11-22)

Features

2.6.2 (2021-11-22)

Bug Fixes

2.6.1 (2021-11-11)

Bug Fixes

  • allow verifying stable-rc channel for sf (a64d801)

2.6.0 (2021-11-08)

Features

  • add command to pull info for release notes (#338) (da2f2e0)

2.5.3 (2021-11-04)

Bug Fixes

Reverts

  • Revert "chore(release): 2.5.3-dev.1 [ci skip]" (be48813)

2.5.2 (2021-10-26)

Bug Fixes

2.5.1 (2021-10-25)

Bug Fixes

  • use assert.deepEqual to compare schema (#335) (1d64e1f)

2.5.0 (2021-10-25)

Features

2.4.1 (2021-10-25)

Bug Fixes

  • regression: use s3.download for downloading installers (3463e00)

2.4.0 (2021-10-25)

Features

2.3.7 (2021-10-22)

Bug Fixes

2.3.6 (2021-10-22)

Bug Fixes

  • make executables OS safe (4b5aeab)

2.3.5 (2021-10-22)

Bug Fixes

2.3.4 (2021-10-21)

Bug Fixes

2.3.3 (2021-10-21)

Bug Fixes

  • sets git username/email for committing (085ad19)

2.3.2 (2021-10-21)

2.3.1 (2021-10-18)

Bug Fixes

  • automates latest-rc build of sfdx-cli (6260314)
  • automates latest-rc build of sfdx-cli (9f78931)

2.3.0 (2021-10-13)

Features

  • add circleci envvar create command (0d35493)

2.2.6 (2021-10-12)

Bug Fixes

2.2.5 (2021-10-12)

2.2.4 (2021-10-08)

2.2.3 (2021-10-07)

Bug Fixes

2.2.2 (2021-10-05)

Bug Fixes

  • warn if service not available (f05ffcf)

2.2.1 (2021-10-05)

Bug Fixes

  • test that sf is installed alongside sfdx (#314) (47686c0)

2.2.0 (2021-10-05)

Features

2.1.0 (2021-09-17)

Features

2.0.8 (2021-09-17)

Bug Fixes

2.0.7 (2021-09-16)

Bug Fixes

  • debug verifySign method (9ab15bc)

2.0.6 (2021-09-15)

Bug Fixes

  • use correct command to verify signed plugin (#287) (602e489)

2.0.5 (2021-09-14)

Bug Fixes

  • replace sfdx with bundled plugin-trust (#278) (b44c430)
  • replace sfdx-trust with plugin-trust (24c2a3c)

2.0.3 (2021-08-11)

Bug Fixes

  • availability change (357d011)
  • next version check function change (1ad04e5)

2.0.2 (2021-07-28)

Bug Fixes

  • warn and skip any pinned deps that are not in package.json (#238) (3239b3e)

2.0.1 (2021-07-27)

Bug Fixes

  • push to github even if signing verification fails (#237) (3353626)

2.0.0 (2021-07-23)

1.17.0 (2021-07-23)

Features

  • allow pinned dependencies to be tagged (#234) (542badb)

1.16.5 (2021-07-13)

Bug Fixes

  • add ensureSfIsIncluded test (b2e614a)

1.16.4 (2021-07-12)

Bug Fixes

1.16.3 (2021-07-12)

Bug Fixes

1.16.2 (2021-07-12)

Bug Fixes

  • cli:versions:inspect in CI (790b39d)

1.16.1 (2021-07-12)

Bug Fixes

  • allow for pinned deps to be hardcoded at a version higher than the requested tag (b7e1c60)

1.16.0 (2021-07-12)

Features

1.15.0 (2021-07-10)

Features

  • improve windows path lengths test (1777031)

1.14.0 (2021-07-08)

Features

  • add commands to support sf release build (#231) (d57b5be)

1.13.8 (2021-07-06)

Bug Fixes

1.13.7 (2021-06-29)

Bug Fixes

1.13.6 (2021-06-29)

Bug Fixes

1.13.5 (2021-06-28)

Bug Fixes

  • add registry param to sfdx-trust calls (#215) (237e2f2)

1.13.4 (2021-06-25)

Bug Fixes

  • some of our projects use GH_TOKEN, some GITHUB_TOKEN (55b6b83)

1.13.3 (2021-06-25)

Bug Fixes

Reverts

  • Revert "fix: try to get proxy to s3 to work (#210)" (#212) (5cf5201), closes #210 #212

1.13.2 (2021-06-22)

Bug Fixes

  • load messages for shared dependabot flag (ca33483)
  • load messages for shared dependabot flag (b80d85b)

1.13.1 (2021-06-21)

Bug Fixes

  • forgot to load the messageDir (95a6766)

1.13.0 (2021-06-21)

Features

1.12.1 (2021-06-17)

Bug Fixes

1.12.0 (2021-06-16)

Features

1.11.1 (2021-06-15)

Bug Fixes

1.11.0 (2021-06-11)

Features

  • add command for consolidating dependabot PRs (#170) (8464f39)

1.10.3 (2021-05-26)

Bug Fixes

1.10.2 (2021-05-25)

Bug Fixes

  • do not use release-as during prerelease (#148) (1597c5c)

1.10.1 (2021-05-24)

Bug Fixes

  • add proxy support for got (eb96775)

1.10.0 (2021-05-20)

Features

1.9.4 (2021-05-12)

Bug Fixes

  • throw an error when versions don't match (cca7498)

1.9.3 (2021-05-12)

Bug Fixes

  • lerna publish tp use correct default package dir (#135) (4cc7dfa)

1.9.2 (2021-05-10)

1.9.1 (2021-05-03)

Bug Fixes

  • add prerelease flag when preparing for publish (#109) (70a354b)

1.9.0 (2021-04-19)

Features

1.8.4 (2021-04-09)

Bug Fixes

1.8.3 (2021-04-06)

Bug Fixes

  • jobs names [skip-validate-pr] (aa76b39)
  • leif .yml merge [skip-validate-pr] (786abb8)
  • leif .yml merge [skip-validate-pr] (dfbcba1)
  • typo [skip-validate-pr] (e9209a1)

1.8.2 (2021-04-02)

Bug Fixes

  • run scripts in package directory (#88) (fd9a9b8)

1.8.1 (2021-04-01)

Bug Fixes

1.8.0 (2021-03-16)

Features

1.7.3 (2021-02-26)

1.7.2 (2021-02-26)

Bug Fixes

  • stage changes to README before the commit [skip-validate-pr] (#46) (f0aea8d)

1.7.1 (2021-02-26)

1.7.0 (2021-02-26)

Features

1.6.3 (2021-02-22)

Bug Fixes

1.6.2 (2021-02-20)

Bug Fixes

1.6.1 (2021-02-20)

Bug Fixes

1.6.0 (2021-02-19)

Features

  • add cli:versions:inspect command [skip-validate-pr] (#39) (2178468)

1.5.1 (2021-02-04)

Bug Fixes

  • fetch git tags before searching for latest (#37) (8d7e0ec)

1.5.0 (2021-02-03)

Features

1.4.3 (2021-02-03)

Bug Fixes

  • strip tsconfig comments before parsing as JSON (#36) (3e16f1c)

1.4.2 (2021-01-29)

Bug Fixes

  • throw error if git push fails (1db3252)

1.4.1 (2021-01-28)

Bug Fixes

  • exclude merge commits when determinin if release is necessary (02f2bc0)

1.4.0 (2021-01-28)

Features

  • check commit messages to see if a new version needs to be published (#13) (555a29d)

1.3.0 (2021-01-28)

Features

  • 🎸 @W-8712470@ add env var for target registry (#10) (1dd1dbe)

1.2.1 (2021-01-19)

Bug Fixes

1.2.0 (2021-01-14)

Features

  • add typescript:update command (a1660e5)

1.1.2 (2020-12-11)

Bug Fixes

  • add ability to pin deps to specified version (8abed1b)

1.1.1 (2020-12-10)

1.1.0 (2020-11-24)

Bug Fixes

Features

  • add 3 new commands and a new flag (fbc7355)

1.0.0 (2020-11-13)

Features

  • add npm:package:release and npm:lerna:release (781775c)