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

Merged
merged 1 commit into from
Oct 16, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 6, 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
@prisma/client (source) 5.19.0 -> 5.21.0 age adoption passing confidence
@rollup/plugin-swc (source) 0.3.1 -> 0.4.0 age adoption passing confidence
@storybook/addon-actions (source) 8.2.9 -> 8.3.5 age adoption passing confidence
@storybook/addon-docs (source) 8.2.9 -> 8.3.5 age adoption passing confidence
@storybook/addon-essentials (source) 8.2.9 -> 8.3.5 age adoption passing confidence
@storybook/addon-interactions (source) 8.2.9 -> 8.3.5 age adoption passing confidence
@storybook/addon-links (source) 8.2.9 -> 8.3.5 age adoption passing confidence
@storybook/react (source) 8.2.9 -> 8.3.5 age adoption passing confidence
@swc/core (source) 1.7.22 -> 1.7.36 age adoption passing confidence
@types/node (source) 20.16.2 -> 20.16.11 age adoption passing confidence
@types/react (source) 18.3.5 -> 18.3.11 age adoption passing confidence
@types/react-dom (source) 18.3.0 -> 18.3.1 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 8.3.0 -> 8.9.0 age adoption passing confidence
@typescript-eslint/parser (source) 8.3.0 -> 8.9.0 age adoption passing confidence
babel-loader 9.1.3 -> 9.2.1 age adoption passing confidence
esbuild 0.23.1 -> 0.24.0 age adoption passing confidence
eslint-plugin-import 2.29.1 -> 2.31.0 age adoption passing confidence
eslint-plugin-react 7.35.0 -> 7.37.1 age adoption passing confidence
eslint-plugin-storybook 0.8.0 -> 0.9.0 age adoption passing confidence
husky 9.1.5 -> 9.1.6 age adoption passing confidence
next (source) 14.2.7 -> 14.2.15 age adoption passing confidence
prisma (source) 5.19.0 -> 5.21.0 age adoption passing confidence
type-fest 4.26.0 -> 4.26.1 age adoption passing confidence
typescript (source) 5.5.4 -> 5.6.3 age adoption passing confidence
vitest (source) 2.0.5 -> 2.1.3 age adoption passing confidence
yarn (source) 4.4.1 -> 4.5.0 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
prisma/prisma (@​prisma/client)

v5.21.0

Compare Source

Today, we are excited to share the 5.21.0 release 🎉

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

Highlights
Better support for tracing in MongoDB

The tracing Preview feature now has full support for MongoDB with previously missing functionality now implemented. This is a part of the ongoing effort to stabilize this Preview feature and release it in General Availability.

tracing is a Preview feature that enables built-in support for OpenTelemetry instrumentation inside the Prisma Client and provides deep insights into the performance and timing of your queries. See our documentation for more information.

For an easy to use and zero-configuration tracing instrumentation tool with a dashboard that provides an overview of your queries, statistics, and AI-powered recommendations, try Prisma Optimize.

WebAssembly engine size decrease for edge functions

Due to recent changes, some users experienced a steep increase of the bundle size in Prisma 5.20 when using the driverAdapters Preview feature, going over the 1 MB limit on the free tier of Cloudflare Workers. This has now been fixed.

Fixes and improvements
Prisma Engines
Credits

Huge thanks to @​austin-tildei, @​LucianBuzzo, @​mcuelenaere, @​pagewang0, @​key-moon, @​pranayat, @​yubrot, @​skyzh for helping!

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!

v5.19.1

Compare Source

Today, we are issuing the 5.19.1 patch release.

What's Changed

We've fixed the following issues:

Full Changelog: prisma/prisma@5.19.0...5.19.x, prisma/prisma-engines@5.19.0...5.19.x

rollup/plugins (@​rollup/plugin-swc)

v0.4.0

2024-09-06

Features
  • feat: sets filename property, so to make additional swc features… (#​1761)
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

v8.3.0

Compare Source

Fresh out of the oven! Storybook 8.3 brings you:

  • ⚡️ First-class Vitest integration to run stories as component tests
  • 🔼 Next.js-Vite framework for Vitest compatibility and better DX
  • 🗜️ Further reduced bundle size for a smaller install footprint
  • 🌐 Experimental Story globals to standardize stories for themes, viewports, and locales
  • 💯 Hundreds more improvements
List of all updates
swc-project/swc (@​swc/core)

v1.7.36

Compare Source

Bug Fixes
  • (es) Run esnext transforms on esnext target (#​9644) (8a19201)

  • (es/codegen) Emit space after div if rhs has leading comment (#​9631) (f2be26e)

  • (es/lints) Correct the false positive error of TS2309 (#​9635) (f74c1f3)

  • (es/minifier) Only merge last if return (#​9633) (6f52949)

  • (es/minifier) Check type of assignment target before merging assignments (#​9617) (4436621)

Features
  • (es) Introduce `runPluginF

Configuration

📅 Schedule: Branch creation - "after 5am on Saturday" in timezone Asia/Tokyo, 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 enabled auto-merge (squash) September 6, 2024 22:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 14 times, most recently from 0233c3c to fabe2b4 Compare September 14, 2024 14:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from 4d5f2f1 to 6a55123 Compare September 22, 2024 04:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from a406e7c to cf84d29 Compare September 24, 2024 14:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from feb1214 to 64308f6 Compare October 1, 2024 19:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 64308f6 to 06c35b9 Compare October 2, 2024 16:22
@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 6 times, most recently from fd4d78d to b5053c8 Compare October 8, 2024 22:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 51246c1 to 3bd89fa Compare October 16, 2024 07:31
@renovate renovate bot merged commit 5931c3f into main Oct 16, 2024
7 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch October 16, 2024 07:56
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