Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/create-github-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
- 252-patch
- 254-patch
- 256-patch
- 258-patch
tags-ignore:
- '*'
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/onRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') || (needs.getMajorVersion.outputs.major == '4' && 'prerelease') || 'next' }}
githubTag: ${{ github.event.release.tag_name || inputs.tag }}

secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: tests
on:
push:
branches-ignore: [main, 252-patch, 254-patch, 256-patch]
branches-ignore: [main, 252-patch, 254-patch, 256-patch, 258-patch]
workflow_dispatch:

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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, 252-patch, 254-patch, 256-patch, 258-patch]

jobs:
pr-validation:
Expand Down
16 changes: 10 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"dependencies": {
"@inquirer/prompts": "^5.3.8",
"@inquirer/select": "^2.4.7",
"@lwc/lwc-dev-server": "~13.2.2",
"@lwc/sfdc-lwc-compiler": "~13.2.2",
"@lwc/lwc-dev-server": "~13.1.2",
"@lwc/sfdc-lwc-compiler": "~13.1.2",
"@lwrjs/api": "0.18.3",
"@oclif/core": "^4.5.0",
"@salesforce/core": "^8.21.2",
Expand All @@ -18,7 +18,7 @@
"axios": "^1.11.0",
"glob": "^10.4.5",
"lightning-base-components": "1.27.2-alpha",
"lwc": "~8.21.2",
"lwc": "~8.20.4",
"node-fetch": "^3.3.2",
"open": "^10.2.0",
"xml2js": "^0.6.2"
Expand Down Expand Up @@ -237,8 +237,8 @@
"The 'versionToTagMappings' section defines the mapping between released tags for our CLI plugin and the org version that each tag supports."
],
"target": {
"versionNumber": "66.0",
"matchingDevServerVersion": "~13.0.27"
"versionNumber": "65.0",
"matchingDevServerVersion": "~13.1.2"
},
"versionToTagMappings": [
{
Expand All @@ -247,10 +247,14 @@
},
{
"versionNumber": "63.0",
"tagName": "latest"
"tagName": "v2"
},
{
"versionNumber": "64.0",
"tagName": "latest"
},
{
"versionNumber": "65.0",
"tagName": "prerelease"
},
{
Expand Down
Loading
Loading