Skip to content

chore(npm) Update NPM (major) - #122

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/major-npm
Open

renovate[bot] wants to merge 1 commit into
masterfrom
renovate/major-npm

Conversation

@renovate

@renovate renovate Bot commented Nov 4, 2025

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@lwc/compiler (source) ^8.20.1^9.0.0 age confidence
@lwc/engine-dom (source) ^8.20.1^9.0.0 age confidence
@lwc/engine-server (source) ^8.20.1^9.0.0 age confidence
@lwc/synthetic-shadow (source) ^8.20.1^9.0.0 age confidence
@trivago/prettier-plugin-sort-imports ^5.0.0^6.0.0 age confidence
eslint (source) ^9.0.0^10.0.0 age confidence
lint-staged ^16.0.0^17.0.0 age confidence
lwc (source) ^8.20.1^9.0.0 age confidence

Release Notes

salesforce/lwc (@​lwc/compiler)

v9.4.3

Compare Source

What's Changed

Full Changelog: salesforce/lwc@v9.4.2...v9.4.3

v9.4.2

Compare Source

What's Changed
New Contributors

Full Changelog: salesforce/lwc@v9.4.1...v9.4.2

v9.4.1

Compare Source

What's Changed

Full Changelog: salesforce/lwc@v9.4.0...v9.4.1

v9.4.0

Compare Source

What's Changed

Full Changelog: salesforce/lwc@v9.3.6...v9.4.0

v9.3.9

Compare Source

What's Changed

Full Changelog: salesforce/lwc@v9.3.8...v9.3.9

v9.3.8

Compare Source

What's Changed
  • feat(engine-core): invoke compiled template via intrinsic apply behind a flag (W-23790290) [winter27 backport] by @​jhefferman-sfdc in #​5899
  • feat(engine): opt-in hook for parseFragment static content (W-23814957) [winter27 backport] by @​jhefferman-sfdc in #​5898
  • fix(engine-dom): guard repeat rendererFactory invocations behind a flag (W-23814927) [winter27 backport] by @​jhefferman-sfdc in #​5897
  • fix(hydration): only hydrate components (W-23722850) [winter27 backport] by @​jhefferman-sfdc in #​5896
  • fix(engine-core): guard bridge element property accessors against non-public member access (W-23641816) [winter27 backport] by @​jhefferman-sfdc in #​5895

Full Changelog: salesforce/lwc@v9.3.7...v9.3.8

v9.3.7

Compare Source

What's Changed

Full Changelog: salesforce/lwc@v9.3.6...v9.3.7

v9.3.6

Compare Source

What's Changed

Full Changelog: salesforce/lwc@v9.3.5...v9.3.6

v9.3.5

Compare Source

What's Changed

Full Changelog: salesforce/lwc@v9.3.4...v9.3.5

v9.3.4

Compare Source

What's Changed
New Contributors

Full Changelog: salesforce/lwc@v9.2.2...v9.3.4

v9.2.2

Compare Source

What's Changed

Full Changelog: salesforce/lwc@v9.2.1...v9.2.2

v9.2.1

Compare Source

What's Changed

Full Changelog: salesforce/lwc@v9.2.0...v9.2.1

v9.2.0

Compare Source

What's Changed

Full Changelog: salesforce/lwc@v9.1.3...v9.2.0

v9.1.5

Compare Source

What's Changed

Full Changelog: salesforce/lwc@v9.1.4...v9.1.5

v9.1.4

Compare Source

What's Changed

Full Changelog: salesforce/lwc@v9.1.1...v9.1.4

v9.1.3

Compare Source

What's Changed

Full Changelog: salesforce/lwc@v9.1.2...v9.1.3

v9.1.2

Compare Source

What's Changed

Full Changelog: salesforce/lwc@v9.1.1...v9.1.2

v9.1.1

Compare Source

What's Changed
New Contributors

Full Changelog: salesforce/lwc@v9.1.0...v9.1.1

v9.1.0

Compare Source

What's Changed

Full Changelog: salesforce/lwc@v9.0.3...v9.1.0

v9.0.3

Compare Source

What's Changed

Full Changelog: salesforce/lwc@v9.0.2...v9.0.3

v9.0.2

Compare Source

What's Changed

New Contributors

Full Changelog: salesforce/lwc@v9.0.1...v9.0.2

v9.0.1

Compare Source

What's Changed

Full Changelog: salesforce/lwc@v9.0.0...v9.0.1

v9.0.0

Compare Source

Deprecations
  • @lwc/engine-server is deprecated and won't receive further updates. Consumers should update their code to use the replacement, @lwc/ssr-runtime.
Breaking Changes
  • The main export of each package is now ESM, rather than CommonJS.
    • Beginning with v9.0.3, for compatibility purposes a CJS bundle is published for each package in dist/index.cjs.
  • The experimentalDynamicComponent option in @lwc/compiler is renamed to dynamicImports, and is no longer experimental.
  • @lwc/babel-plugin-component no longer performs import deduplication, as rollup provides the same functionality.
    • This is not a breaking change for consumers of @lwc/rollup-plugin or components on the Salesforce platform. It only impacts direct consumers of @lwc/babel-plugin-component or @lwc/compiler.
  • The type definition for wire decorators is updated. The wire function now has three type parameters, rather than four. The Context parameter was not necessary, and has been removed. Additionally, invalid @wire usage now reports errors in the correct location. Some edge cases can result in false positive errors or false negatives.
    • Reactive properties in configs are type checked, but reactive property chains are not. For example, {id: "$bookId"} will be type checked, but {id: "$book.id"} will not (it will always be permitted).
    • Config values typed as string cannot provide type checking for reactive properties. For example, {str: "$notString"} will be permitted, even if notString is not a string property on the component.
    • To avoid unnecessarily large type unions, only objects can be used at the top level of a property chain. This excludes valid edge cases, like "$myString.length".
    • To avoid unnecessarily large type unions, properties from LightningElement are excluded. This excludes valid edge cases, like "$hostElement.childElementCount".
    • To avoid false positive errors, use a getter prop or a type assertion, such as "$myObj.myProp" as Component["myObj"]["myProp"].
    • For full details, view the pull request that introduced the change.
Other Changes
  • Packages now leverage engines.node to warn when using old versions of Node.js. The officially supported Node.js versions remain the LTS releases, currently v22 and v24.
  • Type definitions are now published using TypeScript v6.
  • All imports from Node's built-in modules now use the node: protocol.
Commits

Full Changelog: salesforce/lwc@v8.28.2...v9.0.0

v8.28.2

Compare Source

What's Changed

Full Changelog: salesforce/lwc@v8.28.1...v8.28.2

v8.28.1

Compare Source

What's Changed

Full Changelog: salesforce/lwc@v8.28.0...v8.28.1

v8.28.0

Compare Source

What's Changed
New Contributors

Full Changelog: salesforce/lwc@v8.27.0...v8.28.0

v8.27.0

Compare Source

What's Changed
New Contributors

Full Changelog: salesforce/lwc@v8.26.2...v8.27.0

v8.26.2

Compare Source

What's Changed

Full Changelog: salesforce/lwc@v8.26.1...v8.26.2

v8.26.1

Compare Source

What's Changed

Full Changelog: salesforce/lwc@v8.26.0...v8.26.1

v8.26.0

Compare Source

Full Changelog: salesforce/lwc@v8.25.0...v8.26.0

v8.25.1

Compare Source

What's Changed

Full Changelog: salesforce/lwc@v8.25.0...v8.25.1

v8.25.0

Compare Source

What's Changed

Important

✂ PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the chore label Nov 4, 2025
@renovate
renovate Bot force-pushed the renovate/major-npm branch 3 times, most recently from 6a26a60 to 8ea9b90 Compare January 7, 2026 10:13
@renovate
renovate Bot force-pushed the renovate/major-npm branch 2 times, most recently from 606aadc to 1d40c16 Compare January 23, 2026 18:56
@renovate
renovate Bot force-pushed the renovate/major-npm branch 2 times, most recently from d0ff3bf to f132573 Compare February 3, 2026 18:14
@renovate renovate Bot changed the title chore(npm) Update dependency @trivago/prettier-plugin-sort-imports to v6 chore(npm) Update NPM (major) Feb 3, 2026
@renovate
renovate Bot force-pushed the renovate/major-npm branch 4 times, most recently from 81123b4 to 27f68cd Compare February 12, 2026 11:55
@renovate
renovate Bot force-pushed the renovate/major-npm branch 3 times, most recently from 773eacf to 92cf519 Compare February 23, 2026 23:39
@renovate
renovate Bot force-pushed the renovate/major-npm branch 3 times, most recently from 671a121 to f3375a0 Compare March 7, 2026 01:50
@renovate
renovate Bot force-pushed the renovate/major-npm branch 2 times, most recently from 7e27ef3 to 95a6583 Compare March 13, 2026 13:26
@renovate
renovate Bot force-pushed the renovate/major-npm branch 3 times, most recently from 2c62bbe to 320b397 Compare March 27, 2026 13:26
@renovate
renovate Bot force-pushed the renovate/major-npm branch 2 times, most recently from 5a6eddc to a1c8fd4 Compare April 1, 2026 17:44
@renovate
renovate Bot force-pushed the renovate/major-npm branch 2 times, most recently from 8036e65 to 7d1d4c6 Compare April 8, 2026 20:37
@renovate
renovate Bot force-pushed the renovate/major-npm branch 2 times, most recently from e81e53d to efb7031 Compare April 16, 2026 12:01
@renovate
renovate Bot force-pushed the renovate/major-npm branch from 7286535 to 3861093 Compare June 2, 2026 01:09
@renovate
renovate Bot force-pushed the renovate/major-npm branch 2 times, most recently from 602159f to 9ffad03 Compare June 12, 2026 21:43
@renovate
renovate Bot force-pushed the renovate/major-npm branch 2 times, most recently from e395607 to e816f4c Compare June 26, 2026 22:39
@renovate
renovate Bot force-pushed the renovate/major-npm branch 4 times, most recently from 7eb7c97 to 6d75a97 Compare July 17, 2026 18:40
@renovate
renovate Bot force-pushed the renovate/major-npm branch 5 times, most recently from 0d0e164 to e594ba0 Compare July 24, 2026 18:10
@renovate
renovate Bot force-pushed the renovate/major-npm branch 2 times, most recently from 51240ee to b24b8e9 Compare July 31, 2026 10:52
@renovate
renovate Bot force-pushed the renovate/major-npm branch 4 times, most recently from b1b5d6c to 4243391 Compare August 12, 2026 18:09
@renovate
renovate Bot force-pushed the renovate/major-npm branch 2 times, most recently from b035d1e to 2f5bb8d Compare August 21, 2026 16:47
@renovate
renovate Bot force-pushed the renovate/major-npm branch 2 times, most recently from cba4575 to 4546f09 Compare August 26, 2026 12:00
@renovate
renovate Bot force-pushed the renovate/major-npm branch 4 times, most recently from 7ecd41f to 2e2a4c0 Compare September 4, 2026 19:09
@renovate
renovate Bot force-pushed the renovate/major-npm branch from 2e2a4c0 to 64fad41 Compare September 7, 2026 21:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants