Skip to content

Commit 41ab4c4

Browse files
lit-robotaomarks
andauthored
Version Packages (lit#3184)
Co-authored-by: Alexander Marks <[email protected]>
1 parent 2674a74 commit 41ab4c4

33 files changed

+111
-90
lines changed

.changeset/curly-cars-peel.md

-6
This file was deleted.

.changeset/forty-bats-draw.md

-2
This file was deleted.

.changeset/forty-bobcats-sneeze.md

-7
This file was deleted.

.changeset/four-rocks-pretend.md

-5
This file was deleted.

.changeset/hip-eels-ring.md

-5
This file was deleted.

.changeset/mean-toes-cry.md

-5
This file was deleted.

.changeset/nine-socks-rhyme.md

-2
This file was deleted.

.changeset/old-tables-own.md

-6
This file was deleted.

.changeset/perfect-nails-smoke.md

-6
This file was deleted.

.changeset/shy-wasps-exercise.md

-5
This file was deleted.

.changeset/spotty-ducks-compete.md

-2
This file was deleted.

.changeset/tall-mirrors-notice.md

-7
This file was deleted.

.changeset/twelve-lobsters-join.md

-5
This file was deleted.

.changeset/warm-mayflies-know.md

-2
This file was deleted.

.changeset/wild-ladybugs-flash.md

-5
This file was deleted.

packages/labs/eleventy-plugin-lit/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @lit-labs/eleventy-plugin-lit
22

3+
## 0.2.3
4+
5+
### Patch Changes
6+
7+
- [#3203](https://github.com/lit/lit/pull/3203) [`23462312`](https://github.com/lit/lit/commit/234623129990c19c535eb36d2bcab38f3842ff82) - Use file urls for resolved module paths for Windows compatibility
8+
9+
- Updated dependencies [[`daddeb34`](https://github.com/lit/lit/commit/daddeb346a2f454b25a6a5d1722683197f25fbcd), [`6361a4b4`](https://github.com/lit/lit/commit/6361a4b4a589465cf6836c8454ed8ca4521d7b4d), [`ae6f6808`](https://github.com/lit/lit/commit/ae6f6808f539254b72ec7efcff34b812173abe64)]:
10+
11+
312
## 0.2.2
413

514
### Patch Changes

packages/labs/eleventy-plugin-lit/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lit-labs/eleventy-plugin-lit",
3-
"version": "0.2.2",
3+
"version": "0.2.3",
44
"description": "Eleventy plugin for rendering Lit components.",
55
"author": "Google LLC",
66
"license": "BSD-3-Clause",
@@ -91,7 +91,7 @@
9191
},
9292
"dependencies": {
9393
"@lit-labs/ssr": "^2.0.1",
94-
"lit": "^2.0.2"
94+
"lit": "^2.3.0"
9595
},
9696
"devDependencies": {
9797
"@11ty/eleventy": "^1.0.0",

packages/labs/react/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## 1.0.8
4+
5+
### Patch Changes
6+
7+
- [#2800](https://github.com/lit/lit/pull/2800) [`043d9c80`](https://github.com/lit/lit/commit/043d9c80de59177335fa6543d5654e0295f5a743) - Support setting custom accessors by using an 'in' check instead of a for/in loop to check for properties.
8+
39
## 1.0.7
410

511
### Patch Changes

packages/labs/react/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lit-labs/react",
3-
"version": "1.0.7",
3+
"version": "1.0.8",
44
"description": "A React component wrapper for web components.",
55
"license": "BSD-3-Clause",
66
"homepage": "https://lit.dev/",
@@ -137,7 +137,7 @@
137137
},
138138
"author": "Google LLC",
139139
"devDependencies": {
140-
"@lit/reactive-element": "^1.0.0",
140+
"@lit/reactive-element": "^1.4.0",
141141
"@types/react": "^17.0.0",
142142
"@types/react-dom": "^17.0.0",
143143
"@types/trusted-types": "^2.0.2",

packages/labs/ssr/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Change Log
22

3+
## 2.2.3
4+
5+
### Patch Changes
6+
7+
- [#3187](https://github.com/lit/lit/pull/3187) [`84437af6`](https://github.com/lit/lit/commit/84437af6826a5cdb61c383c3034a0e4150e8e50f) - When using `renderModule`, `URL` and `URLSearchParams` are now available in global of the VM module context
8+
9+
- [#3204](https://github.com/lit/lit/pull/3204) [`19d7bd25`](https://github.com/lit/lit/commit/19d7bd255987cfeac2d8dfa9f9d04d2378568535) - Use `url` module to parse file URL to path for Windows compatibility
10+
11+
- Updated dependencies [[`daddeb34`](https://github.com/lit/lit/commit/daddeb346a2f454b25a6a5d1722683197f25fbcd), [`0725fdb4`](https://github.com/lit/lit/commit/0725fdb4dd7d36e3a7154830c41b9af4cf866e52), [`3766ae4c`](https://github.com/lit/lit/commit/3766ae4c35edf794aa30ee2d738c6f63fdda44e5), [`6361a4b4`](https://github.com/lit/lit/commit/6361a4b4a589465cf6836c8454ed8ca4521d7b4d), [`ae6f6808`](https://github.com/lit/lit/commit/ae6f6808f539254b72ec7efcff34b812173abe64)]:
12+
13+
14+
- @lit/reactive-element@1.4.0
15+
316
## 2.2.2
417

518
### Patch Changes

packages/labs/ssr/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@lit-labs/ssr",
33
"type": "module",
4-
"version": "2.2.2",
4+
"version": "2.2.3",
55
"publishConfig": {
66
"access": "public"
77
},
@@ -149,11 +149,11 @@
149149
},
150150
"dependencies": {
151151
"@lit-labs/ssr-client": "^1.0.0",
152-
"@lit/reactive-element": "^1.1.0",
152+
"@lit/reactive-element": "^1.4.0",
153153
"@types/node": "^16.0.0",
154-
"lit": "^2.1.0",
154+
"lit": "^2.3.0",
155155
"lit-element": "^3.1.0",
156-
"lit-html": "^2.1.0",
156+
"lit-html": "^2.3.0",
157157
"node-fetch": "^3.2.8",
158158
"parse5": "^6.0.1",
159159
"resolve": "^1.10.1"

packages/labs/testing/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @lit-labs/testing
22

3+
## 0.1.1
4+
5+
### Patch Changes
6+
7+
- [#3175](https://github.com/lit/lit/pull/3175) [`27e08e5d`](https://github.com/lit/lit/commit/27e08e5d71af85fb5e38bbd968d7a7cb14c12193) - Make resolved paths sent to worker be file urls. Fixes incompatibility with Windows filepaths.
8+
9+
- [#3198](https://github.com/lit/lit/pull/3198) [`0162fbad`](https://github.com/lit/lit/commit/0162fbad61826ba0ff4188135ca4ab778762c4d7) - TS sources are now inlined in the JS source maps
10+
11+
- Updated dependencies [[`daddeb34`](https://github.com/lit/lit/commit/daddeb346a2f454b25a6a5d1722683197f25fbcd), [`6361a4b4`](https://github.com/lit/lit/commit/6361a4b4a589465cf6836c8454ed8ca4521d7b4d), [`ae6f6808`](https://github.com/lit/lit/commit/ae6f6808f539254b72ec7efcff34b812173abe64)]:
12+
13+
314
## 0.1.0
415

516
### Minor Changes

packages/labs/testing/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lit-labs/testing",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"publishConfig": {
55
"access": "public"
66
},
@@ -83,7 +83,7 @@
8383
"@lit-labs/ssr": "^2.2.0",
8484
"@web/test-runner-commands": "^0.6.1",
8585
"@webcomponents/template-shadowroot": "^0.1.0",
86-
"lit": "^2.2.5"
86+
"lit": "^2.3.0"
8787
},
8888
"devDependencies": {
8989
"@open-wc/testing": "^3.1.5"

packages/lit-html/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Change Log
22

3+
## 2.3.0
4+
5+
### Minor Changes
6+
7+
- [#3156](https://github.com/lit/lit/pull/3156) [`ae6f6808`](https://github.com/lit/lit/commit/ae6f6808f539254b72ec7efcff34b812173abe64) - Lit and its underlying libraries can now be imported directly from Node without crashing, without the need to load the @lit-labs/ssr dom-shim library. Note that actually rendering from a Node context still requires the @lit-labs/ssr dom-shim, and the appropriate integration between @lit-labs/ssr and your framework/tool.
8+
9+
### Patch Changes
10+
11+
- [#3003](https://github.com/lit/lit/pull/3003) [`daddeb34`](https://github.com/lit/lit/commit/daddeb346a2f454b25a6a5d1722683197f25fbcd) - Lit's `async-directive` now re-exports everything from the `directive` module.
12+
13+
- [#3199](https://github.com/lit/lit/pull/3199) [`0725fdb4`](https://github.com/lit/lit/commit/0725fdb4dd7d36e3a7154830c41b9af4cf866e52) - In DEV_MODE, render a warning instead of rendering a template's host in the template.
14+
15+
Most commonly this would happen when rendering `${this}` in a LitElement's template, which has the counterintuitive behavior of removing the element from the DOM, because when rendering the element's template we attach it into its own shadow root, which removes it from the DOM, causing it simply disappear. This is especially problematic with a fast HMR system.
16+
17+
- [#3186](https://github.com/lit/lit/pull/3186) [`3766ae4c`](https://github.com/lit/lit/commit/3766ae4c35edf794aa30ee2d738c6f63fdda44e5) - `StaticValue` interface type is now exported.
18+
319
## 2.2.7
420

521
### Patch Changes

packages/lit-html/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lit-html",
3-
"version": "2.2.7",
3+
"version": "2.3.0",
44
"description": "HTML templates literals in JavaScript",
55
"license": "BSD-3-Clause",
66
"repository": {

packages/lit-html/src/lit-html.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2177,7 +2177,7 @@ polyfillSupport?.(Template, ChildPart);
21772177

21782178
// IMPORTANT: do not change the property name or the assignment expression.
21792179
// This line will be used in regexes to search for lit-html usage.
2180-
(global.litHtmlVersions ??= []).push('2.2.7');
2180+
(global.litHtmlVersions ??= []).push('2.3.0');
21812181
if (DEV_MODE && global.litHtmlVersions.length > 1) {
21822182
issueWarning!(
21832183
'multiple-versions',

packages/lit/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Change Log
22

3+
## 2.3.0
4+
5+
### Minor Changes
6+
7+
- [#3156](https://github.com/lit/lit/pull/3156) [`ae6f6808`](https://github.com/lit/lit/commit/ae6f6808f539254b72ec7efcff34b812173abe64) - Lit and its underlying libraries can now be imported directly from Node without crashing, without the need to load the @lit-labs/ssr dom-shim library. Note that actually rendering from a Node context still requires the @lit-labs/ssr dom-shim, and the appropriate integration between @lit-labs/ssr and your framework/tool.
8+
9+
### Patch Changes
10+
11+
- [#3003](https://github.com/lit/lit/pull/3003) [`daddeb34`](https://github.com/lit/lit/commit/daddeb346a2f454b25a6a5d1722683197f25fbcd) - Lit's `async-directive` now re-exports everything from the `directive` module.
12+
13+
- [#3120](https://github.com/lit/lit/pull/3120) [`6361a4b4`](https://github.com/lit/lit/commit/6361a4b4a589465cf6836c8454ed8ca4521d7b4d) - Bind `this` to custom attribute converter methods
14+
15+
- Updated dependencies [[`daddeb34`](https://github.com/lit/lit/commit/daddeb346a2f454b25a6a5d1722683197f25fbcd), [`0725fdb4`](https://github.com/lit/lit/commit/0725fdb4dd7d36e3a7154830c41b9af4cf866e52), [`3766ae4c`](https://github.com/lit/lit/commit/3766ae4c35edf794aa30ee2d738c6f63fdda44e5), [`6361a4b4`](https://github.com/lit/lit/commit/6361a4b4a589465cf6836c8454ed8ca4521d7b4d), [`ae6f6808`](https://github.com/lit/lit/commit/ae6f6808f539254b72ec7efcff34b812173abe64)]:
16+
17+
- @lit/reactive-element@1.4.0
18+
319
## 2.2.8
420

521
### Patch Changes

packages/lit/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lit",
3-
"version": "2.2.8",
3+
"version": "2.3.0",
44
"publishConfig": {
55
"access": "public"
66
},
@@ -287,9 +287,9 @@
287287
"/logo.svg"
288288
],
289289
"dependencies": {
290-
"@lit/reactive-element": "^1.3.0",
290+
"@lit/reactive-element": "^1.4.0",
291291
"lit-element": "^3.2.0",
292-
"lit-html": "^2.2.0"
292+
"lit-html": "^2.3.0"
293293
},
294294
"devDependencies": {
295295
"@webcomponents/shadycss": "^1.8.0",

packages/localize/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 0.11.4
4+
5+
### Patch Changes
6+
7+
- [#3198](https://github.com/lit/lit/pull/3198) [`0162fbad`](https://github.com/lit/lit/commit/0162fbad61826ba0ff4188135ca4ab778762c4d7) - TS sources are now inlined in the JS source maps
8+
9+
- Updated dependencies [[`daddeb34`](https://github.com/lit/lit/commit/daddeb346a2f454b25a6a5d1722683197f25fbcd), [`6361a4b4`](https://github.com/lit/lit/commit/6361a4b4a589465cf6836c8454ed8ca4521d7b4d), [`ae6f6808`](https://github.com/lit/lit/commit/ae6f6808f539254b72ec7efcff34b812173abe64)]:
10+
11+
- @lit/reactive-element@1.4.0
12+
313
## 0.11.3
414

515
### Patch Changes

packages/localize/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lit/localize",
3-
"version": "0.11.3",
3+
"version": "0.11.4",
44
"publishConfig": {
55
"access": "public"
66
},
@@ -68,7 +68,7 @@
6868
"/init/"
6969
],
7070
"dependencies": {
71-
"@lit/reactive-element": "^1.0.0",
72-
"lit": "^2.0.0"
71+
"@lit/reactive-element": "^1.4.0",
72+
"lit": "^2.3.0"
7373
}
7474
}

packages/reactive-element/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
## 1.4.0
4+
5+
### Minor Changes
6+
7+
- [#3156](https://github.com/lit/lit/pull/3156) [`ae6f6808`](https://github.com/lit/lit/commit/ae6f6808f539254b72ec7efcff34b812173abe64) - Lit and its underlying libraries can now be imported directly from Node without crashing, without the need to load the @lit-labs/ssr dom-shim library. Note that actually rendering from a Node context still requires the @lit-labs/ssr dom-shim, and the appropriate integration between @lit-labs/ssr and your framework/tool.
8+
9+
### Patch Changes
10+
11+
- [#3120](https://github.com/lit/lit/pull/3120) [`6361a4b4`](https://github.com/lit/lit/commit/6361a4b4a589465cf6836c8454ed8ca4521d7b4d) - Bind `this` to custom attribute converter methods
12+
313
## 1.3.4
414

515
### Patch Changes

packages/reactive-element/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lit/reactive-element",
3-
"version": "1.3.4",
3+
"version": "1.4.0",
44
"publishConfig": {
55
"access": "public"
66
},

packages/reactive-element/src/reactive-element.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1543,7 +1543,7 @@ if (DEV_MODE) {
15431543

15441544
// IMPORTANT: do not change the property name or the assignment expression.
15451545
// This line will be used in regexes to search for ReactiveElement usage.
1546-
(global.reactiveElementVersions ??= []).push('1.3.4');
1546+
(global.reactiveElementVersions ??= []).push('1.4.0');
15471547
if (DEV_MODE && global.reactiveElementVersions.length > 1) {
15481548
issueWarning!(
15491549
'multiple-versions',

0 commit comments

Comments
 (0)