Skip to content

Commit 319fca2

Browse files
author
SF-CLI-BOT
committed
chore(release): 2.14.0 [ci skip]
1 parent 739afa9 commit 319fca2

File tree

3 files changed

+44
-27
lines changed

3 files changed

+44
-27
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
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.14.0](https://github.com/salesforcecli/plugin-release-management/compare/v2.13.1...v2.14.0) (2022-08-03)
6+
7+
### Features
8+
9+
- build-latest-rc only flag ([51e97dd](https://github.com/salesforcecli/plugin-release-management/commit/51e97ddcb7b6a4a957d10d65ba0d36b2b08bd99c))
10+
- support resolutions ([f6902d8](https://github.com/salesforcecli/plugin-release-management/commit/f6902d868b954a389098fd9ac328361edbe7583a))
11+
512
### [2.13.1](https://github.com/salesforcecli/plugin-release-management/compare/v2.13.0...v2.13.1) (2022-07-07)
613

714
### Bug Fixes

README.md

Lines changed: 36 additions & 26 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>] [--output-file <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-cliinstalltest--c-string--m-string---channel-string---output-file-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
108-
- [`sfdx cli:latestrc:build [--rctag <string>] [--build-only] [--resolutions] [--pinned-deps] [--patch] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-clilatestrcbuild---rctag-string---build-only---resolutions---pinned-deps---patch---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
108+
- [`sfdx cli:latestrc:build [--rctag <string>] [--build-only] [--resolutions] [--only <array>] [--pinned-deps] [--patch] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-clilatestrcbuild---rctag-string---build-only---resolutions---only-array---pinned-deps---patch---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.13.0/src/commands/channel/promote.ts)_
177+
_See code: [src/commands/channel/promote.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.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.13.0/src/commands/circleci/index.ts)_
199+
_See code: [src/commands/circleci/index.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.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.13.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.13.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.13.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.13.1/src/commands/circleci/envvar/update.ts)_
274274

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

@@ -307,16 +307,16 @@ EXAMPLES
307307
sfdx cli:install:test --cli sf --method tarball --channel stable-rc
308308
```
309309

310-
_See code: [src/commands/cli/install/test.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.0/src/commands/cli/install/test.ts)_
310+
_See code: [src/commands/cli/install/test.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.1/src/commands/cli/install/test.ts)_
311311

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

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

316316
```
317317
USAGE
318-
$ sfdx cli:latestrc:build [--rctag <string>] [--build-only] [--resolutions] [--pinned-deps] [--patch] [--json]
319-
[--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
318+
$ sfdx cli:latestrc:build [--rctag <string>] [--build-only] [--resolutions] [--only <array>] [--pinned-deps] [--patch]
319+
[--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
320320
321321
OPTIONS
322322
--build-only only build the latest rc, do not git
@@ -327,6 +327,10 @@ OPTIONS
327327
--loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
328328
this command invocation
329329
330+
--only=only only bump the version of the
331+
packages passed in, uses latest if
332+
version is not provided
333+
330334
--patch bump the release as a patch of an
331335
existing version, not a new minor
332336
version
@@ -342,9 +346,15 @@ OPTIONS
342346
343347
--[no-]resolutions bump the versions of packages listed
344348
in the resolutions section
349+
350+
EXAMPLES
351+
sfdx cli:latestrc:build
352+
sfdx cli:latestrc:build --patch
353+
sfdx cli:latestrc:build --build-only
354+
sfdx cli:latestrc:build --only @salesforce/plugin-source,@salesforce/plugin-info@1.2.3,@sf/config
345355
```
346356

347-
_See code: [src/commands/cli/latestrc/build.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.0/src/commands/cli/latestrc/build.ts)_
357+
_See code: [src/commands/cli/latestrc/build.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.1/src/commands/cli/latestrc/build.ts)_
348358

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

@@ -382,7 +392,7 @@ EXAMPLES
382392
sfdx cli:releasenotes --cli sf --markdown > changes.md
383393
```
384394

385-
_See code: [src/commands/cli/releasenotes.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.0/src/commands/cli/releasenotes.ts)_
395+
_See code: [src/commands/cli/releasenotes.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.1/src/commands/cli/releasenotes.ts)_
386396

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

@@ -402,7 +412,7 @@ EXAMPLE
402412
sfdx cli:schemas:collect
403413
```
404414

405-
_See code: [src/commands/cli/schemas/collect.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.0/src/commands/cli/schemas/collect.ts)_
415+
_See code: [src/commands/cli/schemas/collect.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.1/src/commands/cli/schemas/collect.ts)_
406416

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

@@ -422,7 +432,7 @@ EXAMPLE
422432
sfdx cli:schemas:compare
423433
```
424434

425-
_See code: [src/commands/cli/schemas/compare.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.0/src/commands/cli/schemas/compare.ts)_
435+
_See code: [src/commands/cli/schemas/compare.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.1/src/commands/cli/schemas/compare.ts)_
426436

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

@@ -451,7 +461,7 @@ EXAMPLE
451461
sfdx cli:tarballs:prepare
452462
```
453463

454-
_See code: [src/commands/cli/tarballs/prepare.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.0/src/commands/cli/tarballs/prepare.ts)_
464+
_See code: [src/commands/cli/tarballs/prepare.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.1/src/commands/cli/tarballs/prepare.ts)_
455465

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

@@ -480,7 +490,7 @@ EXAMPLES
480490
sfdx cli:tarballs:smoke --cli sf
481491
```
482492

483-
_See code: [src/commands/cli/tarballs/smoke.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.0/src/commands/cli/tarballs/smoke.ts)_
493+
_See code: [src/commands/cli/tarballs/smoke.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.1/src/commands/cli/tarballs/smoke.ts)_
484494

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

@@ -509,7 +519,7 @@ EXAMPLES
509519
sfdx cli:tarballs:verify --cli sf
510520
```
511521

512-
_See code: [src/commands/cli/tarballs/verify.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.0/src/commands/cli/tarballs/verify.ts)_
522+
_See code: [src/commands/cli/tarballs/verify.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.1/src/commands/cli/tarballs/verify.ts)_
513523

514524
## `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]`
515525

@@ -557,7 +567,7 @@ EXAMPLES
557567
sfdx cli:versions:inspect -l npm -c latest -d chalk -s
558568
```
559569

560-
_See code: [src/commands/cli/versions/inspect.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.0/src/commands/cli/versions/inspect.ts)_
570+
_See code: [src/commands/cli/versions/inspect.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.1/src/commands/cli/versions/inspect.ts)_
561571

562572
## `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]`
563573

@@ -601,7 +611,7 @@ EXAMPLES
601611
sfdx dependabot:automerge --max-version-bump major
602612
```
603613

604-
_See code: [src/commands/dependabot/automerge.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.0/src/commands/dependabot/automerge.ts)_
614+
_See code: [src/commands/dependabot/automerge.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.1/src/commands/dependabot/automerge.ts)_
605615

606616
## `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]`
607617

@@ -652,7 +662,7 @@ EXAMPLES
652662
sfdx dependabot:consolidate --max-version-bump major
653663
```
654664

655-
_See code: [src/commands/dependabot/consolidate.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.0/src/commands/dependabot/consolidate.ts)_
665+
_See code: [src/commands/dependabot/consolidate.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.1/src/commands/dependabot/consolidate.ts)_
656666

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

@@ -677,7 +687,7 @@ OPTIONS
677687
this command invocation
678688
```
679689

680-
_See code: [src/commands/npm/dependencies/pin.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.0/src/commands/npm/dependencies/pin.ts)_
690+
_See code: [src/commands/npm/dependencies/pin.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.1/src/commands/npm/dependencies/pin.ts)_
681691

682692
## `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]`
683693

@@ -717,7 +727,7 @@ OPTIONS
717727
after publish and digital signature
718728
```
719729

720-
_See code: [src/commands/npm/lerna/release.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.0/src/commands/npm/lerna/release.ts)_
730+
_See code: [src/commands/npm/lerna/release.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.1/src/commands/npm/lerna/release.ts)_
721731

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

@@ -746,7 +756,7 @@ EXAMPLE
746756
sfdx npm:package:promote --candidate latest-rc --target latest
747757
```
748758

749-
_See code: [src/commands/npm/package/promote.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.0/src/commands/npm/package/promote.ts)_
759+
_See code: [src/commands/npm/package/promote.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.1/src/commands/npm/package/promote.ts)_
750760

751761
## `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]`
752762

@@ -787,7 +797,7 @@ OPTIONS
787797
after publish and digital signature
788798
```
789799

790-
_See code: [src/commands/npm/package/release.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.0/src/commands/npm/package/release.ts)_
800+
_See code: [src/commands/npm/package/release.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.1/src/commands/npm/package/release.ts)_
791801

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

@@ -808,7 +818,7 @@ OPTIONS
808818
(only works with --json flag)
809819
```
810820

811-
_See code: [src/commands/npm/release/validate.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.0/src/commands/npm/release/validate.ts)_
821+
_See code: [src/commands/npm/release/validate.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.1/src/commands/npm/release/validate.ts)_
812822

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

@@ -881,7 +891,7 @@ EXAMPLES
881891
sfdx repositories --json | jq -r '.result[] | select(.name=="sfdx-core") | .packages[] | .url
882892
```
883893

884-
_See code: [src/commands/repositories/index.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.0/src/commands/repositories/index.ts)_
894+
_See code: [src/commands/repositories/index.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.1/src/commands/repositories/index.ts)_
885895

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

@@ -908,6 +918,6 @@ OPTIONS
908918
this command invocation
909919
```
910920

911-
_See code: [src/commands/typescript/update.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.0/src/commands/typescript/update.ts)_
921+
_See code: [src/commands/typescript/update.ts](https://github.com/salesforcecli/plugin-release-management/blob/v2.13.1/src/commands/typescript/update.ts)_
912922

913923
<!-- 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.13.1",
4+
"version": "2.14.0",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"bin": {

0 commit comments

Comments
 (0)