Skip to content
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

chore(deps): update all non-major dependencies #189

Merged
merged 1 commit into from
Dec 23, 2024

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
@tanstack/query-core (source) ^5.62.7 -> ^5.62.8 age adoption passing confidence
@types/react (source) ^19.0.1 -> ^19.0.2 age adoption passing confidence
eslint-plugin-import-x ^4.5.0 -> ^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
nx (source) ^20.2.2 -> ^20.3.0 age adoption passing confidence
pnpm (source) 9.15.0 -> 9.15.1 age adoption passing confidence
type-fest ^4.30.1 -> ^4.30.2 age adoption passing confidence
typedoc-plugin-markdown (source) ^4.3.2 -> ^4.3.3 age adoption passing confidence
typescript-eslint (source) ^8.18.0 -> ^8.18.1 age adoption passing confidence

Release Notes

TanStack/query (@​tanstack/query-core)

v5.62.8

Compare Source

Version 5.62.8 - 12/17/24, 5:11 PM

Changes
Fix
  • types: fix issues with queryOptions factory method types (#​8394) (4989399) by Nick Lucas
Chore
  • deps: use stable @types/react version (#​8437) (94e2c77) by Lachlan Collins
Docs
  • use correct broadcastChannel default value and type name (#​8436) (4521a04) by Alex Liu
Packages
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

v4.5.1

Compare Source

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

nrwl/nx (nx)

v20.3.0

Compare Source

20.3.0 (2024-12-20)
🚀 Features
  • angular: support ngrx v19 (#​29398)
  • core: support rollup.config.ts (#​28240)
  • core: use custom resolution to resolve from source local plugins with artifacts pointing to the outputs (#​29222)
  • core: add spinners when graph compute takes long time (#​28966)
  • core: not exit when one plugin installation failed (#​28684)
  • core: nx-plugin-checks accounts for outDir and rootDir of projects when checking file existence (#​29391)
  • core: add lib/** glob to workspaces so we support it out of the box (#​29403)
  • core: show progress on ci if graph construction takes longer than expected (#​29392)
  • eslint: rename eslint.config.js to eslint.config.cjs to resolve them as CommonJS (#​29334)
  • expo: upgrade Expo to v52 (#​29142)
  • js: update vue/node app and lib generators to support TS solutions (#​29299)
  • misc: handle artifact generators' path options including file extensions (#​29111)
  • nx-dev: link more customer videos on enterprise page (7498e470fa)
  • nx-plugin: added support for vitest test runner (#​29140)
  • release: allow automated git push from version or changelog step (#​29280)
  • rsbuild: add intial package (#​29147)
  • rsbuild: add inferred targets plugin (#​29192)
  • rsbuild: add rsbuild configuration generator (#​29321)
  • rsbuild: add react and vue support for app generation (#​29349)
  • rsbuild: move plugin export to root of package (#​29415)
  • storybook: use createNodesV2 for init and convert-to-inferred generators (#​28092)
  • testing: allow custom address for local registry (#​29050)
  • vite: add angular option to vitest generator (#​29055)
🩹 Fixes
  • typo in environment-variables.md (#​29294)
  • angular: handle removed angular-eslint rules in root eslint config files and update package (#​29262)
  • angular: normalize prerender and appShell options of the application executor correctly (#​29281)
  • angular: correctly normalize dev-server options (#​29322)
  • angular: add-localize-polyfill-to-targets fails if polyfills is a string (#​29324)
  • angular: normalize name when forced to build selector (#​29417)
  • angular: set up host and remote ssr apps correctly #​29442 (#​29447, #​29442)
  • bundling: ensure vitest timestamp files are ignored (#​29418)
  • core: add workspaces path if package path is not included (#​28824)
  • core: fix process being prevented from exiting (#​29240)
  • core: defer loading package manager until necessary (#​29248)
  • core: hashing fixes (#​29247)
  • core: Update bundlers to not typecheck if using new TS solution setup (#​29227)
  • core: ensure @​nx/module-federation is listed in package group (#​29292)
  • core: ensure rsbuild is part of nx package group (#​29310)
  • core: avoid storing hash details for empty fileset (#​29316)
  • core: resolve imports from linked workspace projects (#​29328)
  • core: collect all logs from forked processes (#​27778)
  • core: Update move/remove workspace generators to work with ts project references (#​29331)
  • core: Adding react apps/libs to workspaces so they can be referenced. (#​29202)
  • core: make packageExports metadata optional field (#​29407)
  • core: graph spinners should update properly (#​29433)
  • core: update yarn-parser to handle yarn v4 syntax (#​29067)
  • gradle: cache gradle report (#​29381)
  • js: switch from fast-glob to tinyglobby (#​29141)
  • js: ensure typescript-sync generator produces formatted references when no prettier is installed (#​29368)
  • js: Configure typescript plugin to handle non-buildable libs (#​29393)
  • js: handle resolution from within node_module in the sync generator (#​29412)
  • misc: ensure tsBuildInfoFile is generated inside outDir (#​29343)
  • misc: fix misc generation issues with the ts solution setup (#​29350)
  • module-federation: ensure @​nx/module-federation package is installed for users (#​29416)
  • module-federation: dynamic federation helpers should normalize remote names (#​29427)
  • nuxt: change tsconfig path on server part (#​28864)
  • nx-dev: update Nx Cloud proj created (#​29272)
  • nx-dev: update hero image on blog post (#​29405)
  • react: add files entry for publishable libraries (#​29277)
  • react: assert test property is defined on webpack rule in nx-react-webpack-plugin (#​27525)
  • react: fix issues with react ts setup (#​29312)
  • react: fix tailwind for react library and component (#​29319)
  • react-native: default template fails when envs are not set (#​28931)
  • react-native: typescript lib schema (#​27955)
  • react-native: fix react native storybook for lib (#​29210)
  • release: use prepatch version for pre-release dependent package updates (#​29123)
  • release: make commits separator in git log command more unique (#​29261)
  • repo: cleanup old plugins promise (#​29295)
  • rsbuild: set publish config correctly (#​29282)
  • storybook: only install react deps for storybook 7 #​29213 (#​29231, #​29213)
  • storybook: ensure 'storybook' dep is installed for non-crystal workspaces (#​29235)
  • testing: force node10 module resolution for jest atomized tasks (#​29421)
  • ⚠️ vite: generate config with esm by default (#​29270)
  • vite: resolves files with dot suffixes correctly (#​28518)
  • webpack: Add useTsconfigPaths to app-webpack-plugin (#​29291)
⚠️ Breaking Changes
  • ⚠️ vite: generate config with esm by default (#​29270)
❤️ Thank You
pnpm/pnpm (pnpm)

v9.15.1

Compare Source

sindresorhus/type-fest (type-fest)

v4.30.2

Compare Source

typedoc2md/typedoc-plugin-markdown (typedoc-plugin-markdown)

v4.3.3

Compare Source

Patch Changes
  • Correctly handle anchor resolutions with table formats.
  • Fix invalid typescript syntax for type aliases inside declaration code blocks when "useCodeBlocks" is true (#​741).
typescript-eslint/typescript-eslint (typescript-eslint)

v8.18.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

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


Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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
Copy link

pkg-pr-new bot commented Dec 23, 2024

npm i https://pkg.pr.new/@tanstack/config@189

commit: 9b3341b

Copy link

nx-cloud bot commented Dec 23, 2024

View your CI Pipeline Execution ↗ for commit 9b3341b.

Command Status Duration Result
nx affected --targets=test:eslint,test:types,te... ✅ Succeeded 26s View ↗

☁️ Nx Cloud last updated this comment at 2024-12-23 01:35:46 UTC

@renovate renovate bot merged commit ba37e6c into main Dec 23, 2024
5 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch December 23, 2024 05:13
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.

0 participants