summaryrefslogtreecommitdiff
path: root/packages/integrations/lit/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/lit/CHANGELOG.md')
-rw-r--r--packages/integrations/lit/CHANGELOG.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/packages/integrations/lit/CHANGELOG.md b/packages/integrations/lit/CHANGELOG.md
index c8a144453..354729d92 100644
--- a/packages/integrations/lit/CHANGELOG.md
+++ b/packages/integrations/lit/CHANGELOG.md
@@ -1,5 +1,15 @@
# @astrojs/lit
+## 0.2.0
+
+### Minor Changes
+
+- [#3625](https://github.com/withastro/astro/pull/3625) [`f5afaf24`](https://github.com/withastro/astro/commit/f5afaf24984ee7d4d6e908a7eeed17f5ca18c61e) Thanks [@matthewp](https://github.com/matthewp)! - Conform to Constructor based rendering
+
+ This changes `@astrojs/lit` to conform to the way rendering happens in all other frameworks. Instead of using the tag name `<my-element client:load>` you use the imported constructor function, `<MyElement client:load>` like you would do with any other framework.
+
+ Support for `tag-name` syntax had to be removed due to the fact that it was a runtime feature that was not statically analyzable. To improve build performance, we have removed all runtime based component discovery. Using the imported Constructor name allows Astro to discover what components need to be built and bundled for production without ever running your file.
+
## 0.1.5
### Patch Changes