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: bump up all non-major dependencies #8376

Merged
merged 1 commit into from
Sep 27, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 24, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@aws-sdk/client-s3 (source) 3.654.0 -> 3.658.1 age adoption passing confidence
@faker-js/faker (source) 9.0.1 -> 9.0.3 age adoption passing confidence
@google-cloud/opentelemetry-cloud-monitoring-exporter ^0.19.0 -> ^0.20.0 age adoption passing confidence
@google-cloud/opentelemetry-cloud-trace-exporter 2.3.0 -> 2.4.1 age adoption passing confidence
@google-cloud/opentelemetry-resource-util 2.3.0 -> 2.4.0 age adoption passing confidence
@prisma/client (source) 5.19.1 -> 5.20.0 age adoption passing confidence
@prisma/instrumentation (source) 5.19.1 -> 5.20.0 age adoption passing confidence
@sentry/react (source) 8.31.0 -> 8.32.0 age adoption passing confidence
@storybook/addon-essentials (source) 8.3.2 -> 8.3.3 age adoption passing confidence
@storybook/addon-interactions (source) 8.3.2 -> 8.3.3 age adoption passing confidence
@storybook/addon-links (source) 8.3.2 -> 8.3.3 age adoption passing confidence
@storybook/addon-mdx-gfm (source) 8.3.2 -> 8.3.3 age adoption passing confidence
@storybook/react (source) 8.3.2 -> 8.3.3 age adoption passing confidence
@storybook/react-vite (source) 8.3.2 -> 8.3.3 age adoption passing confidence
@types/node (source) 20.16.5 -> 20.16.9 age adoption passing confidence
@types/react (source) 18.3.8 -> 18.3.9 age adoption passing confidence
builder-util-runtime (source) 9.2.8 -> 9.2.9 age adoption passing confidence
electron-updater (source) 6.3.7 -> 6.3.8 age adoption passing confidence
html-validate (source) 8.23.0 -> 8.24.0 age adoption passing confidence
lucide-react (source) ^0.445.0 -> ^0.446.0 age adoption passing confidence
nx (source) 19.8.0 -> 19.8.2 age adoption passing confidence
openai 4.63.0 -> 4.65.0 age adoption passing confidence
prisma (source) 5.19.1 -> 5.20.0 age adoption passing confidence
react-day-picker (source) 9.1.2 -> 9.1.3 age adoption passing confidence
storybook (source) 8.3.2 -> 8.3.3 age adoption passing confidence
tailwindcss (source) 3.4.12 -> 3.4.13 age adoption passing confidence
vaul (source) 0.9.4 -> 0.9.9 age adoption passing confidence
vite (source) 5.4.7 -> 5.4.8 age adoption passing confidence
webpack 5.94.0 -> 5.95.0 age adoption passing confidence
wrangler (source) 3.78.7 -> 3.78.10 age adoption passing confidence

Release Notes

aws/aws-sdk-js-v3 (@​aws-sdk/client-s3)

v3.658.1

Compare Source

Bug Fixes
  • clients: allow empty string field values for headers (#​6511) (1273ff3)

v3.658.0

Compare Source

Note: Version bump only for package @​aws-sdk/client-s3

v3.657.0

Compare Source

Note: Version bump only for package @​aws-sdk/client-s3

faker-js/faker (@​faker-js/faker)

v9.0.3

Compare Source

Changed Locales
Bug Fixes

v9.0.2

Compare Source

Bug Fixes
GoogleCloudPlatform/opentelemetry-operations-js (@​google-cloud/opentelemetry-cloud-monitoring-exporter)

v0.20.0

Compare Source

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!

getsentry/sentry-javascript (@​sentry/react)

v8.32.0

Compare Source

Important Changes
  • ref(browser): Move navigation span descriptions into op (#​13527)

Moves the description of navigation related browser spans into the op, e.g. browser - cache -> browser.cache and sets
the description to the performanceEntry objects' names (in this context it is the URL of the page).

  • feat(node): Add amqplibIntegration (#​13714)

  • feat(nestjs): Add SentryGlobalGenericFilter and allow specifying application ref in global filter (#​13673)

Adds a SentryGlobalGenericFilter that filters both graphql and http exceptions depending on the context.

  • feat: Set log level for Fetch/XHR breadcrumbs based on status code (#​13711)

Sets log levels in breadcrumbs for 5xx to error and 4xx to warning.

Other Changes
  • chore(nextjs): Bump rollup to 3.29.5 (#​13761)
  • fix(core): Remove sampled flag from dynamic sampling context in Tracing without Performance mode (#​13753)
  • fix(node): Ensure node-fetch does not emit spans without tracing (#​13765)
  • fix(nuxt): Use Nuxt error hooks instead of errorHandler to prevent 500 (#​13748)
  • fix(test): Unflake LCP test (#​13741)

Work in this release was contributed by @​Zen-cronic and @​Sjoertjuh. Thank you for your contributions!

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

v8.3.3

Compare Source

electron-userland/electron-builder (builder-util-runtime)

v9.2.9

Patch Changes
electron-userland/electron-builder (electron-updater)

v6.3.8

Compare Source

Patch Changes
html-validate/html-validate (html-validate)

v8.24.0

Compare Source

Features
  • new html-validate:browser configuration preset (f4e6f5b), closes #​261
lucide-icons/lucide (lucide-react)

v0.446.0: New icons 0.446.0

Compare Source

New icons 🎨

nrwl/nx (nx)

v19.8.2

Compare Source

19.8.2 (2024-09-26)

🚀 Features
🩹 Fixes
  • core: hide no file server process json log (#​27626)
  • js: @​nx/js:init ensures tslib is installed if importHelpers is true (#​28083)
  • linter: add files entry to angular flat config to avoid applying TS rules to JSON files (#​28102)
❤️ Thank You

v19.8.1

Compare Source

19.8.1 (2024-09-25)
🚀 Features
  • core: allow prompts from init generators during nx init (#​28003)
🩹 Fixes
  • bundling: remove unused babel-plugin-transform-async-to-promises from @nx/rollup (#​27669)
  • core: allow creating a db cache without linking task details (#​28023)
  • core: fix output text for multiple targets (#​28043)
  • core: sort projects after updating from context (#​28024)
  • core: add flag when db is disabled for task history (#​28059)
  • core: set windowsHide: true wherever possible (#​28073)
  • core: support more structured errors in sync generators (#​28075)
  • core: nx add should show errors (#​28079)
  • core: several powerpack fixes (#​28088)
  • core: remove wasi compatibility while db is unsupported in wasi (#​28089)
  • linter: do not generate docs.recommended property (#​28009)
  • linter: ignore dist and use compat helper for eslint-plugin-react-hooks (#​28080)
  • react: vite should be default bundler in app generator (#​28013)
  • release: allow dynamically continuing when current version is unresolvable (#​28034)
  • release: add groupPreVersionCommand to schema, improve logging (#​28087)
❤️ Thank You
openai/openai-node (openai)

v4.65.0

Compare Source

Full Changelog: v4.64.0...v4.65.0

Features

v4.64.0

Compare Source

Full Changelog: v4.63.0...v4.64.0

Features
Bug Fixes
Chores
gpbl/react-day-picker (react-day-picker)

v9.1.3

Compare Source

This release includes some minor build fixes and documentation updates.

What's Changed

New Contributors

Full Changelog: gpbl/react-day-picker@v9.1.2...v9.1.3

tailwindlabs/tailwindcss (tailwindcss)

v3.4.13

Compare Source

Fixed
  • Improve source glob verification performance (#​14481)
emilkowalski/vaul (vaul)

v0.9.9

Compare Source

v0.9.8

Compare Source

v0.9.7

Compare Source

What's Changed

Full Changelog: emilkowalski/vaul@v0.9.5...v0.9.7

v0.9.6

Compare Source

What's Changed

Going from 0.9.4 to 0.9.6 in Release notes, because I didn't rebuilt the project when I published 0.9.5.

Full Changelog: emilkowalski/vaul@v0.9.4...v0.9.6

v0.9.5

Compare Source

vitejs/vite (vite)

v5.4.8

Compare Source

Please refer to CHANGELOG.md for details.

webpack/webpack (webpack)

v5.95.0

Compare Source

Bug Fixes
  • Fixed hanging when attempting to read a symlink-like file that it can't read
  • Handle default for import context element dependency
  • Merge duplicate chunks call after split chunks
  • Generate correctly code for dynamically importing the same file twice and destructuring
  • Use content hash as [base] and [name] for extracted DataURI's
  • Distinguish module and import in module-import for externals import's
  • [Types] Make EnvironmentPlugin default values types less strict
  • [Types] Typescript 5.6 compatibility
New Features
  • Add new optimization.entryIife option (true by default for the production mode)
  • Pass output.hash* options to loader context
Performance
  • Avoid unneeded re-visit in build chunk graph
cloudflare/workers-sdk (wrangler)

v3.78.10

Compare Source

Patch Changes

v3.78.9

Compare Source

Patch Changes

v3.78.8

Compare Source

Patch Changes
  • #​6791 74d719f Thanks @​penalosa! - fix: Add missing binding to init --from-dash

  • #​6728 1ca313f Thanks @​emily-shen! - fix: remove filepath encoding on asset upload and handle sometimes-encoded characters

    Some characters like [ ] @​ are encoded by encodeURIComponent() but are often requested at an unencoded URL path.
    This change will make assets with filenames with these characters accessible at both the encoded and unencoded paths,
    but to use the encoded path as the canonical one, and to redirect requests to the canonical path if necessary.

  • #​6798 7d7f19a Thanks @​emily-shen! - fix: error if an asset binding is provided without a Worker script

  • Updated dependencies [1ca313f]:


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR becomes conflicted, 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 Sep 24, 2024
Copy link

graphite-app bot commented Sep 24, 2024

Your org has enabled the Graphite merge queue for merging into canary

Add the label “merge” to the PR and Graphite will automatically add it to the merge queue when it’s ready to merge. Or use the label “hotfix” to add to the merge queue as a hot fix.

You must have a Graphite account and log in to Graphite in order to use the merge queue. Sign up using this link.

Copy link

nx-cloud bot commented Sep 24, 2024

Copy link

codecov bot commented Sep 24, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 70.22%. Comparing base (4e30f75) to head (0f9fac4).
Report is 1 commits behind head on canary.

Additional details and impacted files
@@            Coverage Diff             @@
##           canary    #8376      +/-   ##
==========================================
+ Coverage   70.21%   70.22%   +0.01%     
==========================================
  Files         520      520              
  Lines       32961    32961              
  Branches     2879     2879              
==========================================
+ Hits        23142    23147       +5     
+ Misses       9481     9475       -6     
- Partials      338      339       +1     
Flag Coverage Δ
server-test 76.71% <ø> (ø)
unittest 46.02% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from dc91793 to f81f2ac Compare September 25, 2024 06:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 353cfaf to 73eec72 Compare September 25, 2024 23:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 99d3144 to 8d6f495 Compare September 27, 2024 01:04
Copy link

graphite-app bot commented Sep 27, 2024

Merge activity

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@aws-sdk/client-s3](https://redirect.github.com/aws/aws-sdk-js-v3/tree/main/clients/client-s3) ([source](https://redirect.github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3)) | [`3.654.0` -> `3.658.1`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-s3/3.654.0/3.658.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-s3/3.658.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-s3/3.658.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-s3/3.654.0/3.658.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-s3/3.654.0/3.658.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@faker-js/faker](https://fakerjs.dev) ([source](https://redirect.github.com/faker-js/faker)) | [`9.0.1` -> `9.0.3`](https://renovatebot.com/diffs/npm/@faker-js%2ffaker/9.0.1/9.0.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@faker-js%2ffaker/9.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@faker-js%2ffaker/9.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@faker-js%2ffaker/9.0.1/9.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@faker-js%2ffaker/9.0.1/9.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@google-cloud/opentelemetry-cloud-monitoring-exporter](https://redirect.github.com/GoogleCloudPlatform/opentelemetry-operations-js) | [`^0.19.0` -> `^0.20.0`](https://renovatebot.com/diffs/npm/@google-cloud%2fopentelemetry-cloud-monitoring-exporter/0.19.0/0.20.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@google-cloud%2fopentelemetry-cloud-monitoring-exporter/0.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@google-cloud%2fopentelemetry-cloud-monitoring-exporter/0.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@google-cloud%2fopentelemetry-cloud-monitoring-exporter/0.19.0/0.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@google-cloud%2fopentelemetry-cloud-monitoring-exporter/0.19.0/0.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@google-cloud/opentelemetry-cloud-trace-exporter](https://redirect.github.com/GoogleCloudPlatform/opentelemetry-operations-js) | [`2.3.0` -> `2.4.1`](https://renovatebot.com/diffs/npm/@google-cloud%2fopentelemetry-cloud-trace-exporter/2.3.0/2.4.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@google-cloud%2fopentelemetry-cloud-trace-exporter/2.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@google-cloud%2fopentelemetry-cloud-trace-exporter/2.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@google-cloud%2fopentelemetry-cloud-trace-exporter/2.3.0/2.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@google-cloud%2fopentelemetry-cloud-trace-exporter/2.3.0/2.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@google-cloud/opentelemetry-resource-util](https://redirect.github.com/GoogleCloudPlatform/opentelemetry-operations-js) | [`2.3.0` -> `2.4.0`](https://renovatebot.com/diffs/npm/@google-cloud%2fopentelemetry-resource-util/2.3.0/2.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@google-cloud%2fopentelemetry-resource-util/2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@google-cloud%2fopentelemetry-resource-util/2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@google-cloud%2fopentelemetry-resource-util/2.3.0/2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@google-cloud%2fopentelemetry-resource-util/2.3.0/2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@prisma/client](https://www.prisma.io) ([source](https://redirect.github.com/prisma/prisma/tree/HEAD/packages/client)) | [`5.19.1` -> `5.20.0`](https://renovatebot.com/diffs/npm/@prisma%2fclient/5.19.1/5.20.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@prisma%2fclient/5.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@prisma%2fclient/5.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@prisma%2fclient/5.19.1/5.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@prisma%2fclient/5.19.1/5.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@prisma/instrumentation](https://www.prisma.io) ([source](https://redirect.github.com/prisma/prisma/tree/HEAD/packages/instrumentation)) | [`5.19.1` -> `5.20.0`](https://renovatebot.com/diffs/npm/@prisma%2finstrumentation/5.19.1/5.20.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@prisma%2finstrumentation/5.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@prisma%2finstrumentation/5.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@prisma%2finstrumentation/5.19.1/5.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@prisma%2finstrumentation/5.19.1/5.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@sentry/react](https://redirect.github.com/getsentry/sentry-javascript/tree/master/packages/react) ([source](https://redirect.github.com/getsentry/sentry-javascript)) | [`8.31.0` -> `8.32.0`](https://renovatebot.com/diffs/npm/@sentry%2freact/8.31.0/8.32.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@sentry%2freact/8.32.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@sentry%2freact/8.32.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@sentry%2freact/8.31.0/8.32.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@sentry%2freact/8.31.0/8.32.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-essentials](https://redirect.github.com/storybookjs/storybook/tree/next/code/addons/essentials) ([source](https://redirect.github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials)) | [`8.3.2` -> `8.3.3`](https://renovatebot.com/diffs/npm/@storybook%2faddon-essentials/8.3.2/8.3.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-essentials/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-essentials/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-essentials/8.3.2/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-essentials/8.3.2/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-interactions](https://redirect.github.com/storybookjs/storybook/tree/next/code/addons/interactions) ([source](https://redirect.github.com/storybookjs/storybook/tree/HEAD/code/addons/interactions)) | [`8.3.2` -> `8.3.3`](https://renovatebot.com/diffs/npm/@storybook%2faddon-interactions/8.3.2/8.3.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-interactions/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-interactions/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-interactions/8.3.2/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-interactions/8.3.2/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-links](https://redirect.github.com/storybookjs/storybook/tree/next/code/addons/links) ([source](https://redirect.github.com/storybookjs/storybook/tree/HEAD/code/addons/links)) | [`8.3.2` -> `8.3.3`](https://renovatebot.com/diffs/npm/@storybook%2faddon-links/8.3.2/8.3.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-links/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-links/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-links/8.3.2/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-links/8.3.2/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-mdx-gfm](https://redirect.github.com/storybookjs/storybook/tree/next/code/addons/gfm) ([source](https://redirect.github.com/storybookjs/storybook/tree/HEAD/code/addons/gfm)) | [`8.3.2` -> `8.3.3`](https://renovatebot.com/diffs/npm/@storybook%2faddon-mdx-gfm/8.3.2/8.3.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-mdx-gfm/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-mdx-gfm/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-mdx-gfm/8.3.2/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-mdx-gfm/8.3.2/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/react](https://redirect.github.com/storybookjs/storybook/tree/next/code/renderers/react) ([source](https://redirect.github.com/storybookjs/storybook/tree/HEAD/code/renderers/react)) | [`8.3.2` -> `8.3.3`](https://renovatebot.com/diffs/npm/@storybook%2freact/8.3.2/8.3.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2freact/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2freact/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2freact/8.3.2/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2freact/8.3.2/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/react-vite](https://redirect.github.com/storybookjs/storybook/tree/next/code/frameworks/react-vite) ([source](https://redirect.github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite)) | [`8.3.2` -> `8.3.3`](https://renovatebot.com/diffs/npm/@storybook%2freact-vite/8.3.2/8.3.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2freact-vite/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2freact-vite/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2freact-vite/8.3.2/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2freact-vite/8.3.2/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | [`20.16.5` -> `20.16.9`](https://renovatebot.com/diffs/npm/@types%2fnode/20.16.5/20.16.9) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/20.16.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/20.16.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/20.16.5/20.16.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/20.16.5/20.16.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/react](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react) ([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react)) | [`18.3.8` -> `18.3.9`](https://renovatebot.com/diffs/npm/@types%2freact/18.3.8/18.3.9) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact/18.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact/18.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact/18.3.8/18.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact/18.3.8/18.3.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [builder-util-runtime](https://redirect.github.com/electron-userland/electron-builder) ([source](https://redirect.github.com/electron-userland/electron-builder/tree/HEAD/packages/builder-util-runtime)) | [`9.2.8` -> `9.2.9`](https://renovatebot.com/diffs/npm/builder-util-runtime/9.2.8/9.2.9) | [![age](https://developer.mend.io/api/mc/badges/age/npm/builder-util-runtime/9.2.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/builder-util-runtime/9.2.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/builder-util-runtime/9.2.8/9.2.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/builder-util-runtime/9.2.8/9.2.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [electron-updater](https://redirect.github.com/electron-userland/electron-builder) ([source](https://redirect.github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-updater)) | [`6.3.7` -> `6.3.8`](https://renovatebot.com/diffs/npm/electron-updater/6.3.7/6.3.8) | [![age](https://developer.mend.io/api/mc/badges/age/npm/electron-updater/6.3.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/electron-updater/6.3.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/electron-updater/6.3.7/6.3.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/electron-updater/6.3.7/6.3.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [html-validate](https://html-validate.org) ([source](https://gitlab.com/html-validate/html-validate)) | [`8.23.0` -> `8.24.0`](https://renovatebot.com/diffs/npm/html-validate/8.23.0/8.24.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/html-validate/8.24.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/html-validate/8.24.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/html-validate/8.23.0/8.24.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/html-validate/8.23.0/8.24.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [lucide-react](https://lucide.dev) ([source](https://redirect.github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react)) | [`^0.445.0` -> `^0.446.0`](https://renovatebot.com/diffs/npm/lucide-react/0.445.0/0.446.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/lucide-react/0.446.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/lucide-react/0.446.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/lucide-react/0.445.0/0.446.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/lucide-react/0.445.0/0.446.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [nx](https://nx.dev) ([source](https://redirect.github.com/nrwl/nx/tree/HEAD/packages/nx)) | [`19.8.0` -> `19.8.2`](https://renovatebot.com/diffs/npm/nx/19.8.0/19.8.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/nx/19.8.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/nx/19.8.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/nx/19.8.0/19.8.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/nx/19.8.0/19.8.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [openai](https://redirect.github.com/openai/openai-node) | [`4.63.0` -> `4.65.0`](https://renovatebot.com/diffs/npm/openai/4.63.0/4.65.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/openai/4.65.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/openai/4.65.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/openai/4.63.0/4.65.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/openai/4.63.0/4.65.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [prisma](https://www.prisma.io) ([source](https://redirect.github.com/prisma/prisma/tree/HEAD/packages/cli)) | [`5.19.1` -> `5.20.0`](https://renovatebot.com/diffs/npm/prisma/5.19.1/5.20.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/prisma/5.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/prisma/5.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/prisma/5.19.1/5.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/prisma/5.19.1/5.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [react-day-picker](https://daypicker.dev) ([source](https://redirect.github.com/gpbl/react-day-picker)) | [`9.1.2` -> `9.1.3`](https://renovatebot.com/diffs/npm/react-day-picker/9.1.2/9.1.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/react-day-picker/9.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/react-day-picker/9.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/react-day-picker/9.1.2/9.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/react-day-picker/9.1.2/9.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [storybook](https://redirect.github.com/storybookjs/storybook/tree/next/code/lib/cli) ([source](https://redirect.github.com/storybookjs/storybook/tree/HEAD/code/lib/cli)) | [`8.3.2` -> `8.3.3`](https://renovatebot.com/diffs/npm/storybook/8.3.2/8.3.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/storybook/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/storybook/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/storybook/8.3.2/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/storybook/8.3.2/8.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [tailwindcss](https://tailwindcss.com) ([source](https://redirect.github.com/tailwindlabs/tailwindcss)) | [`3.4.12` -> `3.4.13`](https://renovatebot.com/diffs/npm/tailwindcss/3.4.12/3.4.13) | [![age](https://developer.mend.io/api/mc/badges/age/npm/tailwindcss/3.4.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/tailwindcss/3.4.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/tailwindcss/3.4.12/3.4.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/tailwindcss/3.4.12/3.4.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [vaul](https://vaul.emilkowal.ski/) ([source](https://redirect.github.com/emilkowalski/vaul)) | [`0.9.4` -> `0.9.9`](https://renovatebot.com/diffs/npm/vaul/0.9.4/0.9.9) | [![age](https://developer.mend.io/api/mc/badges/age/npm/vaul/0.9.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vaul/0.9.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vaul/0.9.4/0.9.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vaul/0.9.4/0.9.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [vite](https://vitejs.dev) ([source](https://redirect.github.com/vitejs/vite/tree/HEAD/packages/vite)) | [`5.4.7` -> `5.4.8`](https://renovatebot.com/diffs/npm/vite/5.4.7/5.4.8) | [![age](https://developer.mend.io/api/mc/badges/age/npm/vite/5.4.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite/5.4.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite/5.4.7/5.4.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite/5.4.7/5.4.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [webpack](https://redirect.github.com/webpack/webpack) | [`5.94.0` -> `5.95.0`](https://renovatebot.com/diffs/npm/webpack/5.94.0/5.95.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/webpack/5.95.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/webpack/5.95.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/webpack/5.94.0/5.95.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/webpack/5.94.0/5.95.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [wrangler](https://redirect.github.com/cloudflare/workers-sdk) ([source](https://redirect.github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler)) | [`3.78.7` -> `3.78.10`](https://renovatebot.com/diffs/npm/wrangler/3.78.7/3.78.10) | [![age](https://developer.mend.io/api/mc/badges/age/npm/wrangler/3.78.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/wrangler/3.78.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/wrangler/3.78.7/3.78.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/wrangler/3.78.7/3.78.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/client-s3)</summary>

### [`v3.658.1`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#36581-2024-09-25)

[Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.658.0...v3.658.1)

##### Bug Fixes

-   **clients:** allow empty string field values for headers ([#&#8203;6511](https://redirect.github.com/aws/aws-sdk-js-v3/issues/6511)) ([1273ff3](https://redirect.github.com/aws/aws-sdk-js-v3/commit/1273ff317071749cfeb88caad9df7492256c03e2))

### [`v3.658.0`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#36580-2024-09-24)

[Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.657.0...v3.658.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-s3](https://redirect.github.com/aws-sdk/client-s3)

### [`v3.657.0`](https://redirect.github.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#36570-2024-09-23)

[Compare Source](https://redirect.github.com/aws/aws-sdk-js-v3/compare/v3.654.0...v3.657.0)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-s3](https://redirect.github.com/aws-sdk/client-s3)

</details>

<details>
<summary>faker-js/faker (@&#8203;faker-js/faker)</summary>

### [`v9.0.3`](https://redirect.github.com/faker-js/faker/blob/HEAD/CHANGELOG.md#903-2024-09-26)

[Compare Source](https://redirect.github.com/faker-js/faker/compare/v9.0.2...v9.0.3)

##### Changed Locales

-   **locale:** update french legal entity types ([#&#8203;3142](https://redirect.github.com/faker-js/faker/issues/3142)) ([d6bceb6](https://redirect.github.com/faker-js/faker/commit/d6bceb662de6559446fedb11de53a632a525aba0))

##### Bug Fixes

-   **image:** fix dataUri with type svg-base64 in browsers ([#&#8203;3144](https://redirect.github.com/faker-js/faker/issues/3144)) ([78b2a3a](https://redirect.github.com/faker-js/faker/commit/78b2a3a8b85679eeff27beccebcc404b0a5ff3cf))

### [`v9.0.2`](https://redirect.github.com/faker-js/faker/blob/HEAD/CHANGELOG.md#902-2024-09-23)

[Compare Source](https://redirect.github.com/faker-js/faker/compare/v9.0.1...v9.0.2)

##### Bug Fixes

-   **locale:** improve pt_PT location and person data ([#&#8203;3020](https://redirect.github.com/faker-js/faker/issues/3020)) ([3e47ee7](https://redirect.github.com/faker-js/faker/commit/3e47ee7da671296e11ed2b219f85b06c9d05d677))

</details>

<details>
<summary>GoogleCloudPlatform/opentelemetry-operations-js (@&#8203;google-cloud/opentelemetry-cloud-monitoring-exporter)</summary>

### [`v0.20.0`](https://redirect.github.com/GoogleCloudPlatform/opentelemetry-operations-js/compare/@google-cloud/[email protected]...@google-cloud/[email protected])

[Compare Source](https://redirect.github.com/GoogleCloudPlatform/opentelemetry-operations-js/compare/@google-cloud/[email protected]...@google-cloud/[email protected])

</details>

<details>
<summary>prisma/prisma (@&#8203;prisma/client)</summary>

### [`v5.20.0`](https://redirect.github.com/prisma/prisma/releases/tag/5.20.0)

[Compare Source](https://redirect.github.com/prisma/prisma/compare/5.19.1...5.20.0)

🌟 **Help us spread the word about Prisma by starring the repo or [posting on X](https://twitter.com/intent/tweet?text=Check%20out%20the%20latest%20@&#8203;prisma%20release%20v5.20.0%20%F0%9F%9A%80%0D%0A%0D%0Ahttps://github.com/prisma/prisma/releases/tag/5.20.0) 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](https://redirect.github.com/prisma/prisma/issues/20169) and follows [our latest proposal](https://redirect.github.com/prisma/prisma/issues/20169#issuecomment-2338360300) on the same issue.

To demonstrate the change, take the following code snippet:

```tsx
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:

```tsx
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.

```tsx
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](https://redirect.github.com/prisma/prisma/discussions/25271).

##### `typedSql` bug fix

Thank you to everyone who has tried out our [`typedSql` Preview feature](https://www.prisma.io/blog/announcing-typedsql-make-your-raw-sql-queries-type-safe-with-prisma-orm) and [provided feedback](https://redirect.github.com/prisma/prisma/discussions/25106)! This release has a quick fix for typescript files generated when Prisma Schema enums had hyphens.

#### Fixes and improvements

##### Prisma

-   [Prisma incorrectly parses CRDB's FK constraint error as `not available`.](https://redirect.github.com/prisma/prisma/issues/24072)
-   [Invalid TypeScript files created by `generate` when typedSql is enabled and enum contains hyphens.](https://redirect.github.com/prisma/prisma/issues/25163)
-   [`@prisma/internals` didn't list `ts-toolbelt` in dependencies.](https://redirect.github.com/prisma/prisma/issues/17952)
-   [using `$extends` prevents model comments from being passed to TypeScript](https://redirect.github.com/prisma/prisma/issues/24648)

##### Prisma Engines

-   [Planetscale engine tests: interactive_tx](https://redirect.github.com/prisma/prisma-engines/issues/4469)
-   [Fix broken engine size publishing workflow](https://redirect.github.com/prisma/prisma-engines/issues/4991)

#### Credits

Huge thanks to [@&#8203;mcuelenaere](https://redirect.github.com/mcuelenaere), [@&#8203;pagewang0](https://redirect.github.com/pagewang0), [@&#8203;key-moon](https://redirect.github.com/key-moon), [@&#8203;pranayat](https://redirect.github.com/pranayat), [@&#8203;yubrot](https://redirect.github.com/yubrot), [@&#8203;thijmenjk](https://redirect.github.com/thijmenjk), [@&#8203;mydea](https://redirect.github.com/mydea), [@&#8203;HRM](https://redirect.github.com/HRM), [@&#8203;haaawk](https://redirect.github.com/haaawk), [@&#8203;baileywickham](https://redirect.github.com/baileywickham), [@&#8203;brian-dlee](https://redirect.github.com/brian-dlee), [@&#8203;nickcarnival](https://redirect.github.com/nickcarnival), [@&#8203;eruditmorina](https://redirect.github.com/eruditmorina), [@&#8203;nzakas](https://redirect.github.com/nzakas), and [@&#8203;gutyerrez](https://redirect.github.com/gutyerrez) for helping!

</details>

<details>
<summary>getsentry/sentry-javascript (@&#8203;sentry/react)</summary>

### [`v8.32.0`](https://redirect.github.com/getsentry/sentry-javascript/releases/tag/8.32.0)

[Compare Source](https://redirect.github.com/getsentry/sentry-javascript/compare/8.31.0...8.32.0)

##### Important Changes

-   **ref(browser): Move navigation span descriptions into op ([#&#8203;13527](https://redirect.github.com/getsentry/sentry-javascript/pull/13527))**

Moves the description of navigation related browser spans into the op, e.g. browser - cache -> browser.cache and sets
the description to the performanceEntry objects' names (in this context it is the URL of the page).

-   **feat(node): Add amqplibIntegration ([#&#8203;13714](https://redirect.github.com/getsentry/sentry-javascript/pull/13714))**

-   **feat(nestjs): Add `SentryGlobalGenericFilter` and allow specifying application ref in global filter ([#&#8203;13673](https://redirect.github.com/getsentry/sentry-javascript/pull/13673))**

Adds a `SentryGlobalGenericFilter` that filters both graphql and http exceptions depending on the context.

-   **feat: Set log level for Fetch/XHR breadcrumbs based on status code ([#&#8203;13711](https://redirect.github.com/getsentry/sentry-javascript/pull/13711))**

Sets log levels in breadcrumbs for 5xx to error and 4xx to warning.

##### Other Changes

-   chore(nextjs): Bump rollup to 3.29.5 ([#&#8203;13761](https://redirect.github.com/getsentry/sentry-javascript/pull/13761))
-   fix(core): Remove `sampled` flag from dynamic sampling context in Tracing without Performance mode ([#&#8203;13753](https://redirect.github.com/getsentry/sentry-javascript/pull/13753))
-   fix(node): Ensure node-fetch does not emit spans without tracing ([#&#8203;13765](https://redirect.github.com/getsentry/sentry-javascript/pull/13765))
-   fix(nuxt): Use Nuxt error hooks instead of errorHandler to prevent 500 ([#&#8203;13748](https://redirect.github.com/getsentry/sentry-javascript/pull/13748))
-   fix(test): Unflake LCP test ([#&#8203;13741](https://redirect.github.com/getsentry/sentry-javascript/pull/13741))

Work in this release was contributed by [@&#8203;Zen-cronic](https://redirect.github.com/Zen-cronic) and [@&#8203;Sjoertjuh](https://redirect.github.com/Sjoertjuh). Thank you for your contributions!

</details>

<details>
<summary>storybookjs/storybook (@&#8203;storybook/addon-essentials)</summary>

### [`v8.3.3`](https://redirect.github.com/storybookjs/storybook/blob/HEAD/CHANGELOG.md#833)

[Compare Source](https://redirect.github.com/storybookjs/storybook/compare/v8.3.2...v8.3.3)

-   CLI: Show constraints in error when getting depndencies - [#&#8203;29187](https://redirect.github.com/storybookjs/storybook/pull/29187), thanks [@&#8203;andrasczeh](https://redirect.github.com/andrasczeh)!
-   React-Vite: Downgrade react-docgen-typescript plugin - [#&#8203;29184](https://redirect.github.com/storybookjs/storybook/pull/29184), thanks [@&#8203;shilman](https://redirect.github.com/shilman)!
-   UI: Fix composed storybook TooltipLinkList bug where href isn't passed forward - [#&#8203;29175](https://redirect.github.com/storybookjs/storybook/pull/29175), thanks [@&#8203;JSMike](https://redirect.github.com/JSMike)!

</details>

<details>
<summary>electron-userland/electron-builder (builder-util-runtime)</summary>

### [`v9.2.9`](https://redirect.github.com/electron-userland/electron-builder/blob/HEAD/packages/builder-util-runtime/CHANGELOG.md#929)

##### Patch Changes

-   [#&#8203;8516](https://redirect.github.com/electron-userland/electron-builder/pull/8516) [`d1cb6bdb`](https://redirect.github.com/electron-userland/electron-builder/commit/d1cb6bdbf8111156bb16839f501bdd9e6d477338) Thanks [@&#8203;mmaietta](https://redirect.github.com/mmaietta)! - fix(chore): upgrading typescript and fixing compiler errors

</details>

<details>
<summary>electron-userland/electron-builder (electron-updater)</summary>

### [`v6.3.8`](https://redirect.github.com/electron-userland/electron-builder/blob/HEAD/packages/electron-updater/CHANGELOG.md#638)

[Compare Source](https://redirect.github.com/electron-userland/electron-builder/compare/[email protected]@6.3.8)

##### Patch Changes

-   [#&#8203;8516](https://redirect.github.com/electron-userland/electron-builder/pull/8516) [`d1cb6bdb`](https://redirect.github.com/electron-userland/electron-builder/commit/d1cb6bdbf8111156bb16839f501bdd9e6d477338) Thanks [@&#8203;mmaietta](https://redirect.github.com/mmaietta)! - fix(chore): upgrading typescript and fixing compiler errors

-   Updated dependencies \[[`d1cb6bdb`](https://redirect.github.com/electron-userland/electron-builder/commit/d1cb6bdbf8111156bb16839f501bdd9e6d477338)]:
    -   [email protected]

</details>

<details>
<summary>html-validate/html-validate (html-validate)</summary>

### [`v8.24.0`](https://gitlab.com/html-validate/html-validate/blob/HEAD/CHANGELOG.md#8240-2024-09-24)

[Compare Source](https://gitlab.com/html-validate/html-validate/compare/v8.23.0...v8.24.0)

##### Features

-   new `html-validate:browser` configuration preset ([f4e6f5b](https://gitlab.com/html-validate/html-validate/commit/f4e6f5ba3b57a278ef6c59a4e5e65ec602b2f9de)), closes [#&#8203;261](https://gitlab.com/html-validate/html-validate/issues/261)

</details>

<details>
<summary>lucide-icons/lucide (lucide-react)</summary>

### [`v0.446.0`](https://redirect.github.com/lucide-icons/lucide/releases/tag/0.446.0): New icons 0.446.0

[Compare Source](https://redirect.github.com/lucide-icons/lucide/compare/0.445.0...0.446.0)

#### New icons 🎨

-   `file-user` ([#&#8203;2457](https://redirect.github.com/lucide-icons/lucide/issues/2457)) by [@&#8203;jguddas](https://redirect.github.com/jguddas)

</details>

<details>
<summary>nrwl/nx (nx)</summary>

### [`v19.8.2`](https://redirect.github.com/nrwl/nx/releases/tag/19.8.2)

[Compare Source](https://redirect.github.com/nrwl/nx/compare/19.8.1...19.8.2)

#### 19.8.2 (2024-09-26)

##### 🚀 Features

-   **nx-dev:** powerpack landing page ([#&#8203;27963](https://redirect.github.com/nrwl/nx/pull/27963))

##### 🩹 Fixes

-   **core:** hide no file server process json log ([#&#8203;27626](https://redirect.github.com/nrwl/nx/pull/27626))
-   **js:** [@&#8203;nx/js](https://redirect.github.com/nx/js):init ensures tslib is installed if importHelpers is true ([#&#8203;28083](https://redirect.github.com/nrwl/nx/pull/28083))
-   **linter:** add files entry to angular flat config to avoid applying TS rules to JSON files ([#&#8203;28102](https://redirect.github.com/nrwl/nx/pull/28102))

##### ❤️  Thank You

-   Craigory Coppola [@&#8203;AgentEnder](https://redirect.github.com/AgentEnder)
-   Jack Hsu [@&#8203;jaysoo](https://redirect.github.com/jaysoo)
-   Juri Strumpflohner [@&#8203;juristr](https://redirect.github.com/juristr)

### [`v19.8.1`](https://redirect.github.com/nrwl/nx/releases/tag/19.8.1)

[Compare Source](https://redirect.github.com/nrwl/nx/compare/19.8.0...19.8.1)

##### 19.8.1 (2024-09-25)

##### 🚀 Features

-   **core:** allow prompts from init generators during nx init ([#&#8203;28003](https://redirect.github.com/nrwl/nx/pull/28003))

##### 🩹 Fixes

-   **bundling:** remove unused `babel-plugin-transform-async-to-promises` from `@nx/rollup` ([#&#8203;27669](https://redirect.github.com/nrwl/nx/pull/27669))
-   **core:** allow creating a db cache without linking task details ([#&#8203;28023](https://redirect.github.com/nrwl/nx/pull/28023))
-   **core:** fix output text for multiple targets ([#&#8203;28043](https://redirect.github.com/nrwl/nx/pull/28043))
-   **core:** sort projects after updating from context ([#&#8203;28024](https://redirect.github.com/nrwl/nx/pull/28024))
-   **core:** add flag when db is disabled for task history ([#&#8203;28059](https://redirect.github.com/nrwl/nx/pull/28059))
-   **core:** set windowsHide: true wherever possible ([#&#8203;28073](https://redirect.github.com/nrwl/nx/pull/28073))
-   **core:** support more structured errors in sync generators ([#&#8203;28075](https://redirect.github.com/nrwl/nx/pull/28075))
-   **core:** nx add should show errors ([#&#8203;28079](https://redirect.github.com/nrwl/nx/pull/28079))
-   **core:** several powerpack fixes ([#&#8203;28088](https://redirect.github.com/nrwl/nx/pull/28088))
-   **core:** remove wasi compatibility while db is unsupported in wasi ([#&#8203;28089](https://redirect.github.com/nrwl/nx/pull/28089))
-   **linter:** do not generate docs.recommended property ([#&#8203;28009](https://redirect.github.com/nrwl/nx/pull/28009))
-   **linter:** ignore dist and use compat helper for eslint-plugin-react-hooks ([#&#8203;28080](https://redirect.github.com/nrwl/nx/pull/28080))
-   **react:** vite should be default bundler in app generator ([#&#8203;28013](https://redirect.github.com/nrwl/nx/pull/28013))
-   **release:** allow dynamically continuing when current version is unresolvable ([#&#8203;28034](https://redirect.github.com/nrwl/nx/pull/28034))
-   **release:** add groupPreVersionCommand to schema, improve logging ([#&#8203;28087](https://redirect.github.com/nrwl/nx/pull/28087))

##### ❤️  Thank You

-   Emily Xiong [@&#8203;xiongemi](https://redirect.github.com/xiongemi)
-   Jack Hsu [@&#8203;jaysoo](https://redirect.github.com/jaysoo)
-   James Henry [@&#8203;JamesHenry](https://redirect.github.com/JamesHenry)
-   Jason Jean [@&#8203;FrozenPandaz](https://redirect.github.com/FrozenPandaz)
-   Jonathan Cammisuli
-   Juri Strumpflohner [@&#8203;juristr](https://redirect.github.com/juristr)
-   Leosvel Pérez Espinosa [@&#8203;leosvelperez](https://redirect.github.com/leosvelperez)
-   MaxKless [@&#8203;MaxKless](https://redirect.github.com/MaxKless)
-   Phillip Barta [@&#8203;Phillip9587](https://redirect.github.com/Phillip9587)

</details>

<details>
<summary>openai/openai-node (openai)</summary>

### [`v4.65.0`](https://redirect.github.com/openai/openai-node/blob/HEAD/CHANGELOG.md#4650-2024-09-26)

[Compare Source](https://redirect.github.com/openai/openai-node/compare/v4.64.0...v4.65.0)

Full Changelog: [v4.64.0...v4.65.0](https://redirect.github.com/openai/openai-node/compare/v4.64.0...v4.65.0)

##### Features

-   **api:** add omni-moderation model ([#&#8203;1100](https://redirect.github.com/openai/openai-node/issues/1100)) ([66c0f21](https://redirect.github.com/openai/openai-node/commit/66c0f21fad3be9c57b810c4a7eebb71eb6ccbcc1))

### [`v4.64.0`](https://redirect.github.com/openai/openai-node/blob/HEAD/CHANGELOG.md#4640-2024-09-25)

[Compare Source](https://redirect.github.com/openai/openai-node/compare/v4.63.0...v4.64.0)

Full Changelog: [v4.63.0...v4.64.0](https://redirect.github.com/openai/openai-node/compare/v4.63.0...v4.64.0)

##### Features

-   **client:** allow overriding retry count header ([#&#8203;1098](https://redirect.github.com/openai/openai-node/issues/1098)) ([a466ff7](https://redirect.github.com/openai/openai-node/commit/a466ff78a436db82d79a8f53066a85a3b1dbe039))

##### Bug Fixes

-   **audio:** correct response_format translations type ([#&#8203;1097](https://redirect.github.com/openai/openai-node/issues/1097)) ([9a5f461](https://redirect.github.com/openai/openai-node/commit/9a5f461306e84b62ce1ed8aedbfee90798def5fb))

##### Chores

-   **internal:** fix ecosystem tests error output ([#&#8203;1096](https://redirect.github.com/openai/openai-node/issues/1096)) ([ecdb4e9](https://redirect.github.com/openai/openai-node/commit/ecdb4e923f94e828d8758559aea78c82417b8f12))
-   **internal:** fix slow ecosystem test ([#&#8203;1093](https://redirect.github.com/openai/openai-node/issues/1093)) ([80ed9ec](https://redirect.github.com/openai/openai-node/commit/80ed9ecbd60129164cb407e46dddbc06ef1c54ab))

</details>

<details>
<summary>gpbl/react-day-picker (react-day-picker)</summary>

### [`v9.1.3`](https://redirect.github.com/gpbl/react-day-picker/releases/tag/v9.1.3)

[Compare Source](https://redirect.github.com/gpbl/react-day-picker/compare/v9.1.2...v9.1.3)

This release includes some minor build fixes and documentation updates.

#### What's Changed

-   build: add `tsconfig-base.json` to package by [@&#8203;luucvanderzee](https://redirect.github.com/luucvanderzee) in [https://github.com/gpbl/react-day-picker/pull/2492](https://redirect.github.com/gpbl/react-day-picker/pull/2492)
-   build(deps): bump [@&#8203;date-fns/tz](https://redirect.github.com/date-fns/tz) to 1.1.2 by [@&#8203;gpbl](https://redirect.github.com/gpbl) in [https://github.com/gpbl/react-day-picker/pull/2494](https://redirect.github.com/gpbl/react-day-picker/pull/2494)

#### New Contributors

-   [@&#8203;luucvanderzee](https://redirect.github.com/luucvanderzee) made their first contribution in [https://github.com/gpbl/react-day-picker/pull/2492](https://redirect.github.com/gpbl/react-day-picker/pull/2492)

**Full Changelog**: https://github.com/gpbl/react-day-picker/compare/v9.1.2...v9.1.3

</details>

<details>
<summary>tailwindlabs/tailwindcss (tailwindcss)</summary>

### [`v3.4.13`](https://redirect.github.com/tailwindlabs/tailwindcss/releases/tag/v3.4.13)

[Compare Source](https://redirect.github.com/tailwindlabs/tailwindcss/compare/v3.4.12...v3.4.13)

##### Fixed

-   Improve source glob verification performance ([#&#8203;14481](https://redirect.github.com/tailwindlabs/tailwindcss/pull/14481))

</details>

<details>
<summary>emilkowalski/vaul (vaul)</summary>

### [`v0.9.9`](https://redirect.github.com/emilkowalski/vaul/compare/59ad745971dd3901cd4b1b57f52c6159e81ac87a...a60e76abeefd58232dd46b470736f0d6371dc583)

[Compare Source](https://redirect.github.com/emilkowalski/vaul/compare/59ad745971dd3901cd4b1b57f52c6159e81ac87a...a60e76abeefd58232dd46b470736f0d6371dc583)

### [`v0.9.8`](https://redirect.github.com/emilkowalski/vaul/compare/v0.9.7...59ad745971dd3901cd4b1b57f52c6159e81ac87a)

[Compare Source](https://redirect.github.com/emilkowalski/vaul/compare/v0.9.7...59ad745971dd3901cd4b1b57f52c6159e81ac87a)

### [`v0.9.7`](https://redirect.github.com/emilkowalski/vaul/releases/tag/v0.9.7)

[Compare Source](https://redirect.github.com/emilkowalski/vaul/compare/v0.9.6...v0.9.7)

#### What's Changed

-   fix: horizontal shift by [@&#8203;emilkowalski](https://redirect.github.com/emilkowalski) in [https://github.com/emilkowalski/vaul/pull/443](https://redirect.github.com/emilkowalski/vaul/pull/443)
-   fix: make modal false scrollable by [@&#8203;emilkowalski](https://redirect.github.com/emilkowalski) in [https://github.com/emilkowalski/vaul/pull/444](https://redirect.github.com/emilkowalski/vaul/pull/444)
-   fix: input repositioning by [@&#8203;emilkowalski](https://redirect.github.com/emilkowalski) in [https://github.com/emilkowalski/vaul/pull/446](https://redirect.github.com/emilkowalski/vaul/pull/446)
-   fix: opacity calculation by [@&#8203;emilkowalski](https://redirect.github.com/emilkowalski) in [https://github.com/emilkowalski/vaul/pull/447](https://redirect.github.com/emilkowalski/vaul/pull/447)
-   fix: pointer events none  by [@&#8203;emilkowalski](https://redirect.github.com/emilkowalski) in [https://github.com/emilkowalski/vaul/pull/449](https://redirect.github.com/emilkowalski/vaul/pull/449)
-   fix: prevent nested drawers from scrolling to top by [@&#8203;emilkowalski](https://redirect.github.com/emilkowalski) in [https://github.com/emilkowalski/vaul/pull/450](https://redirect.github.com/emilkowalski/vaul/pull/450)

**Full Changelog**: https://github.com/emilkowalski/vaul/compare/v0.9.5...v0.9.7

### [`v0.9.6`](https://redirect.github.com/emilkowalski/vaul/releases/tag/v0.9.6)

[Compare Source](https://redirect.github.com/emilkowalski/vaul/compare/v0.9.5...v0.9.6)

#### What's Changed

Going from 0.9.4 to 0.9.6 in Release notes, because I didn't rebuilt the project when I published 0.9.5.

-   Add usePositionFixed hook by [@&#8203;emilkowalski](https://redirect.github.com/emilkowalski) in [https://github.com/emilkowalski/vaul/pull/436](https://redirect.github.com/emilkowalski/vaul/pull/436)
-   feat: Don't autofocus within Dialog by [@&#8203;emilkowalski](https://redirect.github.com/emilkowalski) in [https://github.com/emilkowalski/vaul/pull/437](https://redirect.github.com/emilkowalski/vaul/pull/437)
-   fix: ensure interaction after closing by [@&#8203;emilkowalski](https://redirect.github.com/emilkowalski) in [https://github.com/emilkowalski/vaul/pull/438](https://redirect.github.com/emilkowalski/vaul/pull/438)
-   fix: nested drawers drag by [@&#8203;emilkowalski](https://redirect.github.com/emilkowalski) in [https://github.com/emilkowalski/vaul/pull/439](https://redirect.github.com/emilkowalski/vaul/pull/439)
-   fix: drawer failing to cancel move event by [@&#8203;emilkowalski](https://redirect.github.com/emilkowalski) in [https://github.com/emilkowalski/vaul/pull/440](https://redirect.github.com/emilkowalski/vaul/pull/440)
-   fix: inputs repositioning by [@&#8203;emilkowalski](https://redirect.github.com/emilkowalski) in [https://github.com/emilkowalski/vaul/pull/441](https://redirect.github.com/emilkowalski/vaul/pull/441)
-   feat: add autofocus prop by [@&#8203;emilkowalski](https://redirect.github.com/emilkowalski) in [https://github.com/emilkowalski/vaul/pull/442](https://redirect.github.com/emilkowalski/vaul/pull/442)

**Full Changelog**: https://github.com/emilkowalski/vaul/compare/v0.9.4...v0.9.6

### [`v0.9.5`](https://redirect.github.com/emilkowalski/vaul/compare/v0.9.4...v0.9.5)

[Compare Source](https://redirect.github.com/emilkowalski/vaul/compare/v0.9.4...v0.9.5)

</details>

<details>
<summary>vitejs/vite (vite)</summary>

### [`v5.4.8`](https://redirect.github.com/vitejs/vite/releases/tag/v5.4.8)

[Compare Source](https://redirect.github.com/vitejs/vite/compare/v5.4.7...v5.4.8)

Please refer to [CHANGELOG.md](https://redirect.github.com/vitejs/vite/blob/v5.4.8/packages/vite/CHANGELOG.md) for details.

</details>

<details>
<summary>webpack/webpack (webpack)</summary>

### [`v5.95.0`](https://redirect.github.com/webpack/webpack/releases/tag/v5.95.0)

[Compare Source](https://redirect.github.com/webpack/webpack/compare/v5.94.0...v5.95.0)

##### Bug Fixes

-   Fixed hanging when attempting to read a symlink-like file that it can't read
-   Handle `default` for import context element dependency
-   Merge duplicate chunks call after split chunks
-   Generate correctly code for dynamically importing the same file twice and destructuring
-   Use content hash as \[base] and \[name] for extracted DataURI's
-   Distinguish `module` and `import` in `module-import` for externals `import`'s
-   \[Types] Make `EnvironmentPlugin` default values types less strict
-   \[Types] Typescript 5.6 compatibility

##### New Features

-   Add new `optimization.entryIife` option (`true` by default for the `production` mode)
-   Pass output.hash\* options to loader context

##### Performance

-   Avoid unneeded re-visit in build chunk graph

</details>

<details>
<summary>cloudflare/workers-sdk (wrangler)</summary>

### [`v3.78.10`](https://redirect.github.com/cloudflare/workers-sdk/blob/HEAD/packages/wrangler/CHANGELOG.md#37810)

[Compare Source](https://redirect.github.com/cloudflare/workers-sdk/compare/[email protected]@3.78.10)

##### Patch Changes

-   [#&#8203;6824](https://redirect.github.com/cloudflare/workers-sdk/pull/6824) [`1c58a74`](https://redirect.github.com/cloudflare/workers-sdk/commit/1c58a7470757508e64003d05c76d9deb7f223763) Thanks [@&#8203;petebacondarwin](https://redirect.github.com/petebacondarwin)! - fix: tidy up error messaging for unexpected use of Node.js APIs

    Fixes [#&#8203;6822](https://redirect.github.com/cloudflare/workers-sdk/issues/6822)

-   Updated dependencies \[[`5e2e62c`](https://redirect.github.com/cloudflare/workers-sdk/commit/5e2e62c165166819c63998ad0c7caaaf57d7b988), [`1c58a74`](https://redirect.github.com/cloudflare/workers-sdk/commit/1c58a7470757508e64003d05c76d9deb7f223763)]:
    -   [email protected]

### [`v3.78.9`](https://redirect.github.com/cloudflare/workers-sdk/blob/HEAD/packages/wrangler/CHANGELOG.md#3789)

[Compare Source](https://redirect.github.com/cloudflare/workers-sdk/compare/[email protected]@3.78.9)

##### Patch Changes

-   [#&#8203;6753](https://redirect.github.com/cloudflare/workers-sdk/pull/6753) [`4e33f2c`](https://redirect.github.com/cloudflare/workers-sdk/commit/4e33f2cdc1d9ab59fdbd6fcc162632c91da9b21b) Thanks [@&#8203;bluwy](https://redirect.github.com/bluwy)! - refactor: prevent bundling entire `package.json` in built code

-   [#&#8203;6812](https://redirect.github.com/cloudflare/workers-sdk/pull/6812) [`f700d37`](https://redirect.github.com/cloudflare/workers-sdk/commit/f700d3704a4fca98f8c74549ae849dea8cc1013b) Thanks [@&#8203;CarmenPopoviciu](https://redirect.github.com/CarmenPopoviciu)! - fix: Validate additional config properties for `[observability]`

-   [#&#8203;6751](https://redirect.github.com/cloudflare/workers-sdk/pull/6751) [`638a550`](https://redirect.github.com/cloudflare/workers-sdk/commit/638a55063b5b74ad30dfe98f8ee2e23e86f2c25a) Thanks [@&#8203;bluwy](https://redirect.github.com/bluwy)! - refactor: simplify date calculation and remove date-fns dependency

-   [#&#8203;6809](https://redirect.github.com/cloudflare/workers-sdk/pull/6809) [`28cb0d7`](https://redirect.github.com/cloudflare/workers-sdk/commit/28cb0d759e5a0863b92576bbec0df3305806e4aa) Thanks [@&#8203;smellercf](https://redirect.github.com/smellercf)! - fix: Remove Beta tag from r2 event notification wrangler command descriptions

-   [#&#8203;6802](https://redirect.github.com/cloudflare/workers-sdk/pull/6802) [`17eb8a9`](https://redirect.github.com/cloudflare/workers-sdk/commit/17eb8a9f9e477fe064e5b0e7e716ba8b8ce0cccc) Thanks [@&#8203;CarmenPopoviciu](https://redirect.github.com/CarmenPopoviciu)! - chore: rename `experimental_assets` to `assets`

-   [#&#8203;6781](https://redirect.github.com/cloudflare/workers-sdk/pull/6781) [`0792fa0`](https://redirect.github.com/cloudflare/workers-sdk/commit/0792fa08fbda89d282b87be86cd05f961ca38df1) Thanks [@&#8203;mikenomitch](https://redirect.github.com/mikenomitch)! - chore: tweaks warning when using node_compat

### [`v3.78.8`](https://redirect.github.com/cloudflare/workers-sdk/blob/HEAD/packages/wrangler/CHANGELOG.md#3788)

[Compare Source](https://redirect.github.com/cloudflare/workers-sdk/compare/[email protected]@3.78.8)

##### Patch Changes

-   [#&#8203;6791](https://redirect.github.com/cloudflare/workers-sdk/pull/6791) [`74d719f`](https://redirect.github.com/cloudflare/workers-sdk/commit/74d719fb8d2ce1e877b3c70da2a495386084d892) Thanks [@&#8203;penalosa](https://redirect.github.com/penalosa)! - fix: Add missing binding to `init --from-dash`

-   [#&#8203;6728](https://redirect.github.com/cloudflare/workers-sdk/pull/6728) [`1ca313f`](https://redirect.github.com/cloudflare/workers-sdk/commit/1ca313f2041688cd13e25f0817e3b72dfc930bac) Thanks [@&#8203;emily-shen](https://redirect.github.com/emily-shen)! - fix: remove filepath encoding on asset upload and handle sometimes-encoded characters

    Some characters like \[ ] @&#8203; are encoded by encodeURIComponent() but are often requested at an unencoded URL path.
    This change will make assets with filenames with these characters accessible at both the encoded and unencoded paths,
    but to use the encoded path as the canonical one, and to redirect requests to the canonical path if necessary.

-   [#&#8203;6798](https://redirect.github.com/cloudflare/workers-sdk/pull/6798) [`7d7f19a`](https://redirect.github.com/cloudflare/workers-sdk/commit/7d7f19a2ca501d311c00d15c78ba3bec1a50353e) Thanks [@&#8203;emily-shen](https://redirect.github.com/emily-shen)! - fix: error if an asset binding is provided without a Worker script

-   Updated dependencies \[[`1ca313f`](https://redirect.github.com/cloudflare/workers-sdk/commit/1ca313f2041688cd13e25f0817e3b72dfc930bac)]:
    -   [@&#8203;cloudflare/workers-shared](https://redirect.github.com/cloudflare/workers-shared)[@&#8203;0](https://redirect.github.com/0).5.4
    -   [email protected]

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

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

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/toeverything/AFFiNE).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->
@graphite-app graphite-app bot merged commit 0f9fac4 into canary Sep 27, 2024
38 checks passed
@graphite-app graphite-app bot deleted the renovate/all-minor-patch branch September 27, 2024 08:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
app:server dependencies Pull requests that update a dependency file
Projects
Status: No status
Development

Successfully merging this pull request may close these issues.

2 participants