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): bump the dependencies group across 1 directory with 5 updates #294

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 6, 2025

Bumps the dependencies group with 5 updates in the / directory:

Package From To
@primer/octicons-react 19.13.0 19.14.0
zod 3.23.8 3.24.1
@tanstack/eslint-plugin-query 5.62.1 5.62.16
eslint-config-next 15.0.4 15.1.3
lint-staged 15.2.10 15.3.0

Updates @primer/octicons-react from 19.13.0 to 19.14.0

Release notes

Sourced from @​primer/octicons-react's releases.

v19.14.0

Minor Changes

Changelog

Sourced from @​primer/octicons-react's changelog.

19.14.0

Minor Changes

  • #1037 7402e69c Thanks @​jonrohan! - Update octicons-react to use presentational attributes over inline styles for base styles
Commits
  • ac9d1a7 Version Packages (#1049)
  • 7402e69 refactor(octicons_react): add support for className, use presentational attri...
  • 4819803 feat(octicons_react): update base icon component to include svg props (#1047)
  • See full diff in compare view

Updates zod from 3.23.8 to 3.24.1

Release notes

Sourced from zod's releases.

v3.24.1

Commits:

  • 0c6cbbdd1315683dd3d589fbdc5765c26431dcc9 Undeprecate .nonempty()
  • 4e219d6ad9d5e56e20afd7423092f506400a29e4 Bump min TS version to 5.0
  • 65adeeacef0274abbda5438470a3d2bfd376256d v3.24.1

v3.24.0

Implement @standard-schema/spec

This is the first version of Zod to implement the Standard Schema spec. This is a new community effort among several validation library authors to implement a common interface, with the goal of simplifying the process of integrating schema validators with the rest of the ecosystem. Read more about the project and goals here.

z.string().jwt()

Thanks to @​Mokshit06 and @​Cognition-Labs for this contribution!

To verify that a string is a valid 3-part JWT.

z.string().jwt();

⚠️ This does not verify your JWT cryptographically! It merely ensures its in the proper format. Use a library like jsonwebtoken to verify the JWT signature, parse the token, and read the claims.

To constrain the JWT to a specific algorithm:

z.string().jwt({ alg: "RS256" });

z.string().base64url()

Thank you to @​marvinruder!

To complement the JWT validation, Zod 3.24 implements a standalone .base64url() string validation API. (The three elements of JWTs are base64url-encoded JSON strings.)

z.string().base64url()

This functionality is available along the standard z.string().base64() validator added in Zod 3.23.

z.string().cidr()

Thanks to @​wataryooou for their work on this!

A validator for CIDR notation for specifying IP address ranges, e.g. 192.24.12.0/22.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by colinhacks, a new releaser for zod since your current version.


Updates @tanstack/eslint-plugin-query from 5.62.1 to 5.62.16

Release notes

Sourced from @​tanstack/eslint-plugin-query's releases.

v5.62.16

Version 5.62.16 - 1/6/25, 7:15 PM (Manual Release)

Changes

Fix

  • QueriesObserver: include default options on duplicate query, queryHash check (#8432) (e664d22) by nick-avi-say
  • vue-query: ensure queryKey match the current value of ref used inside (#8443) (3104854) by @​Mini-ghost
  • react-query: eslint-plugin-query now working with vanilla js (#8322) (f6757a6) by Ifeanyi Aladi
  • eslint-plugin-query: export Plugin interface (#8392) (9a0ca9b) by Tomáš Vojtášek

Test

  • add a test to ensure new meta gets accepted by fetchQuery (d08d115) by Dominik Dorfmeister

Packages

  • @​tanstack/eslint-plugin-query@​5.62.16
  • @​tanstack/query-async-storage-persister@​5.62.16
  • @​tanstack/query-broadcast-client-experimental@​5.62.16
  • @​tanstack/query-core@​5.62.16
  • @​tanstack/query-devtools@​5.62.16
  • @​tanstack/query-persist-client-core@​5.62.16
  • @​tanstack/query-sync-storage-persister@​5.62.16
  • @​tanstack/react-query@​5.62.16
  • @​tanstack/react-query-devtools@​5.62.16
  • @​tanstack/react-query-persist-client@​5.62.16
  • @​tanstack/react-query-next-experimental@​5.62.16
  • @​tanstack/solid-query@​5.62.16
  • @​tanstack/solid-query-devtools@​5.62.16
  • @​tanstack/solid-query-persist-client@​5.62.16
  • @​tanstack/svelte-query@​5.62.16
  • @​tanstack/svelte-query-devtools@​5.62.16
  • @​tanstack/svelte-query-persist-client@​5.62.16
  • @​tanstack/vue-query@​5.62.16
  • @​tanstack/vue-query-devtools@​5.62.16
  • @​tanstack/angular-query-devtools-experimental@​5.62.16
  • @​tanstack/angular-query-experimental@​5.62.16

v5.62.14

Version 5.62.14 - 1/3/25, 7:50 PM

Changes

Fix

  • react-query: ensureSuspenseTimers should ALWAYS set staleTime to 1000 when it is below 1000. (#8398) (0503282) by @​minseong0324

Packages

... (truncated)

Commits

Updates eslint-config-next from 15.0.4 to 15.1.3

Release notes

Sourced from eslint-config-next's releases.

v15.1.3

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

Core Changes

  • Retry manifest file loading only in dev mode: #73900
  • Use shared worker for lint & typecheck steps: #74154

Credits

Huge thanks to @​unstubbable and @​ztanner for helping!

v15.1.2

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

Core Changes

Credits

Huge thanks to @​ztanner for helping!

v15.1.1

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

Core Changes

Credits

Huge thanks to @​devjiwonchoi and @​ztanner for helping!

v15.1.1-canary.25

Core Changes

  • [DevOverlay] Remove Dialog Banner: #74464
  • [DevOverlay] Add color palette script: #74465
  • Fix: Preserve intentional percent encoding in search param for client nav: #74473
  • [DevOverlay] Implement New Overlay Layout with Bottom Stacks: #74466
  • [DevOverlay] Add error overlay footer and feedback: #74472
  • [DevOverlay] Remove temporary header children: #74490
  • fix: server functions x-forwarded-host possible multiple values: #73701
  • [DevOverlay] Pass footer message from error containers: #74493
  • feat(rsc): allow host or forwarded: #74199
  • [DevOverlay] Adjust border style for header and footer: #74480
  • feat(next/image): add support for images.qualities in next.config: #74257

... (truncated)

Commits

Updates lint-staged from 15.2.10 to 15.3.0

Release notes

Sourced from lint-staged's releases.

v15.3.0

Minor Changes

  • #1495 e69da9e Thanks @​iiroj! - Added more info to the debug logs so that "environment" info doesn't need to be added separately to GitHub issues.

  • #1493 fa0fe98 Thanks @​iiroj! - Added more help messages around the automatic git stash that lint-staged creates as a backup (by default). The console output also displays the short git hash of the stash so that it's easier to recover lost files in case some fatal errors are encountered, or the process is killed before completing.

    For example:

    % npx lint-staged
    ✔ Backed up original state in git stash (20addf8)
    ✔ Running tasks for staged files...
    ✔ Applying modifications from tasks...
    ✔ Cleaning up temporary files...
    

    where the backup can be seen with git show 20addf8, or git stash list:

    % git stash list
    stash@{0}: lint-staged automatic backup (20addf8)
    

v15.2.11

Patch Changes

  • #1484 bcfe309 Thanks @​wormsik! - Escape paths containing spaces when using the "shell" option.

  • #1487 7dd8caa Thanks @​iiroj! - Do not treat submodule root paths as "staged files". This caused lint-staged to fail to a Git error when only updating the revision of a submodule.

Changelog

Sourced from lint-staged's changelog.

15.3.0

Minor Changes

  • #1495 e69da9e Thanks @​iiroj! - Added more info to the debug logs so that "environment" info doesn't need to be added separately to GitHub issues.

  • #1493 fa0fe98 Thanks @​iiroj! - Added more help messages around the automatic git stash that lint-staged creates as a backup (by default). The console output also displays the short git hash of the stash so that it's easier to recover lost files in case some fatal errors are encountered, or the process is killed before completing.

    For example:

    % npx lint-staged
    ✔ Backed up original state in git stash (20addf8)
    ✔ Running tasks for staged files...
    ✔ Applying modifications from tasks...
    ✔ Cleaning up temporary files...
    

    where the backup can be seen with git show 20addf8, or git stash list:

    % git stash list
    stash@{0}: lint-staged automatic backup (20addf8)
    

15.2.11

Patch Changes

  • #1484 bcfe309 Thanks @​wormsik! - Escape paths containing spaces when using the "shell" option.

  • #1487 7dd8caa Thanks @​iiroj! - Do not treat submodule root paths as "staged files". This caused lint-staged to fail to a Git error when only updating the revision of a submodule.

Commits
  • 703002a chore(changeset): release
  • 4cee7d8 build(dependencies): update dependencies
  • ef9b02d Merge pull request #1495 from lint-staged/debug-info
  • e69da9e feat: add more info to debug logs, remove "environment" requirement from issu...
  • 1b36f55 docs: combine changesets
  • 6c9ab40 Merge pull request #1493 from lint-staged/help-messages
  • 22fe89d feat: add unique hash to backup stash message
  • c52cc92 docs: add a caution message about git stash
  • fa0fe98 feat: update first task message based on backup status
  • 7bd0447 feat: display "git stash list" message when restoring original state is skipped
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…dates

Bumps the dependencies group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@primer/octicons-react](https://github.com/primer/octicons) | `19.13.0` | `19.14.0` |
| [zod](https://github.com/colinhacks/zod) | `3.23.8` | `3.24.1` |
| [@tanstack/eslint-plugin-query](https://github.com/TanStack/query/tree/HEAD/packages/eslint-plugin-query) | `5.62.1` | `5.62.16` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `15.0.4` | `15.1.3` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `15.2.10` | `15.3.0` |



Updates `@primer/octicons-react` from 19.13.0 to 19.14.0
- [Release notes](https://github.com/primer/octicons/releases)
- [Changelog](https://github.com/primer/octicons/blob/main/CHANGELOG.md)
- [Commits](primer/octicons@v19.13.0...v19.14.0)

Updates `zod` from 3.23.8 to 3.24.1
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Changelog](https://github.com/colinhacks/zod/blob/main/CHANGELOG.md)
- [Commits](colinhacks/zod@v3.23.8...v3.24.1)

Updates `@tanstack/eslint-plugin-query` from 5.62.1 to 5.62.16
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.62.16/packages/eslint-plugin-query)

Updates `eslint-config-next` from 15.0.4 to 15.1.3
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v15.1.3/packages/eslint-config-next)

Updates `lint-staged` from 15.2.10 to 15.3.0
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v15.2.10...v15.3.0)

---
updated-dependencies:
- dependency-name: "@primer/octicons-react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: zod
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@tanstack/eslint-plugin-query"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: eslint-config-next
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested review from a team as code owners January 6, 2025 21:27
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jan 6, 2025
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 javascript Pull requests that update Javascript code maintenance
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants