Skip to content

Commit d2013db

Browse files
committed
Merge branch 'master' of github.com-sujith:salesforce/lwc
2 parents e5e3549 + 04a8b6d commit d2013db

File tree

35 files changed

+967
-973
lines changed

35 files changed

+967
-973
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ updates:
99
directory: '/' # Location of package manifests
1010
schedule:
1111
interval: 'weekly'
12-
labels:
13-
- 'USER STORY'
1412
ignore:
1513
# As a library, we intentionally avoid updating TypeScript and @types/node so that we
1614
# don't accidentally use features from a version newer than our downstream users have installed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Label Dependabot PRs
2+
3+
on:
4+
pull_request:
5+
types: [opened]
6+
7+
jobs:
8+
label:
9+
if: github.actor == 'dependabot[bot]'
10+
runs-on: ubuntu-latest
11+
permissions:
12+
pull-requests: write
13+
steps:
14+
- name: Add label if missing
15+
uses: actions/github-script@v7
16+
with:
17+
script: |
18+
const label = 'USER STORY';
19+
const { data: labels } = await github.rest.issues.listLabelsOnIssue({
20+
owner: context.repo.owner,
21+
repo: context.repo.repo,
22+
issue_number: context.issue.number,
23+
});
24+
if (!labels.some(l => l.name === label)) {
25+
await github.rest.issues.addLabels({
26+
owner: context.repo.owner,
27+
repo: context.repo.repo,
28+
issue_number: context.issue.number,
29+
labels: [label],
30+
});
31+
}

.nucleus.yaml

Lines changed: 0 additions & 45 deletions
This file was deleted.

.strata.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
global:
2+
email-reply-to: raptorteam@salesforce.com
3+
preprocessor-tag: jenkins-sfci-sfci-managed-preprocessor-PR-6322-latest-itest
4+
5+
6+
stages:
7+
build:
8+
- npm-setup:
9+
yarn-modern: true
10+
- step:
11+
name: yarn-build
12+
image: docker.repo.local.sfdc.net/sfci/docker-images/sfdc_rhel9_nodejs20/sfdc_rhel9_nodejs20_build:latest
13+
commands:
14+
- yarn install
15+
- yarn build
16+
- yarn test
17+
integration-test:
18+
- downstream-dependency:
19+
downstream-repos:
20+
- repo-url: https://github.com/salesforce-experience-platform-emu/lwc-platform
21+
branches:
22+
- master
23+
packages-to-test:
24+
npm:
25+
- "@lwc/aria-reflection"
26+
- "@lwc/babel-plugin-component"
27+
- "@lwc/compiler"
28+
- "@lwc/engine-core"
29+
- "@lwc/engine-dom"
30+
- "@lwc/errors"
31+
- "@lwc/features"
32+
- "@lwc/module-resolver"
33+
- "@lwc/rollup-plugin"
34+
- "@lwc/shared"
35+
- "@lwc/signals"
36+
- "@lwc/ssr-client-utils"
37+
- "@lwc/ssr-compiler"
38+
- "@lwc/ssr-runtime"
39+
- "@lwc/style-compiler"
40+
- "@lwc/synthetic-shadow"
41+
- "@lwc/template-compiler"
42+
- "@lwc/types"
43+
- "@lwc/wire-service"
44+

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lwc-monorepo",
3-
"version": "9.0.1",
3+
"version": "9.0.3",
44
"private": true,
55
"description": "Lightning Web Components",
66
"repository": {
@@ -36,45 +36,45 @@
3636
"release:publish:canary": "nx release publish --registry https://registry.npmjs.org --tag canary"
3737
},
3838
"devDependencies": {
39-
"@commitlint/cli": "^20.4.0",
39+
"@commitlint/cli": "^20.4.2",
4040
"@eslint/js": "9.39.2",
4141
"@lwc/eslint-plugin-lwc-internal": "link:./scripts/eslint-plugin",
4242
"@lwc/test-utils-lwc-internals": "link:./scripts/test-utils",
43-
"@nx/js": "22.4.4",
43+
"@nx/js": "22.5.3",
4444
"@rollup/plugin-commonjs": "^29.0.0",
4545
"@rollup/plugin-inject": "^5.0.5",
4646
"@rollup/plugin-node-resolve": "^16.0.3",
4747
"@rollup/plugin-replace": "^6.0.3",
4848
"@rollup/plugin-typescript": "^12.3.0",
4949
"@swc-node/register": "~1.11.1",
50-
"@swc/core": "~1.15.11",
51-
"@swc/helpers": "~0.5.18",
50+
"@swc/core": "~1.15.17",
51+
"@swc/helpers": "~0.5.19",
5252
"@types/babel__core": "^7.20.5",
5353
"@types/node": "^22.19.5",
5454
"@vitest/coverage-v8": "4.0.18",
55-
"@vitest/eslint-plugin": "1.6.6",
55+
"@vitest/eslint-plugin": "1.6.9",
5656
"@vitest/spy": "4.0.18",
5757
"@vitest/ui": "4.0.18",
5858
"bytes": "^3.1.2",
5959
"es-module-lexer": "^2.0.0",
6060
"eslint": "9.39.2",
61-
"eslint-config-flat-gitignore": "^2.1.0",
61+
"eslint-config-flat-gitignore": "^2.2.1",
6262
"eslint-plugin-header": "^3.1.1",
6363
"eslint-plugin-import": "^2.32.0",
64-
"glob": "^13.0.0",
64+
"glob": "^13.0.6",
6565
"globals": "^17.3.0",
6666
"husky": "^9.1.7",
6767
"isbinaryfile": "^6.0.0",
68-
"jsdom": "^27.4.0",
69-
"lint-staged": "^16.2.7",
68+
"jsdom": "^28.1.0",
69+
"lint-staged": "^16.3.0",
7070
"magic-string": "^0.30.21",
71-
"nx": "22.4.4",
71+
"nx": "22.5.3",
7272
"prettier": "^3.8.1",
73-
"rollup": "^4.57.1",
73+
"rollup": "^4.59.0",
7474
"terser": "^5.46.0",
7575
"tslib": "^2.8.1",
7676
"typescript": "6.0.0-dev.20260112",
77-
"typescript-eslint": "8.54.0",
77+
"typescript-eslint": "8.56.1",
7878
"vitest": "4.0.18"
7979
},
8080
"lint-staged": {

packages/@lwc/aria-reflection/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
55
],
66
"name": "@lwc/aria-reflection",
7-
"version": "9.0.1",
7+
"version": "9.0.3",
88
"description": "ARIA element reflection polyfill for strings",
99
"keywords": [
1010
"aom",
@@ -38,6 +38,7 @@
3838
"types": "dist/index.d.ts",
3939
"files": [
4040
"dist/**/*.js",
41+
"dist/**/*.cjs",
4142
"dist/**/*.d.ts"
4243
],
4344
"scripts": {

packages/@lwc/babel-plugin-component/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
55
],
66
"name": "@lwc/babel-plugin-component",
7-
"version": "9.0.1",
7+
"version": "9.0.3",
88
"description": "Babel plugin to transform a LWC module",
99
"keywords": [
1010
"lwc"
@@ -34,6 +34,7 @@
3434
"types": "dist/index.d.ts",
3535
"files": [
3636
"dist/**/*.js",
37+
"dist/**/*.cjs",
3738
"dist/**/*.d.ts"
3839
],
3940
"scripts": {
@@ -51,8 +52,8 @@
5152
},
5253
"dependencies": {
5354
"@babel/helper-module-imports": "7.28.6",
54-
"@lwc/errors": "9.0.1",
55-
"@lwc/shared": "9.0.1",
55+
"@lwc/errors": "9.0.3",
56+
"@lwc/shared": "9.0.3",
5657
"line-column": "~1.0.2"
5758
},
5859
"devDependencies": {

packages/@lwc/compiler/package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
55
],
66
"name": "@lwc/compiler",
7-
"version": "9.0.1",
7+
"version": "9.0.3",
88
"description": "LWC compiler",
99
"keywords": [
1010
"lwc"
@@ -34,6 +34,7 @@
3434
"types": "dist/index.d.ts",
3535
"files": [
3636
"dist/**/*.js",
37+
"dist/**/*.cjs",
3738
"dist/**/*.d.ts"
3839
],
3940
"scripts": {
@@ -56,11 +57,11 @@
5657
"@babel/plugin-transform-class-properties": "7.28.6",
5758
"@babel/plugin-transform-object-rest-spread": "7.28.6",
5859
"@locker/babel-plugin-transform-unforgeables": "0.22.0",
59-
"@lwc/babel-plugin-component": "9.0.1",
60-
"@lwc/errors": "9.0.1",
61-
"@lwc/shared": "9.0.1",
62-
"@lwc/ssr-compiler": "9.0.1",
63-
"@lwc/style-compiler": "9.0.1",
64-
"@lwc/template-compiler": "9.0.1"
60+
"@lwc/babel-plugin-component": "9.0.3",
61+
"@lwc/errors": "9.0.3",
62+
"@lwc/shared": "9.0.3",
63+
"@lwc/ssr-compiler": "9.0.3",
64+
"@lwc/style-compiler": "9.0.3",
65+
"@lwc/template-compiler": "9.0.3"
6566
}
6667
}

packages/@lwc/engine-core/package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
55
],
66
"name": "@lwc/engine-core",
7-
"version": "9.0.1",
7+
"version": "9.0.3",
88
"description": "Core LWC engine APIs.",
99
"keywords": [
1010
"lwc"
@@ -34,6 +34,7 @@
3434
"types": "dist/index.d.ts",
3535
"files": [
3636
"dist/**/*.js",
37+
"dist/**/*.cjs",
3738
"dist/**/*.d.ts"
3839
],
3940
"scripts": {
@@ -50,9 +51,9 @@
5051
}
5152
},
5253
"dependencies": {
53-
"@lwc/features": "9.0.1",
54-
"@lwc/shared": "9.0.1",
55-
"@lwc/signals": "9.0.1"
54+
"@lwc/features": "9.0.3",
55+
"@lwc/shared": "9.0.3",
56+
"@lwc/signals": "9.0.3"
5657
},
5758
"devDependencies": {
5859
"observable-membrane": "2.0.0"

packages/@lwc/engine-dom/package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
55
],
66
"name": "@lwc/engine-dom",
7-
"version": "9.0.1",
7+
"version": "9.0.3",
88
"description": "Renders LWC components in a DOM environment.",
99
"keywords": [
1010
"lwc"
@@ -34,6 +34,7 @@
3434
"types": "dist/index.d.ts",
3535
"files": [
3636
"dist/**/*.js",
37+
"dist/**/*.cjs",
3738
"dist/**/*.d.ts"
3839
],
3940
"scripts": {
@@ -50,10 +51,10 @@
5051
}
5152
},
5253
"devDependencies": {
53-
"@lwc/engine-core": "9.0.1",
54-
"@lwc/shared": "9.0.1",
55-
"@lwc/features": "9.0.1",
56-
"@lwc/signals": "9.0.1"
54+
"@lwc/engine-core": "9.0.3",
55+
"@lwc/shared": "9.0.3",
56+
"@lwc/features": "9.0.3",
57+
"@lwc/signals": "9.0.3"
5758
},
5859
"lwc": {
5960
"modules": [

0 commit comments

Comments
 (0)