chore(deps): update dev-dependencies #3861

Merged
konrad merged 2 commits from renovate/dev-dependencies into main 2024-01-10 11:51:26 +00:00
Member

This PR contains the following updates:

Package Type Update Change
@cypress/vite-dev-server (source) devDependencies patch 5.0.6 -> 5.0.7
@types/node (source) devDependencies patch 20.10.5 -> 20.10.8
@typescript-eslint/eslint-plugin devDependencies minor 6.15.0 -> 6.18.1
@typescript-eslint/parser devDependencies minor 6.15.0 -> 6.18.1
@vitejs/plugin-vue (source) devDependencies minor 4.5.2 -> 4.6.2
caniuse-lite devDependencies patch 1.0.30001570 -> 1.0.30001576
cypress (source) devDependencies patch 13.6.1 -> 13.6.2
esbuild devDependencies patch 0.19.10 -> 0.19.11
postcss (source) devDependencies patch 8.4.32 -> 8.4.33
rollup (source) devDependencies patch 4.9.1 -> 4.9.4
rollup-plugin-visualizer devDependencies minor 5.11.0 -> 5.12.0
sass devDependencies patch 1.69.5 -> 1.69.7
vite (source) devDependencies patch 5.0.10 -> 5.0.11
vitest devDependencies minor 1.0.4 -> 1.1.3
vue-tsc devDependencies patch 1.8.25 -> 1.8.27

Release Notes

cypress-io/cypress (@​cypress/vite-dev-server)

v5.0.7

Compare Source

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

v6.18.1

Compare Source

🩹 Fixes
  • eslint-plugin: [no-non-null-assertion] provide valid fix when member access is on next line

  • eslint-plugin: [no-unnecessary-condition] improve checking optional callee

  • eslint-plugin: [prefer-readonly] support modifiers of unions and intersections

  • eslint-plugin: [switch-exhaustiveness-check] fix new allowDefaultCaseForExhaustiveSwitch option

❤️ Thank You
  • auvred
  • James
  • Josh Goldberg
  • YeonJuan

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

v6.18.0

Compare Source

🚀 Features
  • typescript-estree: throw on invalid update expressions

  • eslint-plugin: [no-var-requires, no-require-imports] allow option

❤️ Thank You
  • auvred
  • Joshua Chen

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

v6.17.0

Compare Source

Bug Fixes
  • eslint-plugin: [no-restricted-imports] prevent crash when patterns or paths in options are empty (#​8108) (675e987)
Features
  • eslint-plugin: [no-floating-promises] flag result of .map(async) (#​7897) (5857356)
  • eslint-plugin: [switch-exhaustiveness-check] add an option to warn against a default case on an already exhaustive switch (#​7539) (6a219bd)

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

v6.16.0

Compare Source

Bug Fixes
  • eslint-plugin: [unbound-method] exempt all non-Promise built-in statics (#​8096) (3182959)
Features
  • eslint-plugin: deprecate formatting (meta.type: layout) rules (#​8073) (04dea84)
  • eslint-plugin: deprecate no-extra-semi in favor of ESLint Stylistic equivalent (#​8123) (9368bf3)

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

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

v6.18.1

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.

v6.18.0

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.

v6.17.0

Compare Source

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

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

v6.16.0

Compare Source

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

Compare Source

v1.0.30001575

Compare Source

v1.0.30001574

Compare Source

v1.0.30001572

Compare Source

v1.0.30001571

Compare Source

evanw/esbuild (esbuild)

v0.19.11

Compare Source

  • Fix TypeScript-specific class transform edge case (#​3559)

    The previous release introduced an optimization that avoided transforming super() in the class constructor for TypeScript code compiled with useDefineForClassFields set to false if all class instance fields have no initializers. The rationale was that in this case, all class instance fields are omitted in the output so no changes to the constructor are needed. However, if all of this is the case and there are #private instance fields with initializers, those private instance field initializers were still being moved into the constructor. This was problematic because they were being inserted before the call to super() (since super() is now no longer transformed in that case). This release introduces an additional optimization that avoids moving the private instance field initializers into the constructor in this edge case, which generates smaller code, matches the TypeScript compiler's output more closely, and avoids this bug:

    // Original code
    class Foo extends Bar {
      #private = 1;
      public: any;
      constructor() {
        super();
      }
    }
    
    // Old output (with esbuild v0.19.9)
    class Foo extends Bar {
      constructor() {
        super();
        this.#private = 1;
      }
      #private;
    }
    
    // Old output (with esbuild v0.19.10)
    class Foo extends Bar {
      constructor() {
        this.#private = 1;
        super();
      }
      #private;
    }
    
    // New output
    class Foo extends Bar {
      #private = 1;
      constructor() {
        super();
      }
    }
    
  • Minifier: allow reording a primitive past a side-effect (#​3568)

    The minifier previously allowed reordering a side-effect past a primitive, but didn't handle the case of reordering a primitive past a side-effect. This additional case is now handled:

    // Original code
    function f() {
      let x = false;
      let y = x;
      const boolean = y;
      let frag = $.template(`<p contenteditable="${boolean}">hello world</p>`);
      return frag;
    }
    
    // Old output (with --minify)
    function f(){const e=!1;return $.template(`<p contenteditable="${e}">hello world</p>`)}
    
    // New output (with --minify)
    function f(){return $.template('<p contenteditable="false">hello world</p>')}
    
  • Minifier: consider properties named using known Symbol instances to be side-effect free (#​3561)

    Many things in JavaScript can have side effects including property accesses and ToString operations, so using a symbol such as Symbol.iterator as a computed property name is not obviously side-effect free. This release adds a special case for known Symbol instances so that they are considered side-effect free when used as property names. For example, this class declaration will now be considered side-effect free:

    class Foo {
      *[Symbol.iterator]() {
      }
    }
    
  • Provide the stop() API in node to exit esbuild's child process (#​3558)

    You can now call stop() in esbuild's node API to exit esbuild's child process to reclaim the resources used. It only makes sense to do this for a long-lived node process when you know you will no longer be making any more esbuild API calls. It is not necessary to call this to allow node to exit, and it's advantageous to not call this in between calls to esbuild's API as sharing a single long-lived esbuild child process is more efficient than re-creating a new esbuild child process for every API call. This API call used to exist but was removed in version 0.9.0. This release adds it back due to a user request.

postcss/postcss (postcss)

v8.4.33

Compare Source

  • Fixed NoWorkResult behavior difference with normal mode (by Romain Menke).
  • Fixed NoWorkResult usage conditions (by @​ahmdammarr).
rollup/rollup (rollup)

v4.9.4

Compare Source

2024-01-06

Bug Fixes
  • Use quotes for keys in namespaces that are only numbers but are not valid integers (#​5328)
  • Allow to have comments between pure annotations and the annoted node (#​5332)
Pull Requests

v4.9.3

Compare Source

2024-01-05

Bug Fixes
  • Support __proto__ as export/import name (#​5313)
  • Use ESTree AST type over custom type in user-facing types (#​5323)
Pull Requests

v4.9.2

Compare Source

2023-12-30

Bug Fixes
  • Extend support for arbitrary namespace identifiers in SystemJS (#​5321)
  • Do not wrongly flag functions without side effects as side effects if moduleSideEffects is false (#​5322)
Pull Requests
btd/rollup-plugin-visualizer (rollup-plugin-visualizer)

v5.12.0

Compare Source

  • Make unique id in generated data to be hash of data
  • Remove strict from CLI
sass/dart-sass (sass)

v1.69.7

Compare Source

Embedded Sass
  • In the JS Embedded Host, properly install the x64 Dart Sass executable on
    ARM64 Windows.

v1.69.6

Compare Source

  • Produce better output for numbers with complex units in meta.inspect() and
    debugging messages.

  • Escape U+007F DELETE when serializing strings.

  • When generating CSS error messages to display in-browser, escape all code
    points that aren't in the US-ASCII region. Previously only code points U+0100
    LATIN CAPITAL LETTER A WITH MACRON were escaped.

  • Provide official releases for musl LibC and for Android.

  • Don't crash when running meta.apply() in asynchronous mode.

JS API
  • Fix a bug where certain exceptions could produce SourceSpans that didn't
    follow the documented SourceSpan API.
vitejs/vite (vite)

v5.0.11

Compare Source

vitest-dev/vitest (vitest)

v1.1.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.1.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.1.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.1.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
vuejs/language-tools (vue-tsc)

v1.8.27

Compare Source

v1.8.26

Compare Source


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 | |---|---|---|---| | [@cypress/vite-dev-server](https://github.com/cypress-io/cypress/tree/develop/npm/vite-dev-server#readme) ([source](https://github.com/cypress-io/cypress)) | devDependencies | patch | [`5.0.6` -> `5.0.7`](https://renovatebot.com/diffs/npm/@cypress%2fvite-dev-server/5.0.6/5.0.7) | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://github.com/DefinitelyTyped/DefinitelyTyped)) | devDependencies | patch | [`20.10.5` -> `20.10.8`](https://renovatebot.com/diffs/npm/@types%2fnode/20.10.5/20.10.8) | | [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint) | devDependencies | minor | [`6.15.0` -> `6.18.1`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/6.15.0/6.18.1) | | [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint) | devDependencies | minor | [`6.15.0` -> `6.18.1`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/6.15.0/6.18.1) | | [@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.5.2` -> `4.6.2`](https://renovatebot.com/diffs/npm/@vitejs%2fplugin-vue/4.5.2/4.6.2) | | [caniuse-lite](https://github.com/browserslist/caniuse-lite) | devDependencies | patch | [`1.0.30001570` -> `1.0.30001576`](https://renovatebot.com/diffs/npm/caniuse-lite/1.0.30001570/1.0.30001576) | | [cypress](https://cypress.io) ([source](https://github.com/cypress-io/cypress)) | devDependencies | patch | [`13.6.1` -> `13.6.2`](https://renovatebot.com/diffs/npm/cypress/13.6.1/13.6.2) | | [esbuild](https://github.com/evanw/esbuild) | devDependencies | patch | [`0.19.10` -> `0.19.11`](https://renovatebot.com/diffs/npm/esbuild/0.19.10/0.19.11) | | [postcss](https://postcss.org/) ([source](https://github.com/postcss/postcss)) | devDependencies | patch | [`8.4.32` -> `8.4.33`](https://renovatebot.com/diffs/npm/postcss/8.4.32/8.4.33) | | [rollup](https://rollupjs.org/) ([source](https://github.com/rollup/rollup)) | devDependencies | patch | [`4.9.1` -> `4.9.4`](https://renovatebot.com/diffs/npm/rollup/4.9.1/4.9.4) | | [rollup-plugin-visualizer](https://github.com/btd/rollup-plugin-visualizer) | devDependencies | minor | [`5.11.0` -> `5.12.0`](https://renovatebot.com/diffs/npm/rollup-plugin-visualizer/5.11.0/5.12.0) | | [sass](https://github.com/sass/dart-sass) | devDependencies | patch | [`1.69.5` -> `1.69.7`](https://renovatebot.com/diffs/npm/sass/1.69.5/1.69.7) | | [vite](https://vitejs.dev) ([source](https://github.com/vitejs/vite)) | devDependencies | patch | [`5.0.10` -> `5.0.11`](https://renovatebot.com/diffs/npm/vite/5.0.10/5.0.11) | | [vitest](https://github.com/vitest-dev/vitest) | devDependencies | minor | [`1.0.4` -> `1.1.3`](https://renovatebot.com/diffs/npm/vitest/1.0.4/1.1.3) | | [vue-tsc](https://github.com/vuejs/language-tools) | devDependencies | patch | [`1.8.25` -> `1.8.27`](https://renovatebot.com/diffs/npm/vue-tsc/1.8.25/1.8.27) | --- ### Release Notes <details> <summary>cypress-io/cypress (@&#8203;cypress/vite-dev-server)</summary> ### [`v5.0.7`](https://github.com/cypress-io/cypress/compare/@cypress/vite-dev-server-v5.0.6...@cypress/vite-dev-server-v5.0.7) [Compare Source](https://github.com/cypress-io/cypress/compare/@cypress/vite-dev-server-v5.0.6...@cypress/vite-dev-server-v5.0.7) </details> <details> <summary>typescript-eslint/typescript-eslint (@&#8203;typescript-eslint/eslint-plugin)</summary> ### [`v6.18.1`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6181-2024-01-08) [Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v6.18.0...v6.18.1) ##### 🩹 Fixes - **eslint-plugin:** \[no-non-null-assertion] provide valid fix when member access is on next line - **eslint-plugin:** \[no-unnecessary-condition] improve checking optional callee - **eslint-plugin:** \[prefer-readonly] support modifiers of unions and intersections - **eslint-plugin:** \[switch-exhaustiveness-check] fix new allowDefaultCaseForExhaustiveSwitch option ##### ❤️ Thank You - auvred - James - Josh Goldberg ✨ - YeonJuan 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. ### [`v6.18.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6180-2024-01-06) [Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v6.17.0...v6.18.0) ##### 🚀 Features - **typescript-estree:** throw on invalid update expressions - **eslint-plugin:** \[no-var-requires, no-require-imports] allow option ##### ❤️ Thank You - auvred - Joshua Chen 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. ### [`v6.17.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6170-2024-01-01) [Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v6.16.0...v6.17.0) ##### Bug Fixes - **eslint-plugin:** \[no-restricted-imports] prevent crash when `patterns` or `paths` in options are empty ([#&#8203;8108](https://github.com/typescript-eslint/typescript-eslint/issues/8108)) ([675e987](https://github.com/typescript-eslint/typescript-eslint/commit/675e987ca1d13244c03d7e09d4e42c6539689d9a)) ##### Features - **eslint-plugin:** \[no-floating-promises] flag result of .map(async) ([#&#8203;7897](https://github.com/typescript-eslint/typescript-eslint/issues/7897)) ([5857356](https://github.com/typescript-eslint/typescript-eslint/commit/5857356962060b19aa792bee778f9167ee54154b)) - **eslint-plugin:** \[switch-exhaustiveness-check] add an option to warn against a `default` case on an already exhaustive `switch` ([#&#8203;7539](https://github.com/typescript-eslint/typescript-eslint/issues/7539)) ([6a219bd](https://github.com/typescript-eslint/typescript-eslint/commit/6a219bdfe6fcf86aae28158e0d855f87a8bac719)) 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. ### [`v6.16.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6160-2023-12-25) [Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v6.15.0...v6.16.0) ##### Bug Fixes - **eslint-plugin:** \[unbound-method] exempt all non-Promise built-in statics ([#&#8203;8096](https://github.com/typescript-eslint/typescript-eslint/issues/8096)) ([3182959](https://github.com/typescript-eslint/typescript-eslint/commit/31829591e2c5cf6bdbdd5da23b12c5782f710fa5)) ##### Features - **eslint-plugin:** deprecate formatting (meta.type: layout) rules ([#&#8203;8073](https://github.com/typescript-eslint/typescript-eslint/issues/8073)) ([04dea84](https://github.com/typescript-eslint/typescript-eslint/commit/04dea84e8e934a415ec1381a90de3cde670d0dc3)) - **eslint-plugin:** deprecate no-extra-semi in favor of ESLint Stylistic equivalent ([#&#8203;8123](https://github.com/typescript-eslint/typescript-eslint/issues/8123)) ([9368bf3](https://github.com/typescript-eslint/typescript-eslint/commit/9368bf390afc58a19123782f8dff2bb5cdd3cccc)) 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.18.1`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6181-2024-01-08) [Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v6.18.0...v6.18.1) 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://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. ### [`v6.18.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6180-2024-01-06) [Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v6.17.0...v6.18.0) 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://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. ### [`v6.17.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6170-2024-01-01) [Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v6.16.0...v6.17.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. ### [`v6.16.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6160-2023-12-25) [Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v6.15.0...v6.16.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. </details> <details> <summary>browserslist/caniuse-lite (caniuse-lite)</summary> ### [`v1.0.30001576`](https://github.com/browserslist/caniuse-lite/compare/1.0.30001575...1.0.30001576) [Compare Source](https://github.com/browserslist/caniuse-lite/compare/1.0.30001575...1.0.30001576) ### [`v1.0.30001575`](https://github.com/browserslist/caniuse-lite/compare/1.0.30001574...1.0.30001575) [Compare Source](https://github.com/browserslist/caniuse-lite/compare/1.0.30001574...1.0.30001575) ### [`v1.0.30001574`](https://github.com/browserslist/caniuse-lite/compare/1.0.30001572...1.0.30001574) [Compare Source](https://github.com/browserslist/caniuse-lite/compare/1.0.30001572...1.0.30001574) ### [`v1.0.30001572`](https://github.com/browserslist/caniuse-lite/compare/1.0.30001571...1.0.30001572) [Compare Source](https://github.com/browserslist/caniuse-lite/compare/1.0.30001571...1.0.30001572) ### [`v1.0.30001571`](https://github.com/browserslist/caniuse-lite/compare/1.0.30001570...1.0.30001571) [Compare Source](https://github.com/browserslist/caniuse-lite/compare/1.0.30001570...1.0.30001571) </details> <details> <summary>evanw/esbuild (esbuild)</summary> ### [`v0.19.11`](https://github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#01911) [Compare Source](https://github.com/evanw/esbuild/compare/v0.19.10...v0.19.11) - Fix TypeScript-specific class transform edge case ([#&#8203;3559](https://github.com/evanw/esbuild/issues/3559)) The previous release introduced an optimization that avoided transforming `super()` in the class constructor for TypeScript code compiled with `useDefineForClassFields` set to `false` if all class instance fields have no initializers. The rationale was that in this case, all class instance fields are omitted in the output so no changes to the constructor are needed. However, if all of this is the case *and* there are `#private` instance fields with initializers, those private instance field initializers were still being moved into the constructor. This was problematic because they were being inserted before the call to `super()` (since `super()` is now no longer transformed in that case). This release introduces an additional optimization that avoids moving the private instance field initializers into the constructor in this edge case, which generates smaller code, matches the TypeScript compiler's output more closely, and avoids this bug: ```ts // Original code class Foo extends Bar { #private = 1; public: any; constructor() { super(); } } // Old output (with esbuild v0.19.9) class Foo extends Bar { constructor() { super(); this.#private = 1; } #private; } // Old output (with esbuild v0.19.10) class Foo extends Bar { constructor() { this.#private = 1; super(); } #private; } // New output class Foo extends Bar { #private = 1; constructor() { super(); } } ``` - Minifier: allow reording a primitive past a side-effect ([#&#8203;3568](https://github.com/evanw/esbuild/issues/3568)) The minifier previously allowed reordering a side-effect past a primitive, but didn't handle the case of reordering a primitive past a side-effect. This additional case is now handled: ```js // Original code function f() { let x = false; let y = x; const boolean = y; let frag = $.template(`<p contenteditable="${boolean}">hello world</p>`); return frag; } // Old output (with --minify) function f(){const e=!1;return $.template(`<p contenteditable="${e}">hello world</p>`)} // New output (with --minify) function f(){return $.template('<p contenteditable="false">hello world</p>')} ``` - Minifier: consider properties named using known `Symbol` instances to be side-effect free ([#&#8203;3561](https://github.com/evanw/esbuild/issues/3561)) Many things in JavaScript can have side effects including property accesses and ToString operations, so using a symbol such as `Symbol.iterator` as a computed property name is not obviously side-effect free. This release adds a special case for known `Symbol` instances so that they are considered side-effect free when used as property names. For example, this class declaration will now be considered side-effect free: ```js class Foo { *[Symbol.iterator]() { } } ``` - Provide the `stop()` API in node to exit esbuild's child process ([#&#8203;3558](https://github.com/evanw/esbuild/issues/3558)) You can now call `stop()` in esbuild's node API to exit esbuild's child process to reclaim the resources used. It only makes sense to do this for a long-lived node process when you know you will no longer be making any more esbuild API calls. It is not necessary to call this to allow node to exit, and it's advantageous to not call this in between calls to esbuild's API as sharing a single long-lived esbuild child process is more efficient than re-creating a new esbuild child process for every API call. This API call used to exist but was removed in [version 0.9.0](https://github.com/evanw/esbuild/releases/v0.9.0). This release adds it back due to a user request. </details> <details> <summary>postcss/postcss (postcss)</summary> ### [`v8.4.33`](https://github.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8433) [Compare Source](https://github.com/postcss/postcss/compare/8.4.32...8.4.33) - Fixed `NoWorkResult` behavior difference with normal mode (by Romain Menke). - Fixed `NoWorkResult` usage conditions (by [@&#8203;ahmdammarr](https://github.com/ahmdammarr)). </details> <details> <summary>rollup/rollup (rollup)</summary> ### [`v4.9.4`](https://github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#494) [Compare Source](https://github.com/rollup/rollup/compare/v4.9.3...v4.9.4) *2024-01-06* ##### Bug Fixes - Use quotes for keys in namespaces that are only numbers but are not valid integers ([#&#8203;5328](https://github.com/rollup/rollup/issues/5328)) - Allow to have comments between pure annotations and the annoted node ([#&#8203;5332](https://github.com/rollup/rollup/issues/5332)) ##### Pull Requests - [#&#8203;5328](https://github.com/rollup/rollup/pull/5328): Correctly handling number key ([@&#8203;LongTengDao](https://github.com/LongTengDao)) - [#&#8203;5332](https://github.com/rollup/rollup/pull/5332): Handle pure annotations that are separated by a comment ([@&#8203;lukastaegert](https://github.com/lukastaegert)) ### [`v4.9.3`](https://github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#493) [Compare Source](https://github.com/rollup/rollup/compare/v4.9.2...v4.9.3) *2024-01-05* ##### Bug Fixes - Support `__proto__` as export/import name ([#&#8203;5313](https://github.com/rollup/rollup/issues/5313)) - Use ESTree AST type over custom type in user-facing types ([#&#8203;5323](https://github.com/rollup/rollup/issues/5323)) ##### Pull Requests - [#&#8203;5313](https://github.com/rollup/rollup/pull/5313): Correctly handling **proto** export as module object key ([@&#8203;LongTengDao](https://github.com/LongTengDao)) - [#&#8203;5323](https://github.com/rollup/rollup/pull/5323): fix: Add estree.Program type to rollup.d.ts ([@&#8203;TrickyPi](https://github.com/TrickyPi)) - [#&#8203;5326](https://github.com/rollup/rollup/pull/5326): docs: fix grammar ([@&#8203;gigabites19](https://github.com/gigabites19)) - [#&#8203;5329](https://github.com/rollup/rollup/pull/5329): chore(deps): update dependency [@&#8203;vue/eslint-config-prettier](https://github.com/vue/eslint-config-prettier) to v9 ([@&#8203;renovate](https://github.com/renovate)\[bot]) - [#&#8203;5330](https://github.com/rollup/rollup/pull/5330): chore(deps): lock file maintenance minor/patch updates ([@&#8203;renovate](https://github.com/renovate)\[bot]) ### [`v4.9.2`](https://github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#492) [Compare Source](https://github.com/rollup/rollup/compare/v4.9.1...v4.9.2) *2023-12-30* ##### Bug Fixes - Extend support for arbitrary namespace identifiers in SystemJS ([#&#8203;5321](https://github.com/rollup/rollup/issues/5321)) - Do not wrongly flag functions without side effects as side effects if moduleSideEffects is false ([#&#8203;5322](https://github.com/rollup/rollup/issues/5322)) ##### Pull Requests - [#&#8203;5305](https://github.com/rollup/rollup/pull/5305): Add JSDoc types to internal scripts ([@&#8203;lukastaegert](https://github.com/lukastaegert)) - [#&#8203;5309](https://github.com/rollup/rollup/pull/5309): chore(deps): update actions/download-artifact action to v4 ([@&#8203;renovate](https://github.com/renovate)\[bot]) - [#&#8203;5311](https://github.com/rollup/rollup/pull/5311): chode: add node badge ([@&#8203;btea](https://github.com/btea)) - [#&#8203;5312](https://github.com/rollup/rollup/pull/5312): Remove rollup-plugin-thatworks from devDeps ([@&#8203;TrickyPi](https://github.com/TrickyPi)) - [#&#8203;5318](https://github.com/rollup/rollup/pull/5318): chore(deps): update dependency eslint-plugin-unicorn to v50 ([@&#8203;renovate](https://github.com/renovate)\[bot]) - [#&#8203;5319](https://github.com/rollup/rollup/pull/5319): chore(deps): lock file maintenance minor/patch updates ([@&#8203;renovate](https://github.com/renovate)\[bot]) - [#&#8203;5321](https://github.com/rollup/rollup/pull/5321): Handle arbitrary namespace identifiers in some SystemJS scenarios ([@&#8203;lukastaegert](https://github.com/lukastaegert)) - [#&#8203;5322](https://github.com/rollup/rollup/pull/5322): Do not handle declarations in modules without side effects as TDZ ([@&#8203;lukastaegert](https://github.com/lukastaegert)) </details> <details> <summary>btd/rollup-plugin-visualizer (rollup-plugin-visualizer)</summary> ### [`v5.12.0`](https://github.com/btd/rollup-plugin-visualizer/blob/HEAD/CHANGELOG.md#5120) [Compare Source](https://github.com/btd/rollup-plugin-visualizer/compare/v5.11.0...v5.12.0) - Make unique id in generated data to be hash of data - Remove strict from CLI </details> <details> <summary>sass/dart-sass (sass)</summary> ### [`v1.69.7`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1697) [Compare Source](https://github.com/sass/dart-sass/compare/1.69.6...1.69.7) ##### Embedded Sass - In the JS Embedded Host, properly install the x64 Dart Sass executable on ARM64 Windows. ### [`v1.69.6`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1696) [Compare Source](https://github.com/sass/dart-sass/compare/1.69.5...1.69.6) - Produce better output for numbers with complex units in `meta.inspect()` and debugging messages. - Escape U+007F DELETE when serializing strings. - When generating CSS error messages to display in-browser, escape all code points that aren't in the US-ASCII region. Previously only code points U+0100 LATIN CAPITAL LETTER A WITH MACRON were escaped. - Provide official releases for musl LibC and for Android. - Don't crash when running `meta.apply()` in asynchronous mode. ##### JS API - Fix a bug where certain exceptions could produce `SourceSpan`s that didn't follow the documented `SourceSpan` API. </details> <details> <summary>vitejs/vite (vite)</summary> ### [`v5.0.11`](https://github.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small5011-2024-01-05-small) [Compare Source](https://github.com/vitejs/vite/compare/v5.0.10...v5.0.11) - fix: don't pretransform classic script links ([#&#8203;15361](https://github.com/vitejs/vite/issues/15361)) ([19e3c9a](https://github.com/vitejs/vite/commit/19e3c9a)), closes [#&#8203;15361](https://github.com/vitejs/vite/issues/15361) - fix: inject `__vite__mapDeps` code before sourcemap file comment ([#&#8203;15483](https://github.com/vitejs/vite/issues/15483)) ([d2aa096](https://github.com/vitejs/vite/commit/d2aa096)), closes [#&#8203;15483](https://github.com/vitejs/vite/issues/15483) - fix(assets): avoid splitting `,` inside base64 value of `srcset` attribute ([#&#8203;15422](https://github.com/vitejs/vite/issues/15422)) ([8de7bd2](https://github.com/vitejs/vite/commit/8de7bd2)), closes [#&#8203;15422](https://github.com/vitejs/vite/issues/15422) - fix(html): handle offset magic-string slice error ([#&#8203;15435](https://github.com/vitejs/vite/issues/15435)) ([5ea9edb](https://github.com/vitejs/vite/commit/5ea9edb)), closes [#&#8203;15435](https://github.com/vitejs/vite/issues/15435) - chore(deps): update dependency strip-literal to v2 ([#&#8203;15475](https://github.com/vitejs/vite/issues/15475)) ([49d21fe](https://github.com/vitejs/vite/commit/49d21fe)), closes [#&#8203;15475](https://github.com/vitejs/vite/issues/15475) - chore(deps): update tj-actions/changed-files action to v41 ([#&#8203;15476](https://github.com/vitejs/vite/issues/15476)) ([2a540ee](https://github.com/vitejs/vite/commit/2a540ee)), closes [#&#8203;15476](https://github.com/vitejs/vite/issues/15476) </details> <details> <summary>vitest-dev/vitest (vitest)</summary> ### [`v1.1.3`](https://github.com/vitest-dev/vitest/releases/tag/v1.1.3) [Compare Source](https://github.com/vitest-dev/vitest/compare/v1.1.2...v1.1.3) #####    🐞 Bug Fixes - **vitest**: - Vi.mock breaks tests when using imported variables inside the factory  -  by [@&#8203;sheremet-va](https://github.com/sheremet-va) and **Dunqing** in https://github.com/vitest-dev/vitest/issues/4873 [<samp>(7719e)</samp>](https://github.com/vitest-dev/vitest/commit/7719e79e) - Apply `slowTestThreshold` to all reporters  -  by [@&#8203;hi-ogawa](https://github.com/hi-ogawa) in https://github.com/vitest-dev/vitest/issues/4876 [<samp>(1769c)</samp>](https://github.com/vitest-dev/vitest/commit/1769c796) #####     [View changes on GitHub](https://github.com/vitest-dev/vitest/compare/v1.1.2...v1.1.3) ### [`v1.1.2`](https://github.com/vitest-dev/vitest/releases/tag/v1.1.2) [Compare Source](https://github.com/vitest-dev/vitest/compare/v1.1.1...v1.1.2) #####    🐞 Bug Fixes - Remove internal flag from UI option in the config  -  by [@&#8203;sheremet-va](https://github.com/sheremet-va) [<samp>(7b4a2)</samp>](https://github.com/vitest-dev/vitest/commit/7b4a2fce) - **browser**: - Avoid safaridriver collision  -  by [@&#8203;mbland](https://github.com/mbland) in https://github.com/vitest-dev/vitest/issues/4863 [<samp>(345a2)</samp>](https://github.com/vitest-dev/vitest/commit/345a25d6) - Resolved failure to find arbitrarily-named snapshot files when using `expect(...).toMatchFileSnapshot()` matcher.  -  by [@&#8203;zmullett](https://github.com/zmullett), **Zac Mullett** and [@&#8203;sheremet-va](https://github.com/sheremet-va) in https://github.com/vitest-dev/vitest/issues/4839 [<samp>(b8140)</samp>](https://github.com/vitest-dev/vitest/commit/b8140fca) - Handle config.base  -  by [@&#8203;mbland](https://github.com/mbland) and [@&#8203;sheremet-va](https://github.com/sheremet-va) in https://github.com/vitest-dev/vitest/issues/4686 and https://github.com/vitest-dev/vitest/issues/4692 [<samp>(9e345)</samp>](https://github.com/vitest-dev/vitest/commit/9e34557e) - **deps**: - Update dependency acorn-walk to ^8.3.1  -  by [@&#8203;renovate](https://github.com/renovate)\[bot] in https://github.com/vitest-dev/vitest/issues/4837 [<samp>(47bc2)</samp>](https://github.com/vitest-dev/vitest/commit/47bc233d) - Update dependency sirv to ^2.0.4  -  by [@&#8203;renovate](https://github.com/renovate)\[bot] in https://github.com/vitest-dev/vitest/issues/4838 [<samp>(df261)</samp>](https://github.com/vitest-dev/vitest/commit/df261ae1) - **runner**: - Fix fixture cleanup for concurrent tests  -  by [@&#8203;hi-ogawa](https://github.com/hi-ogawa) in https://github.com/vitest-dev/vitest/issues/4827 [<samp>(1fee6)</samp>](https://github.com/vitest-dev/vitest/commit/1fee63f2) - **spy**: - Don't allow `Promise` in `mockImplementation` if it's not in the function signature  -  by [@&#8203;sheremet-va](https://github.com/sheremet-va) in https://github.com/vitest-dev/vitest/issues/4859 [<samp>(072e0)</samp>](https://github.com/vitest-dev/vitest/commit/072e02bf) - **vite-node**: - Correctly return cached result  -  by [@&#8203;sheremet-va](https://github.com/sheremet-va) in https://github.com/vitest-dev/vitest/issues/4870 [<samp>(15bbb)</samp>](https://github.com/vitest-dev/vitest/commit/15bbbf81) - **vitest**: - Throw an error if mock was already loaded when `vi.mock` is called  -  by [@&#8203;sheremet-va](https://github.com/sheremet-va) in https://github.com/vitest-dev/vitest/issues/4862 [<samp>(e12a5)</samp>](https://github.com/vitest-dev/vitest/commit/e12a5a36) - Correctly rerun test files on change if server was restarted  -  by [@&#8203;sheremet-va](https://github.com/sheremet-va) in https://github.com/vitest-dev/vitest/issues/4871 [<samp>(6088b)</samp>](https://github.com/vitest-dev/vitest/commit/6088b372) - **vm-threads**: - Don't crash on percentage based `memoryLimit`  -  by [@&#8203;inottn](https://github.com/inottn) and [@&#8203;AriPerkkio](https://github.com/AriPerkkio) in https://github.com/vitest-dev/vitest/issues/4802 [<samp>(70e8a)</samp>](https://github.com/vitest-dev/vitest/commit/70e8a389) #####     [View changes on GitHub](https://github.com/vitest-dev/vitest/compare/v1.1.1...v1.1.2) ### [`v1.1.1`](https://github.com/vitest-dev/vitest/releases/tag/v1.1.1) [Compare Source](https://github.com/vitest-dev/vitest/compare/v1.1.0...v1.1.1) #####    🐞 Bug Fixes - Don't crash when using happy-dom or jsdom environment on Yarn PnP workspaces  -  by [@&#8203;wojtekmaj](https://github.com/wojtekmaj) and [@&#8203;sheremet-va](https://github.com/sheremet-va) in https://github.com/vitest-dev/vitest/issues/4698 [<samp>(ee8b4)</samp>](https://github.com/vitest-dev/vitest/commit/ee8b46db) - Don't fail if `inline: true` is set  -  by [@&#8203;sheremet-va](https://github.com/sheremet-va) in https://github.com/vitest-dev/vitest/issues/4815 [<samp>(8f622)</samp>](https://github.com/vitest-dev/vitest/commit/8f6225b8) - Correct option name `--no-parallelism`  -  by [@&#8203;bonyuta0204](https://github.com/bonyuta0204) in https://github.com/vitest-dev/vitest/issues/4831 [<samp>(5053a)</samp>](https://github.com/vitest-dev/vitest/commit/5053a5dd) - Match jest json output by making json reporter output ndjson-compatible  -  by [@&#8203;bard](https://github.com/bard) in https://github.com/vitest-dev/vitest/issues/4824 [<samp>(7e6a6)</samp>](https://github.com/vitest-dev/vitest/commit/7e6a62af) - **runner**: - Reset "current test" state on dynamic `skip`  -  by [@&#8203;hi-ogawa](https://github.com/hi-ogawa) in https://github.com/vitest-dev/vitest/issues/4814 [<samp>(19faf)</samp>](https://github.com/vitest-dev/vitest/commit/19faf00e) - **vitest**: - Don't hang when mocking files with cyclic dependencies  -  by [@&#8203;sheremet-va](https://github.com/sheremet-va) in https://github.com/vitest-dev/vitest/issues/4811 [<samp>(e8ca6)</samp>](https://github.com/vitest-dev/vitest/commit/e8ca6437) - Initialize snapshot state only once for each file suite  -  by [@&#8203;hi-ogawa](https://github.com/hi-ogawa) in https://github.com/vitest-dev/vitest/issues/4796 [<samp>(957da)</samp>](https://github.com/vitest-dev/vitest/commit/957daa32) - Fix file snapshots in skipped suites considered obsolete  -  by [@&#8203;hi-ogawa](https://github.com/hi-ogawa) in https://github.com/vitest-dev/vitest/issues/4795 [<samp>(06c14)</samp>](https://github.com/vitest-dev/vitest/commit/06c14f7d) - Show `beforeAll/afterAll` errors in junit reporter  -  by [@&#8203;hi-ogawa](https://github.com/hi-ogawa) in https://github.com/vitest-dev/vitest/issues/4819 [<samp>(2baea)</samp>](https://github.com/vitest-dev/vitest/commit/2baea35e) - **vm-threads**: - Tests not cancelled on key press, cancelled tests shown twice  -  by [@&#8203;AriPerkkio](https://github.com/AriPerkkio) in https://github.com/vitest-dev/vitest/issues/4781 [<samp>(cf53d)</samp>](https://github.com/vitest-dev/vitest/commit/cf53d4be) #####     [View changes on GitHub](https://github.com/vitest-dev/vitest/compare/v1.1.0...v1.1.1) ### [`v1.1.0`](https://github.com/vitest-dev/vitest/releases/tag/v1.1.0) [Compare Source](https://github.com/vitest-dev/vitest/compare/v1.0.4...v1.1.0) #####    🚀 Features - Add es-main compatibility to vite-node  -  by [@&#8203;zookatron](https://github.com/zookatron) in https://github.com/vitest-dev/vitest/issues/4751 [<samp>(486a3)</samp>](https://github.com/vitest-dev/vitest/commit/486a3e61) - Add `--workspace` option, fix root resolution in workspaces  -  by [@&#8203;sheremet-va](https://github.com/sheremet-va) and [@&#8203;AriPerkkio](https://github.com/AriPerkkio) in https://github.com/vitest-dev/vitest/issues/4773 [<samp>(67d93)</samp>](https://github.com/vitest-dev/vitest/commit/67d93eda) - Add `--no-file-parallelism`, `--maxWorkers`, `--minWorkers` flags  -  by [@&#8203;sheremet-va](https://github.com/sheremet-va) and [@&#8203;AriPerkkio](https://github.com/AriPerkkio) in https://github.com/vitest-dev/vitest/issues/4705 [<samp>(fd5d7)</samp>](https://github.com/vitest-dev/vitest/commit/fd5d7e66) - Add `--no-isolate` flag to improve performance, add documentation about performance  -  by [@&#8203;sheremet-va](https://github.com/sheremet-va), [@&#8203;AriPerkkio](https://github.com/AriPerkkio) and **Pascal Jufer** in https://github.com/vitest-dev/vitest/issues/4777 [<samp>(4d55a)</samp>](https://github.com/vitest-dev/vitest/commit/4d55a026) - Add `--exclude` CLI flag  -  by [@&#8203;Namchee](https://github.com/Namchee) and [@&#8203;sheremet-va](https://github.com/sheremet-va) in https://github.com/vitest-dev/vitest/issues/4279 [<samp>(f859e)</samp>](https://github.com/vitest-dev/vitest/commit/f859efc0) #####    🐞 Bug Fixes - Correctly reset provided values  -  by [@&#8203;sheremet-va](https://github.com/sheremet-va) in https://github.com/vitest-dev/vitest/issues/4775 [<samp>(5a71e)</samp>](https://github.com/vitest-dev/vitest/commit/5a71eb30) - **expect**: - Fix `toHaveProperty` assertion error diff  -  by [@&#8203;hi-ogawa](https://github.com/hi-ogawa) in https://github.com/vitest-dev/vitest/issues/4734 [<samp>(f8f70)</samp>](https://github.com/vitest-dev/vitest/commit/f8f70f7c) - **runner**: - Handle fixture teardown error  -  by [@&#8203;hi-ogawa](https://github.com/hi-ogawa) in https://github.com/vitest-dev/vitest/issues/4683 [<samp>(c6f5f)</samp>](https://github.com/vitest-dev/vitest/commit/c6f5f7f9) - **types**: - `defineWorkspace` fix intellisense and report type errors  -  by [@&#8203;AriPerkkio](https://github.com/AriPerkkio) in https://github.com/vitest-dev/vitest/issues/4743 [<samp>(9cc36)</samp>](https://github.com/vitest-dev/vitest/commit/9cc36689) - **ui**: - Escape html for console log view  -  by [@&#8203;hi-ogawa](https://github.com/hi-ogawa) in https://github.com/vitest-dev/vitest/issues/4724 [<samp>(e0dde)</samp>](https://github.com/vitest-dev/vitest/commit/e0dde6ab) - Fix coverage iframe url for html report preview  -  by [@&#8203;hi-ogawa](https://github.com/hi-ogawa) in https://github.com/vitest-dev/vitest/issues/4717 [<samp>(71911)</samp>](https://github.com/vitest-dev/vitest/commit/71911039) - Show file item when search filter matches only test cases  -  by [@&#8203;hi-ogawa](https://github.com/hi-ogawa) in https://github.com/vitest-dev/vitest/issues/4736 [<samp>(f43fd)</samp>](https://github.com/vitest-dev/vitest/commit/f43fdd87) - **vitest**: - Pass down CLI options to override workspace configs  -  by [@&#8203;sheremet-va](https://github.com/sheremet-va) in https://github.com/vitest-dev/vitest/issues/4774 [<samp>(8dabe)</samp>](https://github.com/vitest-dev/vitest/commit/8dabef86) #####     [View changes on GitHub](https://github.com/vitest-dev/vitest/compare/v1.0.4...v1.1.0) </details> <details> <summary>vuejs/language-tools (vue-tsc)</summary> ### [`v1.8.27`](https://github.com/vuejs/language-tools/blob/HEAD/CHANGELOG.md#1827-20231226) [Compare Source](https://github.com/vuejs/language-tools/compare/5849cada166bbd3faa03f21efd4d3cc2a2836d11...v1.8.27) - fix(language-core): remove misuse of `JSX.Element` for compatible with vue 3.4 (https://github.com/vuejs/core/issues/9923) ### [`v1.8.26`](https://github.com/vuejs/language-tools/blob/HEAD/CHANGELOG.md#1826-20231222) [Compare Source](https://github.com/vuejs/language-tools/compare/v1.8.25...5849cada166bbd3faa03f21efd4d3cc2a2836d11) - fix: upgrade typescript-auto-import-cache to v0.3.1 to be compatible with TS 5.3 (https://github.com/volarjs/typescript-auto-import-cache/pull/3) ([#&#8203;3802](https://github.com/vuejs/language-tools/issues/3802)) </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-20 00:19:38 +00:00
renovate added 1 commit 2023-12-20 00:19:41 +00:00
continuous-integration/drone/pr Build is failing Details
3f85e24ecd
chore(deps): update dependency vitest to v1.1.0
renovate force-pushed renovate/dev-dependencies from 94d797f1f3 to 3f85e24ecd 2023-12-20 00:19:45 +00:00 Compare
renovate changed title from chore(deps): update dependency vitest to v1.1.0 to chore(deps): update dev-dependencies 2023-12-21 17:20:51 +00:00
renovate force-pushed renovate/dev-dependencies from 3f85e24ecd to 1e9bc4d2cc 2023-12-21 17:20:59 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 1e9bc4d2cc to 22124780a5 2023-12-21 18:19:59 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 22124780a5 to 333d50c56c 2023-12-25 10:26:08 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 333d50c56c to 5de7c12f54 2023-12-25 18:24:03 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 5de7c12f54 to 0bccfffb5b 2023-12-26 10:25:50 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 0bccfffb5b to bd23d84673 2023-12-26 18:25:41 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from bd23d84673 to 2ac9caf52a 2023-12-26 19:24:18 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 2ac9caf52a to 650c2dc16f 2023-12-27 19:27:14 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 650c2dc16f to 5cbefc3dbe 2023-12-27 21:24:48 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 5cbefc3dbe to c53d837b6f 2023-12-29 00:22:57 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from c53d837b6f to 837d585592 2023-12-29 17:24:45 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 837d585592 to 5f2f2615a7 2023-12-29 21:23:03 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 5f2f2615a7 to 4568a3b66d 2023-12-30 01:25:43 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 4568a3b66d to fa4f8aeea5 2023-12-30 06:24:58 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from fa4f8aeea5 to b739637c40 2023-12-31 02:28:50 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from b739637c40 to 3a0cdd026b 2023-12-31 14:29:28 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 3a0cdd026b to b9177de9c2 2024-01-01 17:28:35 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from b9177de9c2 to 22656648ba 2024-01-02 22:29:30 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 22656648ba to 482d26d4bb 2024-01-04 04:25:46 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 482d26d4bb to 9085d9a801 2024-01-04 17:26:03 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 9085d9a801 to 105b50d0d6 2024-01-04 19:28:52 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 105b50d0d6 to e1ecb24f16 2024-01-05 07:29:19 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from e1ecb24f16 to 3d099474a2 2024-01-05 08:28:56 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 3d099474a2 to ec59f6727d 2024-01-06 07:27:01 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from ec59f6727d to 9c2c44861e 2024-01-06 14:23:15 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 9c2c44861e to 24527f6241 2024-01-07 16:28:25 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 24527f6241 to 519561c2a4 2024-01-07 19:27:02 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 519561c2a4 to 7f49f665b0 2024-01-07 22:29:28 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 7f49f665b0 to 4dc2e0ea74 2024-01-08 23:27:42 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 4dc2e0ea74 to 1cf67344f7 2024-01-09 16:26:55 +00:00 Compare
konrad added 1 commit 2024-01-10 11:08:37 +00:00
continuous-integration/drone/pr Build is passing Details
ee29cdaa99
chore(deps): update lockfile
konrad scheduled this pull request to auto merge when all checks succeed 2024-01-10 11:08:52 +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://3861-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://3861-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.
Author
Member

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

### Edited/Blocked Notification Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. ⚠ **Warning**: custom changes will be lost.
konrad force-pushed renovate/dev-dependencies from ee29cdaa99 to 7f0298fda5 2024-01-10 11:34:53 +00:00 Compare
konrad merged commit 158e4d690f into main 2024-01-10 11:51:26 +00:00
This repo is archived. You cannot comment on pull requests.
No description provided.