Skip to content

Bump the vue group in /org.eclipse.wildwebdeveloper with 2 updates #1880

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 2, 2025

Bumps the vue group in /org.eclipse.wildwebdeveloper with 2 updates: @vue/language-server and @vue/typescript-plugin.

Updates @vue/language-server from 2.2.10 to 3.0.0

Release notes

Sourced from @​vue/language-server's releases.

v3.0.0

[!IMPORTANT]
Deprecation Notice: Dropping Vue 2 and vue-class-component Support in v3.1: #5455

[!TIP]
Language Server Upgrade guide for none-vscode editors: #5456

Stability Improvements

  • Hybrid Mode Always On: Now always enabled to make the system simpler and more reliable. (PR: #5248)
  • Better Connection: Improved how Vue talks to TypeScript server, making it more stable. (PR: #5252, #5395, #5443)
  • Version Matching: Vue language server now requires specific Volar versions to work the same in all editors. (PR: #5345)
  • Fixed Startup Issue: Solved problems when both TypeScript and Vue extensions start together. (PR: #5260)

UX & DX Improvements

Navigation & Tooling

  • Global components now jump to their source files rather than type definitions. (PR: #5221)
  • Added support for TypeScript's sortImports and removeUnusedImports commands. (PR: #5444)
  • Implemented template refs document linking. (PR: #5385)

Localization Support

  • VSCode extension added multilingual support for:
    • Chinese (Simplified/Traditional)
    • Russian
    • Japanese

(PR: #5330, #5340, #5404)

Streamlined UI

  • v3 does not have any status bar items Group 1 (2)

Compiler Options Updates

New TSConfig options:

  • strictSlotChildren: Strict type constraints of slot children. (PR: #5137)
  • strictVModel: Strict type constraints of v-model. (PR: #5229)
  • strictCssModules: Strict type checking of CSS modules. (PR: #5164)
  • resolveStyleImports: Specifies whether to generate type imports for external CSS files by <style src=\"...\"> or @import \"...\". (PR: #5136)

Renamed Settings

Some settings have new names:

  • vue.complete.casing.propsvue.suggest.propNameCasing
  • vue.complete.casing.tagsvue.suggest.componentNameCasing
  • vue.complete.defineAssignmentvue.suggest.defineAssignment

Details

... (truncated)

Changelog

Sourced from @​vue/language-server's changelog.

3.0.0 (2025-06-25)

Features

  • feat(typescript-plugin): skip declaration files in goto components definition (#5221) - Thanks to @​KazariEX!
  • feat(language-core): introduce strictVModel option (#5229) - Thanks to @​KazariEX!
  • feat(vscode, language-server, typescript-plugin): communicate with tsserver based on request forwarding (#5252, #5395, #5443)
  • feat(language-core): support navigation of events with v-on syntax (#5275) - Thanks to @​KazariEX!
  • feat(language-core): type support of slot children (#5137) - Thanks to @​KazariEX!
  • feat(language-service): autocomplete for props with union type
  • feat(language-service): document links for template refs (#5385) - Thanks to @​alex-snezhko!
  • feat(language-core): resolve external stylesheets (#5136) - Thanks to @​KazariEX!
  • feat(language-core): add strictCssModules option (#5164) - Thanks to @​KazariEX!
  • feat(component-type-helpers): add ComponentAttrs type for attribute extraction
  • feat(vscode): add support for typescript.sortImports, typescript.removeUnusedImports commands (#5444)
  • feat(vscode): i18n support of configurations and commands with zh-CN, zh-TW, ru and ja (#5330, #5340, #5404) - Thanks to @​KazariEX, @​PurplePlanen and @​zyoshoka!

Bug Fixes

  • fix(language-core): generate condition guards for model events (#5225) - Thanks to @​KazariEX!
  • fix(language-core): prevent global types generation in declaration files (#5239) - Thanks to @​KazariEX!
  • fix(language-core): prevent eager inference of slot props from generics (#5247) - Thanks to @​KazariEX!
  • fix(typescript-plugin): prevent highlighting native element tags with same name as components (#5253) - Thanks to @​KazariEX!
  • fix(language-service): do not provide required props inlay hints for intrinsic elements (#5258) - Thanks to @​KazariEX!
  • fix(vscode): handle typescript-language-features module loading race condition (#5260)
  • fix(component-meta): update event type representation to include array notation
  • fix(language-core): correct error mapping when prop exp is arrow function (#5262) - Thanks to @​KazariEX!
  • fix(language-service): add document highlights support (#5263) - Thanks to @​KazariEX!
  • fix(language-core): correct type inference of multiple template refs with same name (#5271) - Thanks to @​KazariEX!
  • fix(language-core): skip AST parsing when the expression is an identifier (#5268) - Thanks to @​KazariEX!
  • fix(language-core): do not drop leading comments of defineModels (#5273) - Thanks to @​KazariEX!
  • fix(language-core): improve fault tolerance for unsupported script languages
  • fix(language-core): avoid invalid auto import edit position when setup global types fails
  • fix(language-core): transform slot parameter list into equivalent binding pattern (#5245) - Thanks to @​KazariEX!
  • fix(language-core): correct codegen when src path does not match the generated length - Thanks to @​KazariEX!
  • fix(language-service): exclude data- attribute completion from sfc level nodes - Thanks to @​KazariEX!
  • fix(language-core): remove semantic highlight of v-bind shorthand (#5321) - Thanks to @​KazariEX!
  • fix(vscode): inline html comment pattern in Vue syntax definition (#5327) - Thanks to @​zyoshoka!
  • fix(language-core): avoid unrelated virtual code recomputes on style and template change - Thanks to @​KazariEX!
  • fix(component-meta): attach namespace prefix correctly on generated types (#5326) - Thanks to @​KazariEX!
  • fix(language-core): drop undefined from optional prop type with default in template (#5339) - Thanks to @​Dylancyclone!
  • fix: depend on exact volar version (#5345) - Thanks to @​tomblachut!
  • fix(language-core): ignore frontmatter block in markdown files (#5362) - Thanks to @​brc-dd!
  • fix(component-meta): only exclude vnode events from props (#5369) - Thanks to @​KazariEX!
  • fix(language-core): skip css references for position within virtual code with navigation: true (#5378) - Thanks to @​KazariEX!
  • fix(language-core): hoist export declarations from generic script block (#5398) - Thanks to @​KazariEX!
  • fix(vscode): correct syntax highlight for directives starting with v-for (#5399) - Thanks to @​KazariEX!
  • fix(language-core): correct support for flatten plugins (#5392) - Thanks to @​zhiyuanzmj!
  • fix(language-core): remove semantic code feature on first argument of useCssModule and useTemplateRef - Thanks to @​KazariEX!
  • fix(typescript-plugin): filter completion items of macros and global variables in template and styles (#5425) - Thanks to @​KazariEX!

... (truncated)

Commits

Updates @vue/typescript-plugin from 2.2.10 to 3.0.0

Release notes

Sourced from @​vue/typescript-plugin's releases.

v3.0.0

[!IMPORTANT]
Deprecation Notice: Dropping Vue 2 and vue-class-component Support in v3.1: #5455

[!TIP]
Language Server Upgrade guide for none-vscode editors: #5456

Stability Improvements

  • Hybrid Mode Always On: Now always enabled to make the system simpler and more reliable. (PR: #5248)
  • Better Connection: Improved how Vue talks to TypeScript server, making it more stable. (PR: #5252, #5395, #5443)
  • Version Matching: Vue language server now requires specific Volar versions to work the same in all editors. (PR: #5345)
  • Fixed Startup Issue: Solved problems when both TypeScript and Vue extensions start together. (PR: #5260)

UX & DX Improvements

Navigation & Tooling

  • Global components now jump to their source files rather than type definitions. (PR: #5221)
  • Added support for TypeScript's sortImports and removeUnusedImports commands. (PR: #5444)
  • Implemented template refs document linking. (PR: #5385)

Localization Support

  • VSCode extension added multilingual support for:
    • Chinese (Simplified/Traditional)
    • Russian
    • Japanese

(PR: #5330, #5340, #5404)

Streamlined UI

  • v3 does not have any status bar items Group 1 (2)

Compiler Options Updates

New TSConfig options:

  • strictSlotChildren: Strict type constraints of slot children. (PR: #5137)
  • strictVModel: Strict type constraints of v-model. (PR: #5229)
  • strictCssModules: Strict type checking of CSS modules. (PR: #5164)
  • resolveStyleImports: Specifies whether to generate type imports for external CSS files by <style src=\"...\"> or @import \"...\". (PR: #5136)

Renamed Settings

Some settings have new names:

  • vue.complete.casing.propsvue.suggest.propNameCasing
  • vue.complete.casing.tagsvue.suggest.componentNameCasing
  • vue.complete.defineAssignmentvue.suggest.defineAssignment

Details

... (truncated)

Changelog

Sourced from @​vue/typescript-plugin's changelog.

3.0.0 (2025-06-25)

Features

  • feat(typescript-plugin): skip declaration files in goto components definition (#5221) - Thanks to @​KazariEX!
  • feat(language-core): introduce strictVModel option (#5229) - Thanks to @​KazariEX!
  • feat(vscode, language-server, typescript-plugin): communicate with tsserver based on request forwarding (#5252, #5395, #5443)
  • feat(language-core): support navigation of events with v-on syntax (#5275) - Thanks to @​KazariEX!
  • feat(language-core): type support of slot children (#5137) - Thanks to @​KazariEX!
  • feat(language-service): autocomplete for props with union type
  • feat(language-service): document links for template refs (#5385) - Thanks to @​alex-snezhko!
  • feat(language-core): resolve external stylesheets (#5136) - Thanks to @​KazariEX!
  • feat(language-core): add strictCssModules option (#5164) - Thanks to @​KazariEX!
  • feat(component-type-helpers): add ComponentAttrs type for attribute extraction
  • feat(vscode): add support for typescript.sortImports, typescript.removeUnusedImports commands (#5444)
  • feat(vscode): i18n support of configurations and commands with zh-CN, zh-TW, ru and ja (#5330, #5340, #5404) - Thanks to @​KazariEX, @​PurplePlanen and @​zyoshoka!

Bug Fixes

  • fix(language-core): generate condition guards for model events (#5225) - Thanks to @​KazariEX!
  • fix(language-core): prevent global types generation in declaration files (#5239) - Thanks to @​KazariEX!
  • fix(language-core): prevent eager inference of slot props from generics (#5247) - Thanks to @​KazariEX!
  • fix(typescript-plugin): prevent highlighting native element tags with same name as components (#5253) - Thanks to @​KazariEX!
  • fix(language-service): do not provide required props inlay hints for intrinsic elements (#5258) - Thanks to @​KazariEX!
  • fix(vscode): handle typescript-language-features module loading race condition (#5260)
  • fix(component-meta): update event type representation to include array notation
  • fix(language-core): correct error mapping when prop exp is arrow function (#5262) - Thanks to @​KazariEX!
  • fix(language-service): add document highlights support (#5263) - Thanks to @​KazariEX!
  • fix(language-core): correct type inference of multiple template refs with same name (#5271) - Thanks to @​KazariEX!
  • fix(language-core): skip AST parsing when the expression is an identifier (#5268) - Thanks to @​KazariEX!
  • fix(language-core): do not drop leading comments of defineModels (#5273) - Thanks to @​KazariEX!
  • fix(language-core): improve fault tolerance for unsupported script languages
  • fix(language-core): avoid invalid auto import edit position when setup global types fails
  • fix(language-core): transform slot parameter list into equivalent binding pattern (#5245) - Thanks to @​KazariEX!
  • fix(language-core): correct codegen when src path does not match the generated length - Thanks to @​KazariEX!
  • fix(language-service): exclude data- attribute completion from sfc level nodes - Thanks to @​KazariEX!
  • fix(language-core): remove semantic highlight of v-bind shorthand (#5321) - Thanks to @​KazariEX!
  • fix(vscode): inline html comment pattern in Vue syntax definition (#5327) - Thanks to @​zyoshoka!
  • fix(language-core): avoid unrelated virtual code recomputes on style and template change - Thanks to @​KazariEX!
  • fix(component-meta): attach namespace prefix correctly on generated types (#5326) - Thanks to @​KazariEX!
  • fix(language-core): drop undefined from optional prop type with default in template (#5339) - Thanks to @​Dylancyclone!
  • fix: depend on exact volar version (#5345) - Thanks to @​tomblachut!
  • fix(language-core): ignore frontmatter block in markdown files (#5362) - Thanks to @​brc-dd!
  • fix(component-meta): only exclude vnode events from props (#5369) - Thanks to @​KazariEX!
  • fix(language-core): skip css references for position within virtual code with navigation: true (#5378) - Thanks to @​KazariEX!
  • fix(language-core): hoist export declarations from generic script block (#5398) - Thanks to @​KazariEX!
  • fix(vscode): correct syntax highlight for directives starting with v-for (#5399) - Thanks to @​KazariEX!
  • fix(language-core): correct support for flatten plugins (#5392) - Thanks to @​zhiyuanzmj!
  • fix(language-core): remove semantic code feature on first argument of useCssModule and useTemplateRef - Thanks to @​KazariEX!
  • fix(typescript-plugin): filter completion items of macros and global variables in template and styles (#5425) - Thanks to @​KazariEX!

... (truncated)

Commits
  • c685175 v3.0.0 (#5449)
  • c8bfce4 chore: update volar to 2.4.16
  • 170b8f7 refactor(typescript-plugin): remove outdated getQuickInfoAtPosition proxy f...
  • 3a46489 v3.0.0-beta.5
  • 5cb41fa v3.0.0-beta.4
  • 1f41b16 chore: update volar to 2.4.15
  • 55588f0 refactor(typescript-plugin): optimize Vue command handler registration
  • e85556a ci(lint): auto-fix
  • 4fef5b1 v3.0.0-beta.3
  • 757cb98 refactor: use typescript.tsserverRequest command instead of hack to expose ts...
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jul 2, 2025
@vrubezhny
Copy link
Contributor

/request-license-review

Copy link

github-actions bot commented Jul 2, 2025

/request-license-review

✔️ All licenses already successfully vetted.

Workflow run (with attached summary files):
https://github.com/eclipse-wildwebdeveloper/wildwebdeveloper/actions/runs/16024579134

@vrubezhny
Copy link
Contributor

vrubezhny commented Jul 2, 2025

@vrubezhny
Copy link
Contributor

@zulus Could you please take a look why the unit tests are hanging up?

The following log lines look suspicious:

Jul 02, 2025 10:53:45 AM org.eclipse.lsp4j.jsonrpc.services.GenericEndpoint notify
WARNING: Unsupported notification method: tsserver/request

@zulus
Copy link
Contributor

zulus commented Jul 2, 2025

Sure, I’ll try

@zulus
Copy link
Contributor

zulus commented Jul 3, 2025

It's not that simple, here is explanation: vuejs/language-tools#5456

Vue LSP now require bridge that will receive tsserver/request , forward it to standalone tsserver and later forward back tsserver/response. Due this is also no longer works with standard ts_ls, it require vtsls: https://github.com/yioneko/vtsls

I created feature request on typescript-language-server side: typescript-language-server/typescript-language-server#959

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/org.eclipse.wildwebdeveloper/vue-c4dbd7a335 branch from fefb60f to 0ef94f9 Compare July 11, 2025 14:40
Copy link

⚠️ Failed to request review of not vetted licenses.

Workflow run (with attached summary files):
https://github.com/eclipse-wildwebdeveloper/wildwebdeveloper/actions/runs/16222754178

Bumps the vue group in /org.eclipse.wildwebdeveloper with 2 updates: [@vue/language-server](https://github.com/vuejs/language-tools/tree/HEAD/packages/language-server) and [@vue/typescript-plugin](https://github.com/vuejs/language-tools/tree/HEAD/packages/typescript-plugin).


Updates `@vue/language-server` from 2.2.10 to 3.0.0
- [Release notes](https://github.com/vuejs/language-tools/releases)
- [Changelog](https://github.com/vuejs/language-tools/blob/master/CHANGELOG.md)
- [Commits](https://github.com/vuejs/language-tools/commits/v3.0.0/packages/language-server)

Updates `@vue/typescript-plugin` from 2.2.10 to 3.0.0
- [Release notes](https://github.com/vuejs/language-tools/releases)
- [Changelog](https://github.com/vuejs/language-tools/blob/master/CHANGELOG.md)
- [Commits](https://github.com/vuejs/language-tools/commits/v3.0.0/packages/typescript-plugin)

---
updated-dependencies:
- dependency-name: "@vue/language-server"
  dependency-version: 3.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: vue
- dependency-name: "@vue/typescript-plugin"
  dependency-version: 3.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: vue
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/org.eclipse.wildwebdeveloper/vue-c4dbd7a335 branch from 0ef94f9 to 6ca1b67 Compare July 14, 2025 17:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants