Skip to content

Commit 14212d5

Browse files
author
SF-CLI-BOT
committed
chore(release): 2.10.0 [ci skip]
1 parent 0fcf6ba commit 14212d5

File tree

3 files changed

+39
-26
lines changed

3 files changed

+39
-26
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [2.10.0](https://github.com/salesforcecli/plugin-release-management/compare/v2.9.1...v2.10.0) (2022-01-06)
6+
7+
### Features
8+
9+
- optionally skip resolutions and pinnedDeps in latestrc build ([#406](https://github.com/salesforcecli/plugin-release-management/issues/406)) ([0fcf6ba](https://github.com/salesforcecli/plugin-release-management/commit/0fcf6ba23cd5e53d59ac579e42853fe15dee2d47))
10+
511
### [2.9.1](https://github.com/salesforcecli/plugin-release-management/compare/v2.9.0...v2.9.1) (2022-01-06)
612

713
### Bug Fixes

README.md

Lines changed: 32 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ sfdx plugins
105105
- [`sfdx circleci:envvar:create -e <string> [-s <string>] [--dryrun] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-circlecienvvarcreate--e-string--s-string---dryrun---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
106106
- [`sfdx circleci:envvar:update -e <string> [-s <string>] [--dryrun] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-circlecienvvarupdate--e-string--s-string---dryrun---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
107107
- [`sfdx cli:install:test -c <string> -m <string> [--channel <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-cliinstalltest--c-string--m-string---channel-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
108-
- [`sfdx cli:latestrc:build [--rctag <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-clilatestrcbuild---rctag-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
108+
- [`sfdx cli:latestrc:build [--rctag <string>] [--resolutions] [--pinned-deps] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-clilatestrcbuild---rctag-string---resolutions---pinned-deps---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
109109
- [`sfdx cli:releasenotes -c <string> [-s <string>] [-m] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-clireleasenotes--c-string--s-string--m---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
110110
- [`sfdx cli:schemas:collect [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-clischemascollect---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
111111
- [`sfdx cli:schemas:compare [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-clischemascompare---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
@@ -174,7 +174,7 @@ EXAMPLE
174174
sfdx channel:promote --candidate latest-rc --target latest --platform win --platform mac
175175
```
176176

177-
_See code: [src/commands/channel/promote.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.0/src/commands/channel/promote.ts)_
177+
_See code: [src/commands/channel/promote.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.1/src/commands/channel/promote.ts)_
178178

179179
## `sfdx circleci [-t plugin|library|orb] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
180180

@@ -196,7 +196,7 @@ EXAMPLE
196196
sfdx circleci -t plugin
197197
```
198198

199-
_See code: [src/commands/circleci/index.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.0/src/commands/circleci/index.ts)_
199+
_See code: [src/commands/circleci/index.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.1/src/commands/circleci/index.ts)_
200200

201201
## `sfdx circleci:envvar:create -e <string> [-s <string>] [--dryrun] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
202202

@@ -233,7 +233,7 @@ EXAMPLES
233233
sfdx circleci -t plugin | sfdx circleci:envvar:create -e 'MY_ENV_VAR' -e 'MY_OTHER_ENV_VAR'
234234
```
235235

236-
_See code: [src/commands/circleci/envvar/create.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.0/src/commands/circleci/envvar/create.ts)_
236+
_See code: [src/commands/circleci/envvar/create.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.1/src/commands/circleci/envvar/create.ts)_
237237

238238
## `sfdx circleci:envvar:update -e <string> [-s <string>] [--dryrun] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
239239

@@ -270,7 +270,7 @@ EXAMPLES
270270
sfdx circleci -t plugin | sfdx circleci:envvar:update -e 'MY_ENV_VAR' -e 'MY_OTHER_ENV_VAR'
271271
```
272272

273-
_See code: [src/commands/circleci/envvar/update.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.0/src/commands/circleci/envvar/update.ts)_
273+
_See code: [src/commands/circleci/envvar/update.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.1/src/commands/circleci/envvar/update.ts)_
274274

275275
## `sfdx cli:install:test -c <string> -m <string> [--channel <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
276276

@@ -303,15 +303,15 @@ EXAMPLES
303303
sfdx cli:install:test --cli sf --method tarball --channel stable-rc
304304
```
305305

306-
_See code: [src/commands/cli/install/test.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.0/src/commands/cli/install/test.ts)_
306+
_See code: [src/commands/cli/install/test.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.1/src/commands/cli/install/test.ts)_
307307

308-
## `sfdx cli:latestrc:build [--rctag <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
308+
## `sfdx cli:latestrc:build [--rctag <string>] [--resolutions] [--pinned-deps] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
309309

310310
creates a PR to the repository property defined in the package.json to release a latest-rc build
311311

312312
```
313313
USAGE
314-
$ sfdx cli:latestrc:build [--rctag <string>] [--json] [--loglevel
314+
$ sfdx cli:latestrc:build [--rctag <string>] [--resolutions] [--pinned-deps] [--json] [--loglevel
315315
trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
316316
317317
OPTIONS
@@ -320,13 +320,20 @@ OPTIONS
320320
--loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
321321
this command invocation
322322
323+
--[no-]pinned-deps bump the versions of the packages
324+
listed in the pinnedDependencies
325+
section
326+
323327
--rctag=rctag [default: latest-rc] the tag name
324328
that corresponds to the npm RC
325329
build, usually latest-rc or
326330
stable-rc
331+
332+
--[no-]resolutions bump the versions of packages listed
333+
in the resolutions section
327334
```
328335

329-
_See code: [src/commands/cli/latestrc/build.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.0/src/commands/cli/latestrc/build.ts)_
336+
_See code: [src/commands/cli/latestrc/build.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.1/src/commands/cli/latestrc/build.ts)_
330337

331338
## `sfdx cli:releasenotes -c <string> [-s <string>] [-m] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
332339

@@ -364,7 +371,7 @@ EXAMPLES
364371
sfdx cli:releasenotes --cli sf --markdown > changes.md
365372
```
366373

367-
_See code: [src/commands/cli/releasenotes.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.0/src/commands/cli/releasenotes.ts)_
374+
_See code: [src/commands/cli/releasenotes.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.1/src/commands/cli/releasenotes.ts)_
368375

369376
## `sfdx cli:schemas:collect [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
370377

@@ -384,7 +391,7 @@ EXAMPLE
384391
sfdx cli:schemas:collect
385392
```
386393

387-
_See code: [src/commands/cli/schemas/collect.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.0/src/commands/cli/schemas/collect.ts)_
394+
_See code: [src/commands/cli/schemas/collect.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.1/src/commands/cli/schemas/collect.ts)_
388395

389396
## `sfdx cli:schemas:compare [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
390397

@@ -404,7 +411,7 @@ EXAMPLE
404411
sfdx cli:schemas:compare
405412
```
406413

407-
_See code: [src/commands/cli/schemas/compare.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.0/src/commands/cli/schemas/compare.ts)_
414+
_See code: [src/commands/cli/schemas/compare.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.1/src/commands/cli/schemas/compare.ts)_
408415

409416
## `sfdx cli:tarballs:prepare [-d] [-t] [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
410417

@@ -433,7 +440,7 @@ EXAMPLE
433440
sfdx cli:tarballs:prepare
434441
```
435442

436-
_See code: [src/commands/cli/tarballs/prepare.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.0/src/commands/cli/tarballs/prepare.ts)_
443+
_See code: [src/commands/cli/tarballs/prepare.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.1/src/commands/cli/tarballs/prepare.ts)_
437444

438445
## `sfdx cli:tarballs:smoke -c <string> [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
439446

@@ -462,7 +469,7 @@ EXAMPLES
462469
sfdx cli:tarballs:smoke --cli sf
463470
```
464471

465-
_See code: [src/commands/cli/tarballs/smoke.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.0/src/commands/cli/tarballs/smoke.ts)_
472+
_See code: [src/commands/cli/tarballs/smoke.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.1/src/commands/cli/tarballs/smoke.ts)_
466473

467474
## `sfdx cli:tarballs:verify [-c sf|sfdx] [-w <number>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
468475

@@ -491,7 +498,7 @@ EXAMPLES
491498
sfdx cli:tarballs:verify --cli sf
492499
```
493500

494-
_See code: [src/commands/cli/tarballs/verify.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.0/src/commands/cli/tarballs/verify.ts)_
501+
_See code: [src/commands/cli/tarballs/verify.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.1/src/commands/cli/tarballs/verify.ts)_
495502

496503
## `sfdx cli:versions:inspect -c <string> -l <string> --cli sf|sfdx [-d <string>] [-s] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
497504

@@ -539,7 +546,7 @@ EXAMPLES
539546
sfdx cli:versions:inspect -l npm -c latest -d chalk -s
540547
```
541548

542-
_See code: [src/commands/cli/versions/inspect.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.0/src/commands/cli/versions/inspect.ts)_
549+
_See code: [src/commands/cli/versions/inspect.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.1/src/commands/cli/versions/inspect.ts)_
543550

544551
## `sfdx dependabot:automerge -m major|minor|patch [-r <string> -o <string>] [-d] [-s] [--merge-method merge|squash|rebase] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
545552

@@ -583,7 +590,7 @@ EXAMPLES
583590
sfdx dependabot:automerge --max-version-bump major
584591
```
585592

586-
_See code: [src/commands/dependabot/automerge.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.0/src/commands/dependabot/automerge.ts)_
593+
_See code: [src/commands/dependabot/automerge.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.1/src/commands/dependabot/automerge.ts)_
587594

588595
## `sfdx dependabot:consolidate -m major|minor|patch -b <string> -t <string> [--ignore <array>] [-d] [--no-pr] [-r <string> -o <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
589596

@@ -634,7 +641,7 @@ EXAMPLES
634641
sfdx dependabot:consolidate --max-version-bump major
635642
```
636643

637-
_See code: [src/commands/dependabot/consolidate.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.0/src/commands/dependabot/consolidate.ts)_
644+
_See code: [src/commands/dependabot/consolidate.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.1/src/commands/dependabot/consolidate.ts)_
638645

639646
## `sfdx npm:dependencies:pin [-d] [-t <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
640647

@@ -659,7 +666,7 @@ OPTIONS
659666
this command invocation
660667
```
661668

662-
_See code: [src/commands/npm/dependencies/pin.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.0/src/commands/npm/dependencies/pin.ts)_
669+
_See code: [src/commands/npm/dependencies/pin.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.1/src/commands/npm/dependencies/pin.ts)_
663670

664671
## `sfdx npm:lerna:release [-d] [-s <array>] [-t <string>] [-a <string>] [--install] [--githubrelease] [--verify] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
665672

@@ -699,7 +706,7 @@ OPTIONS
699706
after publish and digital signature
700707
```
701708

702-
_See code: [src/commands/npm/lerna/release.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.0/src/commands/npm/lerna/release.ts)_
709+
_See code: [src/commands/npm/lerna/release.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.1/src/commands/npm/lerna/release.ts)_
703710

704711
## `sfdx npm:package:promote -c <string> [-d] [-t <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
705712

@@ -728,7 +735,7 @@ EXAMPLE
728735
sfdx npm:package:promote --candidate latest-rc --target latest
729736
```
730737

731-
_See code: [src/commands/npm/package/promote.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.0/src/commands/npm/package/promote.ts)_
738+
_See code: [src/commands/npm/package/promote.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.1/src/commands/npm/package/promote.ts)_
732739

733740
## `sfdx npm:package:release [-d] [-s] [-t <string>] [-a <string>] [--install] [--prerelease <string>] [--verify] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
734741

@@ -769,7 +776,7 @@ OPTIONS
769776
after publish and digital signature
770777
```
771778

772-
_See code: [src/commands/npm/package/release.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.0/src/commands/npm/package/release.ts)_
779+
_See code: [src/commands/npm/package/release.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.1/src/commands/npm/package/release.ts)_
773780

774781
## `sfdx npm:release:validate [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
775782

@@ -790,7 +797,7 @@ OPTIONS
790797
(only works with --json flag)
791798
```
792799

793-
_See code: [src/commands/npm/release/validate.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.0/src/commands/npm/release/validate.ts)_
800+
_See code: [src/commands/npm/release/validate.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.1/src/commands/npm/release/validate.ts)_
794801

795802
## `sfdx plugins:trust:verify -n <string> [-r <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
796803

@@ -863,7 +870,7 @@ EXAMPLES
863870
sfdx repositories --json | jq -r '.result[] | select(.name=="sfdx-core") | .packages[] | .url
864871
```
865872

866-
_See code: [src/commands/repositories/index.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.0/src/commands/repositories/index.ts)_
873+
_See code: [src/commands/repositories/index.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.1/src/commands/repositories/index.ts)_
867874

868875
## `sfdx typescript:update [-v <string>] [-t <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
869876

@@ -890,6 +897,6 @@ OPTIONS
890897
this command invocation
891898
```
892899

893-
_See code: [src/commands/typescript/update.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.0/src/commands/typescript/update.ts)_
900+
_See code: [src/commands/typescript/update.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.9.1/src/commands/typescript/update.ts)_
894901

895902
<!-- commandsstop -->

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@salesforce/plugin-release-management",
33
"description": "A plugin for preparing and publishing npm packages",
4-
"version": "2.9.1",
4+
"version": "2.10.0",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"bin": {

0 commit comments

Comments
 (0)