Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .changeset/heavy-carrots-thank.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/light-candles-yell.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/light-jobs-retire.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/seven-bottles-sing.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shiny-planes-listen.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/short-cooks-deliver.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tender-bobcats-greet.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/tidy-lies-admire.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/young-cups-develop.md

This file was deleted.

8 changes: 8 additions & 0 deletions packages/labs/analyzer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# @lit-labs/analyzer

## 0.1.0
### Minor Changes



- [#2676](https://github.com/lit/lit/pull/2676) [`df10f6d3`](https://github.com/lit/lit/commit/df10f6d34bd59b736cb723250e0b02b2cc5012e3) - Add initial Analyzer class
2 changes: 1 addition & 1 deletion packages/labs/analyzer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lit-labs/analyzer",
"version": "0.0.0",
"version": "0.1.0",
"publishConfig": {
"access": "public"
},
Expand Down
6 changes: 6 additions & 0 deletions packages/labs/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 1.0.3

### Patch Changes

- [#2648](https://github.com/lit/lit/pull/2648) [`7cb492a3`](https://github.com/lit/lit/commit/7cb492a37352ea2402f783bf83fa0bef7ed29036) - Event callbacks can be typed by casting with EventHandler

## 1.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/labs/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lit-labs/react",
"version": "1.0.2",
"version": "1.0.3",
"description": "A React component wrapper for web components.",
"license": "BSD-3-Clause",
"homepage": "https://lit.dev/",
Expand Down
6 changes: 6 additions & 0 deletions packages/labs/ssr/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 2.1.0

### Minor Changes

- [#2662](https://github.com/lit/lit/pull/2662) [`1d51ed8b`](https://github.com/lit/lit/commit/1d51ed8b7eb991e151759f9dbf8643b4ed781457) - Adds HTMLElement.shadowRoot property to dom-shim.

## 2.0.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/labs/ssr/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@lit-labs/ssr",
"type": "module",
"version": "2.0.4",
"version": "2.1.0",
"publishConfig": {
"access": "public"
},
Expand Down
14 changes: 14 additions & 0 deletions packages/lit-html/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Change Log

## 2.2.2

### Patch Changes

- [#2657](https://github.com/lit/lit/pull/2657) [`a6069c40`](https://github.com/lit/lit/commit/a6069c40e78dff3adeffa7d2abe11c9c05503d22) - Remove readonly restriction from `StyleInfo` interface as addition, deletion, and updating of styles is valid. Expanded `styleMap` documentation with links to lit.dev.

- [#2642](https://github.com/lit/lit/pull/2642) [`badc532c`](https://github.com/lit/lit/commit/badc532c719f7ce42b7cf4fb9ff2d97f4615b021) - Add an additional security brand check to StaticValues; Similar to [#2307](https://github.com/lit/lit/pull/2307)

- [#2691](https://github.com/lit/lit/pull/2691) [`171143bd`](https://github.com/lit/lit/commit/171143bd52720ee4a65844e5ca14667dd0187f8e) - Fixes `ref` bug when auto-bound class method used as a callback could incorrectly receive `undefined`.

- [#2661](https://github.com/lit/lit/pull/2661) [`9a3a38cd`](https://github.com/lit/lit/commit/9a3a38cd7f7b9122c79cd0e220f7ce62130e53f6) - Give a clearer error message when rendering into null/undefined

- [#2646](https://github.com/lit/lit/pull/2646) [`365cd09a`](https://github.com/lit/lit/commit/365cd09a88a1c390045452aac82510c143ffe257) - Clarify that hacking around the template strings array brand error can create security vulnerabilities.

## 2.2.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/lit-html/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lit-html",
"version": "2.2.1",
"version": "2.2.2",
"description": "HTML templates literals in JavaScript",
"license": "BSD-3-Clause",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/lit-html/src/lit-html.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2157,7 +2157,7 @@ polyfillSupport?.(Template, ChildPart);

// IMPORTANT: do not change the property name or the assignment expression.
// This line will be used in regexes to search for lit-html usage.
(globalThis.litHtmlVersions ??= []).push('2.2.1');
(globalThis.litHtmlVersions ??= []).push('2.2.2');
if (DEV_MODE && globalThis.litHtmlVersions.length > 1) {
issueWarning!(
'multiple-versions',
Expand Down
14 changes: 14 additions & 0 deletions packages/lit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Change Log

## 2.2.2

### Patch Changes

- [#2657](https://github.com/lit/lit/pull/2657) [`a6069c40`](https://github.com/lit/lit/commit/a6069c40e78dff3adeffa7d2abe11c9c05503d22) - Remove readonly restriction from `StyleInfo` interface as addition, deletion, and updating of styles is valid. Expanded `styleMap` documentation with links to lit.dev.

- [#2642](https://github.com/lit/lit/pull/2642) [`badc532c`](https://github.com/lit/lit/commit/badc532c719f7ce42b7cf4fb9ff2d97f4615b021) - Add an additional security brand check to StaticValues; Similar to [#2307](https://github.com/lit/lit/pull/2307)

- [#2691](https://github.com/lit/lit/pull/2691) [`171143bd`](https://github.com/lit/lit/commit/171143bd52720ee4a65844e5ca14667dd0187f8e) - Fixes `ref` bug when auto-bound class method used as a callback could incorrectly receive `undefined`.

- [#2661](https://github.com/lit/lit/pull/2661) [`9a3a38cd`](https://github.com/lit/lit/commit/9a3a38cd7f7b9122c79cd0e220f7ce62130e53f6) - Give a clearer error message when rendering into null/undefined

- [#2646](https://github.com/lit/lit/pull/2646) [`365cd09a`](https://github.com/lit/lit/commit/365cd09a88a1c390045452aac82510c143ffe257) - Clarify that hacking around the template strings array brand error can create security vulnerabilities.

## 2.2.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/lit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lit",
"version": "2.2.1",
"version": "2.2.2",
"publishConfig": {
"access": "public"
},
Expand Down
6 changes: 6 additions & 0 deletions packages/localize-tools/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.6.2

### Patch Changes

- [#2692](https://github.com/lit/lit/pull/2692) [`c41a92c9`](https://github.com/lit/lit/commit/c41a92c96eeb8c2db4875c94c2eabcd512e044c4) - Fix issue with placing expressions as html attribute values in transform mode

## 0.6.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/localize-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lit/localize-tools",
"version": "0.6.1",
"version": "0.6.2",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -48,7 +48,7 @@
"typescript": "^4.3.5"
},
"devDependencies": {
"@lit-labs/ssr": "^2.0.0",
"@lit-labs/ssr": "^2.1.0",
"@lit/ts-transformers": "^1.1.0",
"@types/diff": "^5.0.0",
"@types/fs-extra": "^9.0.1",
Expand Down