@salesforce/plugin-release-management 2.13.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -0
- package/README.md +300 -321
- package/bin/dev +17 -0
- package/bin/dev.cmd +3 -0
- package/bin/run +3 -2
- package/lib/amazonS3.js +8 -8
- package/lib/amazonS3.js.map +1 -1
- package/lib/circleCiEnvvars.js +3 -3
- package/lib/circleCiEnvvars.js.map +1 -1
- package/lib/codeSigning/packAndSign.js +10 -17
- package/lib/codeSigning/packAndSign.js.map +1 -1
- package/lib/commands/channel/promote.js +9 -15
- package/lib/commands/channel/promote.js.map +1 -1
- package/lib/commands/circleci/envvar/create.js.map +1 -1
- package/lib/commands/circleci/envvar/update.js.map +1 -1
- package/lib/commands/cli/install/test.js +17 -6
- package/lib/commands/cli/install/test.js.map +1 -1
- package/lib/commands/cli/latestrc/build.d.ts +1 -0
- package/lib/commands/cli/latestrc/build.js +26 -12
- package/lib/commands/cli/latestrc/build.js.map +1 -1
- package/lib/commands/cli/releasenotes.js +6 -11
- package/lib/commands/cli/releasenotes.js.map +1 -1
- package/lib/commands/cli/schemas/collect.js +18 -9
- package/lib/commands/cli/schemas/collect.js.map +1 -1
- package/lib/commands/cli/schemas/compare.js +14 -7
- package/lib/commands/cli/schemas/compare.js.map +1 -1
- package/lib/commands/cli/tarballs/prepare.js +1 -1
- package/lib/commands/cli/tarballs/prepare.js.map +1 -1
- package/lib/commands/cli/tarballs/smoke.js +1 -1
- package/lib/commands/cli/tarballs/smoke.js.map +1 -1
- package/lib/commands/cli/tarballs/verify.js +44 -22
- package/lib/commands/cli/tarballs/verify.js.map +1 -1
- package/lib/commands/cli/versions/inspect.js +18 -7
- package/lib/commands/cli/versions/inspect.js.map +1 -1
- package/lib/commands/dependabot/automerge.js +3 -6
- package/lib/commands/dependabot/automerge.js.map +1 -1
- package/lib/commands/npm/dependencies/pin.js +4 -6
- package/lib/commands/npm/dependencies/pin.js.map +1 -1
- package/lib/commands/npm/package/promote.js +3 -7
- package/lib/commands/npm/package/promote.js.map +1 -1
- package/lib/commands/npm/package/release.js +4 -8
- package/lib/commands/npm/package/release.js.map +1 -1
- package/lib/commands/npm/release/validate.js +3 -5
- package/lib/commands/npm/release/validate.js.map +1 -1
- package/lib/commands/repositories/index.js +3 -3
- package/lib/commands/repositories/index.js.map +1 -1
- package/lib/commands/typescript/update.js +23 -26
- package/lib/commands/typescript/update.js.map +1 -1
- package/lib/dependabot.js +6 -4
- package/lib/dependabot.js.map +1 -1
- package/lib/dependencies.d.ts +1 -1
- package/lib/inspectCommits.d.ts +1 -1
- package/lib/inspectCommits.js +3 -7
- package/lib/inspectCommits.js.map +1 -1
- package/lib/package.d.ts +12 -1
- package/lib/package.js +96 -23
- package/lib/package.js.map +1 -1
- package/lib/pluginCommand.js +8 -9
- package/lib/pluginCommand.js.map +1 -1
- package/lib/registry.js +14 -11
- package/lib/registry.js.map +1 -1
- package/lib/repository.d.ts +2 -23
- package/lib/repository.js +15 -168
- package/lib/repository.js.map +1 -1
- package/messages/channel.promote.json +0 -1
- package/messages/cli.latestrc.build.json +7 -0
- package/messages/npm.package.promote.json +0 -1
- package/messages/npm.package.release.json +1 -2
- package/messages/trust.sign.json +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +16 -25
- package/lib/commands/npm/lerna/release.d.ts +0 -13
- package/lib/commands/npm/lerna/release.js +0 -144
- package/lib/commands/npm/lerna/release.js.map +0 -1
- package/messages/npm.lerna.release.json +0 -14
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,29 @@
|
|
|
2
2
|
|
|
3
3
|
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.
|
|
4
4
|
|
|
5
|
+
## [3.0.0](https://github.com/salesforcecli/plugin-release-management/compare/v2.14.0...v3.0.0) (2022-08-09)
|
|
6
|
+
|
|
7
|
+
### ⚠ BREAKING CHANGES
|
|
8
|
+
|
|
9
|
+
- parking orbit
|
|
10
|
+
- remove lerna support
|
|
11
|
+
|
|
12
|
+
- Merge pull request #507 from salesforcecli/cd/parking-orbit ([5419383](https://github.com/salesforcecli/plugin-release-management/commit/5419383c24628802de2ab7668f14c2771773b522)), closes [#507](https://github.com/salesforcecli/plugin-release-management/issues/507)
|
|
13
|
+
- remove lerna support ([104df95](https://github.com/salesforcecli/plugin-release-management/commit/104df95765e73b5e65724b69e0d89ea10df78218))
|
|
14
|
+
|
|
15
|
+
## [2.14.0](https://github.com/salesforcecli/plugin-release-management/compare/v2.13.1...v2.14.0) (2022-08-03)
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
- build-latest-rc only flag ([51e97dd](https://github.com/salesforcecli/plugin-release-management/commit/51e97ddcb7b6a4a957d10d65ba0d36b2b08bd99c))
|
|
20
|
+
- support resolutions ([f6902d8](https://github.com/salesforcecli/plugin-release-management/commit/f6902d868b954a389098fd9ac328361edbe7583a))
|
|
21
|
+
|
|
22
|
+
### [2.13.1](https://github.com/salesforcecli/plugin-release-management/compare/v2.13.0...v2.13.1) (2022-07-07)
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
|
|
26
|
+
- normalize paths after fg gets them for x-platform compatibility ([ac74bae](https://github.com/salesforcecli/plugin-release-management/commit/ac74bae5dfccc65660764401c5dc096513c11684))
|
|
27
|
+
|
|
5
28
|
## [2.13.0](https://github.com/salesforcecli/plugin-release-management/compare/v2.12.5...v2.13.0) (2022-06-23)
|
|
6
29
|
|
|
7
30
|
### Features
|