From 0fff6490d1d450644780c3ec4ad6477c250d1a4a Mon Sep 17 00:00:00 2001 From: Nicolas Kruk Date: Mon, 2 Jun 2025 15:15:53 -0400 Subject: [PATCH 1/2] feat!: new major release - v4.0.0 --- .github/workflows/create-github-release.yml | 1 + .github/workflows/onRelease.yml | 2 +- .github/workflows/test.yml | 2 +- package.json | 10 +++++++--- 4 files changed, 10 insertions(+), 5 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..91d0226f 100644 --- a/package.json +++ b/package.json @@ -232,20 +232,24 @@ "The 'versionToTagMappings' section defines the mapping between released tags for our CLI plugin and the org version that each tag supports." ], "target": { - "versionNumber": "64.0", + "versionNumber": "65.0", "matchingDevServerVersion": "~12.3.4" }, "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 548d777f299a396d9a657b7e57500a7e32d94a92 Mon Sep 17 00:00:00 2001 From: Nicolas Kruk Date: Mon, 2 Jun 2025 15:22:32 -0400 Subject: [PATCH 2/2] fix: patch version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 91d0226f..ad4672a7 100644 --- a/package.json +++ b/package.json @@ -232,7 +232,7 @@ "The 'versionToTagMappings' section defines the mapping between released tags for our CLI plugin and the org version that each tag supports." ], "target": { - "versionNumber": "65.0", + "versionNumber": "64.0", "matchingDevServerVersion": "~12.3.4" }, "versionToTagMappings": [