Skip to content

Commit

Permalink
v2.1.4 (#4773)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk authored Aug 31, 2024
1 parent ea9bb02 commit a95b51a
Show file tree
Hide file tree
Showing 14 changed files with 96 additions and 71 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,31 @@

> [Join the Insiders Program](https://github.com/vuejs/language-tools/wiki/Get-Insiders-Edition) for more exclusive features and updates.
## 2.1.4 <sup>official</sup>, 2.1.5 <sup>insiders</sup> (2024-09-01)

### Features

- **typescript-plugin, language-server:** generate global types file into `node_modules/.vue-global-types` (#4752) - Thanks to @KazariEX!
- **language-core:** navigation support for template-ref (#4726) - Thanks to @KazariEX!

### Bug Fixes

- **language-core, typescript-plugin, language-server:** apply snake case on globalTypes filename (#4749) - Thanks to @KazariEX!
- **language-core:** hoist `$refs` type (#4763)
- **language-core:** disable lib check on global types file (#4767) - Thanks to @KazariEX!
- **language-core:** prevent circular reference of templateRef (#4768) - Thanks to @zhiyuanzmj!
- **language-core:** using interface merging for `GlobalComponents`
- **language-core:** `fallthroughAttributes` causes global components to be self-referential (#4761)
- **language-core:** auto-completion for the last line of template block (#4771) - Thanks to @zhiyuanzmj!
- **language-core:** update ast correctly on repeated `v-for` modifications (#4772) - Thanks to @KazariEX!
- **language-server:** leaking named pipes (#4672)
- **typescript-plugin:** compatible with Yarn PnP (#4751)
- **vscode:** whitelist `ms-dynamics-smb.al` extension for Vue Hybrid Mode. (#4765) - Thanks to @kyleweishaupt!

### Other Changes

- Add optional "dependencies" textarea to issue template (#4758) - Thanks to @davidmatter!

## 2.1.2 <sup>official</sup>, 2.1.3 <sup>insiders</sup> (2024-08-29)

### Bug Fixes
Expand Down
8 changes: 4 additions & 4 deletions extensions/vscode/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "volar",
"version": "2.1.2",
"version": "2.1.4",
"repository": {
"type": "git",
"url": "https://github.com/vuejs/language-tools.git",
Expand Down Expand Up @@ -553,9 +553,9 @@
"@types/vscode": "^1.82.0",
"@volar/vscode": "~2.4.1",
"@vscode/vsce": "latest",
"@vue/language-core": "2.1.2",
"@vue/language-server": "2.1.2",
"@vue/typescript-plugin": "2.1.2",
"@vue/language-core": "2.1.4",
"@vue/language-server": "2.1.4",
"@vue/typescript-plugin": "2.1.4",
"esbuild": "~0.21.0",
"esbuild-plugin-copy": "latest",
"esbuild-visualizer": "latest",
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"packages/*",
"test-workspace"
],
"version": "2.1.2"
"version": "2.1.4"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"prerelease": "npm run build && npm run test",
"version:test": "lerna version --exact --force-publish --yes --sync-workspace-lock --no-push --no-git-tag-version",
"release": "npm run release:base && npm run release:vue",
"release:base": "lerna publish --exact --force-publish --yes --sync-workspace-lock",
"release:base": "lerna publish --exact --force-publish --yes --sync-workspace-lock --no-git-tag-version",
"release:vue": "cd ./extensions/vscode && npm run release",
"release:next": "npm run release:next-base && npm run release:next-vue",
"release:next-base": "npm run release:base -- --dist-tag next",
Expand Down
6 changes: 3 additions & 3 deletions packages/component-meta/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-component-meta",
"version": "2.1.2",
"version": "2.1.4",
"license": "MIT",
"files": [
"**/*.js",
Expand All @@ -13,9 +13,9 @@
},
"dependencies": {
"@volar/typescript": "~2.4.1",
"@vue/language-core": "2.1.2",
"@vue/language-core": "2.1.4",
"path-browserify": "^1.0.1",
"vue-component-type-helpers": "2.1.2"
"vue-component-type-helpers": "2.1.4"
},
"peerDependencies": {
"typescript": "*"
Expand Down
2 changes: 1 addition & 1 deletion packages/component-type-helpers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-component-type-helpers",
"version": "2.1.2",
"version": "2.1.4",
"license": "MIT",
"files": [
"**/*.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/language-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue/language-core",
"version": "2.1.2",
"version": "2.1.4",
"license": "MIT",
"files": [
"**/*.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/language-plugin-pug/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue/language-plugin-pug",
"version": "2.1.2",
"version": "2.1.4",
"license": "MIT",
"files": [
"**/*.js",
Expand All @@ -13,7 +13,7 @@
},
"devDependencies": {
"@types/node": "latest",
"@vue/language-core": "2.1.2"
"@vue/language-core": "2.1.4"
},
"dependencies": {
"@volar/source-map": "~2.4.1",
Expand Down
8 changes: 4 additions & 4 deletions packages/language-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue/language-server",
"version": "2.1.2",
"version": "2.1.4",
"license": "MIT",
"files": [
"**/*.js",
Expand All @@ -18,9 +18,9 @@
"@volar/language-core": "~2.4.1",
"@volar/language-server": "~2.4.1",
"@volar/test-utils": "~2.4.1",
"@vue/language-core": "2.1.2",
"@vue/language-service": "2.1.2",
"@vue/typescript-plugin": "2.1.2",
"@vue/language-core": "2.1.4",
"@vue/language-service": "2.1.4",
"@vue/typescript-plugin": "2.1.4",
"vscode-languageserver-protocol": "^3.17.5",
"vscode-uri": "^3.0.8"
}
Expand Down
6 changes: 3 additions & 3 deletions packages/language-service/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue/language-service",
"version": "2.1.2",
"version": "2.1.4",
"license": "MIT",
"files": [
"data",
Expand All @@ -20,9 +20,9 @@
"@volar/language-service": "~2.4.1",
"@volar/typescript": "~2.4.1",
"@vue/compiler-dom": "^3.4.0",
"@vue/language-core": "2.1.2",
"@vue/language-core": "2.1.4",
"@vue/shared": "^3.4.0",
"@vue/typescript-plugin": "2.1.2",
"@vue/typescript-plugin": "2.1.4",
"computeds": "^0.0.1",
"path-browserify": "^1.0.1",
"volar-service-css": "0.0.62",
Expand Down
4 changes: 2 additions & 2 deletions packages/tsc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-tsc",
"version": "2.1.2",
"version": "2.1.4",
"license": "MIT",
"files": [
"bin",
Expand All @@ -17,7 +17,7 @@
},
"dependencies": {
"@volar/typescript": "~2.4.1",
"@vue/language-core": "2.1.2",
"@vue/language-core": "2.1.4",
"semver": "^7.5.4"
},
"peerDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/typescript-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue/typescript-plugin",
"version": "2.1.2",
"version": "2.1.4",
"license": "MIT",
"files": [
"**/*.js",
Expand All @@ -13,7 +13,7 @@
},
"dependencies": {
"@volar/typescript": "~2.4.1",
"@vue/language-core": "2.1.2",
"@vue/language-core": "2.1.4",
"@vue/shared": "^3.4.0"
},
"devDependencies": {
Expand Down
Loading

0 comments on commit a95b51a

Please sign in to comment.