Skip to content

Commit c4d1276

Browse files
authored
Merge branch '258-patch' into prereleaseCodeBuilder
2 parents a619436 + 49ce13f commit c4d1276

8 files changed

Lines changed: 186 additions & 476 deletions

File tree

.github/workflows/create-github-release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
- 252-patch
99
- 254-patch
1010
- 256-patch
11+
- 258-patch
1112
tags-ignore:
1213
- '*'
1314
workflow_dispatch:

.github/workflows/onRelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
#ctc: true
4949
sign: true
5050
# 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'
51-
tag: ${{ needs.getDistTag.outputs.tag || (needs.getMajorVersion.outputs.major == '2' && 'latest') || (needs.getMajorVersion.outputs.major == '3' && 'prerelease') ||'next' }}
51+
tag: ${{ needs.getDistTag.outputs.tag || (needs.getMajorVersion.outputs.major == '3' && 'latest') || (needs.getMajorVersion.outputs.major == '4' && 'prerelease') || 'next' }}
5252
githubTag: ${{ github.event.release.tag_name || inputs.tag }}
5353

5454
secrets: inherit

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: tests
22
on:
33
push:
4-
branches-ignore: [main, 252-patch, 254-patch, 256-patch]
4+
branches-ignore: [main, 252-patch, 254-patch, 256-patch, 258-patch]
55
workflow_dispatch:
66

77
jobs:

.github/workflows/validate-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
pull_request:
55
types: [opened, reopened, edited]
66
# only applies to PRs that want to merge to main
7-
branches: [main, 252-patch, 254-patch]
7+
branches: [main, 252-patch, 254-patch, 256-patch, 258-patch]
88

99
jobs:
1010
pr-validation:

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## [4.4.13](https://github.com/salesforcecli/plugin-lightning-dev/compare/4.4.12...4.4.13) (2025-08-27)
2+
3+
### Bug Fixes
4+
5+
- 258-patch dependencies ([#493](https://github.com/salesforcecli/plugin-lightning-dev/issues/493)) ([6f34efb](https://github.com/salesforcecli/plugin-lightning-dev/commit/6f34efbee5fe588c95fada86af5ae233205e59dd))
6+
- **deps:** bump @lwc/lwc-dev-server from 13.0.32 to 13.2.1 ([#479](https://github.com/salesforcecli/plugin-lightning-dev/issues/479)) ([f4a77d2](https://github.com/salesforcecli/plugin-lightning-dev/commit/f4a77d24b26ee280ee7e93e51ea960af7dedfcea))
7+
- **deps:** bump @lwc/lwc-dev-server from 13.2.1 to 13.2.2 ([#489](https://github.com/salesforcecli/plugin-lightning-dev/issues/489)) ([47589f8](https://github.com/salesforcecli/plugin-lightning-dev/commit/47589f8750a329af9c6baa82b9377c176f5213dc))
8+
- **deps:** bump @lwc/sfdc-lwc-compiler from 13.0.32 to 13.2.2 ([#487](https://github.com/salesforcecli/plugin-lightning-dev/issues/487)) ([916b13d](https://github.com/salesforcecli/plugin-lightning-dev/commit/916b13d7a62ccae6219c44af3283eb85fda0dc42))
9+
- **deps:** bump @salesforce/core from 8.19.1 to 8.21.2 ([#488](https://github.com/salesforcecli/plugin-lightning-dev/issues/488)) ([8336604](https://github.com/salesforcecli/plugin-lightning-dev/commit/83366048c681b697ea68a260a94c5977796519b0))
10+
- **deps:** bump lwc from 8.20.4 to 8.21.2 ([#486](https://github.com/salesforcecli/plugin-lightning-dev/issues/486)) ([0f95ebd](https://github.com/salesforcecli/plugin-lightning-dev/commit/0f95ebda44e8da7ce40c50d4604ecd398a233220))
11+
112
## [4.4.12](https://github.com/salesforcecli/plugin-lightning-dev/compare/4.4.11...4.4.12) (2025-08-10)
213

314
### Bug Fixes

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ EXAMPLES
201201
$ sf lightning dev app --target-org myOrg --device-type ios --device-id "iPhone 15 Pro Max"
202202
```
203203

204-
_See code: [src/commands/lightning/dev/app.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/4.4.13-codebuilder.6/src/commands/lightning/dev/app.ts)_
204+
_See code: [src/commands/lightning/dev/app.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/4.4.13/src/commands/lightning/dev/app.ts)_
205205

206206
## `sf lightning dev component`
207207

@@ -249,7 +249,7 @@ EXAMPLES
249249
$ sf lightning dev component --name myComponent
250250
```
251251

252-
_See code: [src/commands/lightning/dev/component.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/4.4.13-codebuilder.6/src/commands/lightning/dev/component.ts)_
252+
_See code: [src/commands/lightning/dev/component.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/4.4.13/src/commands/lightning/dev/component.ts)_
253253

254254
## `sf lightning dev site`
255255

@@ -305,6 +305,6 @@ EXAMPLES
305305
$ sf lightning dev site --name "Partner Central" --target-org myOrg --get-latest
306306
```
307307

308-
_See code: [src/commands/lightning/dev/site.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/4.4.13-codebuilder.6/src/commands/lightning/dev/site.ts)_
308+
_See code: [src/commands/lightning/dev/site.ts](https://github.com/salesforcecli/plugin-lightning-dev/blob/4.4.13/src/commands/lightning/dev/site.ts)_
309309

310310
<!-- commandsstop -->

package.json

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@salesforce/plugin-lightning-dev",
33
"description": "Lightning development tools for LEX, Mobile, and Experience Sites",
4-
"version": "4.4.13-codebuilder.6",
4+
"version": "4.4.13",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"dependencies": {
@@ -11,22 +11,22 @@
1111
"@lwc/sfdc-lwc-compiler": "~13.1.5-alpha.1+9de6b34",
1212
"@lwrjs/api": "0.18.3",
1313
"@oclif/core": "^4.5.0",
14-
"@salesforce/core": "^8.19.1",
14+
"@salesforce/core": "^8.21.2",
1515
"@salesforce/kit": "^3.1.6",
1616
"@salesforce/lwc-dev-mobile-core": "4.0.0-alpha.12",
1717
"@salesforce/sf-plugins-core": "^11.2.4",
1818
"axios": "^1.11.0",
1919
"glob": "^10.4.5",
2020
"lightning-base-components": "1.27.2-alpha",
21-
"lwc": "~8.21.2",
21+
"lwc": "~8.20.4",
2222
"node-fetch": "^3.3.2",
2323
"open": "^10.2.0",
2424
"xml2js": "^0.6.2"
2525
},
2626
"devDependencies": {
2727
"@oclif/plugin-command-snapshot": "^5.3.5",
2828
"@salesforce/cli-plugins-testkit": "^5.3.39",
29-
"@salesforce/dev-scripts": "^11.0.2",
29+
"@salesforce/dev-scripts": "^11.0.3",
3030
"@salesforce/plugin-command-reference": "^3.1.65",
3131
"@types/node-fetch": "^2.6.13",
3232
"@types/xml2js": "^0.4.14",
@@ -36,7 +36,7 @@
3636
"eslint-config-prettier": "^9.1.2",
3737
"eslint-plugin-header": "^3.1.1",
3838
"eslint-plugin-jsdoc": "^46.10.1",
39-
"eslint-plugin-sf-plugin": "^1.20.30",
39+
"eslint-plugin-sf-plugin": "^1.20.31",
4040
"eslint-plugin-unicorn": "^50.0.1",
4141
"esmock": "^2.7.1",
4242
"oclif": "^4.22.11",
@@ -247,10 +247,14 @@
247247
},
248248
{
249249
"versionNumber": "63.0",
250-
"tagName": "latest"
250+
"tagName": "v2"
251251
},
252252
{
253253
"versionNumber": "64.0",
254+
"tagName": "latest"
255+
},
256+
{
257+
"versionNumber": "65.0",
254258
"tagName": "prerelease"
255259
},
256260
{

0 commit comments

Comments
 (0)