chore(deps): update dev-dependencies #3856

Merged
konrad merged 2 commits from renovate/dev-dependencies into main 2023-12-19 13:48:41 +00:00
Member

This PR contains the following updates:

Package Type Update Change
@rushstack/eslint-patch (source) devDependencies patch 1.6.0 -> 1.6.1
@types/node (source) devDependencies patch 20.10.4 -> 20.10.5
@typescript-eslint/eslint-plugin devDependencies minor 6.14.0 -> 6.15.0
@typescript-eslint/parser devDependencies minor 6.14.0 -> 6.15.0
@vue/tsconfig devDependencies minor 0.4.0 -> 0.5.1
css-has-pseudo (source) devDependencies patch 6.0.0 -> 6.0.1
esbuild devDependencies patch 0.19.9 -> 0.19.10
eslint (source) devDependencies minor 8.55.0 -> 8.56.0
postcss-focus-within (source) devDependencies patch 8.0.0 -> 8.0.1
rollup (source) devDependencies patch 4.9.0 -> 4.9.1
vite (source) devDependencies patch 5.0.8 -> 5.0.10

Release Notes

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

v1.6.1

Compare Source

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

v6.15.0

Compare Source

Features

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

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

v6.15.0

Compare Source

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

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

vuejs/tsconfig (@​vue/tsconfig)

v0.5.1

Compare Source

v0.5.0

Compare Source

csstools/postcss-plugins (css-has-pseudo)

v6.0.1

Compare Source

December 15, 2023

evanw/esbuild (esbuild)

v0.19.10

Compare Source

  • Fix glob imports in TypeScript files (#​3319)

    This release fixes a problem where bundling a TypeScript file containing a glob import could emit a call to a helper function that doesn't exist. The problem happened because esbuild's TypeScript transformation removes unused imports (which is required for correctness, as they may be type-only imports) and esbuild's glob import transformation wasn't correctly marking the imported helper function as used. This wasn't caught earlier because most of esbuild's glob import tests were written in JavaScript, not in TypeScript.

  • Fix require() glob imports with bundling disabled (#​3546)

    Previously require() calls containing glob imports were incorrectly transformed when bundling was disabled. All glob imports should only be transformed when bundling is enabled. This bug has been fixed.

  • Fix a panic when transforming optional chaining with define (#​3551, #​3554)

    This release fixes a case where esbuild could crash with a panic, which was triggered by using define to replace an expression containing an optional chain. Here is an example:

    // Original code
    console.log(process?.env.SHELL)
    
    // Old output (with --define:process.env={})
    /* panic: Internal error (while parsing "<stdin>") */
    
    // New output (with --define:process.env={})
    var define_process_env_default = {};
    console.log(define_process_env_default.SHELL);
    

    This fix was contributed by @​hi-ogawa.

  • Work around a bug in node's CommonJS export name detector (#​3544)

    The export names of a CommonJS module are dynamically-determined at run time because CommonJS exports are properties on a mutable object. But the export names of an ES module are statically-determined at module instantiation time by using import and export syntax and cannot be changed at run time.

    When you import a CommonJS module into an ES module in node, node scans over the source code to attempt to detect the set of export names that the CommonJS module will end up using. That statically-determined set of names is used as the set of names that the ES module is allowed to import at module instantiation time. However, this scan appears to have bugs (or at least, can cause false positives) because it doesn't appear to do any scope analysis. Node will incorrectly consider the module to export something even if the assignment is done to a local variable instead of to the module-level exports object. For example:

    // confuseNode.js
    exports.confuseNode = function(exports) {
      // If this local is called "exports", node incorrectly
      // thinks this file has an export called "notAnExport".
      exports.notAnExport = function() {
      };
    };
    

    You can see that node incorrectly thinks the file confuseNode.js has an export called notAnExport when that file is loaded in an ES module context:

    $ node -e 'import("./confuseNode.js").then(console.log)'
    [Module: null prototype] {
      confuseNode: [Function (anonymous)],
      default: { confuseNode: [Function (anonymous)] },
      notAnExport: undefined
    }
    

    To avoid this, esbuild will now rename local variables that use the names exports and module when generating CommonJS output for the node platform.

  • Fix the return value of esbuild's super() shim (#​3538)

    Some people write constructor methods that use the return value of super() instead of using this. This isn't too common because TypeScript doesn't let you do that but it can come up when writing JavaScript. Previously esbuild's class lowering transform incorrectly transformed the return value of super() into undefined. With this release, the return value of super() will now be this instead:

    // Original code
    class Foo extends Object {
      field
      constructor() {
        console.log(typeof super())
      }
    }
    new Foo
    
    // Old output (with --target=es6)
    class Foo extends Object {
      constructor() {
        var __super = (...args) => {
          super(...args);
          __publicField(this, "field");
        };
        console.log(typeof __super());
      }
    }
    new Foo();
    
    // New output (with --target=es6)
    class Foo extends Object {
      constructor() {
        var __super = (...args) => {
          super(...args);
          __publicField(this, "field");
          return this;
        };
        console.log(typeof __super());
      }
    }
    new Foo();
    
  • Terminate the Go GC when esbuild's stop() API is called (#​3552)

    If you use esbuild with WebAssembly and pass the worker: false flag to esbuild.initialize(), then esbuild will run the WebAssembly module on the main thread. If you do this within a Deno test and that test calls esbuild.stop() to clean up esbuild's resources, Deno may complain that a setTimeout() call lasted past the end of the test. This happens when the Go is in the middle of a garbage collection pass and has scheduled additional ongoing garbage collection work. Normally calling esbuild.stop() will terminate the web worker that the WebAssembly module runs in, which will terminate the Go GC, but that doesn't happen if you disable the web worker with worker: false.

    With this release, esbuild will now attempt to terminate the Go GC in this edge case by calling clearTimeout() on these pending timeouts.

  • Apply /* @&#8203;__NO_SIDE_EFFECTS__ */ on tagged template literals (#​3511)

    Tagged template literals that reference functions annotated with a @__NO_SIDE_EFFECTS__ comment are now able to be removed via tree-shaking if the result is unused. This is a convention from Rollup. Here is an example:

    // Original code
    const html = /* @&#8203;__NO_SIDE_EFFECTS__ */ (a, ...b) => ({ a, b })
    html`<a>remove</a>`
    x = html`<b>keep</b>`
    
    // Old output (with --tree-shaking=true)
    const html = /* @&#8203;__NO_SIDE_EFFECTS__ */ (a, ...b) => ({ a, b });
    html`<a>remove</a>`;
    x = html`<b>keep</b>`;
    
    // New output (with --tree-shaking=true)
    const html = /* @&#8203;__NO_SIDE_EFFECTS__ */ (a, ...b) => ({ a, b });
    x = html`<b>keep</b>`;
    

    Note that this feature currently only works within a single file, so it's not especially useful. This feature does not yet work across separate files. I still recommend using @__PURE__ annotations instead of this feature, as they have wider tooling support. The drawback of course is that @__PURE__ annotations need to be added at each call site, not at the declaration, and for non-call expressions such as template literals you need to wrap the expression in an IIFE (immediately-invoked function expression) to create a call expression to apply the @__PURE__ annotation to.

  • Publish builds for IBM AIX PowerPC 64-bit (#​3549)

    This release publishes a binary executable to npm for IBM AIX PowerPC 64-bit, which means that in theory esbuild can now be installed in that environment with npm install esbuild. This hasn't actually been tested yet. If you have access to such a system, it would be helpful to confirm whether or not doing this actually works.

eslint/eslint (eslint)

v8.56.0

Compare Source

Features

  • 0dd9704 feat: Support custom severity when reporting unused disable directives (#​17212) (Bryan Mishkin)
  • 31a7e3f feat: fix no-restricted-properties false negatives with unknown objects (#​17818) (Arka Pratim Chaudhuri)

Bug Fixes

  • 7d5e5f6 fix: TypeError: fs.exists is not a function on read-only file system (#​17846) (Francesco Trotta)
  • 74739c8 fix: suggestion with invalid syntax in no-promise-executor-return rule (#​17812) (Bryan Mishkin)

Documentation

  • 9007719 docs: update link in ways-to-extend.md (#​17839) (Amel SELMANE)
  • 3a22236 docs: Update README (GitHub Actions Bot)
  • 54c3ca6 docs: fix migration-guide example (#​17829) (Tanuj Kanti)
  • 4391b71 docs: check config comments in rule examples (#​17815) (Francesco Trotta)
  • fd28363 docs: remove mention about ESLint stylistic rules in readme (#​17810) (Zwyx)
  • 48ed5a6 docs: Update README (GitHub Actions Bot)

Chores

csstools/postcss-plugins (postcss-focus-within)

v8.0.1

Compare Source

December 15, 2023

  • Fix type definitions
rollup/rollup (rollup)

v4.9.1

Compare Source

2023-12-17

Bug Fixes
  • Fix an issue where break statements could include the wrong label (#​5297)
Pull Requests
vitejs/vite (vite)

v5.0.10

Compare Source

v5.0.9

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 | |---|---|---|---| | [@rushstack/eslint-patch](https://rushstack.io) ([source](https://github.com/microsoft/rushstack)) | devDependencies | patch | [`1.6.0` -> `1.6.1`](https://renovatebot.com/diffs/npm/@rushstack%2feslint-patch/1.6.0/1.6.1) | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://github.com/DefinitelyTyped/DefinitelyTyped)) | devDependencies | patch | [`20.10.4` -> `20.10.5`](https://renovatebot.com/diffs/npm/@types%2fnode/20.10.4/20.10.5) | | [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint) | devDependencies | minor | [`6.14.0` -> `6.15.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/6.14.0/6.15.0) | | [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint) | devDependencies | minor | [`6.14.0` -> `6.15.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/6.14.0/6.15.0) | | [@vue/tsconfig](https://github.com/vuejs/tsconfig) | devDependencies | minor | [`0.4.0` -> `0.5.1`](https://renovatebot.com/diffs/npm/@vue%2ftsconfig/0.4.0/0.5.1) | | [css-has-pseudo](https://github.com/csstools/postcss-plugins/tree/main/plugins/css-has-pseudo#readme) ([source](https://github.com/csstools/postcss-plugins)) | devDependencies | patch | [`6.0.0` -> `6.0.1`](https://renovatebot.com/diffs/npm/css-has-pseudo/6.0.0/6.0.1) | | [esbuild](https://github.com/evanw/esbuild) | devDependencies | patch | [`0.19.9` -> `0.19.10`](https://renovatebot.com/diffs/npm/esbuild/0.19.9/0.19.10) | | [eslint](https://eslint.org) ([source](https://github.com/eslint/eslint)) | devDependencies | minor | [`8.55.0` -> `8.56.0`](https://renovatebot.com/diffs/npm/eslint/8.55.0/8.56.0) | | [postcss-focus-within](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-focus-within#readme) ([source](https://github.com/csstools/postcss-plugins)) | devDependencies | patch | [`8.0.0` -> `8.0.1`](https://renovatebot.com/diffs/npm/postcss-focus-within/8.0.0/8.0.1) | | [rollup](https://rollupjs.org/) ([source](https://github.com/rollup/rollup)) | devDependencies | patch | [`4.9.0` -> `4.9.1`](https://renovatebot.com/diffs/npm/rollup/4.9.0/4.9.1) | | [vite](https://vitejs.dev) ([source](https://github.com/vitejs/vite)) | devDependencies | patch | [`5.0.8` -> `5.0.10`](https://renovatebot.com/diffs/npm/vite/5.0.8/5.0.10) | --- ### Release Notes <details> <summary>microsoft/rushstack (@&#8203;rushstack/eslint-patch)</summary> ### [`v1.6.1`](https://github.com/microsoft/rushstack/compare/2840be24a2b498e4998deac4fe47ef325d912dee...235c79b6058312e691d02668abadd1bd86faf78c) [Compare Source](https://github.com/microsoft/rushstack/compare/2840be24a2b498e4998deac4fe47ef325d912dee...235c79b6058312e691d02668abadd1bd86faf78c) </details> <details> <summary>typescript-eslint/typescript-eslint (@&#8203;typescript-eslint/eslint-plugin)</summary> ### [`v6.15.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6150-2023-12-18) [Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v6.14.0...v6.15.0) ##### Features - **eslint-plugin:** \[no-useless-template-literals] add new rule ([#&#8203;7957](https://github.com/typescript-eslint/typescript-eslint/issues/7957)) ([ff75785](https://github.com/typescript-eslint/typescript-eslint/commit/ff75785f4c6cc41999f8ce946bfca469d6e40e50)), closes [#&#8203;2846](https://github.com/typescript-eslint/typescript-eslint/issues/2846) - require-array-sort-compare + toSorted ([#&#8203;8052](https://github.com/typescript-eslint/typescript-eslint/issues/8052)) ([c9661c8](https://github.com/typescript-eslint/typescript-eslint/commit/c9661c8bbf048e9fa3ef55985e1e2e82bc098b1a)) 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.15.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6150-2023-12-18) [Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v6.14.0...v6.15.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>vuejs/tsconfig (@&#8203;vue/tsconfig)</summary> ### [`v0.5.1`](https://github.com/vuejs/tsconfig/compare/v0.5.0...v0.5.1) [Compare Source](https://github.com/vuejs/tsconfig/compare/v0.5.0...v0.5.1) ### [`v0.5.0`](https://github.com/vuejs/tsconfig/compare/v0.4.0...v0.5.0) [Compare Source](https://github.com/vuejs/tsconfig/compare/v0.4.0...v0.5.0) </details> <details> <summary>csstools/postcss-plugins (css-has-pseudo)</summary> ### [`v6.0.1`](https://github.com/csstools/postcss-plugins/blob/HEAD/plugins/css-has-pseudo/CHANGELOG.md#601) [Compare Source](https://github.com/csstools/postcss-plugins/compare/3f1d2fc9d9df4e7d7f954786d29de3b8081ad719...60419f5097416007bcc8207bc081d3d6ef5c9448) *December 15, 2023* - Fix type definitions - Updated [`@csstools/selector-specificity`](https://github.com/csstools/postcss-plugins/tree/main/packages/selector-specificity) to [`3.0.1`](https://github.com/csstools/postcss-plugins/tree/main/packages/selector-specificity/CHANGELOG.md#301) (patch) </details> <details> <summary>evanw/esbuild (esbuild)</summary> ### [`v0.19.10`](https://github.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#01910) [Compare Source](https://github.com/evanw/esbuild/compare/v0.19.9...v0.19.10) - Fix glob imports in TypeScript files ([#&#8203;3319](https://github.com/evanw/esbuild/issues/3319)) This release fixes a problem where bundling a TypeScript file containing a glob import could emit a call to a helper function that doesn't exist. The problem happened because esbuild's TypeScript transformation removes unused imports (which is required for correctness, as they may be type-only imports) and esbuild's glob import transformation wasn't correctly marking the imported helper function as used. This wasn't caught earlier because most of esbuild's glob import tests were written in JavaScript, not in TypeScript. - Fix `require()` glob imports with bundling disabled ([#&#8203;3546](https://github.com/evanw/esbuild/issues/3546)) Previously `require()` calls containing glob imports were incorrectly transformed when bundling was disabled. All glob imports should only be transformed when bundling is enabled. This bug has been fixed. - Fix a panic when transforming optional chaining with `define` ([#&#8203;3551](https://github.com/evanw/esbuild/issues/3551), [#&#8203;3554](https://github.com/evanw/esbuild/pull/3554)) This release fixes a case where esbuild could crash with a panic, which was triggered by using `define` to replace an expression containing an optional chain. Here is an example: ```js // Original code console.log(process?.env.SHELL) // Old output (with --define:process.env={}) /* panic: Internal error (while parsing "<stdin>") */ // New output (with --define:process.env={}) var define_process_env_default = {}; console.log(define_process_env_default.SHELL); ``` This fix was contributed by [@&#8203;hi-ogawa](https://github.com/hi-ogawa). - Work around a bug in node's CommonJS export name detector ([#&#8203;3544](https://github.com/evanw/esbuild/issues/3544)) The export names of a CommonJS module are dynamically-determined at run time because CommonJS exports are properties on a mutable object. But the export names of an ES module are statically-determined at module instantiation time by using `import` and `export` syntax and cannot be changed at run time. When you import a CommonJS module into an ES module in node, node scans over the source code to attempt to detect the set of export names that the CommonJS module will end up using. That statically-determined set of names is used as the set of names that the ES module is allowed to import at module instantiation time. However, this scan appears to have bugs (or at least, can cause false positives) because it doesn't appear to do any scope analysis. Node will incorrectly consider the module to export something even if the assignment is done to a local variable instead of to the module-level `exports` object. For example: ```js // confuseNode.js exports.confuseNode = function(exports) { // If this local is called "exports", node incorrectly // thinks this file has an export called "notAnExport". exports.notAnExport = function() { }; }; ``` You can see that node incorrectly thinks the file `confuseNode.js` has an export called `notAnExport` when that file is loaded in an ES module context: ```console $ node -e 'import("./confuseNode.js").then(console.log)' [Module: null prototype] { confuseNode: [Function (anonymous)], default: { confuseNode: [Function (anonymous)] }, notAnExport: undefined } ``` To avoid this, esbuild will now rename local variables that use the names `exports` and `module` when generating CommonJS output for the `node` platform. - Fix the return value of esbuild's `super()` shim ([#&#8203;3538](https://github.com/evanw/esbuild/issues/3538)) Some people write `constructor` methods that use the return value of `super()` instead of using `this`. This isn't too common because [TypeScript doesn't let you do that](https://github.com/microsoft/TypeScript/issues/37847) but it can come up when writing JavaScript. Previously esbuild's class lowering transform incorrectly transformed the return value of `super()` into `undefined`. With this release, the return value of `super()` will now be `this` instead: ```js // Original code class Foo extends Object { field constructor() { console.log(typeof super()) } } new Foo // Old output (with --target=es6) class Foo extends Object { constructor() { var __super = (...args) => { super(...args); __publicField(this, "field"); }; console.log(typeof __super()); } } new Foo(); // New output (with --target=es6) class Foo extends Object { constructor() { var __super = (...args) => { super(...args); __publicField(this, "field"); return this; }; console.log(typeof __super()); } } new Foo(); ``` - Terminate the Go GC when esbuild's `stop()` API is called ([#&#8203;3552](https://github.com/evanw/esbuild/issues/3552)) If you use esbuild with WebAssembly and pass the `worker: false` flag to `esbuild.initialize()`, then esbuild will run the WebAssembly module on the main thread. If you do this within a Deno test and that test calls `esbuild.stop()` to clean up esbuild's resources, Deno may complain that a `setTimeout()` call lasted past the end of the test. This happens when the Go is in the middle of a garbage collection pass and has scheduled additional ongoing garbage collection work. Normally calling `esbuild.stop()` will terminate the web worker that the WebAssembly module runs in, which will terminate the Go GC, but that doesn't happen if you disable the web worker with `worker: false`. With this release, esbuild will now attempt to terminate the Go GC in this edge case by calling `clearTimeout()` on these pending timeouts. - Apply `/* @&#8203;__NO_SIDE_EFFECTS__ */` on tagged template literals ([#&#8203;3511](https://github.com/evanw/esbuild/issues/3511)) Tagged template literals that reference functions annotated with a `@__NO_SIDE_EFFECTS__` comment are now able to be removed via tree-shaking if the result is unused. This is a convention from [Rollup](https://github.com/rollup/rollup/pull/5024). Here is an example: ```js // Original code const html = /* @&#8203;__NO_SIDE_EFFECTS__ */ (a, ...b) => ({ a, b }) html`<a>remove</a>` x = html`<b>keep</b>` // Old output (with --tree-shaking=true) const html = /* @&#8203;__NO_SIDE_EFFECTS__ */ (a, ...b) => ({ a, b }); html`<a>remove</a>`; x = html`<b>keep</b>`; // New output (with --tree-shaking=true) const html = /* @&#8203;__NO_SIDE_EFFECTS__ */ (a, ...b) => ({ a, b }); x = html`<b>keep</b>`; ``` Note that this feature currently only works within a single file, so it's not especially useful. This feature does not yet work across separate files. I still recommend using `@__PURE__` annotations instead of this feature, as they have wider tooling support. The drawback of course is that `@__PURE__` annotations need to be added at each call site, not at the declaration, and for non-call expressions such as template literals you need to wrap the expression in an IIFE (immediately-invoked function expression) to create a call expression to apply the `@__PURE__` annotation to. - Publish builds for IBM AIX PowerPC 64-bit ([#&#8203;3549](https://github.com/evanw/esbuild/issues/3549)) This release publishes a binary executable to npm for IBM AIX PowerPC 64-bit, which means that in theory esbuild can now be installed in that environment with `npm install esbuild`. This hasn't actually been tested yet. If you have access to such a system, it would be helpful to confirm whether or not doing this actually works. </details> <details> <summary>eslint/eslint (eslint)</summary> ### [`v8.56.0`](https://github.com/eslint/eslint/releases/tag/v8.56.0) [Compare Source](https://github.com/eslint/eslint/compare/v8.55.0...v8.56.0) #### Features - [`0dd9704`](https://github.com/eslint/eslint/commit/0dd9704c4751e1cd02039f7d6485fee09bbccbf6) feat: Support custom severity when reporting unused disable directives ([#&#8203;17212](https://github.com/eslint/eslint/issues/17212)) (Bryan Mishkin) - [`31a7e3f`](https://github.com/eslint/eslint/commit/31a7e3fde491e36496b54e8905c766b31162d776) feat: fix no-restricted-properties false negatives with unknown objects ([#&#8203;17818](https://github.com/eslint/eslint/issues/17818)) (Arka Pratim Chaudhuri) #### Bug Fixes - [`7d5e5f6`](https://github.com/eslint/eslint/commit/7d5e5f68849ae80caec0fc96ecceebccd348deec) fix: `TypeError: fs.exists is not a function` on read-only file system ([#&#8203;17846](https://github.com/eslint/eslint/issues/17846)) (Francesco Trotta) - [`74739c8`](https://github.com/eslint/eslint/commit/74739c849bbb6547b0e555ed8bb2ba1cbe0fdce4) fix: suggestion with invalid syntax in no-promise-executor-return rule ([#&#8203;17812](https://github.com/eslint/eslint/issues/17812)) (Bryan Mishkin) #### Documentation - [`9007719`](https://github.com/eslint/eslint/commit/90077199fe519953f9af8664bf947db4e4958514) docs: update link in ways-to-extend.md ([#&#8203;17839](https://github.com/eslint/eslint/issues/17839)) (Amel SELMANE) - [`3a22236`](https://github.com/eslint/eslint/commit/3a22236f8d10af8a5bcafe56092651d3d681c99d) docs: Update README (GitHub Actions Bot) - [`54c3ca6`](https://github.com/eslint/eslint/commit/54c3ca6f2dcd2a7afd53f42fc32055a25587259e) docs: fix migration-guide example ([#&#8203;17829](https://github.com/eslint/eslint/issues/17829)) (Tanuj Kanti) - [`4391b71`](https://github.com/eslint/eslint/commit/4391b71e62b15e54b0493f0dce1ea053ebbc0689) docs: check config comments in rule examples ([#&#8203;17815](https://github.com/eslint/eslint/issues/17815)) (Francesco Trotta) - [`fd28363`](https://github.com/eslint/eslint/commit/fd2836342c2be4751b05fe0ba7cece17d1edecc8) docs: remove mention about ESLint stylistic rules in readme ([#&#8203;17810](https://github.com/eslint/eslint/issues/17810)) (Zwyx) - [`48ed5a6`](https://github.com/eslint/eslint/commit/48ed5a6dad478a14d3e823f137455c523f373e0b) docs: Update README (GitHub Actions Bot) #### Chores - [`ba6af85`](https://github.com/eslint/eslint/commit/ba6af85c7d8ba55d37f8663aee949d148e441c1a) chore: upgrade [@&#8203;eslint/js](https://github.com/eslint/js)[@&#8203;8](https://github.com/8).56.0 ([#&#8203;17864](https://github.com/eslint/eslint/issues/17864)) (Milos Djermanovic) - [`60a531a`](https://github.com/eslint/eslint/commit/60a531a9c0811ddf718e26b9136e133f580b6c36) chore: package.json update for [@&#8203;eslint/js](https://github.com/eslint/js) release (Jenkins) - [`ba87a06`](https://github.com/eslint/eslint/commit/ba87a0651a65b52c3ac442b512dd9f4c2b4c5f57) chore: update dependency markdownlint to ^0.32.0 ([#&#8203;17783](https://github.com/eslint/eslint/issues/17783)) (renovate\[bot]) - [`9271d10`](https://github.com/eslint/eslint/commit/9271d10d9eabeafb0129a090f29191bfd14273c0) chore: add GitHub issue template for docs issues ([#&#8203;17845](https://github.com/eslint/eslint/issues/17845)) (Josh Goldberg ✨) - [`70a686b`](https://github.com/eslint/eslint/commit/70a686b3c1feac5eca98bbff9bd67175f550d5db) chore: Convert rule tests to FlatRuleTester ([#&#8203;17819](https://github.com/eslint/eslint/issues/17819)) (Nicholas C. Zakas) - [`f3a599d`](https://github.com/eslint/eslint/commit/f3a599d34c7080fc0b2c9a60b5e54dc98c22867c) chore: upgrade eslint-plugin-unicorn to v49.0.0 ([#&#8203;17837](https://github.com/eslint/eslint/issues/17837)) (唯然) - [`905d4b7`](https://github.com/eslint/eslint/commit/905d4b75ab2df42aba30622cee0f66b511397e2c) chore: upgrade eslint-plugin-eslint-plugin v5.2.1 ([#&#8203;17838](https://github.com/eslint/eslint/issues/17838)) (唯然) - [`4d7c3ce`](https://github.com/eslint/eslint/commit/4d7c3ce246e6b499f472342ef59496a47cc033d6) chore: update eslint-plugin-n v16.4.0 ([#&#8203;17836](https://github.com/eslint/eslint/issues/17836)) (唯然) - [`fd0c60c`](https://github.com/eslint/eslint/commit/fd0c60c3be1f213e5a6d69d8a3248e963619e155) ci: unpin Node.js 21.2.0 ([#&#8203;17821](https://github.com/eslint/eslint/issues/17821)) (Francesco Trotta) </details> <details> <summary>csstools/postcss-plugins (postcss-focus-within)</summary> ### [`v8.0.1`](https://github.com/csstools/postcss-plugins/blob/HEAD/plugins/postcss-focus-within/CHANGELOG.md#801) [Compare Source](https://github.com/csstools/postcss-plugins/compare/a3da57bde223f0b0a249e027764566824b599d67...7f2f4543d45723e76e204969b6e7339d146359af) *December 15, 2023* - Fix type definitions </details> <details> <summary>rollup/rollup (rollup)</summary> ### [`v4.9.1`](https://github.com/rollup/rollup/blob/HEAD/CHANGELOG.md#491) [Compare Source](https://github.com/rollup/rollup/compare/v4.9.0...v4.9.1) *2023-12-17* ##### Bug Fixes - Fix an issue where break statements could include the wrong label ([#&#8203;5297](https://github.com/rollup/rollup/issues/5297)) ##### Pull Requests - [#&#8203;5297](https://github.com/rollup/rollup/pull/5297): fix: use a new includedLabels in the body of the LabeledStatement ([@&#8203;TrickyPi](https://github.com/TrickyPi)) - [#&#8203;5300](https://github.com/rollup/rollup/pull/5300): chore(deps): lock file maintenance minor/patch updates ([@&#8203;renovate](https://github.com/renovate)\[bot]) </details> <details> <summary>vitejs/vite (vite)</summary> ### [`v5.0.10`](https://github.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small5010-2023-12-15-small) [Compare Source](https://github.com/vitejs/vite/compare/v5.0.9...v5.0.10) - fix: omit protocol does not require pre-transform ([#&#8203;15355](https://github.com/vitejs/vite/issues/15355)) ([d9ae1b2](https://github.com/vitejs/vite/commit/d9ae1b2)), closes [#&#8203;15355](https://github.com/vitejs/vite/issues/15355) - fix(build): use base64 for inline SVG if it contains both single and double quotes ([#&#8203;15271](https://github.com/vitejs/vite/issues/15271)) ([1bbff16](https://github.com/vitejs/vite/commit/1bbff16)), closes [#&#8203;15271](https://github.com/vitejs/vite/issues/15271) ### [`v5.0.9`](https://github.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small509-2023-12-14-small) [Compare Source](https://github.com/vitejs/vite/compare/v5.0.8...v5.0.9) - fix: htmlFallbackMiddleware for favicon ([#&#8203;15301](https://github.com/vitejs/vite/issues/15301)) ([c902545](https://github.com/vitejs/vite/commit/c902545)), closes [#&#8203;15301](https://github.com/vitejs/vite/issues/15301) - fix: more stable hash calculation for depsOptimize ([#&#8203;15337](https://github.com/vitejs/vite/issues/15337)) ([2b39fe6](https://github.com/vitejs/vite/commit/2b39fe6)), closes [#&#8203;15337](https://github.com/vitejs/vite/issues/15337) - fix(scanner): catch all external files for glob imports ([#&#8203;15286](https://github.com/vitejs/vite/issues/15286)) ([129d0d0](https://github.com/vitejs/vite/commit/129d0d0)), closes [#&#8203;15286](https://github.com/vitejs/vite/issues/15286) - fix(server): avoid chokidar throttling on startup ([#&#8203;15347](https://github.com/vitejs/vite/issues/15347)) ([56a5740](https://github.com/vitejs/vite/commit/56a5740)), closes [#&#8203;15347](https://github.com/vitejs/vite/issues/15347) - fix(worker): replace `import.meta` correctly for IIFE worker ([#&#8203;15321](https://github.com/vitejs/vite/issues/15321)) ([08d093c](https://github.com/vitejs/vite/commit/08d093c)), closes [#&#8203;15321](https://github.com/vitejs/vite/issues/15321) - feat: log re-optimization reasons ([#&#8203;15339](https://github.com/vitejs/vite/issues/15339)) ([b1a6c84](https://github.com/vitejs/vite/commit/b1a6c84)), closes [#&#8203;15339](https://github.com/vitejs/vite/issues/15339) - chore: temporary typo ([#&#8203;15329](https://github.com/vitejs/vite/issues/15329)) ([7b71854](https://github.com/vitejs/vite/commit/7b71854)), closes [#&#8203;15329](https://github.com/vitejs/vite/issues/15329) - perf: avoid computing paths on each request ([#&#8203;15318](https://github.com/vitejs/vite/issues/15318)) ([0506812](https://github.com/vitejs/vite/commit/0506812)), closes [#&#8203;15318](https://github.com/vitejs/vite/issues/15318) - perf: temporary hack to avoid fs checks for /[@&#8203;react-refresh](https://github.com/react-refresh) ([#&#8203;15299](https://github.com/vitejs/vite/issues/15299)) ([b1d6211](https://github.com/vitejs/vite/commit/b1d6211)), closes [#&#8203;15299](https://github.com/vitejs/vite/issues/15299) </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-15 00:18:23 +00:00
renovate added 1 commit 2023-12-15 00:18:26 +00:00
continuous-integration/drone/pr Build is failing Details
3795c925d8
chore(deps): update dependency vite to v5.0.9
renovate force-pushed renovate/dev-dependencies from ac51310fa7 to 3795c925d8 2023-12-15 00:18:28 +00:00 Compare
renovate changed title from chore(deps): update dependency vite to v5.0.9 to chore(deps): update dev-dependencies 2023-12-15 01:17:33 +00:00
renovate force-pushed renovate/dev-dependencies from 3795c925d8 to 1e95a145b1 2023-12-15 01:17:35 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 1e95a145b1 to ecd1693db1 2023-12-15 16:16:15 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from ecd1693db1 to cc8e525ac1 2023-12-15 23:17:10 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from cc8e525ac1 to 74eca11ffb 2023-12-16 00:16:30 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 74eca11ffb to c802b8ea85 2023-12-17 07:18:45 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from c802b8ea85 to bfb83974bd 2023-12-17 22:18:04 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from bfb83974bd to 76eae27864 2023-12-18 07:18:10 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from 76eae27864 to d2d748e06f 2023-12-18 17:18:45 +00:00 Compare
renovate force-pushed renovate/dev-dependencies from d2d748e06f to 8a251e2372 2023-12-19 01:18:48 +00:00 Compare
konrad added 1 commit 2023-12-19 13:17:49 +00:00
continuous-integration/drone/pr Build is passing Details
94d797f1f3
chore(deps): update lockfile
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.
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://3856-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://3856-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 21e54de3b8 into main 2023-12-19 13:48:41 +00:00
This repo is archived. You cannot comment on pull requests.
No description provided.