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

Bump the all group with 17 updates #12

Merged
merged 1 commit into from
Oct 13, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 12, 2024

Bumps the all group with 17 updates:

Package From To
@atproto/api 0.13.7 0.13.12
@fastify/cookie 10.0.0 11.0.1
@fastify/formbody 8.0.0 8.0.1
@fastify/jwt 9.0.0 9.0.1
@fastify/schedule 5.0.0 5.0.2
@fastify/session 11.0.0 11.0.1
@fastify/static 8.0.0 8.0.1
@fastify/view 10.0.0 10.0.1
@prisma/client 5.19.1 5.20.0
@sentry/node 8.30.0 8.34.0
@sentry/profiling-node 8.31.0 8.34.0
liquidjs 10.16.7 10.17.0
megalodon 10.0.3 10.0.4
prisma 5.19.1 5.20.0
tailwindcss 3.4.12 3.4.13
typescript 5.6.2 5.6.3
daisyui 4.12.10 4.12.13

Updates @atproto/api from 0.13.7 to 0.13.12

Release notes

Sourced from @​atproto/api's releases.

@​atproto/api@​0.13.12

Patch Changes

@​atproto/api@​0.13.11

Patch Changes

@​atproto/api@​0.13.10

Patch Changes

@​atproto/api@​0.13.9

Patch Changes

@​atproto/api@​0.13.8

Patch Changes

Changelog

Sourced from @​atproto/api's changelog.

0.13.12

Patch Changes

0.13.11

Patch Changes

0.13.10

Patch Changes

0.13.9

Patch Changes

0.13.8

Patch Changes

Commits

Updates @fastify/cookie from 10.0.0 to 11.0.1

Release notes

Sourced from @​fastify/cookie's releases.

v11.0.1

What's Changed

Full Changelog: fastify/fastify-cookie@v11.0.0...v11.0.1

v11.0.0

What's Changed

New Contributors

Full Changelog: fastify/fastify-cookie@v10.0.1...v11.0.0

v10.0.1

What's Changed

Full Changelog: fastify/fastify-cookie@v10.0.0...v10.0.1

Commits

Updates @fastify/formbody from 8.0.0 to 8.0.1

Release notes

Sourced from @​fastify/formbody's releases.

v8.0.1

What's Changed

New Contributors

Full Changelog: fastify/fastify-formbody@v8.0.0...v8.0.1

Commits

Updates @fastify/jwt from 9.0.0 to 9.0.1

Release notes

Sourced from @​fastify/jwt's releases.

v9.0.1

What's Changed

Full Changelog: fastify/fastify-jwt@v9.0.0...v9.0.1

Commits

Updates @fastify/schedule from 5.0.0 to 5.0.2

Release notes

Sourced from @​fastify/schedule's releases.

5.0.2

  • Use correct version of fastify-plugin

v5.0.1

What's Changed

Full Changelog: fastify/fastify-schedule@v5.0.0...v5.0.1

Commits

Updates @fastify/session from 11.0.0 to 11.0.1

Release notes

Sourced from @​fastify/session's releases.

v11.0.1

What's Changed

New Contributors

Full Changelog: fastify/session@v11.0.0...v11.0.1

Commits

Updates @fastify/static from 8.0.0 to 8.0.1

Release notes

Sourced from @​fastify/static's releases.

v8.0.1

What's Changed

Full Changelog: fastify/fastify-static@v8.0.0...v8.0.1

Commits

Updates @fastify/view from 10.0.0 to 10.0.1

Release notes

Sourced from @​fastify/view's releases.

v10.0.1

What's Changed

Full Changelog: fastify/point-of-view@v10.0.0...v10.0.1

Commits

Updates @prisma/client from 5.19.1 to 5.20.0

Release notes

Sourced from @​prisma/client's releases.

5.20.0

🌟 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.

... (truncated)

Commits
  • bf237ff chore(deps): update engines to 5.20.0-12.06fc58a368dc7be9fbbbe894adf8d445d208...
  • b2c080e test(e2e): Update types in e2e tests (#25263)
  • 100c926 feat(typed-sql): Support enum names that are not valid JS identifiers (#25262)
  • ce11a90 feat(client): implement strictUndefinedChecks (#25224)
  • 9810341 chore(deps): update engines to 5.20.0-8.c9ff5773c72b821ff6daf2c55dbe3809eae7c...
  • def5747 chore(e2e): Update next.js to 14 in "schema-not-found" suite (#25197)
  • 47e8f13 feat(driver-adapters): add TransactionContext (#24878)
  • cfd2791 chore: add explicit ts-toolbelt dependency, only use "import type" to avoid b...
  • 08a1733 fix(client): .$extends prevents typescript documentation (#25070)
  • ff16728 chore(deps): update engines to 5.20.0-4.f2561ec470647d6a14db84d3c1dc6fc1c2414...
  • Additional commits viewable in compare view

Updates @sentry/node from 8.30.0 to 8.34.0

Release notes

Sourced from @​sentry/node's releases.

8.34.0

Important Changes

  • ref(nextjs): Remove dead code (#13828)

Relevant for users of the @sentry/nextjs package: If you have previously configured a SENTRY_IGNORE_API_RESOLUTION_ERROR environment variable, it is now safe to unset it.

Other Changes

  • feat(cdn): Export getReplay in replay CDN bundles (#13881)
  • feat(replay): Clear fallback buffer when switching buffers (#13914)
  • feat(replay): Upgrade rrweb packages to 2.28.0 (#13732)
  • fix(docs): Correct supported browsers due to globalThis (#13788)
  • fix(nextjs): Adjust path to requestAsyncStorageShim.js template file (#13928)
  • fix(nextjs): Detect new locations for request async storage to support Next.js v15.0.0-canary.180 and higher (#13920)
  • fix(nextjs): Drop _not-found spans for all HTTP methods (#13906)
  • fix(nextjs): Fix resolution of request storage shim fallback (#13929)
  • fix(node): Ensure graphql options are correct when preloading (#13769)
  • fix(node): Local variables handle error (#13827)
  • fix(node): Remove dataloader instrumentation from default integrations (#13873)
  • fix(nuxt): Create declaration files for Nuxt module (#13909)
  • fix(replay): Ensure replay_id is removed from frozen DSC when stopped (#13893)
  • fix(replay): Try/catch sendBufferedReplayOrFlush to prevent cycles (#13900)
  • fix(sveltekit): Ensure trace meta tags are always injected (#13231)
  • fix(sveltekit): Update wrapServerRouteWithSentry to respect ParamMatchers (#13390)
  • fix(wasm): Integration wasm uncaught WebAssembly.Exception (#13787) (#13854)
  • ref(nextjs): Ignore sentry spans based on query param attribute (#13905)
  • ref(utils): Move vercelWaitUntil to utils (#13891)

Work in this release was contributed by @​trzeciak, @​gurpreetatwal, @​ykzts and @​lizhiyao. Thank you for your contributions!

Bundle size 📦

... (truncated)

Changelog

Sourced from @​sentry/node's changelog.

8.34.0

Important Changes

  • ref(nextjs): Remove dead code (#13828)

Relevant for users of the @sentry/nextjs package: If you have previously configured a SENTRY_IGNORE_API_RESOLUTION_ERROR environment variable, it is now safe to unset it.

Other Changes

  • feat(cdn): Export getReplay in replay CDN bundles (#13881)
  • feat(replay): Clear fallback buffer when switching buffers (#13914)
  • feat(replay): Upgrade rrweb packages to 2.28.0 (#13732)
  • fix(docs): Correct supported browsers due to globalThis (#13788)
  • fix(nextjs): Adjust path to requestAsyncStorageShim.js template file (#13928)
  • fix(nextjs): Detect new locations for request async storage to support Next.js v15.0.0-canary.180 and higher (#13920)
  • fix(nextjs): Drop _not-found spans for all HTTP methods (#13906)
  • fix(nextjs): Fix resolution of request storage shim fallback (#13929)
  • fix(node): Ensure graphql options are correct when preloading (#13769)
  • fix(node): Local variables handle error (#13827)
  • fix(node): Remove dataloader instrumentation from default integrations (#13873)
  • fix(nuxt): Create declaration files for Nuxt module (#13909)
  • fix(replay): Ensure replay_id is removed from frozen DSC when stopped (#13893)
  • fix(replay): Try/catch sendBufferedReplayOrFlush to prevent cycles (#13900)
  • fix(sveltekit): Ensure trace meta tags are always injected (#13231)
  • fix(sveltekit): Update wrapServerRouteWithSentry to respect ParamMatchers (#13390)
  • fix(wasm): Integration wasm uncaught WebAssembly.Exception (#13787) (#13854)
  • ref(nextjs): Ignore sentry spans based on query param attribute (#13905)
  • ref(utils): Move vercelWaitUntil to utils (#13891)

Work in this release was contributed by @​trzeciak, @​gurpreetatwal, @​ykzts and @​lizhiyao. Thank you for your contributions!

... (truncated)

Commits
  • d7749ae release: 8.34.0
  • 2a1dd9a Merge pull request #13941 from getsentry/prepare-release/8.34.0
  • 20914b0 meta(changelog): Update changelog for 8.34.0
  • 86c626e fix(nextjs): Fix resolution of request storage shim fallback (#13929)
  • fcc3d2b meta(ci): Don't fail CI run when codecov fails to upload (#13930)
  • 0b00605 ci(deps): bump peter-evans/create-pull-request from 6.1.0 to 7.0.5 (#13844)
  • 6b4401f fix(nextjs): Detect new locations for request async storage to support Next.j...
  • 0be3137 fix(nextjs): Adjust path to requestAsynStorageShim.js template file (#13928)
  • d7c33a2 feat(replay): Upgrade rrweb packages to 2.28.0 (#13732)
  • 37b45c1 feat(replay): Clear fallback buffer when switching buffers (#13914)
  • Additional commits viewable in compare view

Updates @sentry/profiling-node from 8.31.0 to 8.34.0

Release notes

Sourced from @​sentry/profiling-node's releases.

8.34.0

Important Changes

  • ref(nextjs): Remove dead code (#13828)

Relevant for users of the @sentry/nextjs package: If you have previously configured a SENTRY_IGNORE_API_RESOLUTION_ERROR environment variable, it is now safe to unset it.

Other Changes

  • feat(cdn): Export getReplay in replay CDN bundles (#13881)
  • feat(replay): Clear fallback buffer when switching buffers (#13914)
  • feat(replay): Upgrade rrweb packages to 2.28.0 (#13732)
  • fix(docs): Correct supported browsers due to globalThis (#13788)
  • fix(nextjs): Adjust path to requestAsyncStorageShim.js template file (#13928)
  • fix(nextjs): Detect new locations for request async storage to support Next.js v15.0.0-canary.180 and higher (#13920)
  • fix(nextjs): Drop _not-found spans for all HTTP methods (#13906)
  • fix(nextjs): Fix resolution of request storage shim fallback (#13929)
  • fix(node): Ensure graphql options are correct when preloading (#13769)
  • fix(node): Local variables handle error (#13827)
  • fix(node): Remove dataloader instrumentation from default integrations (#13873)
  • fix(nuxt): Create declaration files for Nuxt module (#13909)
  • fix(replay): Ensure replay_id is removed from frozen DSC when stopped (#13893)
  • fix(replay): Try/catch sendBufferedReplayOrFlush to prevent cycles (#13900)
  • fix(sveltekit): Ensure trace meta tags are always injected (#13231)
  • fix(sveltekit): Update wrapServerRouteWithSentry to respect ParamMatchers (#13390)
  • fix(wasm): Integration wasm uncaught WebAssembly.Exception (#13787) (#13854)
  • ref(nextjs): Ignore sentry spans based on query param attribute (#13905)
  • ref(utils): Move vercelWaitUntil to utils (#13891)

Work in this release was contributed by @​trzeciak, @​gurpreetatwal, @​ykzts and @​lizhiyao. Thank you for your contributions!

Bundle size 📦

... (truncated)

Changelog

Sourced from @​sentry/profiling-node's changelog.

8.34.0

Important Changes

  • ref(nextjs): Remove dead code (#13828)

Relevant for users of the @sentry/nextjs package: If you have previously configured a SENTRY_IGNORE_API_RESOLUTION_ERROR environment variable, it is now safe to unset it.

Other Changes

  • feat(cdn): Export getReplay in replay CDN bundles (#13881)
  • feat(replay): Clear fallback buffer when switching buffers (#13914)
  • feat(replay): Upgrade rrweb packages to 2.28.0 (#13732)
  • fix(docs): Correct supported browsers due to globalThis (#13788)
  • fix(nextjs): Adjust path to requestAsyncStorageShim.js template file (#13928)
  • fix(nextjs): Detect new locations for request async storage to support Next.js v15.0.0-canary.180 and higher (#13920)
  • fix(nextjs): Drop _not-found spans for all HTTP methods (#13906)
  • fix(nextjs): Fix resolution of request storage shim fallback (#13929)
  • fix(node): Ensure graphql options are correct when preloading (#13769)
  • fix(node): Local variables handle error (#13827)
  • fix(node): Remove dataloader instrumentation from default integrations (#13873)
  • fix(nuxt): Create declaration files for Nuxt module (#13909)
  • fix(replay): Ensure replay_id is removed from frozen DSC when stopped (#13893)
  • fix(replay): Try/catch sendBufferedReplayOrFlush to prevent cycles (#13900)
  • fix(sveltekit): Ensure trace meta tags are always injected (#13231)
  • fix(sveltekit): Update wrapServerRouteWithSentry to respect ParamMatchers (#13390)
  • fix(wasm): Integration wasm uncaught WebAssembly.Exception (#13787) (#13854)
  • ref(nextjs): Ignore sentry spans based on query param attribute (#13905)
  • ref(utils): Move vercelWaitUntil to utils (#13891)

Work in this release was contributed by @​trzeciak, @​gurpreetatwal, @​ykzts and @​lizhiyao. Thank you for your contributions!

... (truncated)

Commits
  • d7749ae release: 8.34.0
  • 2a1dd9a Merge pull request #13941 from getsentry/prepare-release/8.34.0
  • 20914b0 meta(changelog): Update changelog for 8.34.0
  • 86c626e fix(nextjs): Fix resolution of request storage shim fallback (#13929)
  • fcc3d2b meta(ci): Don't fail CI run when codecov fails to upload (#13930)
  • 0b00605 ci(deps): bump peter-evans/create-pull-request from 6.1.0 to 7.0.5 (#13844)
  • 6b4401f fix(nextjs): Detect new locations for request async storage to support Next.j...
  • 0be3137 fix(nextjs): Adjust path to requestAsynStorageShim.js template file (#13928)
  • d7c33a2 feat(replay): Upgrade rrweb packages to 2.28.0 (#13732)
  • 37b45c1 feat(replay): Clear fallback buffer when switching buffers (#13914)
  • Additional commits viewable in compare view

Updates liquidjs from 10.16.7 to 10.17.0

Release notes

Sourced from liquidjs's releases.

v10.17.0

10.17.0 (2024-09-22)

Features

Changelog

Sourced from liquidjs's changelog.

10.17.0 (2024-09-22)

Features

Commits
  • 8392203 chore(release): 10.17.0 [skip ci]
  • 8e7284d docs: Add PakStyle.pk into financial contributors
  • 6aeed25 feat: support custom key-value separator, #752
  • 5ada07c docs: add Microsoft to sponsors for 6/15 donation
  • See full diff in compare view

Updates megalodon from 10.0.3 to 10.0.4

Release notes

Sourced from megalodon's releases.

10.0.4

What's Changed

New Contributors

Full Changelog: h3poteto/megalodon@v10.0.3...v10.0.4

Commits
  • af8af0b Bump to version 10.0.4
  • 108e2c7 Merge pull request #2212 from WakuwakuP/pleroma-notification-status
  • aea2459 Merge pull request #2211 from Ryuno-Ki/gotosocial_only_public
  • 05e0afc chore: add parameter to interface
  • f6cb5d5 Add Pleroma NotificationType
  • 07532e9 feat: add another option to GoToSocial API
  • See full diff in compare view

Updates prisma from 5.19.1 to 5.20.0

Release notes

Sourced from prisma's releases.

5.20.0

🌟 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.

... (truncated)

Commits

Updates tailwindcss from 3.4.12 to 3.4.13

Release notes

Sourced from tailwindcss's releases.

v3.4.13

Fixed

  • Improve source glob verification performance (#14481)
Changelog

Sourced from tailwindcss's changelog.

[3.4.13] - 2024-09-23

Fixed

  • Improve source glob verification performance (#14481)
Commits

Updates typescript from 5.6.2 to 5.6.3

Release notes

Sourced from typescript's releases.

TypeScript 5.6.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits

Bumps the all group with 17 updates:

| Package | From | To |
| --- | --- | --- |
| [@atproto/api](https://github.com/bluesky-social/atproto/tree/HEAD/packages/api) | `0.13.7` | `0.13.12` |
| [@fastify/cookie](https://github.com/fastify/fastify-cookie) | `10.0.0` | `11.0.1` |
| [@fastify/formbody](https://github.com/fastify/fastify-formbody) | `8.0.0` | `8.0.1` |
| [@fastify/jwt](https://github.com/fastify/fastify-jwt) | `9.0.0` | `9.0.1` |
| [@fastify/schedule](https://github.com/fastify/fastify-schedule) | `5.0.0` | `5.0.2` |
| [@fastify/session](https://github.com/fastify/session) | `11.0.0` | `11.0.1` |
| [@fastify/static](https://github.com/fastify/fastify-static) | `8.0.0` | `8.0.1` |
| [@fastify/view](https://github.com/fastify/point-of-view) | `10.0.0` | `10.0.1` |
| [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) | `5.19.1` | `5.20.0` |
| [@sentry/node](https://github.com/getsentry/sentry-javascript) | `8.30.0` | `8.34.0` |
| [@sentry/profiling-node](https://github.com/getsentry/sentry-javascript) | `8.31.0` | `8.34.0` |
| [liquidjs](https://github.com/harttle/liquidjs) | `10.16.7` | `10.17.0` |
| [megalodon](https://github.com/h3poteto/megalodon) | `10.0.3` | `10.0.4` |
| [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) | `5.19.1` | `5.20.0` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.4.12` | `3.4.13` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.6.2` | `5.6.3` |
| [daisyui](https://github.com/saadeghi/daisyui) | `4.12.10` | `4.12.13` |


Updates `@atproto/api` from 0.13.7 to 0.13.12
- [Release notes](https://github.com/bluesky-social/atproto/releases)
- [Changelog](https://github.com/bluesky-social/atproto/blob/main/packages/api/CHANGELOG.md)
- [Commits](https://github.com/bluesky-social/atproto/commits/@atproto/api@0.13.12/packages/api)

Updates `@fastify/cookie` from 10.0.0 to 11.0.1
- [Release notes](https://github.com/fastify/fastify-cookie/releases)
- [Commits](fastify/fastify-cookie@v10.0.0...v11.0.1)

Updates `@fastify/formbody` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/fastify/fastify-formbody/releases)
- [Commits](fastify/fastify-formbody@v8.0.0...v8.0.1)

Updates `@fastify/jwt` from 9.0.0 to 9.0.1
- [Release notes](https://github.com/fastify/fastify-jwt/releases)
- [Commits](fastify/fastify-jwt@v9.0.0...v9.0.1)

Updates `@fastify/schedule` from 5.0.0 to 5.0.2
- [Release notes](https://github.com/fastify/fastify-schedule/releases)
- [Commits](fastify/fastify-schedule@v5.0.0...5.0.2)

Updates `@fastify/session` from 11.0.0 to 11.0.1
- [Release notes](https://github.com/fastify/session/releases)
- [Commits](fastify/session@v11.0.0...v11.0.1)

Updates `@fastify/static` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/fastify/fastify-static/releases)
- [Commits](fastify/fastify-static@v8.0.0...v8.0.1)

Updates `@fastify/view` from 10.0.0 to 10.0.1
- [Release notes](https://github.com/fastify/point-of-view/releases)
- [Commits](fastify/point-of-view@v10.0.0...v10.0.1)

Updates `@prisma/client` from 5.19.1 to 5.20.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/5.20.0/packages/client)

Updates `@sentry/node` from 8.30.0 to 8.34.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@8.30.0...8.34.0)

Updates `@sentry/profiling-node` from 8.31.0 to 8.34.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@8.31.0...8.34.0)

Updates `liquidjs` from 10.16.7 to 10.17.0
- [Release notes](https://github.com/harttle/liquidjs/releases)
- [Changelog](https://github.com/harttle/liquidjs/blob/master/CHANGELOG.md)
- [Commits](harttle/liquidjs@v10.16.7...v10.17.0)

Updates `megalodon` from 10.0.3 to 10.0.4
- [Release notes](https://github.com/h3poteto/megalodon/releases)
- [Commits](h3poteto/megalodon@v10.0.3...v10.0.4)

Updates `prisma` from 5.19.1 to 5.20.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/5.20.0/packages/cli)

Updates `tailwindcss` from 3.4.12 to 3.4.13
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.13/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.4.12...v3.4.13)

Updates `typescript` from 5.6.2 to 5.6.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.6.2...v5.6.3)

Updates `daisyui` from 4.12.10 to 4.12.13
- [Release notes](https://github.com/saadeghi/daisyui/releases)
- [Changelog](https://github.com/saadeghi/daisyui/blob/master/CHANGELOG.md)
- [Commits](saadeghi/daisyui@v4.12.10...v4.12.13)

---
updated-dependencies:
- dependency-name: "@atproto/api"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@fastify/cookie"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: "@fastify/formbody"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@fastify/jwt"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@fastify/schedule"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@fastify/session"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@fastify/static"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@fastify/view"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@prisma/client"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@sentry/node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@sentry/profiling-node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: liquidjs
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: megalodon
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: prisma
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: daisyui
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 12, 2024
@thilobillerbeck thilobillerbeck merged commit e42adce into main Oct 13, 2024
1 check passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/all-4a0617446a branch October 13, 2024 16:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant