Skip to content

Commit

Permalink
Version Packages (#3506)
Browse files Browse the repository at this point in the history
  • Loading branch information
lit-robot committed Dec 8, 2022
1 parent 0df864d commit 5c83a35
Show file tree
Hide file tree
Showing 52 changed files with 177 additions and 124 deletions.
2 changes: 0 additions & 2 deletions .changeset/blue-feet-roll.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/cyan-moose-know.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/dirty-mugs-rhyme.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/dull-months-prove.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/early-eggs-doubt.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/eight-poets-travel.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/five-falcons-suffer.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/fresh-oranges-search.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fuzzy-gorillas-wait.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lemon-llamas-rule.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/light-dragons-serve.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/light-dryers-talk.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/little-terms-develop.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/many-boxes-help.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/six-buttons-cover.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tidy-flowers-mate.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/unlucky-lamps-sing.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/unlucky-parents-melt.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/wild-pillows-carry.md

This file was deleted.

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

## 0.5.0

### Minor Changes

- [#3464](https://github.com/lit/lit/pull/3464) [`0260a15e`](https://github.com/lit/lit/commit/0260a15e2087d2b1ea8f5072663a637cedd186d9) - Added support for export, slot, cssPart, and cssProperty to analyzer and manifest generator. Also improved JS project analysis performance.

- [#3380](https://github.com/lit/lit/pull/3380) [`00f59cf5`](https://github.com/lit/lit/commit/00f59cf560a28e24d9751d0d8db2826fd767158b) - Added superclass analysis to ClassDeclaration, along with the ability to query exports of a Module (via `getExport()` and `getResolvedExport()`) and the ability to dereference `Reference`s to the `Declaration` they point to (via `dereference()`). A ClassDeclaration's superClass may be interrogated via `classDeclaration.heritage.superClass.dereference()` (`heritage.superClass` returns a `Reference`, which can be dereferenced to access its superclass's `ClassDeclaration` model.

## 0.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/labs/analyzer/package.json
@@ -1,6 +1,6 @@
{
"name": "@lit-labs/analyzer",
"version": "0.4.0",
"version": "0.5.0",
"publishConfig": {
"access": "public"
},
Expand Down
16 changes: 16 additions & 0 deletions packages/labs/cli/CHANGELOG.md
@@ -1,5 +1,21 @@
# @lit-labs/cli

## 0.3.0

### Minor Changes

- [#3456](https://github.com/lit/lit/pull/3456) [`cd46b598`](https://github.com/lit/lit/commit/cd46b5988ccd1c9cd199304043dcac743de82aea) - changed lit init --dir flag to --out

- [#3380](https://github.com/lit/lit/pull/3380) [`00f59cf5`](https://github.com/lit/lit/commit/00f59cf560a28e24d9751d0d8db2826fd767158b) - Added superclass analysis to ClassDeclaration, along with the ability to query exports of a Module (via `getExport()` and `getResolvedExport()`) and the ability to dereference `Reference`s to the `Declaration` they point to (via `dereference()`). A ClassDeclaration's superClass may be interrogated via `classDeclaration.heritage.superClass.dereference()` (`heritage.superClass` returns a `Reference`, which can be dereferenced to access its superclass's `ClassDeclaration` model.

- [#3248](https://github.com/lit/lit/pull/3248) [`9b9bdb0e`](https://github.com/lit/lit/commit/9b9bdb0e7be218b8d6e4478867361aaf14de49d5) - Implemented lit init element command

### Patch Changes

- Updated dependencies [[`0260a15e`](https://github.com/lit/lit/commit/0260a15e2087d2b1ea8f5072663a637cedd186d9), [`00f59cf5`](https://github.com/lit/lit/commit/00f59cf560a28e24d9751d0d8db2826fd767158b), [`9b9bdb0e`](https://github.com/lit/lit/commit/9b9bdb0e7be218b8d6e4478867361aaf14de49d5)]:
- @lit-labs/analyzer@0.5.0
- @lit-labs/gen-utils@0.2.0

## 0.2.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/labs/cli/package.json
@@ -1,7 +1,7 @@
{
"name": "@lit-labs/cli",
"description": "Tooling for Lit development",
"version": "0.2.1",
"version": "0.3.0",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -78,8 +78,8 @@
}
},
"dependencies": {
"@lit-labs/analyzer": "^0.4.0",
"@lit-labs/gen-utils": "^0.1.0",
"@lit-labs/analyzer": "^0.5.0",
"@lit-labs/gen-utils": "^0.2.0",
"@lit/localize-tools": "^0.6.1",
"chalk": "^5.0.1",
"command-line-args": "^5.2.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/labs/cli/src/lib/lit-version.ts
@@ -1 +1 @@
export const litVersion = '2.2.8';
export const litVersion = '2.5.0';
2 changes: 1 addition & 1 deletion packages/labs/cli/test-goldens/init/js-named/package.json
Expand Up @@ -13,7 +13,7 @@
"lit"
],
"dependencies": {
"lit": "^2.2.8"
"lit": "^2.5.0"
},
"devDependencies": {
"@web/dev-server": "^0.1.32"
Expand Down
2 changes: 1 addition & 1 deletion packages/labs/cli/test-goldens/init/js/package.json
Expand Up @@ -13,7 +13,7 @@
"lit"
],
"dependencies": {
"lit": "^2.2.8"
"lit": "^2.5.0"
},
"devDependencies": {
"@web/dev-server": "^0.1.32"
Expand Down
2 changes: 1 addition & 1 deletion packages/labs/cli/test-goldens/init/ts-named/package.json
Expand Up @@ -16,7 +16,7 @@
"lit"
],
"dependencies": {
"lit": "^2.2.8"
"lit": "^2.5.0"
},
"devDependencies": {
"@web/dev-server": "^0.1.32",
Expand Down
18 changes: 18 additions & 0 deletions packages/labs/context/CHANGELOG.md
@@ -1,5 +1,23 @@
# @lit-labs/context

## 0.2.0

### Minor Changes

- [#3404](https://github.com/lit/lit/pull/3404) [`b3e8993a`](https://github.com/lit/lit/commit/b3e8993ad1bb0cc09266f98fb6ffb23a7194adfe) - Rename ContextKey to Context

### Patch Changes

- [#3399](https://github.com/lit/lit/pull/3399) [`0e52919b`](https://github.com/lit/lit/commit/0e52919b6c43a2b30c5b5ba539266d4746fc3198) - Make @consume decorator work with optional fields

- [#3434](https://github.com/lit/lit/pull/3434) [`a6a55913`](https://github.com/lit/lit/commit/a6a5591327a90e9c7d922d1d978627794909c422) - Allow ContextProvider to be added lazily and still work with ContextRoot

- [#3398](https://github.com/lit/lit/pull/3398) [`50f2e424`](https://github.com/lit/lit/commit/50f2e424d3a276b3f6c1b953fc03b7499227079a) - Rename @contextProvided and @contextProvider to @consume and @provide

- Updated dependencies [[`e729f18b`](https://github.com/lit/lit/commit/e729f18be8679f33802409bb89a3e6885af98c0e)]:
- @lit/reactive-element@1.5.0
- lit@2.5.0

## 0.1.3

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/labs/context/package.json
@@ -1,6 +1,6 @@
{
"name": "@lit-labs/context",
"version": "0.1.3",
"version": "0.2.0",
"description": "Helpers and controllers for using Context protocol",
"license": "BSD-3-Clause",
"homepage": "https://lit.dev/",
Expand Down Expand Up @@ -132,8 +132,8 @@
},
"author": "Google LLC",
"dependencies": {
"@lit/reactive-element": "^1.0.0",
"lit": "^2.0.0"
"@lit/reactive-element": "^1.5.0",
"lit": "^2.5.0"
},
"devDependencies": {
"@types/trusted-types": "^2.0.2",
Expand Down
12 changes: 12 additions & 0 deletions packages/labs/gen-manifest/CHANGELOG.md
@@ -1,5 +1,17 @@
# @lit-labs/gen-manifest

## 0.1.0

### Minor Changes

- [#3464](https://github.com/lit/lit/pull/3464) [`0260a15e`](https://github.com/lit/lit/commit/0260a15e2087d2b1ea8f5072663a637cedd186d9) - Added support for export, slot, cssPart, and cssProperty to analyzer and manifest generator. Also improved JS project analysis performance.

### Patch Changes

- Updated dependencies [[`0260a15e`](https://github.com/lit/lit/commit/0260a15e2087d2b1ea8f5072663a637cedd186d9), [`00f59cf5`](https://github.com/lit/lit/commit/00f59cf560a28e24d9751d0d8db2826fd767158b), [`9b9bdb0e`](https://github.com/lit/lit/commit/9b9bdb0e7be218b8d6e4478867361aaf14de49d5)]:
- @lit-labs/analyzer@0.5.0
- @lit-labs/gen-utils@0.2.0

## 0.0.2

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/labs/gen-manifest/package.json
Expand Up @@ -2,7 +2,7 @@
"private": true,
"name": "@lit-labs/gen-manifest",
"description": "Code generator for generating Custom Elements Manifests for Lit components",
"version": "0.0.2",
"version": "0.1.0",
"author": "Google LLC",
"license": "BSD-3-Clause",
"bugs": "https://github.com/lit/lit/issues",
Expand Down Expand Up @@ -48,8 +48,8 @@
}
},
"dependencies": {
"@lit-labs/analyzer": "^0.4.0",
"@lit-labs/gen-utils": "^0.1.0",
"@lit-labs/analyzer": "^0.5.0",
"@lit-labs/gen-utils": "^0.2.0",
"custom-elements-manifest": "^2.0.0"
},
"devDependencies": {
Expand Down
11 changes: 11 additions & 0 deletions packages/labs/gen-utils/CHANGELOG.md
@@ -1,5 +1,16 @@
# @lit-labs/gen-utils

## 0.2.0

### Minor Changes

- [#3248](https://github.com/lit/lit/pull/3248) [`9b9bdb0e`](https://github.com/lit/lit/commit/9b9bdb0e7be218b8d6e4478867361aaf14de49d5) - Implemented lit init element command

### Patch Changes

- Updated dependencies [[`0260a15e`](https://github.com/lit/lit/commit/0260a15e2087d2b1ea8f5072663a637cedd186d9), [`00f59cf5`](https://github.com/lit/lit/commit/00f59cf560a28e24d9751d0d8db2826fd767158b)]:
- @lit-labs/analyzer@0.5.0

## 0.1.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/labs/gen-utils/package.json
@@ -1,7 +1,7 @@
{
"name": "@lit-labs/gen-utils",
"description": "Utilities for lit code generators",
"version": "0.1.2",
"version": "0.2.0",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -46,7 +46,7 @@
}
},
"dependencies": {
"@lit-labs/analyzer": "^0.4.0"
"@lit-labs/analyzer": "^0.5.0"
},
"devDependencies": {
"@lit-internal/tests": "^0.0.0"
Expand Down
8 changes: 8 additions & 0 deletions packages/labs/gen-wrapper-angular/CHANGELOG.md
@@ -1,5 +1,13 @@
# @lit-labs/gen-wrapper-angular

## 0.0.4

### Patch Changes

- Updated dependencies [[`0260a15e`](https://github.com/lit/lit/commit/0260a15e2087d2b1ea8f5072663a637cedd186d9), [`00f59cf5`](https://github.com/lit/lit/commit/00f59cf560a28e24d9751d0d8db2826fd767158b), [`9b9bdb0e`](https://github.com/lit/lit/commit/9b9bdb0e7be218b8d6e4478867361aaf14de49d5)]:
- @lit-labs/analyzer@0.5.0
- @lit-labs/gen-utils@0.2.0

## 0.0.3

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/labs/gen-wrapper-angular/package.json
Expand Up @@ -2,7 +2,7 @@
"private": true,
"name": "@lit-labs/gen-wrapper-angular",
"description": "Code generator for Angular wrappers for Lit components",
"version": "0.0.3",
"version": "0.0.4",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -57,8 +57,8 @@
}
},
"dependencies": {
"@lit-labs/analyzer": "^0.4.0",
"@lit-labs/gen-utils": "^0.1.0"
"@lit-labs/analyzer": "^0.5.0",
"@lit-labs/gen-utils": "^0.2.0"
},
"devDependencies": {
"@esm-bundle/chai": "^4.1.5",
Expand Down
8 changes: 8 additions & 0 deletions packages/labs/gen-wrapper-react/CHANGELOG.md
@@ -1,5 +1,13 @@
# @lit-labs/gen-wrapper-react

## 0.2.2

### Patch Changes

- Updated dependencies [[`0260a15e`](https://github.com/lit/lit/commit/0260a15e2087d2b1ea8f5072663a637cedd186d9), [`00f59cf5`](https://github.com/lit/lit/commit/00f59cf560a28e24d9751d0d8db2826fd767158b), [`9b9bdb0e`](https://github.com/lit/lit/commit/9b9bdb0e7be218b8d6e4478867361aaf14de49d5)]:
- @lit-labs/analyzer@0.5.0
- @lit-labs/gen-utils@0.2.0

## 0.2.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/labs/gen-wrapper-react/package.json
@@ -1,7 +1,7 @@
{
"name": "@lit-labs/gen-wrapper-react",
"description": "Code generator for React wrapper for Lit components",
"version": "0.2.1",
"version": "0.2.2",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -60,8 +60,8 @@
}
},
"dependencies": {
"@lit-labs/analyzer": "^0.4.0",
"@lit-labs/gen-utils": "^0.1.0"
"@lit-labs/analyzer": "^0.5.0",
"@lit-labs/gen-utils": "^0.2.0"
},
"devDependencies": {
"@lit-internal/tests": "^0.0.0"
Expand Down
8 changes: 8 additions & 0 deletions packages/labs/gen-wrapper-vue/CHANGELOG.md
@@ -1,5 +1,13 @@
# @lit-labs/gen-wrapper-vue

## 0.2.2

### Patch Changes

- Updated dependencies [[`0260a15e`](https://github.com/lit/lit/commit/0260a15e2087d2b1ea8f5072663a637cedd186d9), [`00f59cf5`](https://github.com/lit/lit/commit/00f59cf560a28e24d9751d0d8db2826fd767158b), [`9b9bdb0e`](https://github.com/lit/lit/commit/9b9bdb0e7be218b8d6e4478867361aaf14de49d5)]:
- @lit-labs/analyzer@0.5.0
- @lit-labs/gen-utils@0.2.0

## 0.2.1

### Patch Changes
Expand Down

0 comments on commit 5c83a35

Please sign in to comment.