Skip to content

Latest commit

 

History

History
177 lines (108 loc) · 14.7 KB

CHANGELOG.md

File metadata and controls

177 lines (108 loc) · 14.7 KB

Change Log

1.1.7

Patch Changes

1.1.6

Patch Changes

  • #4481 1a1f3f0f - Provide better error message in createAttributeParts() when an error occurs due to hydration value mismatch.

1.1.5

Patch Changes

  • #4311 cabe72a8 - Update version range for lit dependency to include v2. This allows projects still on lit v2 to use this package without being forced to install lit v3.

  • #4312 26182733 - Avoid nullish logical assignment in hydrate-lit-html which some minification process would not handle correctly. Fixes hydration errors in Next.js production bundles.

1.1.4

Patch Changes

1.1.4-pre.1

Patch Changes

1.1.2-pre.0

Patch Changes

1.1.3

Patch Changes

1.1.2

Patch Changes

  • #3901 82e9f370 - Bump minimum version of lit-html dependency to 2.7.1 which includes needed shared internals.

1.1.1

Patch Changes

  • #3781 41b18f30 - Include node build output in npm package. Fixes "Cannot find module ... ssr-client/node/index.js" errors.

1.1.0

Minor Changes

  • #3720 575fb578 - lit-html/experimental-hydrate.js and lit-element/experimental-hydrate-support.js have been moved to @lit-labs/ssr-client.

    The modules in the original location have been marked deprecated and will be removed in a future version.

1.0.1

Patch Changes

  • #2410 b9a6962b - Correct the link path of CONTRIBUTING.md in README.md files

1.0.0

Patch Changes

  • #2103 15a8356d - Updates the exports field of package.json files to replace the subpath folder mapping syntax with an explicit list of all exported files.

    The /-suffixed syntax for subpath folder mapping originally used in these files is deprecated. Rather than update to the new syntax, this change replaces these mappings with individual entries for all exported files so that (a) users must import using extensions and (b) bundlers or other tools that don't resolve subpath folder mapping exactly as Node.js does won't break these packages' expectations around how they're imported.

  • #1942 c8fe1d4 - For minified class fields on classes in lit libraries, added prefix to stable properties to avoid collisions with user properties.
  • #2113 5b2f3642 - Dependency upgrades including TypeScript 4.4.2

1.0.0-rc.3

Patch Changes

  • #2103 15a8356d - Updates the exports field of package.json files to replace the subpath folder mapping syntax with an explicit list of all exported files.

    The /-suffixed syntax for subpath folder mapping originally used in these files is deprecated. Rather than update to the new syntax, this change replaces these mappings with individual entries for all exported files so that (a) users must import using extensions and (b) bundlers or other tools that don't resolve subpath folder mapping exactly as Node.js does won't break these packages' expectations around how they're imported.

  • #2113 5b2f3642 - Dependency upgrades including TypeScript 4.4.2

1.0.0-rc.2

Patch Changes

  • #1942 c8fe1d4 - For minified class fields on classes in lit libraries, added prefix to stable properties to avoid collisions with user properties.
  • Included development folder in release #1912.

Changes below were based on the Keep a Changelog format. All changes above are generated automatically by Changesets.


1.0.0-rc.1 - 2021-04-20

Changed

  • Updated dependencies.

1.0.0-pre.1 - 2021-03-31

Added

  • Adds renderLight directive, a child-position directive that invokes and renders the parent custom element's renderLight method as its value.