Skip to content

Releases: salesforce/lwc

v6.6.3

08 May 19:04
d52d036
Compare
Choose a tag to compare

What's Changed

Full Changelog: v6.6.2...v6.6.3

v6.6.2

03 May 18:01
28ab9d0
Compare
Choose a tag to compare

What's Changed

  • chore(scripts): separate license generation from build script by @wjhsf in #4191
  • test: fix @lwc/engine-server circular dependency warning by @jmsjtu in #4194
  • test: fix @lwc/engine-server test fixtures for attribute ordering by @jmsjtu in #4193
  • chore: release v6.6.2 by @ekashida in #4197

Full Changelog: v6.6.1...v6.6.2

v6.6.1

01 May 18:15
cab5e41
Compare
Choose a tag to compare

What's Changed

Full Changelog: v6.6.0...v6.6.1

v6.6.0

29 Apr 16:28
3887dc1
Compare
Choose a tag to compare

What's Changed

Full Changelog: v6.5.3...v6.6.0

v6.5.3

23 Apr 00:28
06b03ba
Compare
Choose a tag to compare

What's Changed

Full Changelog: v6.5.2...v6.5.3

v6.5.2

17 Apr 17:53
8b2d133
Compare
Choose a tag to compare

What's Changed

  • fix(types): properly type check unbound array methods @W-15336947 by @wjhsf in #4101
  • build(deps-dev): bump the theoretically-non-breaking group with 9 updates by @dependabot in #4148
  • feat: exports HMR stubs from engine-server by @rax-it in #4152
  • chore: add Winter 25 API version, rebalance Karma tests by @nolanlawson in #4043
  • chore: release v6.5.2 by @rax-it in #4157
  • chore: release v6.5.2 by @rax-it in #4158

Full Changelog: v6.5.1...v6.5.2

v6.5.1

11 Apr 22:23
4cac8a2
Compare
Choose a tag to compare

What's Changed

Full Changelog: v6.5.0...v6.5.1

v6.5.0

30 Mar 00:22
8a0f98f
Compare
Choose a tag to compare

What's Changed

Full Changelog: v6.4.1...v6.5.0

v6.4.1

28 Mar 18:27
27cd262
Compare
Choose a tag to compare

What's Changed

  • fix: move UpgradableConstructor back into createUpgradableConstructor by @jmsjtu in #4110

Full Changelog: v6.4.0...v6.4.1

v6.4.0

28 Mar 00:02
cc75ef4
Compare
Choose a tag to compare

Observable changes

HTML elements with class and style attributes may render with additional whitespace. This is due to an optimization to improve the render time of Lightning Web Components.

This change is exactly the same as what we've reported in previous releases, and can be fixed by avoiding anti-patterns for styling components. E.g.:

/* Don’t do this */
document.querySelector('[class="highlight yellow"]');
/* Do this instead */
document.querySelector(".highlight.yellow");

The difference now is that this change may be seen in more components than before.

What's Changed

Full Changelog: v6.3.4...v6.4.0