chore(deps): update dev-dependencies #3757

Merged
konrad merged 2 commits from renovate/dev-dependencies into main 2023-10-04 06:48:46 +00:00
Member

This PR contains the following updates:

Package Type Update Change
@rushstack/eslint-patch (source) devDependencies patch 1.5.0 -> 1.5.1
@​types/marked devDependencies patch 5.0.1 -> 5.0.2
@types/node (source) devDependencies patch 18.18.0 -> 18.18.3
@typescript-eslint/eslint-plugin devDependencies patch 6.7.3 -> 6.7.4
@typescript-eslint/parser devDependencies patch 6.7.3 -> 6.7.4
@vitejs/plugin-vue (source) devDependencies minor 4.3.4 -> 4.4.0
browserslist devDependencies patch 4.22.0 -> 4.22.1
caniuse-lite devDependencies patch 1.0.30001540 -> 1.0.30001543
esbuild devDependencies patch 0.19.3 -> 0.19.4
postcss (source) devDependencies patch 8.4.30 -> 8.4.31
rollup (source) devDependencies patch 3.29.3 -> 3.29.4
vite (source) devDependencies patch 4.4.9 -> 4.4.10
vitest devDependencies patch 0.34.5 -> 0.34.6

Release Notes

microsoft/rushstack (@​rushstack/eslint-patch)

v1.5.1

Compare Source

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

v6.7.4

Compare Source

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.7.4

Compare Source

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

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

vitejs/vite-plugin-vue (@​vitejs/plugin-vue)

v4.4.0

browserslist/browserslist (browserslist)

v4.22.1

Compare Source

browserslist/caniuse-lite (caniuse-lite)

v1.0.30001543

Compare Source

v1.0.30001542

Compare Source

v1.0.30001541

Compare Source

evanw/esbuild (esbuild)

v0.19.4

Compare Source

  • Fix printing of JavaScript decorators in tricky cases (#​3396)

    This release fixes some bugs where esbuild's pretty-printing of JavaScript decorators could incorrectly produced code with a syntax error. The problem happened because esbuild sometimes substitutes identifiers for other expressions in the pretty-printer itself, but the decision about whether to wrap the expression or not didn't account for this. Here are some examples:

    // Original code
    import { constant } from './constants.js'
    import { imported } from 'external'
    import { undef } from './empty.js'
    class Foo {
      @​constant()
      @​imported()
      @​undef()
      foo
    }
    
    // Old output (with --bundle --format=cjs --packages=external --minify-syntax)
    var import_external = require("external");
    var Foo = class {
      @​123()
      @​(0, import_external.imported)()
      @​(void 0)()
      foo;
    };
    
    // New output (with --bundle --format=cjs --packages=external --minify-syntax)
    var import_external = require("external");
    var Foo = class {
      @​(123())
      @​((0, import_external.imported)())
      @​((void 0)())
      foo;
    };
    
  • Allow pre-release versions to be passed to target (#​3388)

    People want to be able to pass version numbers for unreleased versions of node (which have extra stuff after the version numbers) to esbuild's target setting and have esbuild do something reasonable with them. These version strings are of course not present in esbuild's internal feature compatibility table because an unreleased version has not been released yet (by definition). With this release, esbuild will now attempt to accept these version strings passed to target and do something reasonable with them.

postcss/postcss (postcss)

v8.4.31

Compare Source

  • Fixed \r parsing to fix CVE-2023-44270.
rollup/rollup (rollup)

v3.29.4

Compare Source

2023-09-28

Bug Fixes
  • Fix static analysis when an exported function uses callbacks (#​5158)
Pull Requests
vitejs/vite (vite)

v4.4.10

Compare Source

Please refer to CHANGELOG.md for details.

vitest-dev/vitest (vitest)

v0.34.6

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 | |---|---|---|---| | [@rushstack/eslint-patch](https://rushstack.io) ([source](https://github.com/microsoft/rushstack)) | devDependencies | patch | [`1.5.0` -> `1.5.1`](https://renovatebot.com/diffs/npm/@rushstack%2feslint-patch/1.5.0/1.5.1) | | @&#8203;types/marked | devDependencies | patch | [`5.0.1` -> `5.0.2`](https://renovatebot.com/diffs/npm/@types%2fmarked/5.0.1/5.0.2) | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://github.com/DefinitelyTyped/DefinitelyTyped)) | devDependencies | patch | [`18.18.0` -> `18.18.3`](https://renovatebot.com/diffs/npm/@types%2fnode/18.18.0/18.18.3) | | [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint) | devDependencies | patch | [`6.7.3` -> `6.7.4`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/6.7.3/6.7.4) | | [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint) | devDependencies | patch | [`6.7.3` -> `6.7.4`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/6.7.3/6.7.4) | | [@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 | minor | [`4.3.4` -> `4.4.0`](https://renovatebot.com/diffs/npm/@vitejs%2fplugin-vue/4.3.4/4.4.0) | | [browserslist](https://github.com/browserslist/browserslist) | devDependencies | patch | [`4.22.0` -> `4.22.1`](https://renovatebot.com/diffs/npm/browserslist/4.22.0/4.22.1) | | [caniuse-lite](https://github.com/browserslist/caniuse-lite) | devDependencies | patch | [`1.0.30001540` -> `1.0.30001543`](https://renovatebot.com/diffs/npm/caniuse-lite/1.0.30001540/1.0.30001543) | | [esbuild](https://github.com/evanw/esbuild) | devDependencies | patch | [`0.19.3` -> `0.19.4`](https://renovatebot.com/diffs/npm/esbuild/0.19.3/0.19.4) | | [postcss](https://postcss.org/) ([source](https://github.com/postcss/postcss)) | devDependencies | patch | [`8.4.30` -> `8.4.31`](https://renovatebot.com/diffs/npm/postcss/8.4.30/8.4.31) | | [rollup](https://rollupjs.org/) ([source](https://github.com/rollup/rollup)) | devDependencies | patch | [`3.29.3` -> `3.29.4`](https://renovatebot.com/diffs/npm/rollup/3.29.3/3.29.4) | | [vite](https://github.com/vitejs/vite/tree/main/#readme) ([source](https://github.com/vitejs/vite)) | devDependencies | patch | [`4.4.9` -> `4.4.10`](https://renovatebot.com/diffs/npm/vite/4.4.9/4.4.10) | | [vitest](https://github.com/vitest-dev/vitest) | devDependencies | patch | [`0.34.5` -> `0.34.6`](https://renovatebot.com/diffs/npm/vitest/0.34.5/0.34.6) | --- ### Release Notes <details> <summary>microsoft/rushstack (@&#8203;rushstack/eslint-patch)</summary> ### [`v1.5.1`](https://github.com/microsoft/rushstack/compare/8df3e01335ad52d3db54953e42f3d43cd0317f23...ef3017f97bef5b6073999ad22150783aafc84ad1) [Compare Source](https://github.com/microsoft/rushstack/compare/8df3e01335ad52d3db54953e42f3d43cd0317f23...ef3017f97bef5b6073999ad22150783aafc84ad1) </details> <details> <summary>typescript-eslint/typescript-eslint (@&#8203;typescript-eslint/eslint-plugin)</summary> ### [`v6.7.4`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#674-2023-10-02) [Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v6.7.3...v6.7.4) **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.7.4`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#674-2023-10-02) [Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v6.7.3...v6.7.4) **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>vitejs/vite-plugin-vue (@&#8203;vitejs/plugin-vue)</summary> ### [`v4.4.0`](https://github.com/vitejs/vite-plugin-vue/blob/HEAD/packages/plugin-vue/CHANGELOG.md#440-2023-10-02) - fix(plugin-vue): re-create filters after updating options ([#&#8203;246](https://github.com/vitejs/vite-plugin-vue/issues/246)) ([c383503](https://github.com/vitejs/vite-plugin-vue/commit/c383503)), closes [#&#8203;246](https://github.com/vitejs/vite-plugin-vue/issues/246) - feat: support generated JS imports for external scoped style ([#&#8203;196](https://github.com/vitejs/vite-plugin-vue/issues/196)) ([bd5055d](https://github.com/vitejs/vite-plugin-vue/commit/bd5055d)), closes [#&#8203;196](https://github.com/vitejs/vite-plugin-vue/issues/196) - chore: add `@ts-ignore` when accessing `legacy?.buildSsrCjsExternalHeuristics` ([#&#8203;255](https://github.com/vitejs/vite-plugin-vue/issues/255)) ([04c3b0b](https://github.com/vitejs/vite-plugin-vue/commit/04c3b0b)), closes [#&#8203;255](https://github.com/vitejs/vite-plugin-vue/issues/255) - refactor(plugin-vue): deprecate reactivity transform ([38f8ea5](https://github.com/vitejs/vite-plugin-vue/commit/38f8ea5)) - refactor(plugin-vue): use source-map-js ([#&#8203;247](https://github.com/vitejs/vite-plugin-vue/issues/247)) ([b43690d](https://github.com/vitejs/vite-plugin-vue/commit/b43690d)), closes [#&#8203;247](https://github.com/vitejs/vite-plugin-vue/issues/247) </details> <details> <summary>browserslist/browserslist (browserslist)</summary> ### [`v4.22.1`](https://github.com/browserslist/browserslist/blob/HEAD/CHANGELOG.md#4221) [Compare Source](https://github.com/browserslist/browserslist/compare/4.22.0...4.22.1) - Updated Firefox ESR (by [@&#8203;lerkor](https://github.com/lerkor)). </details> <details> <summary>browserslist/caniuse-lite (caniuse-lite)</summary> ### [`v1.0.30001543`](https://github.com/browserslist/caniuse-lite/compare/1.0.30001542...1.0.30001543) [Compare Source](https://github.com/browserslist/caniuse-lite/compare/1.0.30001542...1.0.30001543) ### [`v1.0.30001542`](https://github.com/browserslist/caniuse-lite/compare/1.0.30001541...1.0.30001542) [Compare Source](https://github.com/browserslist/caniuse-lite/compare/1.0.30001541...1.0.30001542) ### [`v1.0.30001541`](https://github.com/browserslist/caniuse-lite/compare/1.0.30001540...1.0.30001541) [Compare Source](https://github.com/browserslist/caniuse-lite/compare/1.0.30001540...1.0.30001541) </details> <details> <summary>evanw/esbuild (esbuild)</summary> ### [`v0.19.4`](https://github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#0194) [Compare Source](https://github.com/evanw/esbuild/compare/v0.19.3...v0.19.4) - Fix printing of JavaScript decorators in tricky cases ([#&#8203;3396](https://github.com/evanw/esbuild/issues/3396)) This release fixes some bugs where esbuild's pretty-printing of JavaScript decorators could incorrectly produced code with a syntax error. The problem happened because esbuild sometimes substitutes identifiers for other expressions in the pretty-printer itself, but the decision about whether to wrap the expression or not didn't account for this. Here are some examples: ```js // Original code import { constant } from './constants.js' import { imported } from 'external' import { undef } from './empty.js' class Foo { @&#8203;constant() @&#8203;imported() @&#8203;undef() foo } // Old output (with --bundle --format=cjs --packages=external --minify-syntax) var import_external = require("external"); var Foo = class { @&#8203;123() @&#8203;(0, import_external.imported)() @&#8203;(void 0)() foo; }; // New output (with --bundle --format=cjs --packages=external --minify-syntax) var import_external = require("external"); var Foo = class { @&#8203;(123()) @&#8203;((0, import_external.imported)()) @&#8203;((void 0)()) foo; }; ``` - Allow pre-release versions to be passed to `target` ([#&#8203;3388](https://github.com/evanw/esbuild/issues/3388)) People want to be able to pass version numbers for unreleased versions of node (which have extra stuff after the version numbers) to esbuild's `target` setting and have esbuild do something reasonable with them. These version strings are of course not present in esbuild's internal feature compatibility table because an unreleased version has not been released yet (by definition). With this release, esbuild will now attempt to accept these version strings passed to `target` and do something reasonable with them. </details> <details> <summary>postcss/postcss (postcss)</summary> ### [`v8.4.31`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8431) [Compare Source](https://github.com/postcss/postcss/compare/8.4.30...8.4.31) - Fixed `\r` parsing to fix CVE-2023-44270. </details> <details> <summary>rollup/rollup (rollup)</summary> ### [`v3.29.4`](https://github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#3294) [Compare Source](https://github.com/rollup/rollup/compare/v3.29.3...v3.29.4) *2023-09-28* ##### Bug Fixes - Fix static analysis when an exported function uses callbacks ([#&#8203;5158](https://github.com/rollup/rollup/issues/5158)) ##### Pull Requests - [#&#8203;5158](https://github.com/rollup/rollup/pull/5158): Deoptimize all parameters when losing track of a function ([@&#8203;lukastaegert](https://github.com/lukastaegert)) </details> <details> <summary>vitejs/vite (vite)</summary> ### [`v4.4.10`](https://github.com/vitejs/vite/releases/tag/v4.4.10) [Compare Source](https://github.com/vitejs/vite/compare/v4.4.9...v4.4.10) Please refer to [CHANGELOG.md](https://github.com/vitejs/vite/blob/v4.4.10/packages/vite/CHANGELOG.md) for details. </details> <details> <summary>vitest-dev/vitest (vitest)</summary> ### [`v0.34.6`](https://github.com/vitest-dev/vitest/releases/tag/v0.34.6) [Compare Source](https://github.com/vitest-dev/vitest/compare/v0.34.5...v0.34.6) #####    🐞 Bug Fixes - Overwrite global URL with environment's  -  by [@&#8203;sheremet-va](https://github.com/sheremet-va) in https://github.com/vitest-dev/vitest/issues/4164 [<samp>(cbe13)</samp>](https://github.com/vitest-dev/vitest/commit/cbe133da) - Correctly resolve external dependencies loaded by custom environments  -  by [@&#8203;sheremet-va](https://github.com/sheremet-va) in https://github.com/vitest-dev/vitest/issues/4196 [<samp>(e3408)</samp>](https://github.com/vitest-dev/vitest/commit/e340802f) - **runner**: The fixture of `test.extend` should be init once time in all test  -  by [@&#8203;Dunqing](https://github.com/Dunqing) in https://github.com/vitest-dev/vitest/issues/4168 [<samp>(730b2)</samp>](https://github.com/vitest-dev/vitest/commit/730b29ec) #####     [View changes on GitHub](https://github.com/vitest-dev/vitest/compare/v0.34.5...v0.34.6) </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:eyJjcmVhdGVkSW5WZXIiOiIzNi42NS4xIiwidXBkYXRlZEluVmVyIjoiMzYuNjUuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
renovate added the
dependencies
label 2023-10-04 00:12:02 +00:00
renovate added 1 commit 2023-10-04 00:12:04 +00:00
continuous-integration/drone/pr Build is failing Details
4cde9d8303
chore(deps): update dev-dependencies
konrad added 1 commit 2023-10-04 06:39:21 +00:00
continuous-integration/drone/pr Build is passing Details
04c8b5e30c
chore(deps): update lockfile
konrad approved these changes 2023-10-04 06:39:24 +00:00
konrad scheduled this pull request to auto merge when all checks succeed 2023-10-04 06:39:31 +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://3757-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://3757-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 c2005c6c71 into main 2023-10-04 06:48:46 +00:00
This repo is archived. You cannot comment on pull requests.
No description provided.