[PR #1740] [MERGED] chore(deps): update dev-dependencies #5189

Closed
opened 2026-04-16 13:29:47 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/go-vikunja/vikunja/pull/1740
Author: @renovate[bot]
Created: 11/1/2025
Status: Merged
Merged: 11/3/2025
Merged by: @kolaente

Base: mainHead: renovate/dev-dependencies


📝 Commits (1)

  • 5393173 chore(deps): update dev-dependencies

📊 Changes

4 files changed (+443 additions, -443 deletions)

View changed files

📝 desktop/package.json (+1 -1)
📝 desktop/pnpm-lock.yaml (+5 -5)
📝 frontend/package.json (+9 -9)
📝 frontend/pnpm-lock.yaml (+428 -428)

📄 Description

This PR contains the following updates:

Package Change Age Confidence
@types/node (source) 22.18.12 -> 22.19.0 age confidence
@typescript-eslint/eslint-plugin (source) 8.46.2 -> 8.46.3 age confidence
@typescript-eslint/parser (source) 8.46.2 -> 8.46.3 age confidence
caniuse-lite 1.0.30001751 -> 1.0.30001753 age confidence
electron 37.7.1 -> 37.8.0 age confidence
esbuild 0.25.11 -> 0.25.12 age confidence
eslint (source) 9.38.0 -> 9.39.1 age confidence
happy-dom 20.0.8 -> 20.0.10 age confidence
sass-embedded 1.93.2 -> 1.93.3 age confidence
vue-tsc (source) 3.1.2 -> 3.1.3 age confidence

Release Notes

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.46.3

Compare Source

🩹 Fixes
  • eslint-plugin: [no-duplicate-enum-values] support signed numbers (#​11722, #​11723)
  • eslint-plugin: [no-misused-promises] expand union type to retrieve target property (#​11706)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.46.3

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

browserslist/caniuse-lite (caniuse-lite)

v1.0.30001753

Compare Source

v1.0.30001752

Compare Source

electron/electron (electron)

v37.8.0: electron v37.8.0

Compare Source

Release Notes for v37.8.0

Features

  • Added methods to enable more granular accessibility support management. #​48627 (Also in 38, 39)
  • Support dynamic ESM imports in non-context isolated preloads. #​48487 (Also in 38, 39)

Fixes

  • Fixed a potential crash in dialog.showOpenDialog on Windows with an empty extension filter array. #​48659 (Also in 38, 39)
  • Fixed an error when checking environmental variables when using remote checksums when installing Electron via npm. #​48671 (Also in 38, 39)
  • Fixed an issue where trafficLightPosition would not be correctly applied when using titleBarStyle: 'customButtonsOnHover' on macOS 26. #​48622 (Also in 38, 39)

Documentation

evanw/esbuild (esbuild)

v0.25.12

Compare Source

  • Fix a minification regression with CSS media queries (#​4315)

    The previous release introduced support for parsing media queries which unintentionally introduced a regression with the removal of duplicate media rules during minification. Specifically the grammar for @media <media-type> and <media-condition-without-or> { ... } was missing an equality check for the <media-condition-without-or> part, so rules with different suffix clauses in this position would incorrectly compare equal and be deduplicated. This release fixes the regression.

  • Update the list of known JavaScript globals (#​4310)

    This release updates esbuild's internal list of known JavaScript globals. These are globals that are known to not have side-effects when the property is accessed. For example, accessing the global Array property is considered to be side-effect free but accessing the global scrollY property can trigger a layout, which is a side-effect. This is used by esbuild's tree-shaking to safely remove unused code that is known to be side-effect free. This update adds the following global properties:

    From ES2017:

    • Atomics
    • SharedArrayBuffer

    From ES2020:

    • BigInt64Array
    • BigUint64Array

    From ES2021:

    • FinalizationRegistry
    • WeakRef

    From ES2025:

    • Float16Array
    • Iterator

    Note that this does not indicate that constructing any of these objects is side-effect free, just that accessing the identifier is side-effect free. For example, this now allows esbuild to tree-shake classes that extend from Iterator:

    // This can now be tree-shaken by esbuild:
    class ExampleIterator extends Iterator {}
    
  • Add support for the new @view-transition CSS rule (#​4313)

    With this release, esbuild now has improved support for pretty-printing and minifying the new @view-transition rule (which esbuild was previously unaware of):

    /* Original code */
    @&#8203;view-transition {
      navigation: auto;
      types: check;
    }
    
    /* Old output */
    @&#8203;view-transition { navigation: auto; types: check; }
    
    /* New output */
    @&#8203;view-transition {
      navigation: auto;
      types: check;
    }
    

    The new view transition feature provides a mechanism for creating animated transitions between documents in a multi-page app. You can read more about view transition rules here.

    This change was contributed by @​yisibl.

  • Trim CSS rules that will never match

    The CSS minifier will now remove rules whose selectors contain :is() and :where() as those selectors will never match. These selectors can currently be automatically generated by esbuild when you give esbuild nonsensical input such as the following:

    /* Original code */
    div:before {
      color: green;
      &.foo {
        color: red;
      }
    }
    
    /* Old output (with --supported:nesting=false --minify) */
    div:before{color:green}:is().foo{color:red}
    
    /* New output (with --supported:nesting=false --minify) */
    div:before{color:green}
    

    This input is nonsensical because CSS nesting is (unfortunately) not supported inside of pseudo-elements such as :before. Currently esbuild generates a rule containing :is() in this case when you tell esbuild to transform nested CSS into non-nested CSS. I think it's reasonable to do that as it sort of helps explain what's going on (or at least indicates that something is wrong in the output). It shouldn't be present in minified code, however, so this release now strips it out.

eslint/eslint (eslint)

v9.39.1

Compare Source

v9.39.0

Compare Source

capricorn86/happy-dom (happy-dom)

v20.0.10

Compare Source

v20.0.9

Compare Source

sass/embedded-host-node (sass-embedded)

v1.93.3

Compare Source

  • Fix a performance regression that was introduced in 1.92.0.
vuejs/language-tools (vue-tsc)

v3.1.3

Compare Source

Features
  • feat(typescript-plugin): allow triggering file references on <template> (#​5734) - Thanks to @​KazariEX!
Bug Fixes
  • fix(vscode): correct syntax highlight in template with lang="html" (#​5728) - Thanks to @​serkodev!
Other Changes
  • refactor(language-core): generate intrinsic elements variable into global types (#​5730) - Thanks to @​KazariEX!
  • refactor(typescript-plugin): remove go to definition trick for auto imported components (#​5733) - Thanks to @​KazariEX!

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/go-vikunja/vikunja/pull/1740 **Author:** [@renovate[bot]](https://github.com/apps/renovate) **Created:** 11/1/2025 **Status:** ✅ Merged **Merged:** 11/3/2025 **Merged by:** [@kolaente](https://github.com/kolaente) **Base:** `main` ← **Head:** `renovate/dev-dependencies` --- ### 📝 Commits (1) - [`5393173`](https://github.com/go-vikunja/vikunja/commit/5393173fca805c2f77b49e59a06fee6cfa1ca437) chore(deps): update dev-dependencies ### 📊 Changes **4 files changed** (+443 additions, -443 deletions) <details> <summary>View changed files</summary> 📝 `desktop/package.json` (+1 -1) 📝 `desktop/pnpm-lock.yaml` (+5 -5) 📝 `frontend/package.json` (+9 -9) 📝 `frontend/pnpm-lock.yaml` (+428 -428) </details> ### 📄 Description This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | [`22.18.12` -> `22.19.0`](https://renovatebot.com/diffs/npm/@types%2fnode/22.18.12/22.19.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/22.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/22.18.12/22.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://redirect.github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`8.46.2` -> `8.46.3`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/8.46.2/8.46.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2feslint-plugin/8.46.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2feslint-plugin/8.46.2/8.46.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://redirect.github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`8.46.2` -> `8.46.3`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/8.46.2/8.46.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2fparser/8.46.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2fparser/8.46.2/8.46.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [caniuse-lite](https://redirect.github.com/browserslist/caniuse-lite) | [`1.0.30001751` -> `1.0.30001753`](https://renovatebot.com/diffs/npm/caniuse-lite/1.0.30001751/1.0.30001753) | [![age](https://developer.mend.io/api/mc/badges/age/npm/caniuse-lite/1.0.30001753?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/caniuse-lite/1.0.30001751/1.0.30001753?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [electron](https://redirect.github.com/electron/electron) | [`37.7.1` -> `37.8.0`](https://renovatebot.com/diffs/npm/electron/37.7.1/37.8.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/electron/37.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/electron/37.7.1/37.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [esbuild](https://redirect.github.com/evanw/esbuild) | [`0.25.11` -> `0.25.12`](https://renovatebot.com/diffs/npm/esbuild/0.25.11/0.25.12) | [![age](https://developer.mend.io/api/mc/badges/age/npm/esbuild/0.25.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/esbuild/0.25.11/0.25.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [eslint](https://eslint.org) ([source](https://redirect.github.com/eslint/eslint)) | [`9.38.0` -> `9.39.1`](https://renovatebot.com/diffs/npm/eslint/9.38.0/9.39.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint/9.39.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint/9.38.0/9.39.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [happy-dom](https://redirect.github.com/capricorn86/happy-dom) | [`20.0.8` -> `20.0.10`](https://renovatebot.com/diffs/npm/happy-dom/20.0.8/20.0.10) | [![age](https://developer.mend.io/api/mc/badges/age/npm/happy-dom/20.0.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/happy-dom/20.0.8/20.0.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [sass-embedded](https://redirect.github.com/sass/embedded-host-node) | [`1.93.2` -> `1.93.3`](https://renovatebot.com/diffs/npm/sass-embedded/1.93.2/1.93.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/sass-embedded/1.93.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/sass-embedded/1.93.2/1.93.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [vue-tsc](https://redirect.github.com/vuejs/language-tools) ([source](https://redirect.github.com/vuejs/language-tools/tree/HEAD/packages/tsc)) | [`3.1.2` -> `3.1.3`](https://renovatebot.com/diffs/npm/vue-tsc/3.1.2/3.1.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/vue-tsc/3.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vue-tsc/3.1.2/3.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>typescript-eslint/typescript-eslint (@&#8203;typescript-eslint/eslint-plugin)</summary> ### [`v8.46.3`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#8463-2025-11-03) [Compare Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.46.2...v8.46.3) ##### 🩹 Fixes - **eslint-plugin:** \[no-duplicate-enum-values] support signed numbers ([#&#8203;11722](https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11722), [#&#8203;11723](https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11723)) - **eslint-plugin:** \[no-misused-promises] expand union type to retrieve target property ([#&#8203;11706](https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11706)) ##### ❤️ Thank You - Evgeny Stepanovych [@&#8203;undsoft](https://redirect.github.com/undsoft) - tao You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website. </details> <details> <summary>typescript-eslint/typescript-eslint (@&#8203;typescript-eslint/parser)</summary> ### [`v8.46.3`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#8463-2025-11-03) [Compare Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.46.2...v8.46.3) This was a version bump only for parser to align it with other projects, there were no code changes. You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website. </details> <details> <summary>browserslist/caniuse-lite (caniuse-lite)</summary> ### [`v1.0.30001753`](https://redirect.github.com/browserslist/caniuse-lite/compare/1.0.30001752...1.0.30001753) [Compare Source](https://redirect.github.com/browserslist/caniuse-lite/compare/1.0.30001752...1.0.30001753) ### [`v1.0.30001752`](https://redirect.github.com/browserslist/caniuse-lite/compare/1.0.30001751...1.0.30001752) [Compare Source](https://redirect.github.com/browserslist/caniuse-lite/compare/1.0.30001751...1.0.30001752) </details> <details> <summary>electron/electron (electron)</summary> ### [`v37.8.0`](https://redirect.github.com/electron/electron/releases/tag/v37.8.0): electron v37.8.0 [Compare Source](https://redirect.github.com/electron/electron/compare/v37.7.1...v37.8.0) ### Release Notes for v37.8.0 #### Features - Added methods to enable more granular accessibility support management. [#&#8203;48627](https://redirect.github.com/electron/electron/pull/48627) <span style="font-size:small;">(Also in [38](https://redirect.github.com/electron/electron/pull/48626), [39](https://redirect.github.com/electron/electron/pull/48625))</span> - Support dynamic ESM imports in non-context isolated preloads. [#&#8203;48487](https://redirect.github.com/electron/electron/pull/48487) <span style="font-size:small;">(Also in [38](https://redirect.github.com/electron/electron/pull/48489), [39](https://redirect.github.com/electron/electron/pull/48488))</span> #### Fixes - Fixed a potential crash in `dialog.showOpenDialog` on Windows with an empty extension filter array. [#&#8203;48659](https://redirect.github.com/electron/electron/pull/48659) <span style="font-size:small;">(Also in [38](https://redirect.github.com/electron/electron/pull/48660), [39](https://redirect.github.com/electron/electron/pull/48658))</span> - Fixed an error when checking environmental variables when using remote checksums when installing Electron via npm. [#&#8203;48671](https://redirect.github.com/electron/electron/pull/48671) <span style="font-size:small;">(Also in [38](https://redirect.github.com/electron/electron/pull/48672), [39](https://redirect.github.com/electron/electron/pull/48673))</span> - Fixed an issue where `trafficLightPosition` would not be correctly applied when using `titleBarStyle: 'customButtonsOnHover'` on macOS 26. [#&#8203;48622](https://redirect.github.com/electron/electron/pull/48622) <span style="font-size:small;">(Also in [38](https://redirect.github.com/electron/electron/pull/48620), [39](https://redirect.github.com/electron/electron/pull/48621))</span> #### Documentation - Documentation changes: [#&#8203;48683](https://redirect.github.com/electron/electron/pull/48683) </details> <details> <summary>evanw/esbuild (esbuild)</summary> ### [`v0.25.12`](https://redirect.github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#02512) [Compare Source](https://redirect.github.com/evanw/esbuild/compare/v0.25.11...v0.25.12) - Fix a minification regression with CSS media queries ([#&#8203;4315](https://redirect.github.com/evanw/esbuild/issues/4315)) The previous release introduced support for parsing media queries which unintentionally introduced a regression with the removal of duplicate media rules during minification. Specifically the grammar for `@media <media-type> and <media-condition-without-or> { ... }` was missing an equality check for the `<media-condition-without-or>` part, so rules with different suffix clauses in this position would incorrectly compare equal and be deduplicated. This release fixes the regression. - Update the list of known JavaScript globals ([#&#8203;4310](https://redirect.github.com/evanw/esbuild/issues/4310)) This release updates esbuild's internal list of known JavaScript globals. These are globals that are known to not have side-effects when the property is accessed. For example, accessing the global `Array` property is considered to be side-effect free but accessing the global `scrollY` property can trigger a layout, which is a side-effect. This is used by esbuild's tree-shaking to safely remove unused code that is known to be side-effect free. This update adds the following global properties: From [ES2017](https://tc39.es/ecma262/2017/): - `Atomics` - `SharedArrayBuffer` From [ES2020](https://tc39.es/ecma262/2020/): - `BigInt64Array` - `BigUint64Array` From [ES2021](https://tc39.es/ecma262/2021/): - `FinalizationRegistry` - `WeakRef` From [ES2025](https://tc39.es/ecma262/2025/): - `Float16Array` - `Iterator` Note that this does not indicate that constructing any of these objects is side-effect free, just that accessing the identifier is side-effect free. For example, this now allows esbuild to tree-shake classes that extend from `Iterator`: ```js // This can now be tree-shaken by esbuild: class ExampleIterator extends Iterator {} ``` - Add support for the new `@view-transition` CSS rule ([#&#8203;4313](https://redirect.github.com/evanw/esbuild/pull/4313)) With this release, esbuild now has improved support for pretty-printing and minifying the new `@view-transition` rule (which esbuild was previously unaware of): ```css /* Original code */ @&#8203;view-transition { navigation: auto; types: check; } /* Old output */ @&#8203;view-transition { navigation: auto; types: check; } /* New output */ @&#8203;view-transition { navigation: auto; types: check; } ``` The new view transition feature provides a mechanism for creating animated transitions between documents in a multi-page app. You can read more about view transition rules [here](https://developer.mozilla.org/en-US/docs/Web/CSS/@&#8203;view-transition). This change was contributed by [@&#8203;yisibl](https://redirect.github.com/yisibl). - Trim CSS rules that will never match The CSS minifier will now remove rules whose selectors contain `:is()` and `:where()` as those selectors will never match. These selectors can currently be automatically generated by esbuild when you give esbuild nonsensical input such as the following: ```css /* Original code */ div:before { color: green; &.foo { color: red; } } /* Old output (with --supported:nesting=false --minify) */ div:before{color:green}:is().foo{color:red} /* New output (with --supported:nesting=false --minify) */ div:before{color:green} ``` This input is nonsensical because CSS nesting is (unfortunately) not supported inside of pseudo-elements such as `:before`. Currently esbuild generates a rule containing `:is()` in this case when you tell esbuild to transform nested CSS into non-nested CSS. I think it's reasonable to do that as it sort of helps explain what's going on (or at least indicates that something is wrong in the output). It shouldn't be present in minified code, however, so this release now strips it out. </details> <details> <summary>eslint/eslint (eslint)</summary> ### [`v9.39.1`](https://redirect.github.com/eslint/eslint/compare/v9.39.0...e2772811a8595d161870835ff04822b25a2cdf45) [Compare Source](https://redirect.github.com/eslint/eslint/compare/v9.39.0...e2772811a8595d161870835ff04822b25a2cdf45) ### [`v9.39.0`](https://redirect.github.com/eslint/eslint/compare/v9.38.0...ac3a60dffc29d8d4d5031621bc062e77f891532a) [Compare Source](https://redirect.github.com/eslint/eslint/compare/v9.38.0...v9.39.0) </details> <details> <summary>capricorn86/happy-dom (happy-dom)</summary> ### [`v20.0.10`](https://redirect.github.com/capricorn86/happy-dom/compare/v20.0.9...2cc044385bf53c8afc83aa9d1d1fb9735555680b) [Compare Source](https://redirect.github.com/capricorn86/happy-dom/compare/v20.0.9...v20.0.10) ### [`v20.0.9`](https://redirect.github.com/capricorn86/happy-dom/compare/v20.0.8...70dde499efe897e9160abde438c60aa7606320c0) [Compare Source](https://redirect.github.com/capricorn86/happy-dom/compare/v20.0.8...v20.0.9) </details> <details> <summary>sass/embedded-host-node (sass-embedded)</summary> ### [`v1.93.3`](https://redirect.github.com/sass/embedded-host-node/blob/HEAD/CHANGELOG.md#1933) [Compare Source](https://redirect.github.com/sass/embedded-host-node/compare/1.93.2...1.93.3) - Fix a performance regression that was introduced in 1.92.0. </details> <details> <summary>vuejs/language-tools (vue-tsc)</summary> ### [`v3.1.3`](https://redirect.github.com/vuejs/language-tools/blob/HEAD/CHANGELOG.md#313-2025-11-03) [Compare Source](https://redirect.github.com/vuejs/language-tools/compare/v3.1.2...v3.1.3) ##### Features - feat(typescript-plugin): allow triggering file references on `<template>` ([#&#8203;5734](https://redirect.github.com/vuejs/language-tools/issues/5734)) - Thanks to [@&#8203;KazariEX](https://redirect.github.com/KazariEX)! ##### Bug Fixes - fix(vscode): correct syntax highlight in template with `lang="html"` ([#&#8203;5728](https://redirect.github.com/vuejs/language-tools/issues/5728)) - Thanks to [@&#8203;serkodev](https://redirect.github.com/serkodev)! ##### Other Changes - refactor(language-core): generate intrinsic elements variable into global types ([#&#8203;5730](https://redirect.github.com/vuejs/language-tools/issues/5730)) - Thanks to [@&#8203;KazariEX](https://redirect.github.com/KazariEX)! - refactor(typescript-plugin): remove go to definition trick for auto imported components ([#&#8203;5733](https://redirect.github.com/vuejs/language-tools/issues/5733)) - Thanks to [@&#8203;KazariEX](https://redirect.github.com/KazariEX)! </details> --- ### Configuration 📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/go-vikunja/vikunja). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTkuNCIsInVwZGF0ZWRJblZlciI6IjQxLjE1OS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-16 13:29:47 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/vikunja#5189