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 #1116

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 8, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@next/eslint-plugin-next (source) 14.2.16 -> 14.2.17 age adoption passing confidence devDependencies patch
@tanstack/react-query-devtools (source) 5.59.16 -> 5.59.20 age adoption passing confidence dependencies patch
@types/node (source) 20.17.5 -> 20.17.6 age adoption passing confidence devDependencies patch
github/codeql-action v2.27.0 -> v2.27.3 age adoption passing confidence action patch
lucide-react (source) 0.454.0 -> 0.456.0 age adoption passing confidence dependencies minor

Release Notes

vercel/next.js (@​next/eslint-plugin-next)

v14.2.17

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
  • Fix: revert the bad node binary handling (#​72356)
  • Ensure pages/500 handles cache-control as expected (#​72050) (#​72110)
  • fix unhandled runtime error from generateMetadata in parallel routes (#​72153)
Credits

Huge thanks to @​huozhi, @​ztanner, and @​ijjk for helping!

TanStack/query (@​tanstack/react-query-devtools)

v5.59.20

Compare Source

Version 5.59.20 - 11/6/24, 2:13 PM

Changes
Fix
  • don"t ship test files (848df62) by Dominik Dorfmeister
Test
Docs
Packages

v5.59.19

Compare Source

Version 5.59.19 - 11/3/24, 2:17 PM

Changes

Fix
  • query-devtools: handle null properties for __previousQueryOptions (#​8240) (9c93dc0) by Kae
Test
Docs
  • community-projects: Add Atomic CRM to the list of community projects (#​8229) (92defc6) by CarolineClr

Packages

v5.59.18

Compare Source

Version 5.59.18 - 11/3/24, 9:27 AM

Changes

Fix
  • useQuery: don"t retryOnMount when prefetchInRender is used (#​8247) (74f0d6a) by Dominik Dorfmeister

Packages

v5.59.17

Compare Source

Version 5.59.17 - 11/2/24, 5:45 PM

Changes

Fix
  • useQueries: warn on duplicate keys (#​8246) (c643635) by Dominik Dorfmeister
Chore
Test
  • react-query: better query-persist-client-core import (#​8212) (1865f0d) by Lachlan Collins
Docs
  • angular-query: add query options from a service example (#​8220) (c61ff1e) by Arnoud

Packages

github/codeql-action (github/codeql-action)

v2.27.3

Compare Source

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

Note that the only difference between v2 and v3 of the CodeQL Action is the node version they support, with v3 running on node 20 while we continue to release v2 to support running on node 16. For example 3.22.11 was the first v3 release and is functionally identical to 2.22.11. This approach ensures an easy way to track exactly which features are included in different versions, indicated by the minor and patch version numbers.

2.27.3 - 12 Nov 2024

No user facing changes.

See the full CHANGELOG.md for more information.

v2.27.2

Compare Source

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

Note that the only difference between v2 and v3 of the CodeQL Action is the node version they support, with v3 running on node 20 while we continue to release v2 to support running on node 16. For example 3.22.11 was the first v3 release and is functionally identical to 2.22.11. This approach ensures an easy way to track exactly which features are included in different versions, indicated by the minor and patch version numbers.

2.27.2 - 12 Nov 2024

  • Fixed an issue where setting up the CodeQL tools would sometimes fail with the message "Invalid value 'undefined' for header 'authorization'". #​2590

See the full CHANGELOG.md for more information.

v2.27.1

Compare Source

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

Note that the only difference between v2 and v3 of the CodeQL Action is the node version they support, with v3 running on node 20 while we continue to release v2 to support running on node 16. For example 3.22.11 was the first v3 release and is functionally identical to 2.22.11. This approach ensures an easy way to track exactly which features are included in different versions, indicated by the minor and patch version numbers.

2.27.1 - 08 Nov 2024
  • The CodeQL Action now downloads bundles compressed using Zstandard on GitHub Enterprise Server when using Linux or macOS runners. This speeds up the installation of the CodeQL tools. This feature is already available to GitHub.com users. #​2573
  • Update default CodeQL bundle version to 2.19.3. #​2576

See the full CHANGELOG.md for more information.

lucide-icons/lucide (lucide-react)

v0.456.0: Choosing import name style 0.456.0

Compare Source

What's Changed

Adjustable icon naming imports

Customize import name styles for lucide-react, lucide-vue, lucide-react-native, lucide-preact, to manage autocompletion in your IDE.

  1. Turn off autocomplete in your IDE:
    Add the following to your settings.json
{
  "typescript.preferences.autoImportFileExcludePatterns": [
    "lucide-react",
    "lucide-preact",
    "lucide-react-native",
    "lucide-vue-next"
  ]
}
  1. Create a custom module declaration file:

It allows you to choose the import name style.

For React:

declare module "lucide-react" {
  // Prefixed import names
  export * from "lucide-react/dist/lucide-react.prefixed";
  // or
  // Suffixed import names
  export * from "lucide-react/dist/lucide-react.suffixed";
}

For Vue:

declare module "lucide-vue-next" {
  // Prefixed import names
  export * from "lucide-vue-next/dist/lucide-vue-next.prefixed";
  // or
  // Suffixed import names
  export * from "lucide-vue-next/dist/lucide-vue-next.suffixed";
}

v0.455.0: New icons 0.455.0

Compare Source

New icons 🎨

Modified Icons 🔨


Configuration

📅 Schedule: Branch creation - "* 18-21 * * 5" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).

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

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 requested a review from a team as a code owner November 8, 2024 19:33
@renovate renovate bot added the deps label Nov 8, 2024
@renovate renovate bot requested a review from a team as a code owner November 8, 2024 19:33
@renovate renovate bot requested review from felixevers and DasProffi and removed request for a team November 8, 2024 19:33
Copy link

cloudflare-workers-and-pages bot commented Nov 8, 2024

Deploying web with  Cloudflare Pages  Cloudflare Pages

Latest commit: d92586f
Status: ✅  Deploy successful!
Preview URL: https://447a9069.web-d91.pages.dev
Branch Preview URL: https://renovate-all-non-major-depen.web-d91.pages.dev

View logs

Copy link

github-actions bot commented Nov 8, 2024

Preview of tasks

https://pr-1116-helpwave-web-tasks.fly.dev

@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from a2ef9e5 to 9bbbf8e Compare November 12, 2024 11:59
@renovate renovate bot force-pushed the renovate/all-non-major-dependencies branch from 9bbbf8e to d92586f Compare November 12, 2024 22:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants