Skip to content

Bump the minors group across 1 directory with 11 updates #287

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

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 8, 2025

Bumps the minors group with 2 updates in the /webserver directory: @prisma/client and @playwright/test.

Updates @prisma/client from 6.10.1 to 6.13.0

Release notes

Sourced from @​prisma/client's releases.

6.13.0

Today, we are excited to share the 6.13.0 stable release 🎉

🌟 Star this repo for notifications about new releases, bug fixes & features — or follow us on X!

Highlights

In this ORM release, we’re moving the Prisma Config file and the multi-schema feature into General Availability. This means these features now are fully production-ready and we’re looking forward to seeing what you are going to build with them!

Additionally, support for SQL views is getting an important update to further stabilize its API.

Configuring Prisma via Prisma Config is now Generally Available

The prisma.config.ts file is Prisma ORM’s native way to provide configuration options for your project. It currently lets you specify:

  • the locations for various Prisma-related assets, such as your:
    • Prisma schema file
    • migrations
    • SQL view definitions
    • TypedSQL queries
  • a seed command to populate your database based on some executable script
  • externally managed tables (see below)
  • the driver adapters to be used by the Prisma CLI when interacting with your database

Here’s an example Prisma Config file that specified custom locations for various project assets in and a seed script inside a db directory:

import path from "node:path";
import { defineConfig } from "prisma/config";
export default defineConfig({
schema: path.join("db", "schema.prisma"),
migrations: {
path: path.join("db", "migrations"),
seed: "tsx db/seed.ts"
}
});

Note that you’ll also see warning now if you defined a prisma.seed command in package.json.

We’re excited to move the prisma.config.ts file into General Availability. If you used it before in your projects, you can now drop earlyAccess from its options:

import { defineConfig } from "prisma/config";
export default defineConfig({

earlyAccess: true,
});

... (truncated)

Commits
  • 746514c fix(client): type inference for prismaClient.$on(...) (#24133)
  • 057e587 chore(deps): update engines to 6.13.0-35.361e86d0ea4987e9f53a565309b3eed797a6...
  • c7f5a71 chore(deps): update engines to 6.13.0-33.4c9c25c84cf1a4c0744a0b15acab20e1c91c...
  • a0bd8e5 feat: rename migrations.setupExternalTables to migrations.initShadowDb (#27750)
  • b9c7732 chore(deps): update engines to 6.13.0-32.254b76b9b6dd525d73e35cfa593723b51354...
  • a022876 chore(deps): update engines to 6.13.0-31.87ec7c858582c3e9225187f9982747fdee8a...
  • d1f86ac test: add an e2e test for multi-schema (#27741)
  • 0e91982 chore(deps): update engines to 6.13.0-29.6fa05d5450d42acad5f90a1d02c7d1f4fc88...
  • 9f67297 test(client): add tests for conditional orderBy in views (#27736)
  • 95c329e chore(deps-dev): bump expect-type from 1.2.0 to 1.2.2 (#27722)
  • Additional commits viewable in compare view

Updates @sentry/astro from 9.30.0 to 9.45.0

Release notes

Sourced from @​sentry/astro's releases.

9.45.0

  • feat(v9/nuxt): Do not inject trace meta-tags on cached HTML pages (#17305) (#17319)
  • fix(v9/node): Assign default export of openai to the instrumented fn (#17353)

Bundle size 📦

Path Size
@​sentry/browser 23.24 KB
@​sentry/browser - with treeshaking flags 21.83 KB
@​sentry/browser (incl. Tracing) 38.73 KB
@​sentry/browser (incl. Tracing, Replay) 75.94 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 65.98 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 80.53 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 92.34 KB
@​sentry/browser (incl. Feedback) 39.53 KB
@​sentry/browser (incl. sendFeedback) 27.81 KB
@​sentry/browser (incl. FeedbackAsync) 32.59 KB
@​sentry/react 24.95 KB
@​sentry/react (incl. Tracing) 40.64 KB
@​sentry/vue 27.58 KB
@​sentry/vue (incl. Tracing) 40.48 KB
@​sentry/svelte 23.25 KB
CDN Bundle 24.59 KB
CDN Bundle (incl. Tracing) 38.49 KB
CDN Bundle (incl. Tracing, Replay) 73.63 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.97 KB
CDN Bundle - uncompressed 71.73 KB
CDN Bundle (incl. Tracing) - uncompressed 114.12 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.6 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 238.11 KB
@​sentry/nextjs (client) 42.64 KB
@​sentry/sveltekit (client) 39.14 KB
@​sentry/node 165.23 KB
@​sentry/node - without tracing 97.96 KB
@​sentry/aws-serverless 125.47 KB

9.44.2

This release is publishing the AWS Lambda Layer under SentryNodeServerlessSDKv9. The previous release 9.44.1 accidentally published the layer under SentryNodeServerlessSDKv10.

Bundle size 📦

Path Size
@​sentry/browser 23.24 KB
@​sentry/browser - with treeshaking flags 21.83 KB
@​sentry/browser (incl. Tracing) 38.73 KB
@​sentry/browser (incl. Tracing, Replay) 75.95 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 65.98 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 80.53 KB

... (truncated)

Changelog

Sourced from @​sentry/astro's changelog.

9.45.0

  • feat(v9/nuxt): Do not inject trace meta-tags on cached HTML pages (#17305) (#17319)
  • fix(v9/node): Assign default export of openai to the instrumented fn (#17353)

9.44.2

This release is publishing the AWS Lambda Layer under SentryNodeServerlessSDKv9. The previous release 9.44.1 accidentally published the layer under SentryNodeServerlessSDKv10.

9.44.1

  • fix(replay/v9): Call sendBufferedReplayOrFlush when opening/sending feedback (#17270)

9.44.0

  • feat(replay/v9): Deprecate _experiments.autoFlushOnFeedback (#17219)
  • feat(v9/core): Add shared flushIfServerless function (#17239)
  • feat(v9/node-native): Upgrade @sentry-internal/node-native-stacktrace to 0.2.2 (#17256)
  • feat(v9/react-router): Add createSentryHandleError (#17244)
  • feat(v9/react-router): Automatically flush on serverless for loaders/actions (#17243)
  • feat(v9/react-router): Automatically flush on serverless for request handler (#17242)
  • fix(v9/astro): Construct parametrized route during runtime (#17227)
  • fix(v9/nextjs): Flush in route handlers (#17245)
  • fix(v9/node): Fix exports for openai instrumentation (#17238) (#17241)

9.43.0

  • feat(v9/core): add MCP server instrumentation (#17196)
  • feat(v9/meta): Unify detection of serverless environments and add Cloud Run (#17204)
  • fix(v9/node): Add mechanism to fastifyIntegration error handler (#17211)
  • fix(v9/replay): Fix re-sampled sessions after a click (#17195)

9.42.1

  • fix(v9/astro): Revert Astro v5 storing route data to globalThis (#17185)
  • fix(v9/cloudflare): Avoid turning DurableObject sync methods into async (#17187)
  • fix(v9/nextjs): Handle async params in url extraction (#17176)
  • fix(v9/sveltekit): Align error status filtering and mechanism in handleErrorWithSentry (#17174)

9.42.0

  • feat(v9/aws): Detect SDK source for AWS Lambda layer (#17150)
  • fix(v9/core): Fix OpenAI SDK private field access by binding non-instrumented fns (#17167)
  • fix(v9/core): Update ai.response.object to gen_ai.response.object (#17155)
  • fix(v9/nextjs): Update stackframe calls for next v15.5 (#17161)

9.41.0

Important Changes

... (truncated)

Commits
  • 9fc7017 release: 9.45.0
  • 861512b meta(changelog): Update changelog for 9.45.0 (#17354)
  • e9f1da4 fix(v9/node): Assign default export of openai to the instrumented fn (#17353)
  • 9f29e0a feat(v9/nuxt): Do not inject trace meta-tags on cached HTML pages (#17305) (#...
  • b9c468c Merge branch 'release/9.44.2' into v9
  • 822157f release: 9.44.2
  • be4300b meta(changelog): Update changelog for 9.44.2 (#17307)
  • 6f631d5 Merge branch 'release/9.44.1' into v9
  • 1d78541 release: 9.44.1
  • fb1a726 meta(changelog): Update changelog for 9.44.1 (#17296)
  • Additional commits viewable in compare view

Updates age-encryption from 0.2.3 to 0.2.4

Release notes

Sourced from age-encryption's releases.

v0.2.4 with streaming APIs

Typage can now encrypt and decrypt ReadableStreams. This can be useful for encrypting or decrypting large files, requests, or responses on the fly.

Decrypter.decryptHeader allows decrypting a file key from a detached header. This can be used to decrypt a header client-side without sharing the payload with the client.

Worked around oven-sh/bun#20148, unbreaking recent Bun versions.

Made header and CBOR parsing slightly stricter.

Commits
  • 31e8d9a Fix broken link in README
  • 005175c v0.2.4
  • 4945303 Add size method to ReadableStream returned by encrypt and decrypt
  • 4e6d0d7 Expose streaming APIs
  • 6075a35 Make STREAM processing streaming
  • 0db64f4 Make header parsing streaming
  • c566120 Fix header ASCII range check
  • ff6aa9d Enforce valid UTF-8 in CBOR decoding
  • 9e216bc Add Decrypter.decryptHeader for detached header decryption
  • 702e51b Catch NotSupportedError any time during WebCrypto operations
  • Additional commits viewable in compare view

Updates google-auth-library from 10.1.0 to 10.2.1

Release notes

Sourced from google-auth-library's releases.

v10.2.1

10.2.1 (2025-08-01)

Bug Fixes

  • Pin nock and typescript dependencies to fix window.crypto.subtle.verify signature argument type (#2106) (afc3bc8)

v10.2.0

10.2.0 (2025-07-18)

Features

Bug Fixes

  • deps: Update dependency @​googleapis/iam to v30 (#2052) (b8adc26)
Changelog

Sourced from google-auth-library's changelog.

10.2.1 (2025-08-01)

Bug Fixes

  • Pin nock and typescript dependencies to fix window.crypto.subtle.verify signature argument type (#2106) (afc3bc8)

10.2.0 (2025-07-18)

Features

Bug Fixes

  • deps: Update dependency @​googleapis/iam to v30 (#2052) (b8adc26)
Commits

Updates lit from 3.3.0 to 3.3.1

Release notes

Sourced from lit's releases.

[email protected]

Patch Changes

  • #4997 aea85e24 - Update README

  • #4988 6792b7ef Thanks @​ADNolan! - Adjusted the comparison to use the name property of the _$resolve function and the resolveOverrideFn in private ssr support to prevent duplicated patching of the directive class.

  • #4975 43a3f4dc - Remove some redundant code from removePart()

[email protected]

Patch Changes

  • #4997 aea85e24 - Update README

  • #4988 6792b7ef Thanks @​ADNolan! - Adjusted the comparison to use the name property of the _$resolve function and the resolveOverrideFn in private ssr support to prevent duplicated patching of the directive class.

  • #4976 a126d8df - Fix minor regression in property converters. fromAttribute may return either null or undefined.

Changelog

Sourced from lit's changelog.

3.3.1

Patch Changes

  • #4997 aea85e24 - Update README

  • #4988 6792b7ef Thanks @​ADNolan! - Adjusted the comparison to use the name property of the _$resolve function and the resolveOverrideFn in private ssr support to prevent duplicated patching of the directive class.

  • #4976 a126d8df - Fix minor regression in property converters. fromAttribute may return either null or undefined.

Commits

Updates prisma from 6.10.1 to 6.13.0

Release notes

Sourced from prisma's releases.

6.13.0

Today, we are excited to share the 6.13.0 stable release 🎉

🌟 Star this repo for notifications about new releases, bug fixes & features — or follow us on X!

Highlights

In this ORM release, we’re moving the Prisma Config file and the multi-schema feature into General Availability. This means these features now are fully production-ready and we’re looking forward to seeing what you are going to build with them!

Additionally, support for SQL views is getting an important update to further stabilize its API.

Configuring Prisma via Prisma Config is now Generally Available

The prisma.config.ts file is Prisma ORM’s native way to provide configuration options for your project. It currently lets you specify:

  • the locations for various Prisma-related assets, such as your:
    • Prisma schema file
    • migrations
    • SQL view definitions
    • TypedSQL queries
  • a seed command to populate your database based on some executable script
  • externally managed tables (see below)
  • the driver adapters to be used by the Prisma CLI when interacting with your database

Here’s an example Prisma Config file that specified custom locations for various project assets in and a seed script inside a db directory:

import path from "node:path";
import { defineConfig } from "prisma/config";
export default defineConfig({
schema: path.join("db", "schema.prisma"),
migrations: {
path: path.join("db", "migrations"),
seed: "tsx db/seed.ts"
}
});

Note that you’ll also see warning now if you defined a prisma.seed command in package.json.

We’re excited to move the prisma.config.ts file into General Availability. If you used it before in your projects, you can now drop earlyAccess from its options:

import { defineConfig } from "prisma/config";
export default defineConfig({

earlyAccess: true,
});

... (truncated)

Commits
  • ddc1046 chore(cli): Moved MCP.ts to mcp directory, added mcp/README.md, and r… (#27631)
  • cb67f68 fix: fix flacky cli test due to time formatting (#27762)
  • c7f5a71 chore(deps): update engines to 6.13.0-33.4c9c25c84cf1a4c0744a0b15acab20e1c91c...
  • 2dcebb3 feat(config): add migrations.seed support (#27724)
  • 86b31c2 fix(config): e2e tests (#27725)
  • 4ba02d2 feat(config): display warning when package.json#prisma is detected when loa...
  • ecd6c1a feat(config): remove earlyAccess: true in favor of scoped experimental flags ...
  • c23cfd5 chore(config): update log/warn/error messages to reflect recent prisma.config...
  • c737091 feat(config): support c12 (#27672)
  • 9e35c80 fix(cli): always return valid JSON from MCP server (#27576)
  • Additional commits viewable in compare view

Updates solid-js from 1.9.7 to 1.9.8

Commits

Updates typescript from 5.8.3 to 5.9.2

Release notes

Sourced from typescript's releases.

TypeScript 5.9

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9 RC

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits
  • be86783 Give more specific errors for verbatimModuleSyntax (#62113)
  • 22ef577 LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250714...
  • d5a414c Don't use noErrorTruncation when printing types with maximumLength set (#...
  • f14b5c8 Remove unused and confusing dom.iterable.d.ts file (#62037)
  • 2778e84 Restore AbortSignal.abort (#62086)
  • 65cb4bd LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250710...
  • 9e20e03 Clear out checker-level stacks on pop (#62016)
  • 87740bc Fix for Issue 61081 (#61221)
  • 833a8d4 Fix Symbol completion priority and cursor positioning (#61945)
  • 0018c9f LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250702...
  • Additional commits viewable in compare view

Updates zod from 3.25.67 to 3.25.76

Release notes

Sourced from zod's releases.

v3.25.76

Commits:

  • 91c9ca6385bef38278605294498af06c89b9aa68 fix: cleanup _idmap of $ZodRegistry (#4837)
  • 9cce1c5779aea32d00226a931a7f67d3e2529d58 docs: fix typo in flattenError example on error-formatting page (#4819) (#4833)
  • a3560aeb6c3a8675a932601be79cfae897eec9d9 v3.25.76 (#4838)
  • 50606616c0d291caf3210a7521da51271b918333 Release 3.25.76
  • 7baee4e17f86f4017e09e12b0acdee36a5b1c087 Update index.mdx (#4831)

v3.25.75

Commits:

  • c5f349b6c4e76f879eba9fd350dd79950fcb02f9 Fix z.undefined() behavior in toJSONSchema

v3.25.74

Commits:

  • ae0dbe1f79b2421f6d91ec0796295763436b26e2 Partial record
  • 39c5f71c92b9c4c39fc0a59b9375204fa140eaf0 3.25.74

v3.25.73

Commits:

  • 1021d3c230d41d600698a6d98b9db86c19f56904 v3.25.73 (#4822)

v3.25.72

Commits:

  • 4a4dac7cfb787162eeb79165d39bbb4830d4a6de Warn about id uniqueness check on Metadata page (#4782)
  • 7a5838dc0da967e15a217bf5abdd81f725da46c4 feat(locale): Add Esperanto (eo) locale (#4743)
  • 36fe14e1472f2a7cd71415841be8832fc4e9acc5 Fix optionality of schemas (#4769)
  • 20c8c4b67b508d653012808f69c43c7cfe5b39e3 Fix re-export bug
  • 8b0df10c8757a5fbd75bd65128ae183d764b3304 3.25.72

v3.25.71

Commits:

  • 66a0f34bfc746acddbfb68426b8b1b3f1d3d1727 Move source to /src (#4808)
  • 2a15f44606fd66335c6ebc1f91d702bb6bc95693 3.25.71

v3.25.70

Commits:

  • bd81c7cfaa03f61365d1c708c7e0f1cac54ea9ca Add ecosystem listing to homepage
  • 1ddb9719564e644722852193930a09d54f720443 Add Mobb to sponsors
  • 30ba440859f5b9184817f578626ff85d484aec27 Clean up ecosystem.mdx
  • 0ef1b85b5923a1a06a2afab47dbad249d105a997 Add svelte-jsonschema-form to form integrations (#4784)
  • 14715f147363e88e73190bb6ddbdf008914f0b19 docs: fix Lambda spelling (#4804)
  • f6da030188ea30defc025bbc672e5a81fbe93078 Add back src (#4806)
  • 364200a67c9f74ef252dbfa65ea93aab8fb15c06 Revert "Add back src (#4806)"

... (truncated)

Commits

Updates @playwright/test from 1.53.0 to 1.54.2

Release notes

Sourced from @​playwright/test's releases.

v1.54.2

Highlights

microsoft/playwright#36714 - [Regression]: Codegen is not able to launch in Administrator Terminal on Windows (ProtocolError: Protocol error) microsoft/playwright#36828 - [Regression]: Playwright Codegen keeps spamming with selected option microsoft/playwright#36810 - [Regression]: Starting Codegen with target language doesn't work anymore

Browser Versions

  • Chromium 139.0.7258.5
  • Mozilla Firefox 140.0.2
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 140
  • Microsoft Edge 140

v1.54.1

Highlights

microsoft/playwright#36650 - [Regression]: 1.54.0 breaks downloading browsers when an HTTP(S) proxy is used

Browser Versions

  • Chromium 139.0.7258.5
  • Mozilla Firefox 140.0.2
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 140
  • Microsoft Edge 140

v1.54.0

Highlights

  • New cookie property partitionKey in browserContext.cookies() and browserContext.addCookies(). This property allows to save and restore partitioned cookies. See CHIPS MDN article for more information. Note that browsers have different support and defaults for cookie partitioning.

  • New option noSnippets to disable code snippets in the html report.

    import { defineConfig } from '@playwright/test';
    export default defineConfig({
    reporter: [['html', { noSnippets: true }]]
    });

  • New property location in test annotations, for example in testResult.annotations and testInfo.annotations. It shows where the annotation like test.skip or test.fixme was added.

Command Line

  • New option --user-data-dir in multiple commands. You can specify the same user data dir to reuse browsing state, like authentication, between sessions.

... (truncated)

Commits

Updates @types/node from 22.15.32 to 22.17.1

Commits

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
@sentry/astro [>= 8.4.a, < 8.5]
@sentry/astro [>= 8.9.a, < 8.10]
@sentry/astro [>= 8.11.a, < 8.12]
@types/node [>= 24.0.a, < 24.1]

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the minors group with 2 updates in the /webserver directory: [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) and [@playwright/test](https://github.com/microsoft/playwright).


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

Updates `@sentry/astro` from 9.30.0 to 9.45.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/9.45.0/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@9.30.0...9.45.0)

Updates `age-encryption` from 0.2.3 to 0.2.4
- [Release notes](https://github.com/FiloSottile/typage/releases)
- [Commits](FiloSottile/typage@v0.2.3...v0.2.4)

Updates `google-auth-library` from 10.1.0 to 10.2.1
- [Release notes](https://github.com/googleapis/google-auth-library-nodejs/releases)
- [Changelog](https://github.com/googleapis/google-auth-library-nodejs/blob/main/CHANGELOG.md)
- [Commits](googleapis/google-auth-library-nodejs@v10.1.0...v10.2.1)

Updates `lit` from 3.3.0 to 3.3.1
- [Release notes](https://github.com/lit/lit/releases)
- [Changelog](https://github.com/lit/lit/blob/main/packages/lit/CHANGELOG.md)
- [Commits](https://github.com/lit/lit/commits/[email protected]/packages/lit)

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

Updates `solid-js` from 1.9.7 to 1.9.8
- [Release notes](https://github.com/solidjs/solid/releases)
- [Changelog](https://github.com/solidjs/solid/blob/main/CHANGELOG.md)
- [Commits](solidjs/solid@v1.9.7...v1.9.8)

Updates `typescript` from 5.8.3 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.8.3...v5.9.2)

Updates `zod` from 3.25.67 to 3.25.76
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v3.25.67...v3.25.76)

Updates `@playwright/test` from 1.53.0 to 1.54.2
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.53.0...v1.54.2)

Updates `@types/node` from 22.15.32 to 22.17.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@prisma/client"
  dependency-version: 6.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: "@sentry/astro"
  dependency-version: 9.45.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: age-encryption
  dependency-version: 0.2.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minors
- dependency-name: google-auth-library
  dependency-version: 10.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: lit
  dependency-version: 3.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minors
- dependency-name: prisma
  dependency-version: 6.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: solid-js
  dependency-version: 1.9.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minors
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: zod
  dependency-version: 3.25.76
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minors
- dependency-name: "@playwright/test"
  dependency-version: 1.54.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minors
- dependency-name: "@types/node"
  dependency-version: 22.17.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minors
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 8, 2025
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 javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants