chore(deps): update dev-dependencies #3846

Merged
konrad merged 2 commits from renovate/dev-dependencies into main 2023-12-13 17:45:37 +00:00
Member

This PR contains the following updates:

Package Type Update Change
@types/node (source) devDependencies patch 20.10.3 -> 20.10.4
@typescript-eslint/eslint-plugin devDependencies minor 6.13.2 -> 6.14.0
@typescript-eslint/parser devDependencies minor 6.13.2 -> 6.14.0
@vitejs/plugin-vue (source) devDependencies patch 4.5.1 -> 4.5.2
caniuse-lite devDependencies patch 1.0.30001566 -> 1.0.30001570
csstype devDependencies patch 3.1.2 -> 3.1.3
esbuild devDependencies patch 0.19.8 -> 0.19.9
rollup (source) devDependencies minor 4.6.1 -> 4.9.0
rollup-plugin-visualizer devDependencies minor 5.10.0 -> 5.11.0
typescript (source) devDependencies patch 5.3.2 -> 5.3.3
vite (source) devDependencies patch 5.0.6 -> 5.0.8
vite-plugin-pwa devDependencies patch 0.17.3 -> 0.17.4
vitest devDependencies patch 1.0.1 -> 1.0.4

Release Notes

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

v6.14.0

Compare Source

Bug Fixes
  • eslint-plugin: add no-unsafe-unary-minus, prefer-destructuring to disable-type-checked (#​8038) (431cd15)
  • eslint-plugin: correct message for no-unsafe-unary-minus (#​7998) (705370a)
Features
  • eslint-plugin: [explicit-function-return-type] add support for typed class property definitions (#​8027) (bff47d7)
  • eslint-plugin: [require-await] allow yielding Promise in async generators (#​8003) (4c3e704)

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

6.13.2 (2023-12-04)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

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

6.13.1 (2023-11-28)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

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

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

v6.14.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

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

6.13.2 (2023-12-04)

Note: Version bump only for package @​typescript-eslint/parser

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

6.13.1 (2023-11-28)

Note: Version bump only for package @​typescript-eslint/parser

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

browserslist/caniuse-lite (caniuse-lite)

v1.0.30001570

Compare Source

v1.0.30001568

Compare Source

frenic/csstype (csstype)

v3.1.3

Compare Source

evanw/esbuild (esbuild)

v0.19.9

Compare Source

  • Add support for transforming new CSS gradient syntax for older browsers

    The specification called CSS Images Module Level 4 introduces new CSS gradient syntax for customizing how the browser interpolates colors in between color stops. You can now control the color space that the interpolation happens in as well as (for "polar" color spaces) control whether hue angle interpolation happens clockwise or counterclockwise. You can read more about this in Mozilla's blog post about new CSS gradient features.

    With this release, esbuild will now automatically transform this syntax for older browsers in the target list. For example, here's a gradient that should appear as a rainbow in a browser that supports this new syntax:

    /* Original code */
    .rainbow-gradient {
      width: 100px;
      height: 100px;
      background: linear-gradient(in hsl longer hue, #​7ff, #​77f);
    }
    
    /* New output (with --target=chrome99) */
    .rainbow-gradient {
      width: 100px;
      height: 100px;
      background:
        linear-gradient(
          #​77ffff,
          #​77ffaa 12.5%,
          #​77ff80 18.75%,
          #​84ff77 21.88%,
          #​99ff77 25%,
          #eeff77 37.5%,
          #fffb77 40.62%,
          #ffe577 43.75%,
          #ffbb77 50%,
          #ff9077 56.25%,
          #ff7b77 59.38%,
          #ff7788 62.5%,
          #ff77dd 75%,
          #ff77f2 78.12%,
          #f777ff 81.25%,
          #cc77ff 87.5%,
          #​7777ff);
    }
    

    You can now use this syntax in your CSS source code and esbuild will automatically convert it to an equivalent gradient for older browsers. In addition, esbuild will now also transform "double position" and "transition hint" syntax for older browsers as appropriate:

    /* Original code */
    .stripes {
      width: 100px;
      height: 100px;
      background: linear-gradient(#e65 33%, #ff2 33% 67%, #​99e 67%);
    }
    .glow {
      width: 100px;
      height: 100px;
      background: radial-gradient(white 10%, 20%, black);
    }
    
    /* New output (with --target=chrome33) */
    .stripes {
      width: 100px;
      height: 100px;
      background:
        linear-gradient(
          #e65 33%,
          #ff2 33%,
          #ff2 67%,
          #​99e 67%);
    }
    .glow {
      width: 100px;
      height: 100px;
      background:
        radial-gradient(
          #ffffff 10%,
          #aaaaaa 12.81%,
          #​959595 15.62%,
          #​7b7b7b 21.25%,
          #​5a5a5a 32.5%,
          #​444444 43.75%,
          #​323232 55%,
          #​161616 77.5%,
          #​000000);
    }
    

    You can see visual examples of these new syntax features by looking at esbuild's gradient transformation tests.

    If necessary, esbuild will construct a new gradient that approximates the original gradient by recursively splitting the interval in between color stops until the approximation error is within a small threshold. That is why the above output CSS contains many more color stops than the input CSS.

    Note that esbuild deliberately replaces the original gradient with the approximation instead of inserting the approximation before the original gradient as a fallback. The latest version of Firefox has multiple gradient rendering bugs (including incorrect interpolation of partially-transparent colors and interpolating non-sRGB colors using the incorrect color space). If esbuild didn't replace the original gradient, then Firefox would use the original gradient instead of the fallback the appearance would be incorrect in Firefox. In other words, the latest version of Firefox supports modern gradient syntax but interprets it incorrectly.

  • Add support for color(), lab(), lch(), oklab(), oklch(), and hwb() in CSS

    CSS has recently added lots of new ways of specifying colors. You can read more about this in Chrome's blog post about CSS color spaces.

    This release adds support for minifying colors that use the color(), lab(), lch(), oklab(), oklch(), or hwb() syntax and/or transforming these colors for browsers that don't support it yet:

    /* Original code */
    div {
      color: hwb(90deg 20% 40%);
      background: color(display-p3 1 0 0);
    }
    
    /* New output (with --target=chrome99) */
    div {
      color: #​669933;
      background: #ff0f0e;
      background: color(display-p3 1 0 0);
    }
    

    As you can see, colors outside of the sRGB color space such as color(display-p3 1 0 0) are mapped back into the sRGB gamut and inserted as a fallback for browsers that don't support the new color syntax.

  • Allow empty type parameter lists in certain cases (#​3512)

    TypeScript allows interface declarations and type aliases to have empty type parameter lists. Previously esbuild didn't handle this edge case but with this release, esbuild will now parse this syntax:

    interface Foo<> {}
    type Bar<> = {}
    

    This fix was contributed by @​magic-akari.

rollup/rollup (rollup)

v4.9.0

Compare Source

2023-12-13

Features
  • Fully support arbitrary strings as import and export identifiers (#​5298)
Pull Requests

v4.8.0

Compare Source

2023-12-11

Features
  • Improve experimentalMinChunkSize to take already loaded modules from dynamic imports into account (#​5294)
Pull Requests

v4.7.0

Compare Source

2023-12-08

Features
  • Add build for Linux riscv64 architecture (#​5288)
Bug Fixes
  • Improve error message when native Windows build does not start (#​5284)
Pull Requests
btd/rollup-plugin-visualizer (rollup-plugin-visualizer)

v5.11.0

Compare Source

  • Correct lenghts in case of sourcemap it will strictly use sourcemap data always
  • Add css cursor pointer
  • Add --open to CLI
Microsoft/TypeScript (typescript)

v5.3.3: TypeScript 5.3.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

vitejs/vite (vite)

v5.0.8

Compare Source

v5.0.7

Compare Source

vite-pwa/vite-plugin-pwa (vite-plugin-pwa)

v0.17.4

Compare Source

   🚀 Features
    View changes on GitHub
vitest-dev/vitest (vitest)

v1.0.4

Compare Source

The previous release was built incorrectly and didn't include the performance fix. This release fixes that.

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v1.0.3

Compare Source

   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v1.0.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

Configuration

📅 Schedule: Branch creation - "before 4am" (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 has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://github.com/DefinitelyTyped/DefinitelyTyped)) | devDependencies | patch | [`20.10.3` -> `20.10.4`](https://renovatebot.com/diffs/npm/@types%2fnode/20.10.3/20.10.4) | | [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint) | devDependencies | minor | [`6.13.2` -> `6.14.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/6.13.2/6.14.0) | | [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint) | devDependencies | minor | [`6.13.2` -> `6.14.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/6.13.2/6.14.0) | | [@vitejs/plugin-vue](https://github.com/vitejs/vite-plugin-vue/tree/main/packages/plugin-vue#readme) ([source](https://github.com/vitejs/vite-plugin-vue)) | devDependencies | patch | [`4.5.1` -> `4.5.2`](https://renovatebot.com/diffs/npm/@vitejs%2fplugin-vue/4.5.1/4.5.2) | | [caniuse-lite](https://github.com/browserslist/caniuse-lite) | devDependencies | patch | [`1.0.30001566` -> `1.0.30001570`](https://renovatebot.com/diffs/npm/caniuse-lite/1.0.30001566/1.0.30001570) | | [csstype](https://github.com/frenic/csstype) | devDependencies | patch | [`3.1.2` -> `3.1.3`](https://renovatebot.com/diffs/npm/csstype/3.1.2/3.1.3) | | [esbuild](https://github.com/evanw/esbuild) | devDependencies | patch | [`0.19.8` -> `0.19.9`](https://renovatebot.com/diffs/npm/esbuild/0.19.8/0.19.9) | | [rollup](https://rollupjs.org/) ([source](https://github.com/rollup/rollup)) | devDependencies | minor | [`4.6.1` -> `4.9.0`](https://renovatebot.com/diffs/npm/rollup/4.6.1/4.9.0) | | [rollup-plugin-visualizer](https://github.com/btd/rollup-plugin-visualizer) | devDependencies | minor | [`5.10.0` -> `5.11.0`](https://renovatebot.com/diffs/npm/rollup-plugin-visualizer/5.10.0/5.11.0) | | [typescript](https://www.typescriptlang.org/) ([source](https://github.com/Microsoft/TypeScript)) | devDependencies | patch | [`5.3.2` -> `5.3.3`](https://renovatebot.com/diffs/npm/typescript/5.3.2/5.3.3) | | [vite](https://vitejs.dev) ([source](https://github.com/vitejs/vite)) | devDependencies | patch | [`5.0.6` -> `5.0.8`](https://renovatebot.com/diffs/npm/vite/5.0.6/5.0.8) | | [vite-plugin-pwa](https://github.com/vite-pwa/vite-plugin-pwa) | devDependencies | patch | [`0.17.3` -> `0.17.4`](https://renovatebot.com/diffs/npm/vite-plugin-pwa/0.17.3/0.17.4) | | [vitest](https://github.com/vitest-dev/vitest) | devDependencies | patch | [`1.0.1` -> `1.0.4`](https://renovatebot.com/diffs/npm/vitest/1.0.1/1.0.4) | --- ### Release Notes <details> <summary>typescript-eslint/typescript-eslint (@&#8203;typescript-eslint/eslint-plugin)</summary> ### [`v6.14.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6140-2023-12-11) [Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v6.13.2...v6.14.0) ##### Bug Fixes - **eslint-plugin:** add no-unsafe-unary-minus, prefer-destructuring to disable-type-checked ([#&#8203;8038](https://github.com/typescript-eslint/typescript-eslint/issues/8038)) ([431cd15](https://github.com/typescript-eslint/typescript-eslint/commit/431cd1559f91795e958e03fd060ceaf79fb96f3a)) - **eslint-plugin:** correct message for `no-unsafe-unary-minus` ([#&#8203;7998](https://github.com/typescript-eslint/typescript-eslint/issues/7998)) ([705370a](https://github.com/typescript-eslint/typescript-eslint/commit/705370ac0d9c54081657b8855b398e57d6ea4ddb)) ##### Features - **eslint-plugin:** \[explicit-function-return-type] add support for typed class property definitions ([#&#8203;8027](https://github.com/typescript-eslint/typescript-eslint/issues/8027)) ([bff47d7](https://github.com/typescript-eslint/typescript-eslint/commit/bff47d7885bee3bbcb3a81eff273fe2f48580940)) - **eslint-plugin:** \[require-await] allow yielding Promise in async generators ([#&#8203;8003](https://github.com/typescript-eslint/typescript-eslint/issues/8003)) ([4c3e704](https://github.com/typescript-eslint/typescript-eslint/commit/4c3e704b97e698df7f72174c2d20714836d4d243)) You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. #### [6.13.2](https://github.com/typescript-eslint/typescript-eslint/compare/v6.13.1...v6.13.2) (2023-12-04) **Note:** Version bump only for package [@&#8203;typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. #### [6.13.1](https://github.com/typescript-eslint/typescript-eslint/compare/v6.13.0...v6.13.1) (2023-11-28) **Note:** Version bump only for package [@&#8203;typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. </details> <details> <summary>typescript-eslint/typescript-eslint (@&#8203;typescript-eslint/parser)</summary> ### [`v6.14.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6140-2023-12-11) [Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v6.13.2...v6.14.0) **Note:** Version bump only for package [@&#8203;typescript-eslint/parser](https://github.com/typescript-eslint/parser) You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. #### [6.13.2](https://github.com/typescript-eslint/typescript-eslint/compare/v6.13.1...v6.13.2) (2023-12-04) **Note:** Version bump only for package [@&#8203;typescript-eslint/parser](https://github.com/typescript-eslint/parser) You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. #### [6.13.1](https://github.com/typescript-eslint/typescript-eslint/compare/v6.13.0...v6.13.1) (2023-11-28) **Note:** Version bump only for package [@&#8203;typescript-eslint/parser](https://github.com/typescript-eslint/parser) You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. </details> <details> <summary>browserslist/caniuse-lite (caniuse-lite)</summary> ### [`v1.0.30001570`](https://github.com/browserslist/caniuse-lite/compare/1.0.30001568...1.0.30001570) [Compare Source](https://github.com/browserslist/caniuse-lite/compare/1.0.30001568...1.0.30001570) ### [`v1.0.30001568`](https://github.com/browserslist/caniuse-lite/compare/1.0.30001566...1.0.30001568) [Compare Source](https://github.com/browserslist/caniuse-lite/compare/1.0.30001566...1.0.30001568) </details> <details> <summary>frenic/csstype (csstype)</summary> ### [`v3.1.3`](https://github.com/frenic/csstype/compare/v3.1.2...v3.1.3) [Compare Source](https://github.com/frenic/csstype/compare/v3.1.2...v3.1.3) </details> <details> <summary>evanw/esbuild (esbuild)</summary> ### [`v0.19.9`](https://github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#0199) [Compare Source](https://github.com/evanw/esbuild/compare/v0.19.8...v0.19.9) - Add support for transforming new CSS gradient syntax for older browsers The specification called [CSS Images Module Level 4](https://www.w3.org/TR/css-images-4/) introduces new CSS gradient syntax for customizing how the browser interpolates colors in between color stops. You can now control the color space that the interpolation happens in as well as (for "polar" color spaces) control whether hue angle interpolation happens clockwise or counterclockwise. You can read more about this in [Mozilla's blog post about new CSS gradient features](https://developer.mozilla.org/en-US/blog/css-color-module-level-4/). With this release, esbuild will now automatically transform this syntax for older browsers in the `target` list. For example, here's a gradient that should appear as a rainbow in a browser that supports this new syntax: ```css /* Original code */ .rainbow-gradient { width: 100px; height: 100px; background: linear-gradient(in hsl longer hue, #&#8203;7ff, #&#8203;77f); } /* New output (with --target=chrome99) */ .rainbow-gradient { width: 100px; height: 100px; background: linear-gradient( #&#8203;77ffff, #&#8203;77ffaa 12.5%, #&#8203;77ff80 18.75%, #&#8203;84ff77 21.88%, #&#8203;99ff77 25%, #eeff77 37.5%, #fffb77 40.62%, #ffe577 43.75%, #ffbb77 50%, #ff9077 56.25%, #ff7b77 59.38%, #ff7788 62.5%, #ff77dd 75%, #ff77f2 78.12%, #f777ff 81.25%, #cc77ff 87.5%, #&#8203;7777ff); } ``` You can now use this syntax in your CSS source code and esbuild will automatically convert it to an equivalent gradient for older browsers. In addition, esbuild will now also transform "double position" and "transition hint" syntax for older browsers as appropriate: ```css /* Original code */ .stripes { width: 100px; height: 100px; background: linear-gradient(#e65 33%, #ff2 33% 67%, #&#8203;99e 67%); } .glow { width: 100px; height: 100px; background: radial-gradient(white 10%, 20%, black); } /* New output (with --target=chrome33) */ .stripes { width: 100px; height: 100px; background: linear-gradient( #e65 33%, #ff2 33%, #ff2 67%, #&#8203;99e 67%); } .glow { width: 100px; height: 100px; background: radial-gradient( #ffffff 10%, #aaaaaa 12.81%, #&#8203;959595 15.62%, #&#8203;7b7b7b 21.25%, #&#8203;5a5a5a 32.5%, #&#8203;444444 43.75%, #&#8203;323232 55%, #&#8203;161616 77.5%, #&#8203;000000); } ``` You can see visual examples of these new syntax features by looking at [esbuild's gradient transformation tests](https://esbuild.github.io/gradient-tests/). If necessary, esbuild will construct a new gradient that approximates the original gradient by recursively splitting the interval in between color stops until the approximation error is within a small threshold. That is why the above output CSS contains many more color stops than the input CSS. Note that esbuild deliberately *replaces* the original gradient with the approximation instead of inserting the approximation before the original gradient as a fallback. The latest version of Firefox has multiple gradient rendering bugs (including incorrect interpolation of partially-transparent colors and interpolating non-sRGB colors using the incorrect color space). If esbuild didn't replace the original gradient, then Firefox would use the original gradient instead of the fallback the appearance would be incorrect in Firefox. In other words, the latest version of Firefox supports modern gradient syntax but interprets it incorrectly. - Add support for `color()`, `lab()`, `lch()`, `oklab()`, `oklch()`, and `hwb()` in CSS CSS has recently added lots of new ways of specifying colors. You can read more about this in [Chrome's blog post about CSS color spaces](https://developer.chrome.com/docs/css-ui/high-definition-css-color-guide). This release adds support for minifying colors that use the `color()`, `lab()`, `lch()`, `oklab()`, `oklch()`, or `hwb()` syntax and/or transforming these colors for browsers that don't support it yet: ```css /* Original code */ div { color: hwb(90deg 20% 40%); background: color(display-p3 1 0 0); } /* New output (with --target=chrome99) */ div { color: #&#8203;669933; background: #ff0f0e; background: color(display-p3 1 0 0); } ``` As you can see, colors outside of the sRGB color space such as `color(display-p3 1 0 0)` are mapped back into the sRGB gamut and inserted as a fallback for browsers that don't support the new color syntax. - Allow empty type parameter lists in certain cases ([#&#8203;3512](https://github.com/evanw/esbuild/issues/3512)) TypeScript allows interface declarations and type aliases to have empty type parameter lists. Previously esbuild didn't handle this edge case but with this release, esbuild will now parse this syntax: ```ts interface Foo<> {} type Bar<> = {} ``` This fix was contributed by [@&#8203;magic-akari](https://github.com/magic-akari). </details> <details> <summary>rollup/rollup (rollup)</summary> ### [`v4.9.0`](https://github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#490) [Compare Source](https://github.com/rollup/rollup/compare/v4.8.0...v4.9.0) *2023-12-13* ##### Features - Fully support arbitrary strings as import and export identifiers ([#&#8203;5298](https://github.com/rollup/rollup/issues/5298)) ##### Pull Requests - [#&#8203;5296](https://github.com/rollup/rollup/pull/5296): Do not assume setTimeout return type ([@&#8203;kapouer](https://github.com/kapouer)) - [#&#8203;5298](https://github.com/rollup/rollup/pull/5298): Fully support arbitrary module namespace identifiers for all formats ([@&#8203;lukastaegert](https://github.com/lukastaegert)) ### [`v4.8.0`](https://github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#480) [Compare Source](https://github.com/rollup/rollup/compare/v4.7.0...v4.8.0) *2023-12-11* ##### Features - Improve `experimentalMinChunkSize` to take already loaded modules from dynamic imports into account ([#&#8203;5294](https://github.com/rollup/rollup/issues/5294)) ##### Pull Requests - [#&#8203;5294](https://github.com/rollup/rollup/pull/5294): Find more merge targets for experimentalMinChunkSize ([@&#8203;lukastaegert](https://github.com/lukastaegert)) ### [`v4.7.0`](https://github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#470) [Compare Source](https://github.com/rollup/rollup/compare/v4.6.1...v4.7.0) *2023-12-08* ##### Features - Add build for Linux riscv64 architecture ([#&#8203;5288](https://github.com/rollup/rollup/issues/5288)) ##### Bug Fixes - Improve error message when native Windows build does not start ([#&#8203;5284](https://github.com/rollup/rollup/issues/5284)) ##### Pull Requests - [#&#8203;5278](https://github.com/rollup/rollup/pull/5278): chore(deps): lock file maintenance minor/patch updates ([@&#8203;renovate](https://github.com/renovate)\[bot]) - [#&#8203;5281](https://github.com/rollup/rollup/pull/5281): Add logs and experimentalLogSideEffects to REPL ([@&#8203;lukastaegert](https://github.com/lukastaegert)) - [#&#8203;5284](https://github.com/rollup/rollup/pull/5284): Add friendly error for missing MSVC redistributable ([@&#8203;sapphi-red](https://github.com/sapphi-red)) - [#&#8203;5285](https://github.com/rollup/rollup/pull/5285): chore(deps): update dependency vite to v5.0.5 \[security] ([@&#8203;renovate](https://github.com/renovate)\[bot]) - [#&#8203;5288](https://github.com/rollup/rollup/pull/5288): Add support for linux riscv64 gnu ([@&#8203;kxxt](https://github.com/kxxt)) - [#&#8203;5290](https://github.com/rollup/rollup/pull/5290): chore(deps): lock file maintenance minor/patch updates ([@&#8203;renovate](https://github.com/renovate)\[bot]) </details> <details> <summary>btd/rollup-plugin-visualizer (rollup-plugin-visualizer)</summary> ### [`v5.11.0`](https://github.com/btd/rollup-plugin-visualizer/blob/HEAD/CHANGELOG.md#5110) [Compare Source](https://github.com/btd/rollup-plugin-visualizer/compare/v5.10.0...v5.11.0) - Correct lenghts in case of sourcemap it will strictly use sourcemap data always - Add css cursor pointer - Add --open to CLI </details> <details> <summary>Microsoft/TypeScript (typescript)</summary> ### [`v5.3.3`](https://github.com/microsoft/TypeScript/releases/tag/v5.3.3): TypeScript 5.3.3 [Compare Source](https://github.com/Microsoft/TypeScript/compare/v5.3.2...v5.3.3) For release notes, check out the [release announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-5-3/). For the complete list of fixed issues, check out the - [fixed issues query for Typescript 5.3.0 (Beta)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.3.0%22+is%3Aclosed+). - [fixed issues query for Typescript 5.3.1 (RC)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.3.1%22+is%3Aclosed+). - [fixed issues query for Typescript 5.3.2 (Stable)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.3.2%22+is%3Aclosed+). - [fixed issues query for Typescript 5.3.3 (Stable)](https://github.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.3.3%22+is%3Aclosed+). Downloads are available on: - [NuGet package](https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild) </details> <details> <summary>vitejs/vite (vite)</summary> ### [`v5.0.8`](https://github.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small508-2023-12-12-small) [Compare Source](https://github.com/vitejs/vite/compare/v5.0.7...v5.0.8) - perf: cached fs utils ([#&#8203;15279](https://github.com/vitejs/vite/issues/15279)) ([c9b61c4](https://github.com/vitejs/vite/commit/c9b61c4)), closes [#&#8203;15279](https://github.com/vitejs/vite/issues/15279) - fix: missing warmupRequest in transformIndexHtml ([#&#8203;15303](https://github.com/vitejs/vite/issues/15303)) ([103820f](https://github.com/vitejs/vite/commit/103820f)), closes [#&#8203;15303](https://github.com/vitejs/vite/issues/15303) - fix: public files map will be updated on add/unlink in windows ([#&#8203;15317](https://github.com/vitejs/vite/issues/15317)) ([921ca41](https://github.com/vitejs/vite/commit/921ca41)), closes [#&#8203;15317](https://github.com/vitejs/vite/issues/15317) - fix(build): decode urls in CSS files (fix [#&#8203;15109](https://github.com/vitejs/vite/issues/15109)) ([#&#8203;15246](https://github.com/vitejs/vite/issues/15246)) ([ea6a7a6](https://github.com/vitejs/vite/commit/ea6a7a6)), closes [#&#8203;15109](https://github.com/vitejs/vite/issues/15109) [#&#8203;15246](https://github.com/vitejs/vite/issues/15246) - fix(deps): update all non-major dependencies ([#&#8203;15304](https://github.com/vitejs/vite/issues/15304)) ([bb07f60](https://github.com/vitejs/vite/commit/bb07f60)), closes [#&#8203;15304](https://github.com/vitejs/vite/issues/15304) - fix(ssr): check esm file with normal file path ([#&#8203;15307](https://github.com/vitejs/vite/issues/15307)) ([1597170](https://github.com/vitejs/vite/commit/1597170)), closes [#&#8203;15307](https://github.com/vitejs/vite/issues/15307) ### [`v5.0.7`](https://github.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small507-2023-12-08-small) [Compare Source](https://github.com/vitejs/vite/compare/v5.0.6...v5.0.7) - fix: suppress terser warning if minify disabled ([#&#8203;15275](https://github.com/vitejs/vite/issues/15275)) ([3e42611](https://github.com/vitejs/vite/commit/3e42611)), closes [#&#8203;15275](https://github.com/vitejs/vite/issues/15275) - fix: symbolic links in public dir ([#&#8203;15264](https://github.com/vitejs/vite/issues/15264)) ([ef2a024](https://github.com/vitejs/vite/commit/ef2a024)), closes [#&#8203;15264](https://github.com/vitejs/vite/issues/15264) - fix(html): skip inlining icon and manifest links ([#&#8203;14958](https://github.com/vitejs/vite/issues/14958)) ([8ad81b4](https://github.com/vitejs/vite/commit/8ad81b4)), closes [#&#8203;14958](https://github.com/vitejs/vite/issues/14958) - chore: remove unneeded condition in getRealPath ([#&#8203;15267](https://github.com/vitejs/vite/issues/15267)) ([8e4655c](https://github.com/vitejs/vite/commit/8e4655c)), closes [#&#8203;15267](https://github.com/vitejs/vite/issues/15267) - perf: cache empty optimizer result ([#&#8203;15245](https://github.com/vitejs/vite/issues/15245)) ([8409b66](https://github.com/vitejs/vite/commit/8409b66)), closes [#&#8203;15245](https://github.com/vitejs/vite/issues/15245) </details> <details> <summary>vite-pwa/vite-plugin-pwa (vite-plugin-pwa)</summary> ### [`v0.17.4`](https://github.com/vite-pwa/vite-plugin-pwa/releases/tag/v0.17.4) [Compare Source](https://github.com/vite-pwa/vite-plugin-pwa/compare/v0.17.3...v0.17.4) #####    🚀 Features - **types**: Autocomplete `purpose` in IconResource  -  by [@&#8203;DamianGlowala](https://github.com/DamianGlowala) and [@&#8203;userquin](https://github.com/userquin) in https://github.com/vite-pwa/vite-plugin-pwa/issues/616 [<samp>(f90c0)</samp>](https://github.com/vite-pwa/vite-plugin-pwa/commit/f90c09b) #####     [View changes on GitHub](https://github.com/vite-pwa/vite-plugin-pwa/compare/v0.17.3...v0.17.4) </details> <details> <summary>vitest-dev/vitest (vitest)</summary> ### [`v1.0.4`](https://github.com/vitest-dev/vitest/releases/tag/v1.0.4) [Compare Source](https://github.com/vitest-dev/vitest/compare/v1.0.3...v1.0.4) The previous release was built incorrectly and didn't include the performance fix. This release fixes that. #####    🐞 Bug Fixes - **cli**: `--coverage.all=false` resolved incorrectly  -  by [@&#8203;AriPerkkio](https://github.com/AriPerkkio) in https://github.com/vitest-dev/vitest/issues/4697 [<samp>(a7931)</samp>](https://github.com/vitest-dev/vitest/commit/a7931bbf) #####    🏎 Performance - **reporters**: Downgrade `log-update` to v5  -  by [@&#8203;AriPerkkio](https://github.com/AriPerkkio) in https://github.com/vitest-dev/vitest/issues/4711 [<samp>(13ff9)</samp>](https://github.com/vitest-dev/vitest/commit/13ff97a3) #####     [View changes on GitHub](https://github.com/vitest-dev/vitest/compare/v1.0.3...v1.0.4) ### [`v1.0.3`](https://github.com/vitest-dev/vitest/releases/tag/v1.0.3) [Compare Source](https://github.com/vitest-dev/vitest/compare/v1.0.2...v1.0.3) #####    🐞 Bug Fixes - Correct package exports  -  by [@&#8203;userquin](https://github.com/userquin) in https://github.com/vitest-dev/vitest/issues/4707 [<samp>(37388)</samp>](https://github.com/vitest-dev/vitest/commit/37388d69) - **runner**: Fix async fixture teardown  -  by [@&#8203;hi-ogawa](https://github.com/hi-ogawa) in https://github.com/vitest-dev/vitest/issues/4700 [<samp>(92afd)</samp>](https://github.com/vitest-dev/vitest/commit/92afd54c) - **vitest**: Correctly filter changed files when Vitest workspace is used  -  by [@&#8203;sheremet-va](https://github.com/sheremet-va) in https://github.com/vitest-dev/vitest/issues/4693 [<samp>(34135)</samp>](https://github.com/vitest-dev/vitest/commit/3413518b) #####    🏎 Performance - **reporters**: Downgrade `log-update` to v5  -  by [@&#8203;AriPerkkio](https://github.com/AriPerkkio) in https://github.com/vitest-dev/vitest/issues/4711 [<samp>(13ff9)</samp>](https://github.com/vitest-dev/vitest/commit/13ff97a3) #####     [View changes on GitHub](https://github.com/vitest-dev/vitest/compare/v1.0.2...v1.0.3) ### [`v1.0.2`](https://github.com/vitest-dev/vitest/releases/tag/v1.0.2) [Compare Source](https://github.com/vitest-dev/vitest/compare/v1.0.1...v1.0.2) #####    🐞 Bug Fixes - Don't check if vite is installed  -  by [@&#8203;wojtekmaj](https://github.com/wojtekmaj) in https://github.com/vitest-dev/vitest/issues/4659 [<samp>(775e2)</samp>](https://github.com/vitest-dev/vitest/commit/775e2014) - Fix ensurePackageInstalled on Yarn PnP  -  by [@&#8203;wojtekmaj](https://github.com/wojtekmaj) in https://github.com/vitest-dev/vitest/issues/4657 [<samp>(574cc)</samp>](https://github.com/vitest-dev/vitest/commit/574cc7d0) - Apply `stripSnapshotIndentation` for thrown snapshot  -  by [@&#8203;hi-ogawa](https://github.com/hi-ogawa) in https://github.com/vitest-dev/vitest/issues/4663 [<samp>(74820)</samp>](https://github.com/vitest-dev/vitest/commit/748205dc) - **cli**: - Prompted packages fail to install  -  by [@&#8203;AriPerkkio](https://github.com/AriPerkkio) in https://github.com/vitest-dev/vitest/issues/4593 [<samp>(a9908)</samp>](https://github.com/vitest-dev/vitest/commit/a9908453) - **expect**: - Apply `URL` equality check only when `URL` is available  -  by [@&#8203;hi-ogawa](https://github.com/hi-ogawa) in https://github.com/vitest-dev/vitest/issues/4670 [<samp>(43783)</samp>](https://github.com/vitest-dev/vitest/commit/43783cfe) - **runner**: - Improve fixture error messages  -  by [@&#8203;sheremet-va](https://github.com/sheremet-va) in https://github.com/vitest-dev/vitest/issues/4673 [<samp>(1e4aa)</samp>](https://github.com/vitest-dev/vitest/commit/1e4aa8e4) - Fix fixture cleanup when test times out  -  by [@&#8203;hi-ogawa](https://github.com/hi-ogawa) in https://github.com/vitest-dev/vitest/issues/4679 [<samp>(e7c5e)</samp>](https://github.com/vitest-dev/vitest/commit/e7c5e1f7) - **vitest**: - Support new Request('/api') in happy-dom  -  by [@&#8203;sheremet-va](https://github.com/sheremet-va) in https://github.com/vitest-dev/vitest/issues/4671 [<samp>(6e6ee)</samp>](https://github.com/vitest-dev/vitest/commit/6e6ee10e) - Skip processing getter in auto-mocked constructor call  -  by [@&#8203;hi-ogawa](https://github.com/hi-ogawa) in https://github.com/vitest-dev/vitest/issues/4677 [<samp>(cb786)</samp>](https://github.com/vitest-dev/vitest/commit/cb7864aa) #####     [View changes on GitHub](https://github.com/vitest-dev/vitest/compare/v1.0.1...v1.0.2) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am" (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://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy41MC4xIiwidXBkYXRlZEluVmVyIjoiMzcuNTAuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
renovate added the
dependencies
label 2023-12-07 00:16:26 +00:00
renovate force-pushed renovate/dev-dependencies from d47ce93eb7 to 7c8b93d54f 2023-12-07 07:15:49 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 7c8b93d54f to 046325deff 2023-12-07 10:14:49 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 046325deff to a519507818 2023-12-07 11:14:53 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from a519507818 to 05f0b87b1a 2023-12-07 13:14:29 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 05f0b87b1a to 4095e1a515 2023-12-08 08:16:07 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 4095e1a515 to 59f06348dc 2023-12-08 13:14:55 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 59f06348dc to e64234ecf8 2023-12-09 13:15:07 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from e64234ecf8 to def5c090ab 2023-12-09 17:17:03 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from def5c090ab to 03bfe65a93 2023-12-09 19:15:37 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 03bfe65a93 to 21b0994d81 2023-12-10 05:16:56 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 21b0994d81 to e9121b297c 2023-12-10 08:16:21 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from e9121b297c to 9689ea621e 2023-12-11 07:16:16 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 9689ea621e to 6fba3cd429 2023-12-11 17:21:08 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 6fba3cd429 to 4e27a38ada 2023-12-12 10:17:19 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 4e27a38ada to 7512005322 2023-12-13 08:16:50 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 7512005322 to 00f3667921 2023-12-13 10:16:02 +00:00 Compare
konrad added 1 commit 2023-12-13 17:34:34 +00:00
continuous-integration/drone/pr Build is passing Details
ac51310fa7
chore(deps): update lockfile
konrad approved these changes 2023-12-13 17:34:36 +00:00
konrad scheduled this pull request to auto merge when all checks succeed 2023-12-13 17:34:46 +00:00
Member

Hi renovate!

Thank you for creating a PR!

I've deployed the changes of this PR on a preview environment under this URL: https://3846-renovate-dev-dependencies--vikunja-frontend-preview.netlify.app

You can use this url to view the changes live and test them out.
You will need to manually connect this to an api running somehwere. The easiest to use is https://try.vikunja.io/.

Have a nice day!

Beep boop, I'm a bot.

Hi renovate! Thank you for creating a PR! I've deployed the changes of this PR on a preview environment under this URL: https://3846-renovate-dev-dependencies--vikunja-frontend-preview.netlify.app You can use this url to view the changes live and test them out. You will need to manually connect this to an api running somehwere. The easiest to use is https://try.vikunja.io/. Have a nice day! > Beep boop, I'm a bot.
konrad merged commit 0d074113f1 into main 2023-12-13 17:45:37 +00:00
This repo is archived. You cannot comment on pull requests.
No description provided.