Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #2954

Merged
merged 1 commit into from May 25, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 0 additions & 2 deletions .changeset/cuddly-stingrays-push.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/forty-camels-retire.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/hungry-jobs-repeat.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/modern-parrots-talk.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/plenty-peas-enjoy.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rich-monkeys-flow.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/soft-cheetahs-float.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/stupid-tools-fly.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/tasty-eyes-end.md

This file was deleted.

8 changes: 8 additions & 0 deletions packages/labs/router/CHANGELOG.md
@@ -1,5 +1,13 @@
# @lit-labs/router

## 0.1.0

### Minor Changes

- [#2937](https://github.com/lit/lit/pull/2937) [`d2584ad6`](https://github.com/lit/lit/commit/d2584ad6bc5c7dd36f3e8ab9056587a87027b803) - **[BREAKING]** Router properties prefixed with an underscore have been made
private. These properties were being renamed in production builds and should not
have been exposed as part of a public API.

## 0.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/labs/router/package.json
@@ -1,6 +1,6 @@
{
"name": "@lit-labs/router",
"version": "0.0.2",
"version": "0.1.0",
"description": "A router for Lit.",
"license": "BSD-3-Clause",
"homepage": "https://lit.dev/",
Expand Down
6 changes: 6 additions & 0 deletions packages/labs/ssr/CHANGELOG.md
@@ -1,5 +1,11 @@
# Change Log

## 2.2.0

### Minor Changes

- [#2940](https://github.com/lit/lit/pull/2940) [`ac356997`](https://github.com/lit/lit/commit/ac356997351874706f8be235559c765861dce67d) - Add option to defer hydration of top level custom elements.

## 2.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/labs/ssr/package.json
@@ -1,7 +1,7 @@
{
"name": "@lit-labs/ssr",
"type": "module",
"version": "2.1.0",
"version": "2.2.0",
"publishConfig": {
"access": "public"
},
Expand Down
6 changes: 6 additions & 0 deletions packages/lit-html/CHANGELOG.md
@@ -1,5 +1,11 @@
# Change Log

## 2.2.5

### Patch Changes

- [#2952](https://github.com/lit/lit/pull/2952) [`a78cc3b7`](https://github.com/lit/lit/commit/a78cc3b7f221a97e04dfda77d790fbea8f48d12c) - Fix SSR hydration bug relating to <input> and other void elements having attribute bindings.

## 2.2.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/lit-html/package.json
@@ -1,6 +1,6 @@
{
"name": "lit-html",
"version": "2.2.4",
"version": "2.2.5",
"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
Expand Up @@ -2124,7 +2124,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.4');
(globalThis.litHtmlVersions ??= []).push('2.2.5');
if (DEV_MODE && globalThis.litHtmlVersions.length > 1) {
issueWarning!(
'multiple-versions',
Expand Down
6 changes: 6 additions & 0 deletions packages/lit-starter-js/CHANGELOG.md
@@ -1,5 +1,11 @@
# @lit/lit-starter-js

## 1.0.4

### Patch Changes

- [#2922](https://github.com/lit/lit/pull/2922) [`da9db86a`](https://github.com/lit/lit/commit/da9db86a33cba710d439e254df2492f9f6dcbbee) - Update dependencies and remove unused dependencies

## 1.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/lit-starter-js/package.json
@@ -1,7 +1,7 @@
{
"name": "@lit/lit-starter-js",
"private": true,
"version": "1.0.3",
"version": "1.0.4",
"description": "A simple web component",
"main": "my-element.js",
"module": "my-element.js",
Expand Down
6 changes: 6 additions & 0 deletions packages/lit-starter-ts/CHANGELOG.md
@@ -1,5 +1,11 @@
# @lit/lit-starter-ts

## 1.0.4

### Patch Changes

- [#2922](https://github.com/lit/lit/pull/2922) [`da9db86a`](https://github.com/lit/lit/commit/da9db86a33cba710d439e254df2492f9f6dcbbee) - Update dependencies and remove unused dependencies

## 1.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/lit-starter-ts/package.json
@@ -1,7 +1,7 @@
{
"name": "@lit/lit-starter-ts",
"private": true,
"version": "1.0.3",
"version": "1.0.4",
"description": "A simple web component",
"main": "my-element.js",
"module": "my-element.js",
Expand Down
6 changes: 6 additions & 0 deletions packages/lit/CHANGELOG.md
@@ -1,5 +1,11 @@
# Change Log

## 2.2.5

### Patch Changes

- [#2952](https://github.com/lit/lit/pull/2952) [`a78cc3b7`](https://github.com/lit/lit/commit/a78cc3b7f221a97e04dfda77d790fbea8f48d12c) - Fix SSR hydration bug relating to <input> and other void elements having attribute bindings.

## 2.2.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/lit/package.json
@@ -1,6 +1,6 @@
{
"name": "lit",
"version": "2.2.4",
"version": "2.2.5",
"publishConfig": {
"access": "public"
},
Expand Down