Skip to content

chore(deps): bump the production-dependencies group across 1 directory with 9 updates#440

Merged
Hanssen0 merged 1 commit into
devfrom
dependabot/npm_and_yarn/dev/production-dependencies-679eacbda9
Jul 15, 2026
Merged

chore(deps): bump the production-dependencies group across 1 directory with 9 updates#440
Hanssen0 merged 1 commit into
devfrom
dependabot/npm_and_yarn/dev/production-dependencies-679eacbda9

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the production-dependencies group with 9 updates in the / directory:

Package From To
prettier 3.9.4 3.9.5
lucide-react 1.23.0 1.24.0
@types/node 26.1.0 26.1.1
fumadocs-core 16.11.1 16.11.4
fumadocs-mdx 15.1.0 15.1.1
fumadocs-ui 16.11.1 16.11.4
@nestjs/common 11.1.27 11.1.28
@nestjs/core 11.1.27 11.1.28
@nestjs/platform-express 11.1.27 11.1.28

Updates prettier from 3.9.4 to 3.9.5

Release notes

Sourced from prettier's releases.

3.9.5

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.9.5

diff

Markdown: Cap ordered list mark at 999,999,999 (#19351 by @​tats-u)

CommonMark parsers only support ordered list item numbers up to 999,999,999.

With this change, Prettier now caps the ordered list item number at 999,999,999 to ensure that the output is correctly parsed as an ordered list by CommonMark parsers. Numbers larger than 999,999,999 are not parsed as list item numbers and are left unchanged in the output:

<!-- Input -->
999999998. text
999999998. text
999999998. text
999999998. text
1234567890123456789012) text
<!-- Prettier 3.9.4 -->
999999998. text
999999999. text
1000000000. text
1000000001. text
1234567890123456789012) text
<!-- Prettier 3.9.5 -->
999999998. text
999999999. text
999999999. text
999999999. text
1234567890123456789012) text

Markdown: Avoid corrupting empty link with title (#19487 by @​andersk)

Do not remove <> from an inline link or image with an empty URL and a title, as this removal would change its interpretation.

<!-- Input -->
[link](https://github.com/prettier/prettier/blob/main/<> "title")
<!-- Prettier 3.9.4 -->
[link](https://github.com/prettier/prettier/blob/main/ "title")
<!-- Prettier 3.9.5 -->
</tr></table>

... (truncated)

Commits

Updates lucide-react from 1.23.0 to 1.24.0

Release notes

Sourced from lucide-react's releases.

Version 1.24.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.23.0...1.24.0

Commits

Updates @types/node from 26.1.0 to 26.1.1

Commits

Updates fumadocs-core from 16.11.1 to 16.11.4

Commits
  • e4d5c00 Merge pull request #3414 from fuma-nama/tegami/version-packages
  • 9e10899 fix(api-docs): remove stale schema resolver APIs
  • a5da935 migrate from broken takumi version
  • 8a280f5 refactor(*): migrate to yaml
  • 06dd35b feat(api-docs): use @scalar/json-magic for dereferencing
  • b3c7fb3 docs: simplify
  • 3958960 fix types
  • 1f9ca9a Merge pull request #3411 from fuma-nama/tegami/version-packages
  • 983d4e9 fix(satteri): workspace range
  • fc69a45 docs: unify sponsors
  • Additional commits viewable in compare view

Updates fumadocs-mdx from 15.1.0 to 15.1.1

Release notes

Sourced from fumadocs-mdx's releases.

fumadocs-mdx@15.1.1

Migrate from js-yaml to yaml

Commits
  • e4d5c00 Merge pull request #3414 from fuma-nama/tegami/version-packages
  • 9e10899 fix(api-docs): remove stale schema resolver APIs
  • a5da935 migrate from broken takumi version
  • 8a280f5 refactor(*): migrate to yaml
  • 06dd35b feat(api-docs): use @scalar/json-magic for dereferencing
  • b3c7fb3 docs: simplify
  • 3958960 fix types
  • 1f9ca9a Merge pull request #3411 from fuma-nama/tegami/version-packages
  • 983d4e9 fix(satteri): workspace range
  • fc69a45 docs: unify sponsors
  • Additional commits viewable in compare view

Updates fumadocs-ui from 16.11.1 to 16.11.4

Commits
  • e4d5c00 Merge pull request #3414 from fuma-nama/tegami/version-packages
  • 9e10899 fix(api-docs): remove stale schema resolver APIs
  • a5da935 migrate from broken takumi version
  • 8a280f5 refactor(*): migrate to yaml
  • 06dd35b feat(api-docs): use @scalar/json-magic for dereferencing
  • b3c7fb3 docs: simplify
  • 3958960 fix types
  • 1f9ca9a Merge pull request #3411 from fuma-nama/tegami/version-packages
  • 983d4e9 fix(satteri): workspace range
  • fc69a45 docs: unify sponsors
  • Additional commits viewable in compare view

Updates @nestjs/common from 11.1.27 to 11.1.28

Release notes

Sourced from @​nestjs/common's releases.

v11.1.28 (2026-07-08)

Bug fixes

  • core
    • #17239 fix(core): trigger teardown of SSE producer Observable on client disconnect with interceptor (@​jyx-07)
  • common
    • #17257 fix(common): Add missing exception classes to HttpErrorByCode (@​Se3do)
  • websockets
    • #17188 fix(websockets): correct type guard to check value not key (@​Se3do)

Enhancements

  • core
    • #17241 feat(core): include auto-converted route in legacy route path warning (@​ronielli)

Dependencies

Committers: 4

Commits
  • dfaa376 chore(release): publish v11.1.28 release
  • a5e86d8 fix(common): Add missing exception classes to HttpErrorByCode
  • See full diff in compare view

Updates @nestjs/core from 11.1.27 to 11.1.28

Release notes

Sourced from @​nestjs/core's releases.

v11.1.28 (2026-07-08)

Bug fixes

  • core
    • #17239 fix(core): trigger teardown of SSE producer Observable on client disconnect with interceptor (@​jyx-07)
  • common
    • #17257 fix(common): Add missing exception classes to HttpErrorByCode (@​Se3do)
  • websockets
    • #17188 fix(websockets): correct type guard to check value not key (@​Se3do)

Enhancements

  • core
    • #17241 feat(core): include auto-converted route in legacy route path warning (@​ronielli)

Dependencies

Committers: 4

Commits
  • dfaa376 chore(release): publish v11.1.28 release
  • 053a316 Merge pull request #17239 from jyx-07/fix/sse-interceptor-teardown
  • 8e7a2ee feat(core): include auto-converted route in legacy route path warning
  • c5b7164 fix(core): trigger sse observable teardown on disconnect
  • See full diff in compare view

Updates @nestjs/platform-express from 11.1.27 to 11.1.28

Release notes

Sourced from @​nestjs/platform-express's releases.

v11.1.28 (2026-07-08)

Bug fixes

  • core
    • #17239 fix(core): trigger teardown of SSE producer Observable on client disconnect with interceptor (@​jyx-07)
  • common
    • #17257 fix(common): Add missing exception classes to HttpErrorByCode (@​Se3do)
  • websockets
    • #17188 fix(websockets): correct type guard to check value not key (@​Se3do)

Enhancements

  • core
    • #17241 feat(core): include auto-converted route in legacy route path warning (@​ronielli)

Dependencies

Committers: 4

Commits
  • dfaa376 chore(release): publish v11.1.28 release
  • 541977a fix(deps): update dependency multer to v2.2.0 [security]
  • See full diff in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 15, 2026
@netlify

netlify Bot commented Jul 15, 2026

Copy link
Copy Markdown

Deploy Preview for appccc ready!

Name Link
🔨 Latest commit e498f30
🔍 Latest deploy log https://app.netlify.com/projects/appccc/deploys/6a57a99dced38200088bda42
😎 Deploy Preview https://deploy-preview-440--appccc.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
1 paths audited
Performance: 61 (🔴 down 24 from production)
Accessibility: 89 (🟢 up 1 from production)
Best Practices: 92 (🔴 down 8 from production)
SEO: 100 (no change from production)
PWA: -
View the detailed breakdown and full score reports

To edit notification comments on pull requests, go to your Netlify project configuration.

@netlify

netlify Bot commented Jul 15, 2026

Copy link
Copy Markdown

Deploy Preview for liveccc ready!

Name Link
🔨 Latest commit e498f30
🔍 Latest deploy log https://app.netlify.com/projects/liveccc/deploys/6a57a99d7c7e7a0008e65942
😎 Deploy Preview https://deploy-preview-440--liveccc.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
1 paths audited
Performance: 38 (no change from production)
Accessibility: 88 (no change from production)
Best Practices: 92 (🔴 down 8 from production)
SEO: 100 (no change from production)
PWA: -
View the detailed breakdown and full score reports

To edit notification comments on pull requests, go to your Netlify project configuration.

@netlify

netlify Bot commented Jul 15, 2026

Copy link
Copy Markdown

Deploy Preview for docsccc ready!

Name Link
🔨 Latest commit e498f30
🔍 Latest deploy log https://app.netlify.com/projects/docsccc/deploys/6a57a99da55cf0000814dc25
😎 Deploy Preview https://deploy-preview-440--docsccc.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
1 paths audited
Performance: 72 (🔴 down 16 from production)
Accessibility: 95 (no change from production)
Best Practices: 92 (🔴 down 8 from production)
SEO: 75 (no change from production)
PWA: -
View the detailed breakdown and full score reports

To edit notification comments on pull requests, go to your Netlify project configuration.

@changeset-bot

changeset-bot Bot commented Jul 15, 2026

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: e498f30

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@netlify

netlify Bot commented Jul 15, 2026

Copy link
Copy Markdown

Deploy Preview for apiccc ready!

Name Link
🔨 Latest commit e498f30
🔍 Latest deploy log https://app.netlify.com/projects/apiccc/deploys/6a57a99d64e5350008864ce9
😎 Deploy Preview https://deploy-preview-440--apiccc.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
1 paths audited
Performance: 85 (🔴 down 2 from production)
Accessibility: 100 (no change from production)
Best Practices: 100 (no change from production)
SEO: 95 (no change from production)
PWA: -
View the detailed breakdown and full score reports

To edit notification comments on pull requests, go to your Netlify project configuration.

…y with 9 updates

Bumps the production-dependencies group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [prettier](https://github.com/prettier/prettier) | `3.9.4` | `3.9.5` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `1.23.0` | `1.24.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `26.1.0` | `26.1.1` |
| [fumadocs-core](https://github.com/fuma-nama/fumadocs) | `16.11.1` | `16.11.4` |
| [fumadocs-mdx](https://github.com/fuma-nama/fumadocs) | `15.1.0` | `15.1.1` |
| [fumadocs-ui](https://github.com/fuma-nama/fumadocs) | `16.11.1` | `16.11.4` |
| [@nestjs/common](https://github.com/nestjs/nest/tree/HEAD/packages/common) | `11.1.27` | `11.1.28` |
| [@nestjs/core](https://github.com/nestjs/nest/tree/HEAD/packages/core) | `11.1.27` | `11.1.28` |
| [@nestjs/platform-express](https://github.com/nestjs/nest/tree/HEAD/packages/platform-express) | `11.1.27` | `11.1.28` |



Updates `prettier` from 3.9.4 to 3.9.5
- [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.5)

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

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

Updates `fumadocs-core` from 16.11.1 to 16.11.4
- [Release notes](https://github.com/fuma-nama/fumadocs/releases)
- [Commits](https://github.com/fuma-nama/fumadocs/compare/fumadocs@16.11.1...fumadocs@16.11.4)

Updates `fumadocs-mdx` from 15.1.0 to 15.1.1
- [Release notes](https://github.com/fuma-nama/fumadocs/releases)
- [Commits](https://github.com/fuma-nama/fumadocs/compare/fumadocs-mdx@15.1.0...fumadocs-mdx@15.1.1)

Updates `fumadocs-ui` from 16.11.1 to 16.11.4
- [Release notes](https://github.com/fuma-nama/fumadocs/releases)
- [Commits](https://github.com/fuma-nama/fumadocs/compare/fumadocs@16.11.1...fumadocs@16.11.4)

Updates `@nestjs/common` from 11.1.27 to 11.1.28
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.28/packages/common)

Updates `@nestjs/core` from 11.1.27 to 11.1.28
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.28/packages/core)

Updates `@nestjs/platform-express` from 11.1.27 to 11.1.28
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v11.1.28/packages/platform-express)

---
updated-dependencies:
- dependency-name: "@nestjs/common"
  dependency-version: 11.1.28
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@nestjs/core"
  dependency-version: 11.1.28
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@nestjs/platform-express"
  dependency-version: 11.1.28
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: "@types/node"
  dependency-version: 26.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: fumadocs-core
  dependency-version: 16.11.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: fumadocs-mdx
  dependency-version: 15.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: fumadocs-ui
  dependency-version: 16.11.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: lucide-react
  dependency-version: 1.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: prettier
  dependency-version: 3.9.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title chore(deps): bump the production-dependencies group with 9 updates chore(deps): bump the production-dependencies group across 1 directory with 9 updates Jul 15, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/dev/production-dependencies-679eacbda9 branch from 676c25d to e498f30 Compare July 15, 2026 15:39
@Hanssen0 Hanssen0 merged commit a2a3db7 into dev Jul 15, 2026
18 checks passed
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/dev/production-dependencies-679eacbda9 branch July 15, 2026 15:58
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