Skip to content

chore(deps): Bump the minor-and-patch group across 1 directory with 46 updates - #110

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-and-patch-56815fb514
Closed

chore(deps): Bump the minor-and-patch group across 1 directory with 46 updates#110
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-and-patch-56815fb514

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 21, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor-and-patch group with 46 updates in the / directory:

Package From To
@eslint/js 9.39.4 9.39.5
eslint 9.39.4 9.39.5
prettier 3.9.4 3.9.6
typescript-eslint 8.63.0 8.65.0
@ai-sdk/google 3.0.90 3.0.98
@anthropic-ai/sdk 0.110.0 0.112.5
@aws-sdk/client-s3 3.1081.0 3.1092.0
@aws-sdk/s3-request-presigner 3.1081.0 3.1092.0
@fastify/cookie 11.0.2 11.1.2
@fastify/cors 11.2.0 11.3.0
@fastify/multipart 10.0.0 10.1.0
@hocuspocus/extension-logger 4.3.0 4.4.0
@hocuspocus/provider 4.3.0 4.4.0
@hocuspocus/server 4.3.0 4.4.0
@mistralai/mistralai 2.4.1 2.5.0
@sentry/node 10.64.0 10.67.0
@workos-inc/node 10.7.0 10.8.0
ai 6.0.221 6.0.233
bullmq 5.76.8 5.80.10
dompurify 3.4.11 3.4.12
marked 18.0.5 18.0.7
openai 6.45.0 6.48.0
resend 6.17.1 6.18.0
ws 8.21.0 8.21.1
tsx 4.23.0 4.23.1
@milkdown/core 7.21.2 7.21.3
@milkdown/crepe 7.21.2 7.21.3
@milkdown/kit 7.21.2 7.21.3
@milkdown/plugin-collab 7.21.2 7.21.3
@milkdown/transformer 7.21.2 7.21.3
@sentry/astro 10.64.0 10.67.0
@tailwindcss/vite 4.3.2 4.3.3
katex 0.17.0 0.18.1
lucide-react 1.23.0 1.25.0
prosemirror-view 1.42.0 1.42.1
react 19.2.7 19.2.8
react-dom 19.2.7 19.2.8
recharts 3.9.2 3.10.0
simple-icons 16.25.0 16.27.0
tailwindcss 4.3.2 4.3.3
@types/three 0.185.0 0.185.1
prosemirror-model 1.25.10 1.25.11
@milkdown/preset-commonmark 7.21.2 7.21.3
@milkdown/preset-gfm 7.21.2 7.21.3
@milkdown/utils 7.21.2 7.21.3
@milkdown/ctx 7.21.2 7.21.3

Updates @eslint/js from 9.39.4 to 9.39.5

Release notes

Sourced from @​eslint/js's releases.

v9.39.5

Bug Fixes

Documentation

  • 74930ed docs: switch build to Node.js 24 (#20894) (Milos Djermanovic)
  • eaec8bb docs: Add ESLint v9.x EOL notice (#20828) (Milos Djermanovic)

Chores

  • 458205f chore: update @eslint/eslintrc and @eslint/js for v9.39.5 (#21077) (Francesco Trotta)
  • 202117b chore: package.json update for @​eslint/js release (Jenkins)
  • d9eb6ed test: disable warning for vm.constants.USE_MAIN_CONTEXT_DEFAULT_LOADER (#21074) (Francesco Trotta)
  • 7b431a7 chore: override re2 dependency for @metascraper/helpers (#21068) (Milos Djermanovic)
  • daf7791 chore: pin fflate@0.8.2 (#20895) (Milos Djermanovic)
  • daee8ba ci: use pnpm in eslint-flat-config-utils type integration test (#20829) (Milos Djermanovic)
  • 116d4be ci: unpin Node.js 25.x in CI (#20619) (Copilot)
Commits

Updates eslint from 9.39.4 to 9.39.5

Release notes

Sourced from eslint's releases.

v9.39.5

Bug Fixes

Documentation

  • 74930ed docs: switch build to Node.js 24 (#20894) (Milos Djermanovic)
  • eaec8bb docs: Add ESLint v9.x EOL notice (#20828) (Milos Djermanovic)

Chores

  • 458205f chore: update @eslint/eslintrc and @eslint/js for v9.39.5 (#21077) (Francesco Trotta)
  • 202117b chore: package.json update for @​eslint/js release (Jenkins)
  • d9eb6ed test: disable warning for vm.constants.USE_MAIN_CONTEXT_DEFAULT_LOADER (#21074) (Francesco Trotta)
  • 7b431a7 chore: override re2 dependency for @metascraper/helpers (#21068) (Milos Djermanovic)
  • daf7791 chore: pin fflate@0.8.2 (#20895) (Milos Djermanovic)
  • daee8ba ci: use pnpm in eslint-flat-config-utils type integration test (#20829) (Milos Djermanovic)
  • 116d4be ci: unpin Node.js 25.x in CI (#20619) (Copilot)
Commits

Updates prettier from 3.9.4 to 3.9.6

Release notes

Sourced from prettier's releases.

3.9.6

What's Changed

🔗 Changelog

3.9.5

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.9.6

diff

TypeScript: Preserve quotes for methods named new (#19621 by @​kovsu)

// Input
interface Container {
  "new"(id: string): number;
}
// Prettier 3.9.5
interface Container {
new(id: string): number;
}
// Prettier 3.9.6
interface Container {
"new"(id: string): number;
}

TypeScript: Support import defer (#19624, #19675 by @​fisker)

// Input
import defer * as foo from "foo";
// Prettier 3.9.5
import * as foo from "foo";
// Prettier 3.9.6
import defer * as foo from "foo";

JavaScript: Added a new official plugin @prettier/plugin-yuku (#19628, #19629 by @​fisker)

@prettier/plugin-yuku is powered by Yuku (A high-performance JavaScript/TypeScript compiler toolchain written in Zig).

This plugin includes two new parsers: yuku (JavaScript syntax) and yuku-ts (TypeScript syntax).

To use this plugin:

  1. Install the plugin:

    yarn add --dev prettier @prettier/plugin-yuku

... (truncated)

Commits

Updates typescript-eslint from 8.63.0 to 8.65.0

Release notes

Sourced from typescript-eslint's releases.

v8.65.0

8.65.0 (2026-07-20)

🚀 Features

  • add warning when TS 7 is detected (#12529)
  • eslint-plugin: [no-restricted-imports] deprecate extension rule (#12527, #19562, #11889)
  • eslint-plugin: [no-shadow] specialized error on enum declaration and member shadowing (#12578)
  • parser: add onUnsupportedTypeScriptVersion option to error on unsupported TypeScript versions (#12465)
  • typescript-estree: throw for invalid import defer syntax (#12552)

🩹 Fixes

  • eslint-plugin: [prefer-string-starts-ends-with] handle escaped $ ending regex literals (#12515)
  • eslint-plugin: [unbound-method] report unbound methods accessed via member expression on union types (#12448)
  • eslint-plugin: [no-unnecessary-parameter-property-assignment] don't flag computed assignments with a variable key (#12568)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.64.0

8.64.0 (2026-07-13)

🚀 Features

  • support parsing import defer (#12513)
  • eslint-plugin: [no-loop-func] support using / await using declarations and deprecate the rule (#12500)
  • typescript-estree: throw for invalid definite assignment in class properties (#12543)

🩹 Fixes

  • eslint-plugin: [require-array-sort-compare] handle constrained arrays (#12512)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from typescript-eslint's changelog.

8.65.0 (2026-07-20)

🚀 Features

  • add warning when TS 7 is detected (#12529)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

8.64.0 (2026-07-13)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

Commits

Updates @ai-sdk/google from 3.0.90 to 3.0.98

Release notes

Sourced from @​ai-sdk/google's releases.

@​ai-sdk/google@​3.0.98

Patch Changes

  • a09f944: feat(google): add gemini-3.6-flash and gemini-3.5-flash-lite models

@​ai-sdk/google@​3.0.97

Patch Changes

  • a6cb3c1: fix(provider/google): surface Gemini responseId as response-metadata (stream) and response.id (generate)
Changelog

Sourced from @​ai-sdk/google's changelog.

3.0.98

Patch Changes

  • a09f944: feat(google): add gemini-3.6-flash and gemini-3.5-flash-lite models

3.0.97

Patch Changes

  • a6cb3c1: fix(provider/google): surface Gemini responseId as response-metadata (stream) and response.id (generate)

3.0.96

Patch Changes

  • 0d51472: fix(provider/google): associate multiple code execution results with their tool call

3.0.95

Patch Changes

  • Updated dependencies [19093fd]
    • @​ai-sdk/provider-utils@​4.0.40

3.0.94

Patch Changes

  • 020836c: fix(provider/google): forward Vertex-only imageConfig options (personGeneration, prominentPeople, imageOutputOptions)

3.0.93

Patch Changes

  • cfba690: Allow google.interactions agent requests to include supported tools, including file_search.

3.0.92

Patch Changes

  • Updated dependencies [06fb54c]
    • @​ai-sdk/provider-utils@​4.0.39

3.0.91

Patch Changes

  • bbac4da: Fix Google tool result conversion to send file data as inline data instead of JSON text on the legacy tool-result path.
  • 3fda3bc: Expand standalone Google threshold provider options into safety settings.

... (truncated)

Commits
  • 95c9e8d Version Packages (#17604)
  • a09f944 backport (v6): feat(google): add gemini-3.6-flash and `gemini-3.5-flash-lit...
  • 20e2395 Version Packages (#17552)
  • a6cb3c1 Backport: fix(provider/google): surface Gemini responseId on stream and gener...
  • c468578 Version Packages (#17466)
  • 0d51472 [v6.0] fix: handle multiple Gemini code execution results for one executable ...
  • da5fbd2 Version Packages (#17425)
  • 5be6f78 Version Packages (#17323)
  • 020836c Backport: fix(provider/google): forward Vertex-only imageConfig options (pers...
  • c827936 Version Packages (#17253)
  • Additional commits viewable in compare view

Updates @anthropic-ai/sdk from 0.110.0 to 0.112.5

Release notes

Sourced from @​anthropic-ai/sdk's releases.

sdk: v0.112.5

0.112.5 (2026-07-21)

Full Changelog: sdk-v0.112.4...sdk-v0.112.5

Chores

  • api: add support for new refusal category (479efe8)
  • internal: codegen related update (830fb74)

sdk: v0.112.4

0.112.4 (2026-07-20)

Full Changelog: sdk-v0.112.3...sdk-v0.112.4

Bug Fixes

  • aws: preserve AWS options and auth mode across withOptions() (#214) (3f7665c)

Chores

sdk: v0.112.3

0.112.3 (2026-07-17)

Full Changelog: sdk-v0.112.2...sdk-v0.112.3

Chores

sdk: v0.112.2

0.112.2 (2026-07-17)

Full Changelog: sdk-v0.112.1...sdk-v0.112.2

Chores

sdk: v0.112.1

0.112.1 (2026-07-16)

Full Changelog: sdk-v0.112.0...sdk-v0.112.1

sdk: v0.112.0

0.112.0 (2026-07-16)

... (truncated)

Changelog

Sourced from @​anthropic-ai/sdk's changelog.

0.112.5 (2026-07-21)

Full Changelog: sdk-v0.112.4...sdk-v0.112.5

Chores

  • api: add support for new refusal category (479efe8)
  • internal: codegen related update (830fb74)

0.112.4 (2026-07-20)

Full Changelog: sdk-v0.112.3...sdk-v0.112.4

Bug Fixes

  • aws: preserve AWS options and auth mode across withOptions() (#214) (3f7665c)

Chores

0.112.3 (2026-07-17)

Full Changelog: sdk-v0.112.2...sdk-v0.112.3

Chores

0.112.2 (2026-07-17)

Full Changelog: sdk-v0.112.1...sdk-v0.112.2

Chores

0.112.1 (2026-07-16)

Full Changelog: sdk-v0.112.0...sdk-v0.112.1

0.112.0 (2026-07-16)

Full Changelog: sdk-v0.111.0...sdk-v0.112.0

Features

  • api: add support for MCP Tunnels (597ac41)

... (truncated)

Commits
  • c58a55b chore: release main
  • 2fb7da5 chore(api): add support for new refusal category
  • d6ffc3c chore(internal): codegen related update
  • 3e9a2e1 chore(aws): raise minimum @​anthropic-ai/sdk version to 0.112.4
  • 1cdfa7f chore: release main
  • 0cd535b fix(aws): remove duplicate loggerFor import breaking the build (#235)
  • ff7d620 fix(aws): preserve AWS options and auth mode across withOptions() (#214)
  • 0b39044 chore(docs): small updates
  • f84e863 chore: release main
  • 373cf7e chore(docs): small updates
  • Additional commits viewable in compare view

Updates @aws-sdk/client-s3 from 3.1081.0 to 3.1092.0

Release notes

Sourced from @​aws-sdk/client-s3's releases.

v3.1092.0

3.1092.0(2026-07-21)

Documentation Changes
  • client-securityhub: Security Hub standard and control multicloud API documentation updates (2e19bf93)
New Features
  • client-redshift: Amazon Redshift - Added support for managing Query Editor V2 IAM Identity Center applications via new CreateQev2IdcApplication, DescribeQev2IdcApplications, ModifyQev2IdcApplication, and DeleteQev2IdcApplication API operations. (17507f23)
  • client-inspector2: GA date - July 21st 2026, remove Tags field from ListCodeSecurityIntegration and ListCodeSecurityScanConfiguration. (33a1778d)
  • client-emr-containers: Added support for the DeleteSecurityConfiguration API, which allows customers to delete security configurations in Amazon EMR on EKS. Also added authenticationConfiguration in securityConfigurationdata structure. (e344cea9)
  • client-redshift-data: update the workgroupArn to include EUSC partition, tests in THF Gamma and Prod no issue (4f372fc5)
  • client-invoicing: Added the SendProcurementPortalValidation and VerifyProcurementPortalValidation APIs. You can use the AWS SDKs to self-service activate your Procurement Portal Preferences created on the Billing Preferences page with a one-time-passcode (OTP) delivered to your portal. (35e023c0)
  • client-entityresolution: Add support for real time matching with AWS Entity Resolution matching workflows with advanced rule sets. (b92fd6c4)
  • client-ssm: Added a WarningMessage field to Automation along with corresponding public documentation. (7af6eb58)
  • client-timestream-influxdb: This release adds support for custom plugins in Amazon Timestream for InfluxDB. InfluxDB 3 Core and Enterprise DB parameter groups now accept a plugin repository URL and optional AWS Secrets Manager secret ARN, so the Processing Engine loads your Python plugins from a public or private repository. (ade4b969)
  • core/protocols: bytebuffer serializer and buffer deserializer for JSON (#8202) (f39955af)

For list of updated packages, view updated-packages.md in assets-3.1092.0.zip

v3.1091.0

3.1091.0(2026-07-20)

Documentation Changes
  • client-organizations: Updated InvalidInputException error documentation to clarify that the service validates free-text field values against common cross-site scripting (XSS) patterns. (6ac1bf08)
  • client-marketplace-metering: For new SaaS product integrations, CustomerIdentifier is not populated in ResolveCustomer responses and is not supported in BatchMeterUsage. Use CustomerAWSAccountId and LicenseArn instead. (f1ff8983)
New Features
  • client-quicksight: Adds support for custom permissions for Triggers, allowing administrators to control user access to Schedule, Inbound Email and Quick Event triggers. (fbe7d94d)
  • client-bedrock-agentcore: Add W3C trace context headers (traceparent, tracestate, baggage) and X-Amzn-Trace-Id to InvokeHarness request for end-to-end observability propagation. Add toolResultMetadata to the streaming content block delta for MCP tool result meta delivery without oversized SSE frames. (4cf22ef3)
  • client-bedrock-agentcore-control: This release adds support for specifying a connector version on Gateway targets to pin the connector's tool schema. It also introduces web-search connector version 1.2.0, which adds agent-side domain filtering, published date range filtering, and admin-side domain allowlisting. (2c37055a)
  • client-sesv2: Amazon SES introduces three new Pricing Plans (Essentials, Pro, Enterprise), which bundle SES features under one pricing umbrella. The new PutAccountPricingAttributes API lets the user set the account's plan, while current plan retrievalif done through the new PricingAttributes field on GetAccount. (751dc8df)
  • client-mediatailor: This change adds api support for configuring ad decision server timeouts and concurrency fields on MediaTailor playback configurations (97ea965e)
  • client-inspector2: Adds Windows path support for deep inspection. Fixes tag propagation for connector CloudFormation stack operations. (2263613f)
Tests
  • middleware-sdk-route53: loosen date in path assertion (#8212) (e5225182)

For list of updated packages, view updated-packages.md in assets-3.1091.0.zip

... (truncated)

Changelog

Sourced from @​aws-sdk/client-s3's changelog.

3.1092.0 (2026-07-21)

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

3.1091.0 (2026-07-20)

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

3.1090.0 (2026-07-17)

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

3.1089.0 (2026-07-16)

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

3.1088.0 (2026-07-15)

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

3.1087.0 (2026-07-14)

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

3.1086.0 (2026-07-13)

... (truncated)

Commits
  • 80f0df5 Publish v3.1092.0
  • a1269f7 Publish v3.1091.0
  • eb268ed Publish v3.1090.0
  • 60e8b54 Publish v3.1089.0
  • 91723d2 docs(client-s3): Documentation update for removing the 30 day minimum restric...
  • 73de389 Publish v3.1088.0
  • d43e5bf chore(codegen): sync to use typesVersions entries for submodules (#8195)
  • 7d14409 chore: migrate eslint/prettier to oxlint/oxfmt (#8192)
  • ec24bb4 Publish v3.1087.0
  • a20c28d chore(codegen): sync for codegen and include OAuthIAM operation for signin li...
  • Additional commits viewable in compare view

Updates @aws-sdk/s3-request-presigner from 3.1081.0 to 3.1092.0

Release notes

Sourced from @​aws-sdk/s3-request-presigner's releases.

v3.1092.0

3.1092.0(2026-07-21)

Documentation Changes
  • client-securityhub: Security Hub standard and control multicloud API documentation updates (2e19bf93)
New Features
  • client-redshift: Amazon Redshift - Added support for managing Query Editor V2 IAM Identity Center applications via new CreateQev2IdcApplication, DescribeQev2IdcApplications, ModifyQev2IdcApplication, and DeleteQev2IdcApplication API operations. (17507f23)
  • client-inspector2: GA date - July 21st 2026, remove Tags field from ListCodeSecurityIntegration and ListCodeSecurityScanConfiguration. (33a1778d)
  • client-emr-containers: Added support for the DeleteSecurityConfiguration API, which allows customers to delete security configurations in Amazon EMR on EKS. Also added authenticationConfiguration in securityConfigurationdata structure. (e344cea9)
  • client-redshift-data: update the workgroupArn to include EUSC partition, tests in THF Gamma and Prod no issue (4f372fc5)
  • client-invoicing: Added the SendProcurementPortalValidation and VerifyProcurementPortalValidation APIs. You can use the AWS SDKs to self-service activate your Procurement Portal Preferences created on the Billing Preferences page with a one-time-passcode (OTP) delivered to your portal. (35e023c0)
  • client-entityresolution: Add support for real time matching with AWS Entity Resolution matching workflows with advanced rule sets. (b92fd6c4)
  • client-ssm: Added a WarningMessage field to Automation along with corresponding public documentation. (7af6eb58)
  • client-timestream-influxdb: This release adds support for custom plugins in Amazon Timestream for InfluxDB. InfluxDB 3 Core and Enterprise DB parameter groups now accept a plugin repository URL and optional AWS Secrets Manager secret ARN, so the Processing Engine loads your Python plugins from a public or private repository. (ade4b969)
  • core/protocols: bytebuffer serializer and buffer deserializer for JSON (#8202) (f39955af)

For list of updated packages, view updated-packages.md in assets-3.1092.0.zip

v3.1091.0

3.1091.0(2026-07-20)

Documentation Changes
  • client-organizations: Updated InvalidInputException error documentation to clarify that the service validates free-text field values against common cross-site scripting (XSS) patterns. (6ac1bf08)
  • client-marketplace-metering: For new SaaS product integrations, CustomerIdentifier is not populated in ResolveCustomer responses and is not supported in BatchMeterUsage. Use CustomerAWSAccountId and LicenseArn instead. (f1ff8983)
New Features
  • client-quicksight: Adds support for custom permissions for Triggers, allowing administrators to control user access to Schedule, Inbound Email and Quick Event triggers. (fbe7d94d)
  • client-bedrock-agentcore: Add W3C trace context headers (traceparent, tracestate, baggage) and X-Amzn-Trace-Id to InvokeHarness request for end-to-end observability propagation. Add toolResultMetadata to the streaming content block delta for MCP tool result meta delivery without oversized SSE frames. (4cf22ef3)
  • client-bedrock-agentcore-control: This release adds support for specifying a connector version on Gateway targets to pin the connector's tool schema. It also introduces web-search connector version 1.2.0, which adds agent-side domain filtering, published date range filtering, and admin-side domain allowlisting. (2c37055a)
  • client-sesv2: Amazon SES introduces three new Pricing Plans (Essentials, Pro, Enterprise), which bundle SES features under one pricing umbrella. The new PutAccountPricingAttributes API lets the user set the account's plan, while current plan retrievalif done through the new PricingAttributes field on GetAccount. (751dc8df)
  • client-mediatailor: This change adds api support for configuring ad decision server timeouts and concurrency fields on MediaTailor playback configurations (97ea965e)
  • client-inspector2: Adds Windows path support for deep inspection. Fixes tag propagation for connector CloudFormation stack operations. (2263613f)
Tests
  • middleware-sdk-route53: loosen date in path assertion (#8212) (e5225182)

For list of updated packages, view updated-packages.md in assets-3.1091.0.zip

... (truncated)

Changelog

Sourced from @​aws-sdk/s3-request-presigner's changelog.

3.1092.0 (2026-07-21)

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

3.1091.0 (2026-07-20)

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

3.1090.0 (2026-07-17)

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

3.1089.0 (2026-07-16)

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

3.1088.0 (2026-07-15)

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

3.1087.0 (2026-07-14)

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

3.1086.0 (2026-07-13)

... (truncated)

Commits
  • 80f0df5 Publish v3.1092.0
  • a1269f7 Publish v3.1091.0
  • eb268ed Publish v3.1090.0
  • 60e8b54 Publish v3.1089.0
  • 73de389 Publish v3.1088.0
  • d43e5bf chore(codegen): sync to use typesVersions entries for submodules (#8195)
  • 7d14409 chore: migrate eslint/prettier to oxlint/oxfmt (#8192)
  • ec24bb4 Publish v3.1087.0
  • a20c28d chore(codegen): sync for codegen and include OAuthIAM operation for signin li...
  • 64c3e50 Publish v3.1086.0
  • Additional commits viewable in compare view

Updates @fastify/cookie from 11.0.2 to 11.1.2

Release notes

Sourced from @​fastify/cookie's releases.

v11.1.2

What's Changed

Full Changelog: fastify/fastify-cookie@v11.1.1...v11.1.2

v11.1.1

What's Changed

New Contributors

Full Changelog: fastify/fastify-cookie@v11.1.0...v11.1.1

v11.1.0

What's Changed

…6 updates

Bumps the minor-and-patch group with 46 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.39.4` | `9.39.5` |
| [eslint](https://github.com/eslint/eslint) | `9.39.4` | `9.39.5` |
| [prettier](https://github.com/prettier/prettier) | `3.9.4` | `3.9.6` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.63.0` | `8.65.0` |
| [@ai-sdk/google](https://github.com/vercel/ai/tree/HEAD/packages/google) | `3.0.90` | `3.0.98` |
| [@anthropic-ai/sdk](https://github.com/anthropics/anthropic-sdk-typescript) | `0.110.0` | `0.112.5` |
| [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) | `3.1081.0` | `3.1092.0` |
| [@aws-sdk/s3-request-presigner](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/s3-request-presigner) | `3.1081.0` | `3.1092.0` |
| [@fastify/cookie](https://github.com/fastify/fastify-cookie) | `11.0.2` | `11.1.2` |
| [@fastify/cors](https://github.com/fastify/fastify-cors) | `11.2.0` | `11.3.0` |
| [@fastify/multipart](https://github.com/fastify/fastify-multipart) | `10.0.0` | `10.1.0` |
| [@hocuspocus/extension-logger](https://github.com/ueberdosis/hocuspocus) | `4.3.0` | `4.4.0` |
| [@hocuspocus/provider](https://github.com/ueberdosis/hocuspocus) | `4.3.0` | `4.4.0` |
| [@hocuspocus/server](https://github.com/ueberdosis/hocuspocus) | `4.3.0` | `4.4.0` |
| [@mistralai/mistralai](https://github.com/mistralai/client-ts) | `2.4.1` | `2.5.0` |
| [@sentry/node](https://github.com/getsentry/sentry-javascript) | `10.64.0` | `10.67.0` |
| [@workos-inc/node](https://github.com/workos/workos-node) | `10.7.0` | `10.8.0` |
| [ai](https://github.com/vercel/ai/tree/HEAD/packages/ai) | `6.0.221` | `6.0.233` |
| [bullmq](https://github.com/taskforcesh/bullmq) | `5.76.8` | `5.80.10` |
| [dompurify](https://github.com/cure53/DOMPurify) | `3.4.11` | `3.4.12` |
| [marked](https://github.com/markedjs/marked) | `18.0.5` | `18.0.7` |
| [openai](https://github.com/openai/openai-node) | `6.45.0` | `6.48.0` |
| [resend](https://github.com/resend/resend-node) | `6.17.1` | `6.18.0` |
| [ws](https://github.com/websockets/ws) | `8.21.0` | `8.21.1` |
| [tsx](https://github.com/privatenumber/tsx) | `4.23.0` | `4.23.1` |
| [@milkdown/core](https://github.com/Milkdown/milkdown/tree/HEAD/packages/core) | `7.21.2` | `7.21.3` |
| [@milkdown/crepe](https://github.com/Milkdown/milkdown/tree/HEAD/packages/crepe) | `7.21.2` | `7.21.3` |
| [@milkdown/kit](https://github.com/Milkdown/milkdown/tree/HEAD/packages/milkdown) | `7.21.2` | `7.21.3` |
| [@milkdown/plugin-collab](https://github.com/Milkdown/milkdown/tree/HEAD/packages/plugins/plugin-collab) | `7.21.2` | `7.21.3` |
| [@milkdown/transformer](https://github.com/Milkdown/milkdown/tree/HEAD/packages/transformer) | `7.21.2` | `7.21.3` |
| [@sentry/astro](https://github.com/getsentry/sentry-javascript) | `10.64.0` | `10.67.0` |
| [@tailwindcss/vite](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite) | `4.3.2` | `4.3.3` |
| [katex](https://github.com/KaTeX/KaTeX) | `0.17.0` | `0.18.1` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `1.23.0` | `1.25.0` |
| [prosemirror-view](https://github.com/prosemirror/prosemirror-view) | `1.42.0` | `1.42.1` |
| [react](https://github.com/react/react/tree/HEAD/packages/react) | `19.2.7` | `19.2.8` |
| [react-dom](https://github.com/react/react/tree/HEAD/packages/react-dom) | `19.2.7` | `19.2.8` |
| [recharts](https://github.com/recharts/recharts) | `3.9.2` | `3.10.0` |
| [simple-icons](https://github.com/simple-icons/simple-icons) | `16.25.0` | `16.27.0` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.3.2` | `4.3.3` |
| [@types/three](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/three) | `0.185.0` | `0.185.1` |
| [prosemirror-model](https://github.com/prosemirror/prosemirror-model) | `1.25.10` | `1.25.11` |
| [@milkdown/preset-commonmark](https://github.com/Milkdown/milkdown/tree/HEAD/packages/plugins/preset-commonmark) | `7.21.2` | `7.21.3` |
| [@milkdown/preset-gfm](https://github.com/Milkdown/milkdown/tree/HEAD/packages/plugins/preset-gfm) | `7.21.2` | `7.21.3` |
| [@milkdown/utils](https://github.com/Milkdown/milkdown/tree/HEAD/packages/utils) | `7.21.2` | `7.21.3` |
| [@milkdown/ctx](https://github.com/Milkdown/milkdown/tree/HEAD/packages/ctx) | `7.21.2` | `7.21.3` |



Updates `@eslint/js` from 9.39.4 to 9.39.5
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](https://github.com/eslint/eslint/commits/v9.39.5/packages/js)

Updates `eslint` from 9.39.4 to 9.39.5
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.39.4...v9.39.5)

Updates `prettier` from 3.9.4 to 3.9.6
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.9.4...3.9.6)

Updates `typescript-eslint` from 8.63.0 to 8.65.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.65.0/packages/typescript-eslint)

Updates `@ai-sdk/google` from 3.0.90 to 3.0.98
- [Release notes](https://github.com/vercel/ai/releases)
- [Changelog](https://github.com/vercel/ai/blob/@ai-sdk/google@3.0.98/packages/google/CHANGELOG.md)
- [Commits](https://github.com/vercel/ai/commits/@ai-sdk/google@3.0.98/packages/google)

Updates `@anthropic-ai/sdk` from 0.110.0 to 0.112.5
- [Release notes](https://github.com/anthropics/anthropic-sdk-typescript/releases)
- [Changelog](https://github.com/anthropics/anthropic-sdk-typescript/blob/main/CHANGELOG.md)
- [Commits](anthropics/anthropic-sdk-typescript@sdk-v0.110.0...sdk-v0.112.5)

Updates `@aws-sdk/client-s3` from 3.1081.0 to 3.1092.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-s3/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1092.0/clients/client-s3)

Updates `@aws-sdk/s3-request-presigner` from 3.1081.0 to 3.1092.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/s3-request-presigner/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1092.0/packages/s3-request-presigner)

Updates `@fastify/cookie` from 11.0.2 to 11.1.2
- [Release notes](https://github.com/fastify/fastify-cookie/releases)
- [Commits](fastify/fastify-cookie@v11.0.2...v11.1.2)

Updates `@fastify/cors` from 11.2.0 to 11.3.0
- [Release notes](https://github.com/fastify/fastify-cors/releases)
- [Commits](fastify/fastify-cors@v11.2.0...v11.3.0)

Updates `@fastify/multipart` from 10.0.0 to 10.1.0
- [Release notes](https://github.com/fastify/fastify-multipart/releases)
- [Commits](fastify/fastify-multipart@v10.0.0...v10.1.0)

Updates `@hocuspocus/extension-logger` from 4.3.0 to 4.4.0
- [Release notes](https://github.com/ueberdosis/hocuspocus/releases)
- [Changelog](https://github.com/ueberdosis/hocuspocus/blob/main/CHANGELOG.md)
- [Commits](ueberdosis/hocuspocus@v4.3.0...v4.4.0)

Updates `@hocuspocus/provider` from 4.3.0 to 4.4.0
- [Release notes](https://github.com/ueberdosis/hocuspocus/releases)
- [Changelog](https://github.com/ueberdosis/hocuspocus/blob/main/CHANGELOG.md)
- [Commits](ueberdosis/hocuspocus@v4.3.0...v4.4.0)

Updates `@hocuspocus/server` from 4.3.0 to 4.4.0
- [Release notes](https://github.com/ueberdosis/hocuspocus/releases)
- [Changelog](https://github.com/ueberdosis/hocuspocus/blob/main/CHANGELOG.md)
- [Commits](ueberdosis/hocuspocus@v4.3.0...v4.4.0)

Updates `@mistralai/mistralai` from 2.4.1 to 2.5.0
- [Release notes](https://github.com/mistralai/client-ts/releases)
- [Changelog](https://github.com/mistralai/client-ts/blob/main/RELEASES.md)
- [Commits](mistralai/client-ts@v2.4.1...v2.5.0)

Updates `@sentry/node` from 10.64.0 to 10.67.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@10.64.0...10.67.0)

Updates `@workos-inc/node` from 10.7.0 to 10.8.0
- [Release notes](https://github.com/workos/workos-node/releases)
- [Changelog](https://github.com/workos/workos-node/blob/main/CHANGELOG.md)
- [Commits](workos/workos-node@v10.7.0...v10.8.0)

Updates `ai` from 6.0.221 to 6.0.233
- [Release notes](https://github.com/vercel/ai/releases)
- [Changelog](https://github.com/vercel/ai/blob/ai@6.0.233/packages/ai/CHANGELOG.md)
- [Commits](https://github.com/vercel/ai/commits/ai@6.0.233/packages/ai)

Updates `bullmq` from 5.76.8 to 5.80.10
- [Release notes](https://github.com/taskforcesh/bullmq/releases)
- [Commits](taskforcesh/bullmq@v5.76.8...v5.80.10)

Updates `dompurify` from 3.4.11 to 3.4.12
- [Release notes](https://github.com/cure53/DOMPurify/releases)
- [Commits](cure53/DOMPurify@3.4.11...3.4.12)

Updates `marked` from 18.0.5 to 18.0.7
- [Release notes](https://github.com/markedjs/marked/releases)
- [Commits](markedjs/marked@v18.0.5...v18.0.7)

Updates `openai` from 6.45.0 to 6.48.0
- [Release notes](https://github.com/openai/openai-node/releases)
- [Changelog](https://github.com/openai/openai-node/blob/main/CHANGELOG.md)
- [Commits](openai/openai-node@v6.45.0...v6.48.0)

Updates `resend` from 6.17.1 to 6.18.0
- [Release notes](https://github.com/resend/resend-node/releases)
- [Changelog](https://github.com/resend/resend-node/blob/canary/CHANGELOG.md)
- [Commits](resend/resend-node@v6.17.1...v6.18.0)

Updates `ws` from 8.21.0 to 8.21.1
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@8.21.0...8.21.1)

Updates `tsx` from 4.23.0 to 4.23.1
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.23.0...v4.23.1)

Updates `@milkdown/core` from 7.21.2 to 7.21.3
- [Release notes](https://github.com/Milkdown/milkdown/releases)
- [Changelog](https://github.com/Milkdown/milkdown/blob/main/packages/core/CHANGELOG.md)
- [Commits](https://github.com/Milkdown/milkdown/commits/v7.21.3/packages/core)

Updates `@milkdown/crepe` from 7.21.2 to 7.21.3
- [Release notes](https://github.com/Milkdown/milkdown/releases)
- [Changelog](https://github.com/Milkdown/milkdown/blob/main/packages/crepe/CHANGELOG.md)
- [Commits](https://github.com/Milkdown/milkdown/commits/v7.21.3/packages/crepe)

Updates `@milkdown/kit` from 7.21.2 to 7.21.3
- [Release notes](https://github.com/Milkdown/milkdown/releases)
- [Commits](https://github.com/Milkdown/milkdown/commits/v7.21.3/packages/milkdown)

Updates `@milkdown/plugin-collab` from 7.21.2 to 7.21.3
- [Release notes](https://github.com/Milkdown/milkdown/releases)
- [Changelog](https://github.com/Milkdown/milkdown/blob/main/packages/plugins/plugin-collab/CHANGELOG.md)
- [Commits](https://github.com/Milkdown/milkdown/commits/v7.21.3/packages/plugins/plugin-collab)

Updates `@milkdown/transformer` from 7.21.2 to 7.21.3
- [Release notes](https://github.com/Milkdown/milkdown/releases)
- [Changelog](https://github.com/Milkdown/milkdown/blob/main/packages/transformer/CHANGELOG.md)
- [Commits](https://github.com/Milkdown/milkdown/commits/v7.21.3/packages/transformer)

Updates `@sentry/astro` from 10.64.0 to 10.67.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@10.64.0...10.67.0)

Updates `@tailwindcss/vite` from 4.3.2 to 4.3.3
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.3/packages/@tailwindcss-vite)

Updates `katex` from 0.17.0 to 0.18.1
- [Release notes](https://github.com/KaTeX/KaTeX/releases)
- [Changelog](https://github.com/KaTeX/KaTeX/blob/main/CHANGELOG.md)
- [Commits](KaTeX/KaTeX@v0.17.0...v0.18.1)

Updates `lucide-react` from 1.23.0 to 1.25.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/1.25.0/packages/lucide-react)

Updates `prosemirror-view` from 1.42.0 to 1.42.1
- [Changelog](https://github.com/ProseMirror/prosemirror-view/blob/master/CHANGELOG.md)
- [Commits](https://github.com/prosemirror/prosemirror-view/commits)

Updates `react` from 19.2.7 to 19.2.8
- [Release notes](https://github.com/react/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/react/react/commits/v19.2.8/packages/react)

Updates `react-dom` from 19.2.7 to 19.2.8
- [Release notes](https://github.com/react/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/react/react/commits/v19.2.8/packages/react-dom)

Updates `recharts` from 3.9.2 to 3.10.0
- [Release notes](https://github.com/recharts/recharts/releases)
- [Changelog](https://github.com/recharts/recharts/blob/main/CHANGELOG.md)
- [Commits](recharts/recharts@v3.9.2...v3.10.0)

Updates `simple-icons` from 16.25.0 to 16.27.0
- [Release notes](https://github.com/simple-icons/simple-icons/releases)
- [Commits](simple-icons/simple-icons@16.25.0...16.27.0)

Updates `tailwindcss` from 4.3.2 to 4.3.3
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.3/packages/tailwindcss)

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

Updates `prosemirror-model` from 1.25.10 to 1.25.11
- [Changelog](https://github.com/ProseMirror/prosemirror-model/blob/master/CHANGELOG.md)
- [Commits](https://github.com/prosemirror/prosemirror-model/commits)

Updates `@milkdown/preset-commonmark` from 7.21.2 to 7.21.3
- [Release notes](https://github.com/Milkdown/milkdown/releases)
- [Changelog](https://github.com/Milkdown/milkdown/blob/main/packages/plugins/preset-commonmark/CHANGELOG.md)
- [Commits](https://github.com/Milkdown/milkdown/commits/v7.21.3/packages/plugins/preset-commonmark)

Updates `@milkdown/preset-gfm` from 7.21.2 to 7.21.3
- [Release notes](https://github.com/Milkdown/milkdown/releases)
- [Changelog](https://github.com/Milkdown/milkdown/blob/main/packages/plugins/preset-gfm/CHANGELOG.md)
- [Commits](https://github.com/Milkdown/milkdown/commits/v7.21.3/packages/plugins/preset-gfm)

Updates `@milkdown/utils` from 7.21.2 to 7.21.3
- [Release notes](https://github.com/Milkdown/milkdown/releases)
- [Changelog](https://github.com/Milkdown/milkdown/blob/main/packages/utils/CHANGELOG.md)
- [Commits](https://github.com/Milkdown/milkdown/commits/v7.21.3/packages/utils)

Updates `@milkdown/ctx` from 7.21.2 to 7.21.3
- [Release notes](https://github.com/Milkdown/milkdown/releases)
- [Changelog](https://github.com/Milkdown/milkdown/blob/main/packages/ctx/CHANGELOG.md)
- [Commits](https://github.com/Milkdown/milkdown/commits/v7.21.3/packages/ctx)

---
updated-dependencies:
- dependency-name: "@eslint/js"
  dependency-version: 9.39.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: eslint
  dependency-version: 9.39.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: prettier
  dependency-version: 3.9.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: typescript-eslint
  dependency-version: 8.65.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@ai-sdk/google"
  dependency-version: 3.0.98
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@anthropic-ai/sdk"
  dependency-version: 0.112.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@aws-sdk/client-s3"
  dependency-version: 3.1092.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@aws-sdk/s3-request-presigner"
  dependency-version: 3.1092.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@fastify/cookie"
  dependency-version: 11.1.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@fastify/cors"
  dependency-version: 11.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@fastify/multipart"
  dependency-version: 10.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@hocuspocus/extension-logger"
  dependency-version: 4.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@hocuspocus/provider"
  dependency-version: 4.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@hocuspocus/server"
  dependency-version: 4.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@mistralai/mistralai"
  dependency-version: 2.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@sentry/node"
  dependency-version: 10.67.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@workos-inc/node"
  dependency-version: 10.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: ai
  dependency-version: 6.0.233
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: bullmq
  dependency-version: 5.80.10
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: dompurify
  dependency-version: 3.4.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: marked
  dependency-version: 18.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: openai
  dependency-version: 6.48.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: resend
  dependency-version: 6.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: ws
  dependency-version: 8.21.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: tsx
  dependency-version: 4.23.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@milkdown/core"
  dependency-version: 7.21.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@milkdown/crepe"
  dependency-version: 7.21.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@milkdown/kit"
  dependency-version: 7.21.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@milkdown/plugin-collab"
  dependency-version: 7.21.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@milkdown/transformer"
  dependency-version: 7.21.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@sentry/astro"
  dependency-version: 10.67.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@tailwindcss/vite"
  dependency-version: 4.3.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: katex
  dependency-version: 0.18.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: lucide-react
  dependency-version: 1.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: prosemirror-view
  dependency-version: 1.42.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react
  dependency-version: 19.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react-dom
  dependency-version: 19.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: recharts
  dependency-version: 3.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: simple-icons
  dependency-version: 16.27.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: tailwindcss
  dependency-version: 4.3.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/three"
  dependency-version: 0.185.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: prosemirror-model
  dependency-version: 1.25.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@milkdown/preset-commonmark"
  dependency-version: 7.21.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@milkdown/preset-gfm"
  dependency-version: 7.21.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@milkdown/utils"
  dependency-version: 7.21.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@milkdown/ctx"
  dependency-version: 7.21.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 21, 2026
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 21, 2026
@CLAassistant

Copy link
Copy Markdown

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.

@dependabot @github

dependabot Bot commented on behalf of github Jul 28, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Jul 28, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/minor-and-patch-56815fb514 branch July 28, 2026 23:54
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.

1 participant