Skip to content

fix(deps): update all non-major dependencies #19045

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 24, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 23, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@builder.io/qwik (source) ^1.11.0 -> ^1.12.0 age adoption passing confidence
@shikijs/vitepress-twoslash (source) ^1.24.2 -> ^1.24.4 age adoption passing confidence
@sveltejs/vite-plugin-svelte (source) ^5.0.2 -> ^5.0.3 age adoption passing confidence
@types/react (source) ^18.3.17 -> ^18.3.18 age adoption passing confidence
eslint-plugin-import-x ^4.5.1 -> ^4.6.1 age adoption passing confidence
eslint-plugin-n ^17.15.0 -> ^17.15.1 age adoption passing confidence
globals ^15.13.0 -> ^15.14.0 age adoption passing confidence
miniflare (source) ^3.20241205.0 -> ^3.20241218.0 age adoption passing confidence
pnpm (source) 9.15.0 -> 9.15.1 age adoption passing confidence
preact (source) ^10.25.2 -> ^10.25.3 age adoption passing confidence
svelte (source) ^5.14.3 -> ^5.15.0 age adoption passing confidence
typescript-eslint (source) ^8.18.1 -> ^8.18.2 age adoption passing confidence
vite (source) ^6.0.3 -> ^6.0.5 age adoption passing confidence
vitepress-plugin-group-icons ^1.3.1 -> ^1.3.2 age adoption passing confidence
vue-tsc (source) ^2.1.10 -> ^2.2.0 age adoption passing confidence

Release Notes

QwikDev/qwik (@​builder.io/qwik)

v1.12.0

Compare Source

Minor Changes
  • ✨ The build constants isDev, isBrowser and isServer are now exported from @builder.io/qwik directly, so they are more discoverable and easier to add. @builder.io/qwik/build still remains. (by @​wmertens in #​7138)
Patch Changes
shikijs/shiki (@​shikijs/vitepress-twoslash)

v1.24.4

Compare Source

   🚀 Features
    View changes on GitHub

v1.24.3

Compare Source

   🚀 Features
    View changes on GitHub
sveltejs/vite-plugin-svelte (@​sveltejs/vite-plugin-svelte)

v5.0.3

Compare Source

Patch Changes
  • fix errorhandling to work with errors that don't have a code property (#​1054)
un-ts/eslint-plugin-import-x (eslint-plugin-import-x)

v4.6.1

Compare Source

Patch Changes

v4.6.0

Compare Source

Minor Changes
  • #​209 46d2360 Thanks @​SukkaW! - When eslint-plugin-import-x was forked from eslint-plugin-import, we copied over the default resolver (which is eslint-import-resolver-node) as well. However, this resolver doesn't supports exports in the package.json file, and the current maintainer of the eslint-import-resolver-node (ljharb) doesn't have the time implementing this feature and he locked the issue https://github.com/import-js/eslint-plugin-import/issues/1810.

    So we decided to implement our own resolver that "just works". The new resolver is built upon the enhanced-resolve that implements the full Node.js Resolver Algorithm. The new resolver only implements the import resolver interface v3, which means you can only use it with ESLint Flat config. For more details about the import resolver interface v3, please check out #​192.

    In the next major version of eslint-plugin-import-x, we will remove the eslint-import-resolver-node and use this new resolver by default. In the meantime, you can try out this new resolver by setting the import-x/resolver-next option in your eslint.config.js file:

    // eslint.config.js
    const eslintPluginImportX = require('eslint-plugin-import-x');
    const { createNodeResolver } = eslintPluginImportX;
    
    module.exports = {
      plugins: {
        'import-x': eslintPluginImportX,
      },
      settings: {
        'import-x/resolver-next': [
          // This is the new resolver we are introducing
          createNodeResolver({
            /**
             * The allowed extensions the resolver will attempt to find when resolving a module
             * By default it uses a relaxed extension list to search for both ESM and CJS modules
             * You can customize this list to fit your needs
             *
             * @​default ['.mjs', '.cjs', '.js', '.json', '.node']
             */
            extensions?: string[];
            /**
             * Optional, the import conditions the resolver will used when reading the exports map from "package.json"
             * By default it uses a relaxed condition list to search for both ESM and CJS modules
             * You can customize this list to fit your needs
             *
             * @​default ['default', 'module', 'import', 'require']
             */
            conditions: ['default', 'module', 'import', 'require'],
            // You can pass more options here, see the enhanced-resolve documentation for more details
            // https://github.com/webpack/enhanced-resolve/tree/v5.17.1?tab=readme-ov-file#resolver-options
          }),
          // you can add more resolvers down below
          require('eslint-import-resolver-typescript').createTypeScriptImportResolver(
            /** options of eslint-import-resolver-typescript */
          )
        ],
      },
    };

    We do not plan to implement reading baseUrl and paths from the tsconfig.json file in this resolver. If you need this feature, please checkout eslint-import-resolver-typescript (also powered by enhanced-resolve), eslint-import-resolver-oxc (powered by oxc-resolver), eslint-import-resolver-next (also powered by oxc-resolver), or other similar resolvers.

Patch Changes
eslint-community/eslint-plugin-n (eslint-plugin-n)

v17.15.1

Compare Source

🩹 Fixes
  • Promise.withResolvers is supported since node 22.11 (#​398) (c5bcb3a)
sindresorhus/globals (globals)

v15.14.0

Compare Source

cloudflare/workers-sdk (miniflare)

v3.20241218.0

Compare Source

Patch Changes
pnpm/pnpm (pnpm)

v9.15.1

Compare Source

preactjs/preact (preact)

v10.25.3

Compare Source

Fixes

Types

sveltejs/svelte (svelte)

v5.15.0

Compare Source

Minor Changes
  • feat: add "worker" exports condition to better support bundling for worker-based environments (#​14779)

v5.14.6

Compare Source

Patch Changes
  • fix: treeshake $inspect.trace code if unused in modules (#​14774)

  • fix: Improve typescript DX for $inspect, $props, $bindable, and $host (#​14777)

v5.14.5

Compare Source

Patch Changes
  • fix: bump esrap dependency (#​14765)

  • fix: ensure svg namespace for <a> elements is correct (#​14756)

  • fix: treeshake $inspect.trace code if unused (#​14770)

v5.14.4

Compare Source

Patch Changes
  • fix: remove implements from class declarations (#​14749)

  • fix: remove unwanted properties from both replaced and unreplaced nodes (#​14744)

typescript-eslint/typescript-eslint (typescript-eslint)

v8.18.2

Compare Source

🩹 Fixes
  • typescript-eslint: export types so that declarations can be named for dts files (#​10513)
❤️ Thank You

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

vitejs/vite (vite)

v6.0.5

Compare Source

v6.0.4

Compare Source

yuyinws/vitepress-plugin-group-icons (vitepress-plugin-group-icons)

v1.3.2

Compare Source

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

v2.2.0

Compare Source


Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), Automerge - At any time (no schedule defined).

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

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

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


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

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

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Dec 23, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from c4a939a to 8e9f6a2 Compare December 23, 2024 19:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8e9f6a2 to 6693608 Compare December 23, 2024 21:35
@sapphi-red sapphi-red merged commit b442d12 into main Dec 24, 2024
16 checks passed
@sapphi-red sapphi-red deleted the renovate/all-minor-patch branch December 24, 2024 01:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant