From c149906a98d281adf663310e0dc8f1d56f7776bb Mon Sep 17 00:00:00 2001 From: Nicolas Kruk Date: Mon, 2 Jun 2025 16:12:20 -0400 Subject: [PATCH 1/5] feat: 256-patch prerelease (v3) @W-18658526 (#413) --- .github/workflows/create-github-release.yml | 1 + .github/workflows/onRelease.yml | 2 +- .github/workflows/test.yml | 2 +- package.json | 8 ++++++-- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/create-github-release.yml b/.github/workflows/create-github-release.yml index 1a3780e7..21b416cd 100644 --- a/.github/workflows/create-github-release.yml +++ b/.github/workflows/create-github-release.yml @@ -7,6 +7,7 @@ on: - prerelease/** - 252-patch - 254-patch + - 256-patch tags-ignore: - '*' workflow_dispatch: diff --git a/.github/workflows/onRelease.yml b/.github/workflows/onRelease.yml index 6fa83531..73d510e9 100644 --- a/.github/workflows/onRelease.yml +++ b/.github/workflows/onRelease.yml @@ -48,7 +48,7 @@ jobs: #ctc: true sign: true # At CLCO, the new patch branch's version will be released as 'prerelease'. After R2b, delete the logic below for 'latest' and update 'prerelease' candidate to 'latest' - tag: ${{ needs.getDistTag.outputs.tag || (needs.getMajorVersion.outputs.major == '2' && 'latest') ||'next' }} + tag: ${{ needs.getDistTag.outputs.tag || (needs.getMajorVersion.outputs.major == '2' && 'latest') || (needs.getMajorVersion.outputs.major == '3' && 'prerelease') ||'next' }} githubTag: ${{ github.event.release.tag_name || inputs.tag }} secrets: inherit diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9e6cca21..56bb1745 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,7 +1,7 @@ name: tests on: push: - branches-ignore: [main, 252-patch, 254-patch] + branches-ignore: [main, 252-patch, 254-patch, 256-patch] workflow_dispatch: jobs: diff --git a/package.json b/package.json index 08ec376b..ad4672a7 100644 --- a/package.json +++ b/package.json @@ -238,14 +238,18 @@ "versionToTagMappings": [ { "versionNumber": "62.0", - "tagName": "latest" + "tagName": "v1" }, { "versionNumber": "63.0", - "tagName": "prerelease" + "tagName": "latest" }, { "versionNumber": "64.0", + "tagName": "prerelease" + }, + { + "versionNumber": "65.0", "tagName": "next" } ] From 9aa5daa0086ea59a2c5e7082880ba67252c0bd98 Mon Sep 17 00:00:00 2001 From: svc-cli-bot Date: Mon, 2 Jun 2025 20:13:23 +0000 Subject: [PATCH 2/5] chore(release): 3.5.0 [skip ci] --- CHANGELOG.md | 6 ++++++ README.md | 6 +++--- package.json | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a513edf7..e1495118 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# [3.5.0](https://github.com/salesforcecli/plugin-lightning-dev/compare/3.4.0...3.5.0) (2025-06-02) + +### Features + +- 256-patch prerelease (v3) @W-18658526 ([#413](https://github.com/salesforcecli/plugin-lightning-dev/issues/413)) ([c149906](https://github.com/salesforcecli/plugin-lightning-dev/commit/c149906a98d281adf663310e0dc8f1d56f7776bb)) + # [3.4.0](https://github.com/salesforcecli/plugin-lightning-dev/compare/3.3.1...3.4.0) (2025-06-02) ### Features diff --git a/README.md b/README.md index bd56823a..b811a61d 100644 --- a/README.md +++ b/README.md @@ -201,7 +201,7 @@ EXAMPLES $ sf lightning dev app --target-org myOrg --device-type ios --device-id "iPhone 15 Pro Max" ``` -_See code: [src/commands/lightning/dev/app.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/3.4.0/src/commands/lightning/dev/app.ts)_ +_See code: [src/commands/lightning/dev/app.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/3.5.0/src/commands/lightning/dev/app.ts)_ ## `sf lightning dev component` @@ -247,7 +247,7 @@ EXAMPLES $ sf lightning dev component --name myComponent ``` -_See code: [src/commands/lightning/dev/component.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/3.4.0/src/commands/lightning/dev/component.ts)_ +_See code: [src/commands/lightning/dev/component.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/3.5.0/src/commands/lightning/dev/component.ts)_ ## `sf lightning dev site` @@ -302,6 +302,6 @@ EXAMPLES $ sf lightning dev site --name "Partner Central" --target-org myOrg --get-latest ``` -_See code: [src/commands/lightning/dev/site.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/3.4.0/src/commands/lightning/dev/site.ts)_ +_See code: [src/commands/lightning/dev/site.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/3.5.0/src/commands/lightning/dev/site.ts)_ diff --git a/package.json b/package.json index ad4672a7..17e60e57 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@salesforce/plugin-lightning-dev", "description": "Lightning development tools for LEX, Mobile, and Experience Sites", - "version": "3.4.0", + "version": "3.5.0", "author": "Salesforce", "bugs": "https://github.com/forcedotcom/cli/issues", "dependencies": { From 967b1f769217addc7d368eea49d74d5852a30d2d Mon Sep 17 00:00:00 2001 From: Nicolas Kruk Date: Tue, 17 Jun 2025 14:02:46 -0400 Subject: [PATCH 3/5] chore(release): update 'latest' tag to v3.x (#427) --- .github/workflows/onRelease.yml | 2 +- .github/workflows/validate-pr.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/onRelease.yml b/.github/workflows/onRelease.yml index 73d510e9..057a9efc 100644 --- a/.github/workflows/onRelease.yml +++ b/.github/workflows/onRelease.yml @@ -48,7 +48,7 @@ jobs: #ctc: true sign: true # At CLCO, the new patch branch's version will be released as 'prerelease'. After R2b, delete the logic below for 'latest' and update 'prerelease' candidate to 'latest' - tag: ${{ needs.getDistTag.outputs.tag || (needs.getMajorVersion.outputs.major == '2' && 'latest') || (needs.getMajorVersion.outputs.major == '3' && 'prerelease') ||'next' }} + tag: ${{ needs.getDistTag.outputs.tag || (needs.getMajorVersion.outputs.major == '3' && 'latest') ||'next' }} githubTag: ${{ github.event.release.tag_name || inputs.tag }} secrets: inherit diff --git a/.github/workflows/validate-pr.yml b/.github/workflows/validate-pr.yml index 4fcb617b..9b91dd90 100644 --- a/.github/workflows/validate-pr.yml +++ b/.github/workflows/validate-pr.yml @@ -4,7 +4,7 @@ on: pull_request: types: [opened, reopened, edited] # only applies to PRs that want to merge to main - branches: [main, 252-patch, 254-patch] + branches: [main, 256-patch] jobs: pr-validation: From d253690c51fbacadfcef7a2168a851c7ee10798a Mon Sep 17 00:00:00 2001 From: Nicolas Kruk Date: Wed, 27 Aug 2025 13:18:07 -0400 Subject: [PATCH 4/5] fix: ensure 256 is published with latest tag @W-19436974 (#497) --- .github/workflows/onRelease.yml | 2 +- package.json | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/onRelease.yml b/.github/workflows/onRelease.yml index 057a9efc..3bc44ace 100644 --- a/.github/workflows/onRelease.yml +++ b/.github/workflows/onRelease.yml @@ -48,7 +48,7 @@ jobs: #ctc: true sign: true # At CLCO, the new patch branch's version will be released as 'prerelease'. After R2b, delete the logic below for 'latest' and update 'prerelease' candidate to 'latest' - tag: ${{ needs.getDistTag.outputs.tag || (needs.getMajorVersion.outputs.major == '3' && 'latest') ||'next' }} + tag: ${{ needs.getDistTag.outputs.tag || (needs.getMajorVersion.outputs.major == '3' && 'latest') || (needs.getMajorVersion.outputs.major == '4' && 'prerelease') || 'next' }} githubTag: ${{ github.event.release.tag_name || inputs.tag }} secrets: inherit diff --git a/package.json b/package.json index 17e60e57..f6a7ceaf 100644 --- a/package.json +++ b/package.json @@ -242,14 +242,18 @@ }, { "versionNumber": "63.0", - "tagName": "latest" + "tagName": "v2" }, { "versionNumber": "64.0", - "tagName": "prerelease" + "tagName": "latest" }, { "versionNumber": "65.0", + "tagName": "prerelease" + }, + { + "versionNumber": "66.0", "tagName": "next" } ] From e70732239bb807d9e22a5e97f25eba4bfe66a66b Mon Sep 17 00:00:00 2001 From: svc-cli-bot Date: Wed, 27 Aug 2025 17:19:15 +0000 Subject: [PATCH 5/5] chore(release): 3.5.1 [skip ci] --- CHANGELOG.md | 6 ++++++ README.md | 6 +++--- package.json | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e1495118..eb6fc457 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [3.5.1](https://github.com/salesforcecli/plugin-lightning-dev/compare/3.5.0...3.5.1) (2025-08-27) + +### Bug Fixes + +- ensure 256 is published with latest tag @W-19436974 ([#497](https://github.com/salesforcecli/plugin-lightning-dev/issues/497)) ([d253690](https://github.com/salesforcecli/plugin-lightning-dev/commit/d253690c51fbacadfcef7a2168a851c7ee10798a)) + # [3.5.0](https://github.com/salesforcecli/plugin-lightning-dev/compare/3.4.0...3.5.0) (2025-06-02) ### Features diff --git a/README.md b/README.md index b811a61d..9be9b98b 100644 --- a/README.md +++ b/README.md @@ -201,7 +201,7 @@ EXAMPLES $ sf lightning dev app --target-org myOrg --device-type ios --device-id "iPhone 15 Pro Max" ``` -_See code: [src/commands/lightning/dev/app.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/3.5.0/src/commands/lightning/dev/app.ts)_ +_See code: [src/commands/lightning/dev/app.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/3.5.1/src/commands/lightning/dev/app.ts)_ ## `sf lightning dev component` @@ -247,7 +247,7 @@ EXAMPLES $ sf lightning dev component --name myComponent ``` -_See code: [src/commands/lightning/dev/component.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/3.5.0/src/commands/lightning/dev/component.ts)_ +_See code: [src/commands/lightning/dev/component.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/3.5.1/src/commands/lightning/dev/component.ts)_ ## `sf lightning dev site` @@ -302,6 +302,6 @@ EXAMPLES $ sf lightning dev site --name "Partner Central" --target-org myOrg --get-latest ``` -_See code: [src/commands/lightning/dev/site.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/3.5.0/src/commands/lightning/dev/site.ts)_ +_See code: [src/commands/lightning/dev/site.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/3.5.1/src/commands/lightning/dev/site.ts)_ diff --git a/package.json b/package.json index f6a7ceaf..5bee616e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@salesforce/plugin-lightning-dev", "description": "Lightning development tools for LEX, Mobile, and Experience Sites", - "version": "3.5.0", + "version": "3.5.1", "author": "Salesforce", "bugs": "https://github.com/forcedotcom/cli/issues", "dependencies": {