From 070c7798cfcb5d5b96d26bd1596dbd04e759e456 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Mar 2026 23:34:35 +0000 Subject: [PATCH] Version Packages --- .changeset/breezy-beds-rule.md | 5 ----- .changeset/small-queens-teach.md | 8 -------- .changeset/stupid-days-happen.md | 8 -------- .changeset/wild-chairs-grin.md | 8 -------- packages/lit-analyzer/CHANGELOG.md | 17 +++++++++++++++++ packages/lit-analyzer/package.json | 4 ++-- packages/ts-lit-plugin/CHANGELOG.md | 18 ++++++++++++++++++ packages/ts-lit-plugin/package.json | 6 +++--- packages/vscode-lit-plugin/CHANGELOG.md | 12 ++++++++++++ packages/vscode-lit-plugin/package.json | 4 ++-- packages/web-component-analyzer/CHANGELOG.md | 14 ++++++++++++++ packages/web-component-analyzer/package.json | 2 +- 12 files changed, 69 insertions(+), 37 deletions(-) delete mode 100644 .changeset/breezy-beds-rule.md delete mode 100644 .changeset/small-queens-teach.md delete mode 100644 .changeset/stupid-days-happen.md delete mode 100644 .changeset/wild-chairs-grin.md diff --git a/.changeset/breezy-beds-rule.md b/.changeset/breezy-beds-rule.md deleted file mode 100644 index 440d8f2a..00000000 --- a/.changeset/breezy-beds-rule.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@jackolope/web-component-analyzer": minor ---- - -build: Include sourcemaps in build output diff --git a/.changeset/small-queens-teach.md b/.changeset/small-queens-teach.md deleted file mode 100644 index 815e3aa7..00000000 --- a/.changeset/small-queens-teach.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@jackolope/web-component-analyzer": minor -"lit-analyzer-plugin": minor -"@jackolope/ts-lit-plugin": minor -"@jackolope/lit-analyzer": minor ---- - -build: Migrate project from npm to pnpm. There should be no breaking changes, but there are some related dependency and build updates diff --git a/.changeset/stupid-days-happen.md b/.changeset/stupid-days-happen.md deleted file mode 100644 index 850970a5..00000000 --- a/.changeset/stupid-days-happen.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@jackolope/web-component-analyzer": minor -"lit-analyzer-plugin": minor -"@jackolope/ts-lit-plugin": minor -"@jackolope/lit-analyzer": minor ---- - -chore: Add support for testing changes against node24 diff --git a/.changeset/wild-chairs-grin.md b/.changeset/wild-chairs-grin.md deleted file mode 100644 index ba539413..00000000 --- a/.changeset/wild-chairs-grin.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@jackolope/web-component-analyzer": major -"lit-analyzer-plugin": major -"@jackolope/ts-lit-plugin": major -"@jackolope/lit-analyzer": major ---- - -chore: Minimum Node version is now node20 (drop node18 support now that it is EOL) diff --git a/packages/lit-analyzer/CHANGELOG.md b/packages/lit-analyzer/CHANGELOG.md index d1d25b87..08d83a6a 100644 --- a/packages/lit-analyzer/CHANGELOG.md +++ b/packages/lit-analyzer/CHANGELOG.md @@ -1,5 +1,22 @@ # @jackolope/lit-analyzer +## 4.0.0 + +### Major Changes + +- [#336](https://github.com/JackRobards/lit-analyzer/pull/336) [`03e6f64`](https://github.com/JackRobards/lit-analyzer/commit/03e6f6438bae7739609442cda5a41bc7748d265b) Thanks [@JackRobards](https://github.com/JackRobards)! - chore: Minimum Node version is now node20 (drop node18 support now that it is EOL) + +### Minor Changes + +- [#491](https://github.com/JackRobards/lit-analyzer/pull/491) [`01f810d`](https://github.com/JackRobards/lit-analyzer/commit/01f810def709363f497c93a62586ee557956f086) Thanks [@JackRobards](https://github.com/JackRobards)! - build: Migrate project from npm to pnpm. There should be no breaking changes, but there are some related dependency and build updates + +- [#336](https://github.com/JackRobards/lit-analyzer/pull/336) [`03e6f64`](https://github.com/JackRobards/lit-analyzer/commit/03e6f6438bae7739609442cda5a41bc7748d265b) Thanks [@JackRobards](https://github.com/JackRobards)! - chore: Add support for testing changes against node24 + +### Patch Changes + +- Updated dependencies [[`2412bea`](https://github.com/JackRobards/lit-analyzer/commit/2412beacad5bba903b73e714185ae8a49f3c1e3e), [`01f810d`](https://github.com/JackRobards/lit-analyzer/commit/01f810def709363f497c93a62586ee557956f086), [`03e6f64`](https://github.com/JackRobards/lit-analyzer/commit/03e6f6438bae7739609442cda5a41bc7748d265b), [`03e6f64`](https://github.com/JackRobards/lit-analyzer/commit/03e6f6438bae7739609442cda5a41bc7748d265b)]: + - @jackolope/web-component-analyzer@5.0.0 + ## 3.2.1 ### Patch Changes diff --git a/packages/lit-analyzer/package.json b/packages/lit-analyzer/package.json index 760c11ba..cb7cb465 100644 --- a/packages/lit-analyzer/package.json +++ b/packages/lit-analyzer/package.json @@ -1,6 +1,6 @@ { "name": "@jackolope/lit-analyzer", - "version": "3.2.1", + "version": "4.0.0", "description": "CLI that type checks bindings in lit-html templates", "author": "runem", "license": "MIT", @@ -95,7 +95,7 @@ "cli.mjs" ], "dependencies": { - "@jackolope/web-component-analyzer": "^4.0.4", + "@jackolope/web-component-analyzer": "^5.0.0", "@vscode/web-custom-data": "^0.6.3", "chalk": "^5.6.2", "didyoumean2": "7.0.4", diff --git a/packages/ts-lit-plugin/CHANGELOG.md b/packages/ts-lit-plugin/CHANGELOG.md index c832292b..7ca64836 100644 --- a/packages/ts-lit-plugin/CHANGELOG.md +++ b/packages/ts-lit-plugin/CHANGELOG.md @@ -1,5 +1,23 @@ # @jackolope/ts-lit-plugin +## 4.0.0 + +### Major Changes + +- [#336](https://github.com/JackRobards/lit-analyzer/pull/336) [`03e6f64`](https://github.com/JackRobards/lit-analyzer/commit/03e6f6438bae7739609442cda5a41bc7748d265b) Thanks [@JackRobards](https://github.com/JackRobards)! - chore: Minimum Node version is now node20 (drop node18 support now that it is EOL) + +### Minor Changes + +- [#491](https://github.com/JackRobards/lit-analyzer/pull/491) [`01f810d`](https://github.com/JackRobards/lit-analyzer/commit/01f810def709363f497c93a62586ee557956f086) Thanks [@JackRobards](https://github.com/JackRobards)! - build: Migrate project from npm to pnpm. There should be no breaking changes, but there are some related dependency and build updates + +- [#336](https://github.com/JackRobards/lit-analyzer/pull/336) [`03e6f64`](https://github.com/JackRobards/lit-analyzer/commit/03e6f6438bae7739609442cda5a41bc7748d265b) Thanks [@JackRobards](https://github.com/JackRobards)! - chore: Add support for testing changes against node24 + +### Patch Changes + +- Updated dependencies [[`2412bea`](https://github.com/JackRobards/lit-analyzer/commit/2412beacad5bba903b73e714185ae8a49f3c1e3e), [`01f810d`](https://github.com/JackRobards/lit-analyzer/commit/01f810def709363f497c93a62586ee557956f086), [`03e6f64`](https://github.com/JackRobards/lit-analyzer/commit/03e6f6438bae7739609442cda5a41bc7748d265b), [`03e6f64`](https://github.com/JackRobards/lit-analyzer/commit/03e6f6438bae7739609442cda5a41bc7748d265b)]: + - @jackolope/web-component-analyzer@5.0.0 + - @jackolope/lit-analyzer@4.0.0 + ## 3.1.6 ### Patch Changes diff --git a/packages/ts-lit-plugin/package.json b/packages/ts-lit-plugin/package.json index 884f74f9..f7fca04a 100644 --- a/packages/ts-lit-plugin/package.json +++ b/packages/ts-lit-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@jackolope/ts-lit-plugin", - "version": "3.1.6", + "version": "4.0.0", "description": "Typescript plugin that adds type checking and code completion to lit-html. Fork of the original ts-lit-plugin.", "author": "JackRobards", "license": "MIT", @@ -61,8 +61,8 @@ "/html-documentation/" ], "dependencies": { - "@jackolope/lit-analyzer": "^3.2.1", - "@jackolope/web-component-analyzer": "^4.0.4" + "@jackolope/lit-analyzer": "^4.0.0", + "@jackolope/web-component-analyzer": "^5.0.0" }, "devDependencies": { "@types/node": "^24.12.0", diff --git a/packages/vscode-lit-plugin/CHANGELOG.md b/packages/vscode-lit-plugin/CHANGELOG.md index 1365d38d..8ada0f9a 100644 --- a/packages/vscode-lit-plugin/CHANGELOG.md +++ b/packages/vscode-lit-plugin/CHANGELOG.md @@ -1,5 +1,17 @@ # Change Log +## 3.0.0 + +### Major Changes + +- [#336](https://github.com/JackRobards/lit-analyzer/pull/336) [`03e6f64`](https://github.com/JackRobards/lit-analyzer/commit/03e6f6438bae7739609442cda5a41bc7748d265b) Thanks [@JackRobards](https://github.com/JackRobards)! - chore: Minimum Node version is now node20 (drop node18 support now that it is EOL) + +### Minor Changes + +- [#491](https://github.com/JackRobards/lit-analyzer/pull/491) [`01f810d`](https://github.com/JackRobards/lit-analyzer/commit/01f810def709363f497c93a62586ee557956f086) Thanks [@JackRobards](https://github.com/JackRobards)! - build: Migrate project from npm to pnpm. There should be no breaking changes, but there are some related dependency and build updates + +- [#336](https://github.com/JackRobards/lit-analyzer/pull/336) [`03e6f64`](https://github.com/JackRobards/lit-analyzer/commit/03e6f6438bae7739609442cda5a41bc7748d265b) Thanks [@JackRobards](https://github.com/JackRobards)! - chore: Add support for testing changes against node24 + ## 2.4.2 ### Patch Changes diff --git a/packages/vscode-lit-plugin/package.json b/packages/vscode-lit-plugin/package.json index 3a94656f..9894727b 100644 --- a/packages/vscode-lit-plugin/package.json +++ b/packages/vscode-lit-plugin/package.json @@ -3,7 +3,7 @@ "private": true, "displayName": "lit-analyzer-plugin", "description": "Syntax highlighting, type checking and code completion for lit-html", - "version": "2.4.2", + "version": "3.0.0", "publisher": "jackolope", "icon": "docs/assets/lit-plugin@256w.png", "license": "MIT", @@ -174,7 +174,7 @@ "@vscode/vsce": "^3.7.1", "esbuild": "^0.27.3", "fast-glob": "^3.2.11", - "@jackolope/lit-analyzer": "^3.2.1", + "@jackolope/lit-analyzer": "^4.0.0", "mocha": "^11.7.1", "vscode-css-languageservice": "6.3.10", "vscode-html-languageservice": "5.6.2", diff --git a/packages/web-component-analyzer/CHANGELOG.md b/packages/web-component-analyzer/CHANGELOG.md index 7f49dbb2..d52980d4 100644 --- a/packages/web-component-analyzer/CHANGELOG.md +++ b/packages/web-component-analyzer/CHANGELOG.md @@ -1,5 +1,19 @@ # Change Log +## 5.0.0 + +### Major Changes + +- [#336](https://github.com/JackRobards/lit-analyzer/pull/336) [`03e6f64`](https://github.com/JackRobards/lit-analyzer/commit/03e6f6438bae7739609442cda5a41bc7748d265b) Thanks [@JackRobards](https://github.com/JackRobards)! - chore: Minimum Node version is now node20 (drop node18 support now that it is EOL) + +### Minor Changes + +- [#491](https://github.com/JackRobards/lit-analyzer/pull/491) [`2412bea`](https://github.com/JackRobards/lit-analyzer/commit/2412beacad5bba903b73e714185ae8a49f3c1e3e) Thanks [@JackRobards](https://github.com/JackRobards)! - build: Include sourcemaps in build output + +- [#491](https://github.com/JackRobards/lit-analyzer/pull/491) [`01f810d`](https://github.com/JackRobards/lit-analyzer/commit/01f810def709363f497c93a62586ee557956f086) Thanks [@JackRobards](https://github.com/JackRobards)! - build: Migrate project from npm to pnpm. There should be no breaking changes, but there are some related dependency and build updates + +- [#336](https://github.com/JackRobards/lit-analyzer/pull/336) [`03e6f64`](https://github.com/JackRobards/lit-analyzer/commit/03e6f6438bae7739609442cda5a41bc7748d265b) Thanks [@JackRobards](https://github.com/JackRobards)! - chore: Add support for testing changes against node24 + ## 4.0.4 ### Patch Changes diff --git a/packages/web-component-analyzer/package.json b/packages/web-component-analyzer/package.json index 427acdcc..041ce648 100644 --- a/packages/web-component-analyzer/package.json +++ b/packages/web-component-analyzer/package.json @@ -1,6 +1,6 @@ { "name": "@jackolope/web-component-analyzer", - "version": "4.0.4", + "version": "5.0.0", "description": "Utilities for analyzer the types of web components", "main": "lib/cjs/api.js", "module": "lib/esm/api.js",