Skip to content

@lit-labs/ssr@1.0.0

Compare
Choose a tag to compare
@kevinpschaaf kevinpschaaf released this 21 Sep 01:35
· 1177 commits to main since this release
4d402e8

Patch Changes

  • #2034 5768cc60 - Reverts the change in Lit 2 to pause ReactiveElement's update cycle while the element is disconnected. The update cycle for elements will now run while disconnected as in Lit 1, however AsyncDirectives must now check the this.isConnected flag during update to ensure that e.g. subscriptions that could lead to memory leaks are not made when AsyncDirectives update while disconnected.
  • #2113 5b2f3642 - Dependency upgrades including TypeScript 4.4.2
  • #2141 d8ff5901 - Add LICENSE files to public packages without one.
  • #2120 2043eb0f - Don't assign DOM shim window.global (and hence globalThis.global) to window

    This means that globalThis.global will retain its Node built-ins, whereas
    before it would lose anything we didn't explicitly set on window.

    Fixes #2118

  • #1881 a83f616 - Add demo for using global DOM shim instead of isolated VM contexts