Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the bun group with 10 updates in the / directory:

Package From To
@elysiajs/eden 1.3.2 1.3.3
@prisma/client 6.11.1 6.14.0
chalk 5.4.1 5.6.0
elysia 1.3.5 1.3.20
jose 6.0.11 6.0.13
prisma 6.11.1 6.14.0
radashi 12.6.0 12.6.2
@biomejs/biome 2.0.6 2.2.2
@types/bun 1.2.18 1.2.20
typescript 5.8.3 5.9.2

Updates @elysiajs/eden from 1.3.2 to 1.3.3

Release notes

Sourced from @​elysiajs/eden's releases.

1.3.3

What's changed

Feature:

  • treaty2: support type safe Server-Sent Events (SSE)
  • treaty2: add utility type Treaty.Data, Treaty.Error to extract data and error type from a route

Bug fix:

  • elysia#823 treaty2: not generating for dynamic params at root
  • treaty2: parse Date in object
  • treaty2: #196 allow custom content-type

Change:

  • minimum Elysia version is set to 1.3.18

Full Changelog: elysiajs/eden@1.3.2...1.3.3

Changelog

Sourced from @​elysiajs/eden's changelog.

1.3.3 - 24 Aug 2025

Feature:

  • treaty2: support type safe Server-Sent Events (SSE)
  • treaty2: add utility type Treaty.Data, Treaty.Error to extract data and error type from a route

Bug fix:

  • elysia#823 treaty2: not generating for dynamic params at root
  • treaty2: parse Date in object
  • treaty2: #196 allow custom content-type

Change:

  • minimum Elysia version is set to 1.3.18
Commits
  • 714181e 📘 doc: update CHANGELOG
  • 0dcba75 🔧 fix: #196 allow custom content-type
  • 84d6dfa 🔧 fix: #196 allow custom content-type
  • d90a66c 🧹 chore: update dependency
  • c4c3152 🧹 chore: update dependency
  • e706ae5 🧹 chore: update dependency
  • 0d416f5 🎉 feat(treaty2): sse
  • 2b0519b 🔧 fix: treaty2: not generating for dynamic params at root
  • cd177dc 🔧 fix: treaty2: not generating for dynamic params at root
  • eb80469 🔧 fix: treaty2: not generating for dynamic params at root
  • See full diff in compare view

Updates @prisma/client from 6.11.1 to 6.14.0

Release notes

Sourced from @​prisma/client's releases.

6.14.0

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

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

Highlights

@unique attributes for SQL views (Preview)

Last release, we improved the robustness of SQL views defined in the Prisma schema. Views are virtual tables that don't allows for defining unique constraints, indexes or foreign keys in the underlying database.

However, as an application developer, it can be convenient to also define relationships involving views or paginate them using cursors. We've received this feedback from several people who had been using views in that way with Prisma ORM, so in this release we're re-introducing the @unique attribute for views. This attribute enables:

  • relationships involving views
  • findUnique queries, cursor-based pagination & implicit ordering for views

Here's an example schema using @unique and defining a relationship from a model to a view:

model User {
  id        Int            @id @default(autoincrement())
  email     String         @unique
  posts     Post[]
  stats     UserPostStats? @relation(fields: [email], references: [userEmail])
}
model Post {
id        Int      @​id @​default(autoincrement())
title     String
published Boolean  @​default(false)
createdAt DateTime @​default(now())
authorId  Int?
author    User?    @​relation(fields: [authorId], references: [id])
}
view UserPostStats {
userEmail        String    @​unique
totalPosts       BigInt?
publishedPosts   BigInt?
unpublishedPosts BigInt?
latestPostDate   DateTime? @​db.Timestamp(6)
user             User?
}

CREATE OR REPLACE VIEW "UserPostStats" AS
SELECT 
</tr></table> 

... (truncated)

Commits
  • f1f2669 chore(deps): update engines to 6.14.0-25.717184b7b35ea05dfa71a3236b7af656013e...
  • 71f115e chore: revert #27887 (#27889)
  • 86b72d8 chore(deps): update engines to 6.14.0-24.944e9a8aab0cc8395d8eb5912777c1e5bebf...
  • 9b0899d chore: don't build wasm-base64 cjs bundles (#27887)
  • 21765b0 fix: ORM-850 improve client options type performance (#27777)
  • f92c421 refactor(client): extract reusable parts of batch request handling (#27879)
  • d9c590b chore(deps): update engines to 6.14.0-22.0b03dd192b3c1459e1142ba36decb4194ca1...
  • 8420681 chore(deps): update engines to 6.14.0-20.21db42295e1eec1ae16580cd07cc0aefd0f2...
  • 7dddc22 fix(qc): align tx manager errors (#27861)
  • 07cc0bc chore(deps): update engines to 6.14.0-18.fbfd9bd6424bc01bfbd02a26ef00c2b14d01...
  • Additional commits viewable in compare view

Updates chalk from 5.4.1 to 5.6.0

Release notes

Sourced from chalk's releases.

v5.6.0

  • Make WezTerm terminal use true color a8f5bf7

chalk/chalk@v5.5.0...v5.6.0

v5.5.0

  • Make Ghostty terminal use true color (#653) 79ee2d3

chalk/chalk@v5.4.1...v5.5.0

Commits

Updates elysia from 1.3.5 to 1.3.20

Release notes

Sourced from elysia's releases.

1.3.20

What's changed

Change:

  • mime is undefined when using Elysia.file in Web Standard Adapter

Full Changelog: elysiajs/elysia@1.3.19...1.3.20

1.3.19

What's changed

Change:

  • #1357 return Response proxy as-is

Bug fix:

Full Changelog: elysiajs/elysia@1.3.18...1.3.19

1.3.18

What's changed

Bug fix:

  • ReadableStream is not pass to handleStream in mapCompactResponse, and mapEarlyResponse

Full Changelog: elysiajs/elysia@1.3.17...1.3.18

1.3.17

What's changed

Bug fix:

  • #1353 normalize encodeSchema with Transform

Full Changelog: elysiajs/elysia@1.3.16...1.3.17

1.3.16

What's changed

Improvement:

  • sse now infer type
  • sse now accepts ReadableStream to return stream as text/event-stream
  • refactor SSE handler
  • support returning ReadableStream from generator or async generator

Change:

  • sse no longer include generated id by default

Bug fix:

  • static response now use callback clone instead of bind

... (truncated)

Changelog

Sourced from elysia's changelog.

1.3.20 - 24 Aug 2025

Change:

  • mime is undefined when using Elysia.file in Web Standard Adapter

1.3.19 - 24 Aug 2025

Change:

  • #1357 return Response proxy as-is

Bug fix:

1.3.18 - 23 Aug 2025

Bug fix:

  • ReadableStream is not pass to handleStream in mapCompactResponse, and mapEarlyResponse

1.3.17 - 23 Aug 2025

Bug fix:

  • #1353 normalize encodeSchema with Transform

1.3.16 - 23 Aug 2025

Improvement:

  • sse now infer type
  • sse now accepts ReadableStream to return stream as text/event-stream
  • refactor SSE handler
  • support returning ReadableStream from generator or async generator

Change:

  • sse no longer include generated id by default

Bug fix:

  • static response now use callback clone instead of bind

1.3.15 - 21 Aug 2025

Bug fix:

  • ValidationError.detail only handle custom error

1.3.14 - 21 Aug 2025

Improvement:

  • custom error on production mode
  • add ValidationError.withDetail
  • add withDetail for additional error information

1.3.13 - 18 Aug 2025

Bug fix:

  • important performance degration, exact mirror normalize doesn't apply correctly
  • normalize optional property with special character

Change:

  • update exact-mirror to 0.1.6

... (truncated)

Commits
  • 7d52294 🔧 fix: mime is undefined when using Elysia.file in Web Standard Adapter
  • 216e70d 🔧 fix: #1357 return Response proxy as-is
  • 58f0602 🔧 fix: #1357 return Response proxy as-is
  • fdd2f5a 🔧 fix: ReadableStream is not pass to handleStream in `mapCompactRe...
  • 9c68be6 🔧 fix: #1353 normalize encodeSchema with Transform
  • f0977c6 📘 doc: fix spelling mistake
  • 94523ad 🎉 feat: refactor sse
  • bd30fa2 🎉 feat: refactor sse
  • fe59894 🔧 fix: ValidationError.detail only handle custom error
  • b99a587 🎉 feat: custom error
  • Additional commits viewable in compare view

Updates jose from 6.0.11 to 6.0.13

Release notes

Sourced from jose's releases.

v6.0.13

Refactor

  • more readability in ecdhes.ts (84da9de)
  • update asn1.ts helpers (b4f8fb3)

v6.0.12

Documentation

  • add known caveats to customFetch (02e1f1e)
  • mention the apu/apv parameter names in setKeyManagementParameters (6274d5a)
  • update compact setKeyManagementParameters (2f44381)
  • use GitHub Flavored Markdown for notes and warnings (f6b4ffc)

Refactor

  • createPublicKey is not a constructor (61ded78)
  • update asn1.ts helper functions (b2b611c)
Changelog

Sourced from jose's changelog.

6.0.13 (2025-08-21)

Refactor

  • more readability in ecdhes.ts (84da9de)
  • update asn1.ts helpers (b4f8fb3)

6.0.12 (2025-07-15)

Documentation

  • add known caveats to customFetch (02e1f1e)
  • mention the apu/apv parameter names in setKeyManagementParameters (6274d5a)
  • update compact setKeyManagementParameters (2f44381)
  • use GitHub Flavored Markdown for notes and warnings (f6b4ffc)

Refactor

  • createPublicKey is not a constructor (61ded78)
  • update asn1.ts helper functions (b2b611c)
Commits
  • 1e36dd2 chore(release): 6.0.13
  • b4f8fb3 refactor: update asn1.ts helpers
  • 413fa45 chore: bump packages
  • 84da9de refactor: more readability in ecdhes.ts
  • 475a3ed chore: npm run format
  • b59c547 chore: bump packages
  • 8a56fc4 chore: adjust ts-expect-error to accomodate for deno updates
  • 2c72a27 chore: cleanup after release
  • 03f9940 chore(release): 6.0.12
  • b2b611c refactor: update asn1.ts helper functions
  • Additional commits viewable in compare view

Updates prisma from 6.11.1 to 6.14.0

Release notes

Sourced from prisma's releases.

6.14.0

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

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

Highlights

@unique attributes for SQL views (Preview)

Last release, we improved the robustness of SQL views defined in the Prisma schema. Views are virtual tables that don't allows for defining unique constraints, indexes or foreign keys in the underlying database.

However, as an application developer, it can be convenient to also define relationships involving views or paginate them using cursors. We've received this feedback from several people who had been using views in that way with Prisma ORM, so in this release we're re-introducing the @unique attribute for views. This attribute enables:

  • relationships involving views
  • findUnique queries, cursor-based pagination & implicit ordering for views

Here's an example schema using @unique and defining a relationship from a model to a view:

model User {
  id        Int            @id @default(autoincrement())
  email     String         @unique
  posts     Post[]
  stats     UserPostStats? @relation(fields: [email], references: [userEmail])
}
model Post {
id        Int      @​id @​default(autoincrement())
title     String
published Boolean  @​default(false)
createdAt DateTime @​default(now())
authorId  Int?
author    User?    @​relation(fields: [authorId], references: [id])
}
view UserPostStats {
userEmail        String    @​unique
totalPosts       BigInt?
publishedPosts   BigInt?
unpublishedPosts BigInt?
latestPostDate   DateTime? @​db.Timestamp(6)
user             User?
}

CREATE OR REPLACE VIEW "UserPostStats" AS
SELECT 
</tr></table> 

... (truncated)

Commits
  • 21765b0 fix: ORM-850 improve client options type performance (#27777)
  • 114dd96 fix(client): prisma-client generator with moduleFormat = "cjs" (#27828)
  • 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...
  • Additional commits viewable in compare view

Updates radashi from 12.6.0 to 12.6.2

Release notes

Sourced from radashi's releases.

v12.6.2

Fixed

  • (range) Ensure end parameter works when 0 in 9c8ffa0

v12.6.1

Fixed

  • (group) Use Object.create(null) for the returned object in 5db8c37
Changelog

Sourced from radashi's changelog.

[radashi@12.6.2] - 2025-08-20

Details

Fixed

  • (range) Ensure end parameter works when 0 in 9c8ffa0

[radashi@12.6.1] - 2025-08-09

Details

Fixed

  • (group) Use Object.create(null) for the returned object in 5db8c37
Commits
  • 7d519d3 chore(release): 12.6.2
  • 9c8ffa0 fix(range): ensure end parameter works when 0 (#432)
  • 2e880d5 chore(release): 12.6.1
  • 5db8c37 fix(group): use Object.create(null) for the returned object (#427)
  • 53f3e0e chore(docs): mention upperize and lowerize in the mapKeys docs
  • 1e3adbd chore: fix build badge in README-pt_br.md
  • 4787f81 chore(docs): fix broken link
  • 7d40c7d chore: fix typo in mdx file
  • 9d7964c chore: fix reference link
  • See full diff in compare view

Updates @biomejs/biome from 2.0.6 to 2.2.2

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.2.2

2.2.2

Patch Changes

  • #7266 b270bb5 Thanks @​ematipico! - Fixed an issue where Biome got stuck when analyzing some files. This is usually caused by a bug in the inference engine. Now Biome has some guards in place in case the number of types grows too much, and if that happens, a diagnostic is emitted and the inference is halted.

  • #7281 6436180 Thanks @​ematipico! - Fixed an issue where the function scanProject wouldn't work as expected.

  • #7285 1511d0c Thanks @​rriski! - Partially fixed #6782: JSX node kinds are now supported in GritQL AST nodes.

  • #7249 dff85c0 Thanks @​ematipico! - Fixed #748, where Biome Language Server didn't show the unsafe fixes when requesting the quick fixes. Now all LSP editors will show also opt-in, unsafe fixes.

  • #7266 b270bb5 Thanks @​ematipico! - Fixed #7020: Resolved an issue with analysing types of static member expressions involving unions. If the object type was a union that referenced nested unions, it would trigger an infinite loop as it tried to keep expanding nested unions, and the set of types would grow indefinitely.

  • #7209 679b70e Thanks @​patrickshipe! - Resolved an overcorrection in useImportExtensions when importing explicit index files.

    Imports that explicitly reference an index file are now preserved and no longer rewritten to nested index paths.

    Example

    // Before
    -      import "./sub/index";
    +      import "./sub/index/index.js";
    // After
    
    
     import &quot;./sub/index&quot;;
    
    
    
    
    
     import &quot;./sub/index.js&quot;;
    
    
    

  • #7270 953f9c6 Thanks @​arendjr! - Fixed #6172: Resolved an issue with inferring types for rest parameters. This issue caused rest-parameter types to be incorrect, and in some cases caused extreme performance regressions in files that contained many methods with rest-parameter definitions.

  • #7234 b7aa111 Thanks @​JeetuSuthar! - Fixed #7233: The useIndexOf rule now correctly suggests using indexOf() instead of findIndex().

    The diagnostic message was incorrectly recommending Array#findIndex() over Array#indexOf(), when it should recommend the opposite for simple equality checks.

  • #7283 0b07f45 Thanks @​ematipico! - Fixed #7236. Now Biome correctly migrates JSONC configuration files when they are passed using --config-path.

  • #7239 1d643d8 Thanks @​minht11! - Fixed an issue where Svelte globals ($state and so on) were not properly recognized inside .svelte.test.ts/js and .svelte.spec.ts/js files.

  • #7264 62fdbc8 Thanks @​ematipico! - Fixed a regression where when using --log-kind-pretty wasn't working anymore as expected.

  • #7244 660031b Thanks @​JeetuSuthar! - Fixed #7225: The noExtraBooleanCast rule now preserves parentheses when removing Boolean calls inside negations.

    // Before
    !Boolean(b0 && b1);
    // After
    !(b0 && b1); // instead of !b0 && b1

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.2.2

Patch Changes

  • #7266 b270bb5 Thanks @​ematipico! - Fixed an issue where Biome got stuck when analyzing some files. This is usually caused by a bug in the inference engine. Now Biome has some guards in place in case the number of types grows too much, and if that happens, a diagnostic is emitted and the inference is halted.

  • #7281 6436180 Thanks @​ematipico! - Fixed an issue where the function scanProject wouldn't work as expected.

  • #7285 1511d0c Thanks @​rriski! - Partially fixed #6782: JSX node kinds are now supported in GritQL AST nodes.

  • #7249 dff85c0 Thanks @​ematipico! - Fixed #748, where Biome Language Server didn't show the unsafe fixes when requesting the quick fixes. Now all LSP editors will show also opt-in, unsafe fixes.

  • #7266 b270bb5 Thanks @​ematipico! - Fixed #7020: Resolved an issue with analysing types of static member expressions involving unions. If the object type was a union that referenced nested unions, it would trigger an infinite loop as it tried to keep expanding nested unions, and the set of types would grow indefinitely.

  • #7209 679b70e Thanks @​patrickshipe! - Resolved an overcorrection in useImportExtensions when importing explicit index files.

    Imports that explicitly reference an index file are now preserved and no longer rewritten to nested index paths.

    Example

    // Before
    -      import "./sub/index";
    +      import "./sub/index/index.js";
    // After
    
    
     import &quot;./sub/index&quot;;
    
    
    
    
    
     import &quot;./sub/index.js&quot;;
    
    
    

  • #7270 953f9c6 Thanks @​arendjr! - Fixed #6172: Resolved an issue with inferring types for rest parameters. This issue caused rest-parameter types to be incorrect, and in some cases caused extreme performance regressions in files that contained many methods with rest-parameter definitions.

  • #7234 b7aa111 Thanks @​JeetuSuthar! - Fixed #7233: The useIndexOf rule now correctly suggests using indexOf() instead of findIndex().

    The diagnostic message was incorrectly recommending Array#findIndex() over Array#indexOf(), when it should recommend the opposite for simple equality checks.

  • #7283 0b07f45 Thanks @​ematipico! - Fixed #7236. Now Biome correctly migrates JSONC configuration files when they are passed using --config-path.

  • #7239 1d643d8 Thanks @​minht11! - Fixed an issue where Svelte globals ($state and so on) were not properly recognized inside .svelte.test.ts/js and .svelte.spec.ts/js files.

  • #7264 62fdbc8 Thanks @​ematipico! - Fixed a regression where when using --log-kind-pretty wasn't working anymore as expected.

  • #7244 660031b Thanks @​JeetuSuthar! - Fixed #7225: The noExtraBooleanCast rule now preserves parentheses when removing Boolean calls inside negations.

    // Before
    !Boolean(b0 && b1);
    // After
    !(b0 && b1); // instead of !b0 && b1

... (truncated)

Commits

Updates @types/bun from 1.2.18 to 1.2.20

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

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 bun group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@elysiajs/eden](https://github.com/elysiajs/eden) | `1.3.2` | `1.3.3` |
| [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) | `6.11.1` | `6.14.0` |
| [chalk](https://github.com/chalk/chalk) | `5.4.1` | `5.6.0` |
| [elysia](https://github.com/elysiajs/elysia) | `1.3.5` | `1.3.20` |
| [jose](https://github.com/panva/jose) | `6.0.11` | `6.0.13` |
| [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) | `6.11.1` | `6.14.0` |
| [radashi](https://github.com/radashi-org/radashi) | `12.6.0` | `12.6.2` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.0.6` | `2.2.2` |
| [@types/bun](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/bun) | `1.2.18` | `1.2.20` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.8.3` | `5.9.2` |



Updates `@elysiajs/eden` from 1.3.2 to 1.3.3
- [Release notes](https://github.com/elysiajs/eden/releases)
- [Changelog](https://github.com/elysiajs/eden/blob/main/CHANGELOG.md)
- [Commits](elysiajs/eden@1.3.2...1.3.3)

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

Updates `chalk` from 5.4.1 to 5.6.0
- [Release notes](https://github.com/chalk/chalk/releases)
- [Commits](chalk/chalk@v5.4.1...v5.6.0)

Updates `elysia` from 1.3.5 to 1.3.20
- [Release notes](https://github.com/elysiajs/elysia/releases)
- [Changelog](https://github.com/elysiajs/elysia/blob/main/CHANGELOG.md)
- [Commits](elysiajs/elysia@1.3.5...1.3.20)

Updates `jose` from 6.0.11 to 6.0.13
- [Release notes](https://github.com/panva/jose/releases)
- [Changelog](https://github.com/panva/jose/blob/main/CHANGELOG.md)
- [Commits](panva/jose@v6.0.11...v6.0.13)

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

Updates `radashi` from 12.6.0 to 12.6.2
- [Release notes](https://github.com/radashi-org/radashi/releases)
- [Changelog](https://github.com/radashi-org/radashi/blob/main/CHANGELOG.md)
- [Commits](radashi-org/radashi@v12.6.0...v12.6.2)

Updates `@biomejs/biome` from 2.0.6 to 2.2.2
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.2.2/packages/@biomejs/biome)

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

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)

---
updated-dependencies:
- dependency-name: "@elysiajs/eden"
  dependency-version: 1.3.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bun
- dependency-name: "@prisma/client"
  dependency-version: 6.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: bun
- dependency-name: chalk
  dependency-version: 5.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: bun
- dependency-name: elysia
  dependency-version: 1.3.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bun
- dependency-name: jose
  dependency-version: 6.0.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bun
- dependency-name: prisma
  dependency-version: 6.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: bun
- dependency-name: radashi
  dependency-version: 12.6.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bun
- dependency-name: "@biomejs/biome"
  dependency-version: 2.2.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bun
- dependency-name: "@types/bun"
  dependency-version: 1.2.20
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: bun
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bun
...

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 Aug 25, 2025
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Aug 25, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Join our Discord community for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR/Issue comments)

Type @coderabbitai help to get the list of available commands.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Status, Documentation and Community

  • Visit our Status Page to check the current availability of CodeRabbit.
  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 15, 2025

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

@dependabot dependabot bot closed this Sep 15, 2025
@dependabot dependabot bot deleted the dependabot/bun/bun-4840c5530d branch September 15, 2025 01:26
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