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

fix(deps): update npm dependencies #2365

Merged
merged 1 commit into from
Dec 16, 2024
Merged

fix(deps): update npm dependencies #2365

merged 1 commit into from
Dec 16, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 16, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@radix-ui/react-checkbox (source) 1.1.2 -> 1.1.3 age adoption passing confidence
@radix-ui/react-collapsible (source) 1.1.1 -> 1.1.2 age adoption passing confidence
@radix-ui/react-dialog (source) 1.1.2 -> 1.1.3 age adoption passing confidence
@radix-ui/react-dropdown-menu (source) 2.1.2 -> 2.1.3 age adoption passing confidence
@radix-ui/react-form (source) 0.1.0 -> 0.1.1 age adoption passing confidence
@radix-ui/react-popover (source) 1.1.2 -> 1.1.3 age adoption passing confidence
@radix-ui/react-progress (source) 1.1.0 -> 1.1.1 age adoption passing confidence
@radix-ui/react-radio-group (source) 1.2.1 -> 1.2.2 age adoption passing confidence
@radix-ui/react-switch (source) 1.1.1 -> 1.1.2 age adoption passing confidence
@radix-ui/react-tabs (source) 1.1.1 -> 1.1.2 age adoption passing confidence
@radix-ui/react-toast (source) 1.2.2 -> 1.2.3 age adoption passing confidence
@radix-ui/react-toggle (source) 1.1.0 -> 1.1.1 age adoption passing confidence
@radix-ui/react-toggle-group (source) 1.1.0 -> 1.1.1 age adoption passing confidence
@radix-ui/react-tooltip (source) 1.1.4 -> 1.1.5 age adoption passing confidence
@types/node (source) 22.10.1 -> 22.10.2 age adoption passing confidence
react-select (source) 5.8.3 -> 5.9.0 age adoption passing confidence
zod (source) 3.23.8 -> 3.24.1 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

radix-ui/primitives (@​radix-ui/react-checkbox)

v1.1.3

Compare Source

JedWatson/react-select (react-select)

v5.9.0

Compare Source

Minor Changes
colinhacks/zod (zod)

v3.24.1

Compare Source

Commits:

v3.24.0

Compare Source

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.

z.string().cidr()

To specify an IP version:

z.string().cidr({ version: "v4" })
z.string().cidr({ version: "v6" })

View the full diff from 3.23.8: colinhacks/zod@v3.23.8...v3.24.0


Configuration

📅 Schedule: Branch creation - "after 5pm on monday" in timezone Etc/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 16, 2024
@renovate renovate bot enabled auto-merge (squash) December 16, 2024 17:39
@renovate renovate bot force-pushed the renovate/npm branch 3 times, most recently from 37b8d47 to 6a9cd26 Compare December 16, 2024 18:09
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
Copy link
Contributor

@serprex serprex Dec 16, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

progress towards react 19 (but still blocked on tremorlabs/tremor#1072)

@renovate renovate bot enabled auto-merge (squash) December 16, 2024 18:27
@renovate renovate bot merged commit 422dea5 into main Dec 16, 2024
12 checks passed
@renovate renovate bot deleted the renovate/npm branch December 16, 2024 18:55
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