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

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 15, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/core (source) 7.25.2 -> 7.25.8 age adoption passing confidence
@babel/eslint-parser (source) 7.25.1 -> 7.25.8 age adoption passing confidence
@headlessui/react (source) 2.1.8 -> 2.1.10 age adoption passing confidence
@prisma/client (source) 5.19.1 -> 5.20.0 age adoption passing confidence
@storybook/addon-actions (source) 8.3.0 -> 8.3.5 age adoption passing confidence
@storybook/addon-essentials (source) 8.3.0 -> 8.3.5 age adoption passing confidence
@storybook/addon-links (source) 8.3.0 -> 8.3.5 age adoption passing confidence
@storybook/react (source) 8.3.0 -> 8.3.5 age adoption passing confidence
@tanstack/react-query (source) 5.56.2 -> 5.59.11 age adoption passing confidence
@tanstack/react-query-devtools (source) 5.56.2 -> 5.59.11 age adoption passing confidence
@types/react (source) 18.3.5 -> 18.3.11 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 8.5.0 -> 8.8.1 age adoption passing confidence
@typescript-eslint/parser (source) 8.5.0 -> 8.8.1 age adoption passing confidence
@vitejs/plugin-react (source) 4.3.1 -> 4.3.2 age adoption passing confidence
@vitest/ui (source) 2.1.1 -> 2.1.2 age adoption passing confidence
babel-loader 9.1.3 -> 9.2.1 age adoption passing confidence
daisyui (source) 4.12.10 -> 4.12.13 age adoption passing confidence
eslint (source) 9.10.0 -> 9.12.0 age adoption passing confidence
eslint-config-next (source) 14.2.11 -> 14.2.15 age adoption passing confidence
jotai 2.9.3 -> 2.10.0 age adoption passing confidence
jsdom 25.0.0 -> 25.0.1 age adoption passing confidence
msw (source) 2.4.6 -> 2.4.10 age adoption passing confidence
next (source) 14.2.11 -> 14.2.15 age adoption passing confidence
next-auth (source) 4.24.7 -> 4.24.8 age adoption passing confidence
next-validations 1.0.1 -> 1.0.2 age adoption passing confidence
prisma (source) 5.19.1 -> 5.20.0 age adoption passing confidence
tailwindcss (source) 3.4.11 -> 3.4.13 age adoption passing confidence
typescript (source) 5.6.2 -> 5.6.3 age adoption passing confidence
vitest (source) 2.1.1 -> 2.1.2 age adoption passing confidence

Release Notes

babel/babel (@​babel/core)

v7.25.8

Compare Source

🐛 Bug Fix
🏠 Internal
  • babel-parser, babel-plugin-proposal-async-do-expressions, babel-plugin-proposal-destructuring-private, babel-plugin-proposal-do-expressions, babel-plugin-proposal-explicit-resource-management, babel-plugin-proposal-export-default-from, babel-plugin-proposal-function-bind, babel-plugin-proposal-function-sent, babel-plugin-proposal-import-defer, babel-plugin-proposal-partial-application, babel-plugin-proposal-throw-expressions, babel-plugin-transform-async-generator-functions, babel-plugin-transform-class-static-block, babel-plugin-transform-dynamic-import, babel-plugin-transform-export-namespace-from, babel-plugin-transform-json-strings, babel-plugin-transform-logical-assignment-operators, babel-plugin-transform-nullish-coalescing-operator, babel-plugin-transform-numeric-separator, babel-plugin-transform-object-rest-spread, babel-plugin-transform-optional-catch-binding, babel-plugin-transform-optional-chaining, babel-plugin-transform-private-property-in-object, babel-preset-env

v7.25.7

Compare Source

🐛 Bug Fix
💅 Polish
🏠 Internal
  • babel-core
  • babel-helper-compilation-targets, babel-helper-plugin-utils, babel-preset-env
  • babel-plugin-proposal-destructuring-private, babel-plugin-syntax-decimal, babel-plugin-syntax-import-reflection, babel-standalone
  • babel-generator
🏃‍♀️ Performance
tailwindlabs/headlessui (@​headlessui/react)

v2.1.10

Compare Source

Fixed
  • Use React.JSX instead of deprecated global JSX (#​3511)
  • Fix crash in ListboxOptions when using as={Fragment} (#​3513)

v2.1.9

Compare Source

Fixed
  • Ensure Element is available before polyfilling to prevent crashes in non-browser environments (#​3493)
  • Fix crash when using instanceof HTMLElement in some environments (#​3494)
  • Cleanup process in Combobox component when using virtualization (#​3495)
prisma/prisma (@​prisma/client)

v5.20.0

Compare Source

🌟 Help us spread the word about Prisma by starring the repo or posting on X about the release. 🌟

Highlights
strictUndefinedChecks in Preview

With Prisma ORM 5.20.0, the Preview feature strictUndefinedChecks will disallow any value that is explicitly undefined and will be a runtime error. This change is direct feedback from this GitHub issue and follows our latest proposal on the same issue.

To demonstrate the change, take the following code snippet:

prisma.table.deleteMany({
  where: {
    // If `nullableThing` is nullish, this query will remove all data.
    email: nullableThing?.property,
  }
})

In Prisma ORM 5.19.0 and below, this could result in unintended behavior. In Prisma ORM 5.20.0, if the strictUndefinedChecks Preview feature is enabled, you will get a runtime error instead:

Invalid \`prisma.user.findMany()\` invocation in
/client/tests/functional/strictUndefinedChecks/test.ts:0:0
  XX })
  XX 
  XX test('throws on undefined input field', async () => {
→ XX   const result = prisma.user.deleteMany({
         where: {
           email: undefined
                  ~~~~~~~~~
         }
       })
Invalid value for argument \`where\`: explicitly \`undefined\` values are not allowed."

We have also introduced the Prisma.skip symbol, which will allow you to get the previous behavior if desired.

prisma.table.findMany({
  where: {
    // Use Prisma.skip to skip parts of the query
    email: nullableEmail ?? Prisma.skip
  }
})

From Prisma ORM 5.20.0 onward, we recommend enabling strictUndefinedChecks, along with the TypeScript compiler option exactOptionalPropertyTypes, which will help catch cases of undefined values at compile time. Together, these two changes will help protect your Prisma queries from potentially destructive behavior.

strictUndefinedChecks will be a valid Preview feature for the remainder of Prisma ORM 5. With our next major version, this behavior will become the default and the Preview feature will be “graduated” to Generally Available.

If you have any questions or feedback about strictUndefinedChecks, please ask/comment in our dedicated Preview feature GitHub discussion.

typedSql bug fix

Thank you to everyone who has tried out our typedSql Preview feature and provided feedback! This release has a quick fix for typescript files generated when Prisma Schema enums had hyphens.

Fixes and improvements
Prisma
Prisma Engines
Credits

Huge thanks to @​mcuelenaere, @​pagewang0, @​key-moon, @​pranayat, @​yubrot, @​thijmenjk, @​mydea, @​HRM, @​haaawk, @​baileywickham, @​brian-dlee, @​nickcarnival, @​eruditmorina, @​nzakas, and @​gutyerrez for helping!

storybookjs/storybook (@​storybook/addon-actions)

v8.3.5

Compare Source

v8.3.4

Compare Source

v8.3.3

Compare Source

v8.3.2

Compare Source

v8.3.1

Compare Source

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

v5.59.11

Compare Source

Version 5.59.11 - 10/11/24, 6:35 PM

Changes
Refactor
  • types: throw type error when skipToken is present in suspense query (#​8082) (a991d92) by Gwansik Kim
Packages

v5.59.10

Compare Source

Version 5.59.10 - 10/11/24, 6:24 PM

Changes

Fix
  • core: correctly gc query when suspense is used when query unmounts while it"s still fetching (#​8168) (5edd617) by Dominik Dorfmeister
  • react-query: Allow optional initialData object in queryOptions (#​8162) (931d98d) by Sunghoon

Packages

v5.59.9

Compare Source

Version 5.59.9 - 10/10/24, 6:56 PM

Changes

Fix
  • core: don"t consider queries as enabled if they have no observers and have never fetched (successfully or erroneously) (#​8161) (5228e51) by Dominik Dorfmeister
Test

Packages

v5.59.8

Compare Source

Version 5.59.8 - 10/9/24, 7:10 PM

Changes
Fix
Packages

v5.59.6

Compare Source

Version 5.59.6 - 10/9/24, 2:34 PM

Changes

Fix
  • perf: improve long running task performance in query core (#​8107) (5499577) by David

Packages

v5.59.5

Compare Source

Version 5.59.5 - 10/9/24, 2:00 PM

Changes

Fix
  • react-query: Allow optional initialData in infiniteQueryOptions (#​8154) (8d03029) by Sunghoon

Packages

v5.59.4

Compare Source

Version 5.59.4 - 10/9/24, 1:02 PM

Changes

Fix
  • core: do not inform QueriesObserver subscribers if combined result hasn"t changed (#​8153) (cae2524) by Dominik Dorfmeister
  • eslint-plugin-query: handle callable params within exaustive-deps rule (#​8150) (eb2f9d3) by pawel-twardziak
Chore
  • eslint-plugin-query: expect-expect warning for expectArrayEqualIgnoreOrder (#​8143) (85a525a) by Sol Lee
  • no-shadow lint warning in insertAtPositions() (#​8142) (78b086b) by Sol Lee
Test
  • hydration test case for overwriting with promise (05ccd65) by Dominik Dorfmeister

Packages

v5.59.3

Compare Source

Version 5.59.3 - 10/9/24, 5:48 AM

Changes
Fix
Packages

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 changed the title chore(deps): update dependency msw to v2.4.7 chore(deps): update all non-major dependencies Sep 16, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 16 times, most recently from 05b4c40 to 51acf68 Compare September 22, 2024 07:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 03b05a2 to 98a3f64 Compare September 24, 2024 15:13
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Sep 24, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 27e7901 to 31587ae Compare October 1, 2024 18:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 3add3d8 to c6812e5 Compare October 2, 2024 16:00
@renovate renovate bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies Oct 2, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 2598d55 to efac4ad Compare October 9, 2024 16:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 925d63f to 72f6f36 Compare October 11, 2024 04:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants