Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 29, 2025

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

Package From To
@elysiajs/bearer 1.3.0 1.4.1
@elysiajs/jwt 1.3.1 1.4.0
@sinclair/typebox 0.34.34 0.34.41
chalk 5.4.1 5.6.2
drizzle-orm 0.44.2 0.44.5
elysia 1.3.5 1.4.9
jose 6.0.11 6.1.0
radashi 12.6.0 12.6.2
@biomejs/biome 2.0.6 2.2.4
@types/node 24.0.10 24.5.2
bun-types 1.2.18 1.2.23
drizzle-kit 0.31.4 0.31.5
typescript 5.8.3 5.9.2
vitepress 1.6.3 1.6.4

Updates @elysiajs/bearer from 1.3.0 to 1.4.1

Release notes

Sourced from @​elysiajs/bearer's releases.

1.4.1

What's changed

Bug fix:

  • Fix issue with multiple bearer tokens in query parameters

Full Changelog: elysiajs/elysia-bearer@1.4.0...1.4.1

1.4.0

What's changed

Improvement:

  • support Elysia 1.4

Full Changelog: elysiajs/elysia-bearer@1.3.0...1.4.0

Changelog

Sourced from @​elysiajs/bearer's changelog.

1.4.1 - 13 Sep 2025

Bug fix:

  • Fix issue with multiple bearer tokens in query parameters

1.3.0-exp.0 - 23 Apr 2025

Change:

  • Add support for Elysia 1.3

1.2.0-rc.0 - 23 Dec 2024

Change:

  • Add support for Elysia 1.2

1.1.2 - 5 Sep 2024

Feature:

  • add provenance publish

1.1.1 - 16 Jul 2024

Change:

  • Accept only first bearer query

1.1.0 - 16 Jul 2024

Change:

  • Add support for Elysia 1.1

1.1.0-rc.0 - 12 Jul 2024

Change:

  • Add support for Elysia 1.1

1.0.2 - 18 Mar 2024

Change:

  • Add support for Elysia 1.0

1.0.0 - 16 Mar 2024

Change:

  • Add support for Elysia 1.0

1.0.0-rc.0 - 1 Mar 2024

Change:

  • Add support for Elysia 1.0

1.0.0-beta.1 - 17 Feb 2024

Change:

  • Add support for Elysia 1.0

... (truncated)

Commits

Updates @elysiajs/jwt from 1.3.1 to 1.4.0

Release notes

Sourced from @​elysiajs/jwt's releases.

1.4.0

What's changed

Improvement:

  • support Elysia 1.4

Full Changelog: elysiajs/elysia-jwt@1.3.3...1.4.0

1.3.3

What's Changed

Feature:

  • #110 add optional, typed 'options' argument to jwt.verify() and pass to jose jwtVerify() if present by @​jmlow

Bug fix:

New Contributors

Full Changelog: elysiajs/elysia-jwt@1.3.2...1.3.3

1.3.2

What's Changed

New Contributors

Full Changelog: elysiajs/elysia-jwt@1.3.1...1.3.2

Changelog

Sourced from @​elysiajs/jwt's changelog.

1.3.3 - 14 Jul 2025

Feature:

  • #110 add optional, typed 'options' argument to jwt.verify() and pass to jose jwtVerify() if present

Bug fix:

  • #109 type inconsistencies in JWT payload and improve schema-based inference
  • #107 correct iat claim handling and expand allowed claim value type
  • #105 adjust README in regard to the cookie plugin

1.3.2 - 14 Jul 2025

Bug fix:

  • #104 Resolve various issues with payload, schema, and types
  • #101 Closes Config exp not encoded in payload
  • #23 Closes bug sign args exp type
  • #98 Closes verify fails when using schema in Elysia JWT plugin
  • #52 Closes iat Type inconsistency
  • #36 Closes upgrade dependency "jose" to latest version to fix issues
  • #19 Closes Header Parameter is stored in the payload instead of header
Commits
  • c1ef884 🧹 chore: bump version
  • c6e97f0 📘 doc: typo
  • ac0313b 🔧 fix: error
  • 964cd55 Merge pull request #108 from kimzuni/fix/nbf-exp-iat-handling
  • ad918c4 Merge pull request #105 from codemusings/readme-fix-cookie
  • 72dd9a3 Merge branch 'main' into fix/nbf-exp-iat-handling
  • 70590fa Merge pull request #109 from kimzuni/fix/jwt-payload-types
  • 9ac6676 Merge pull request #110 from jmlow/support-options-for-jwt-verify
  • 9078f60 Pull 'await' out of ternary operator
  • ce5f397 Add typed 'options' argument to jwt.verify(), then pass to jose verifyJwt()
  • Additional commits viewable in compare view

Updates @sinclair/typebox from 0.34.34 to 0.34.41

Commits

Updates chalk from 5.4.1 to 5.6.2

Release notes

Sourced from chalk's releases.

v5.6.2

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 drizzle-orm from 0.44.2 to 0.44.5

Release notes

Sourced from drizzle-orm's releases.

0.44.5

  • Fixed invalid usage of .one() in durable-sqlite session
  • Fixed spread operator related crash in sqlite blob columns
  • Better browser support for sqlite blob columns
  • Improved sqlite blob mapping

0.44.4

0.44.3

  • Fixed types of $client for clients created by drizzle function
await db.$client.[...]
  • Added the updated_at column to the neon_auth.users_sync table definition.
Commits

Updates elysia from 1.3.5 to 1.4.9

Release notes

Sourced from elysia's releases.

1.4.9

What's Changed

Improvement:

Full Changelog: elysiajs/elysia@1.4.8...1.4.9

1.4.8

What's Changed

Improvement:

  • automatically clear up sucrose cache when not used
  • remove Bun.hash from checksum calculation

Change:

  • make file-type optional to reduce bundle size
  • #1432 missing context (set) in mapResponse for ElysiaFile
  • #1435 missing cookies in SSE

New Contributors

Full Changelog: elysiajs/elysia@1.4.7...1.4.8

1.4.7

Good morning, Cloudflare

You can now run Elysia on Cloudflare Worker

What's changed

Feature:

  • experimental adapter/cloudflare-worker
  • add ElysiaAdapter.beforeCompile

Change:

  • do not prettify routes when using guard, group
  • use process.getBuiltinModule instead of dynamic import for file
  • Elysia.file.value on Web Standard Adapter now is not a promise

Full Changelog: elysiajs/elysia@1.4.6...1.4.7

1.4.6

What's changed

Improvement:

... (truncated)

Changelog

Sourced from elysia's changelog.

1.4.9 - 29 Sep 2025

Improvement:

  • add Cloudflare Worker test
  • add Sucrose.Settings
  • #1443 add knip for detecting deadcode

1.4.8 - 27 Sep 2025

Improvement:

  • automatically clear up sucrose cache when not used
  • remove Bun.hash from checksum calculation

Change:

  • make file-type optional to reduce bundle size
  • #1432 missing context (set) in mapResponse for ElysiaFile
  • #1435 missing cookies in SSE

1.4.7 - 22 Sep 2025

Feature:

  • experimental adapter/cloudflare-worker
  • add ElysiaAdapter.beforeCompile

Change:

  • do not prettify routes when using guard, group
  • use process.getBuiltinModule instead of dynamic import for file
  • Elysia.file.value on Web Standard Adapter now is not a promise

1.4.6 - 18 Sep 2025

Improvement:

  • #1406 strictly check for 200 inline status code
  • coerce union status value and return type
  • add BunHTMLBundleLike to Elysia inline handler
  • #1405 prevent Elysia from being a dependency of itself
  • #1416 check if object is frozen before merging, add try-catch to prevent crash
  • #1419 guard doesn't apply scoped/global schema to object macro
  • #1425 DELETE doesn't inherit derive/resolve type

Change:

  • #1409 onTransform now doesn't include type as it isn't validated yet, creating confusion

Bug fix:

  • #1410 handle union derive/resolve property
  • probably fix mergeDeep attempted to assign to readonly property
  • derive/resolve inherit type in inline handler

1.4.5 - 15 Sep 2025

Improvement:

  • soundness for guard, group
  • overwrite primitive value if collide (intersectIfObject)

Bug fix:

... (truncated)

Commits
  • 668c7a1 📘 doc: update CHANGELOG
  • cb68973 🧹 chore(ci): it's probably from Sucrose.gcTime thing
  • a6c1679 🧹 chore(ci): bro I forgot to hit save
  • 4d616b1 🧹 chore(ci): add timeout
  • c9e0921 🧹 chore(ci): uh I accidentally bulk replace this?
  • dea3c8a 🧹 chore(ci): maybe this work
  • 044f5e7 🧹 chore(ci): try remove test:node
  • 4a2b445 🧹 chore(ci): revert test:node as it's stuck for some reason
  • 65b399b 🧹 chore(ci): tbh I have no idea what's going
  • d6347c2 🎉 feat: tsc stuck?
  • Additional commits viewable in compare view

Updates jose from 6.0.11 to 6.1.0

Release notes

Sourced from jose's releases.

v6.1.0

Features

  • support AKP JWKs in calculateJwkThumbprint and calculateJwkThumbprintUri (cf2092a)
  • support for the ML-DSA PQC Algorithm Identifiers (25ddce4)

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.1.0 (2025-08-27)

Features

  • support AKP JWKs in calculateJwkThumbprint and calculateJwkThumbprintUri (cf2092a)
  • support for the ML-DSA PQC Algorithm Identifiers (25ddce4)

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
  • 6f3e004 chore(release): 6.1.0
  • 25ddce4 feat: support for the ML-DSA PQC Algorithm Identifiers
  • cf2092a feat: support AKP JWKs in calculateJwkThumbprint and calculateJwkThumbprintUri
  • 2c519cc chore: cleanup after release
  • 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
  • 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.4

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.2.4

2.2.4

Patch Changes

  • #7453 aa8cea3 Thanks @​arendjr! - Fixed #7242: Aliases specified in package.json's imports section now support having multiple targets as part of an array.

  • #7454 ac17183 Thanks @​arendjr! - Greatly improved performance of noImportCycles by eliminating allocations.

    In one repository, the total runtime of Biome with only noImportCycles enabled went from ~23s down to ~4s.

  • #7447 7139aad Thanks @​rriski! - Fixes #7446. The GritQL $... spread metavariable now correctly matches members in object literals, aligning its behavior with arrays and function calls.

  • #6710 98cf9af Thanks @​arendjr! - Fixed #4723: Type inference now recognises index signatures and their accesses when they are being indexed as a string.

    Example

    type BagOfPromises = {
      // This is an index signature definition. It declares that instances of type
      // `BagOfPromises` can be indexed using arbitrary strings.
      [property: string]: Promise<void>;
    };
    let bag: BagOfPromises = {};
    // Because bag.iAmAPromise is equivalent to bag[&quot;iAmAPromise&quot;], this is
    // considered an access to the string index, and a Promise is expected.
    bag.iAmAPromise;

  • #7415 d042f18 Thanks @​qraqras! - Fixed #7212, now the useOptionalChain rule recognizes optional chaining using typeof (e.g., typeof foo !== 'undefined' && foo.bar).

  • #7419 576baf4 Thanks @​Conaclos! - Fixed #7323. noUnusedPrivateClassMembers no longer reports as unused TypeScript private members if the rule encounters a computed access on this.

    In the following example, member as previously reported as unused. It is no longer reported.

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.2.4

Patch Changes

  • #7453 aa8cea3 Thanks @​arendjr! - Fixed #7242: Aliases specified in package.json's imports section now support having multiple targets as part of an array.

  • #7454 ac17183 Thanks @​arendjr! - Greatly improved performance of noImportCycles by eliminating allocations.

    In one repository, the total runtime of Biome with only noImportCycles enabled went from ~23s down to ~4s.

  • #7447 7139aad Thanks @​rriski! - Fixes #7446. The GritQL $... spread metavariable now correctly matches members in object literals, aligning its behavior with arrays and function calls.

  • #6710 98cf9af Thanks @​arendjr! - Fixed #4723: Type inference now recognises index signatures and their accesses when they are being indexed as a string.

    Example

    type BagOfPromises = {
      // This is an index signature definition. It declares that instances of type
      // `BagOfPromises` can be indexed using arbitrary strings.
      [property: string]: Promise<void>;
    };
    let bag: BagOfPromises = {};
    // Because bag.iAmAPromise is equivalent to bag[&quot;iAmAPromise&quot;], this is
    // considered an access to the string index, and a Promise is expected.
    bag.iAmAPromise;

  • #7415 d042f18 Thanks @​qraqras! - Fixed #7212, now the useOptionalChain rule recognizes optional chaining using typeof (e.g., typeof foo !== 'undefined' && foo.bar).

  • #7419 576baf4 Thanks @​Conaclos! - Fixed #7323. noUnusedPrivateClassMembers no longer reports as unused TypeScript private members if the rule encounters a computed access on this.

    In the following example, member as previously reported as unused. It is no longer reported.

    class TsBioo {
      private member: number;
    set_with_name(name: string, value: number) {
    this[name] = value;
    }
    }

... (truncated)

Commits

Updates @types/node from 24.0.10 to 24.5.2

Commits

Updates bun-types from 1.2.18 to 1.2.23

Release notes

Sourced from bun-types's releases.

Bun v1.2.23

To install Bun v1.2.23

curl -fsSL https://bun.sh/install | bash
# or you can use npm
# npm install -g bun

Windows:

powershell -c "irm bun.sh/install.ps1|iex"

To upgrade to Bun v1.2.23:

bun upgrade

Read Bun v1.2.23's release notes on Bun's blog

Thanks to 16 contributors!

Bun v1.2.22

To install Bun v1.2.22

curl -fsSL https://bun.sh/install | bash
# or you can use npm
# npm install -g bun

Windows:

powershell -c "irm bun.sh/install.ps1|iex"
</tr></table> 

... (truncated)

Commits

Updates drizzle-kit from 0.31.4 to 0.31.5

Release notes

Sourced from drizzle-kit's releases.

drizzle-kit@0.31.5

  • Add casing support to studio configuration and related functions
Commits

Updates typescript from 5.8.3 to 5.9.2

Release notes

Sourced from typescript's releases.

TypeScript 5.9

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9 RC

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9 Beta

For release notes, check out the release announcement.

Downloads are available on:

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

Updates vitepress from 1.6.3 to 1.6.4

Changelog

Sourced from vitepress's changelog.

1.6.4 (2025-08-05)

Commits

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 14 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@elysiajs/bearer](https://github.com/elysiajs/elysia-bearer) | `1.3.0` | `1.4.1` |
| [@elysiajs/jwt](https://github.com/elysiajs/elysia-jwt) | `1.3.1` | `1.4.0` |
| [@sinclair/typebox](https://github.com/sinclairzx81/typebox) | `0.34.34` | `0.34.41` |
| [chalk](https://github.com/chalk/chalk) | `5.4.1` | `5.6.2` |
| [drizzle-orm](https://github.com/drizzle-team/drizzle-orm) | `0.44.2` | `0.44.5` |
| [elysia](https://github.com/elysiajs/elysia) | `1.3.5` | `1.4.9` |
| [jose](https://github.com/panva/jose) | `6.0.11` | `6.1.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.4` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.0.10` | `24.5.2` |
| [bun-types](https://github.com/oven-sh/bun/tree/HEAD/packages/bun-types) | `1.2.18` | `1.2.23` |
| [drizzle-kit](https://github.com/drizzle-team/drizzle-orm) | `0.31.4` | `0.31.5` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.8.3` | `5.9.2` |
| [vitepress](https://github.com/vuejs/vitepress) | `1.6.3` | `1.6.4` |



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

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

Updates `@sinclair/typebox` from 0.34.34 to 0.34.41
- [Commits](sinclairzx81/typebox@0.34.34...0.34.41)

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

Updates `drizzle-orm` from 0.44.2 to 0.44.5
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](drizzle-team/drizzle-orm@0.44.2...0.44.5)

Updates `elysia` from 1.3.5 to 1.4.9
- [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.4.9)

Updates `jose` from 6.0.11 to 6.1.0
- [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.1.0)

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.4
- [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.4/packages/@biomejs/biome)

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

Updates `bun-types` from 1.2.18 to 1.2.23
- [Release notes](https://github.com/oven-sh/bun/releases)
- [Commits](https://github.com/oven-sh/bun/commits/bun-v1.2.23/packages/bun-types)

Updates `drizzle-kit` from 0.31.4 to 0.31.5
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](https://github.com/drizzle-team/drizzle-orm/compare/drizzle-kit@0.31.4...drizzle-kit@0.31.5)

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

Updates `vitepress` from 1.6.3 to 1.6.4
- [Release notes](https://github.com/vuejs/vitepress/releases)
- [Changelog](https://github.com/vuejs/vitepress/blob/v1.6.4/CHANGELOG.md)
- [Commits](vuejs/vitepress@v1.6.3...v1.6.4)

---
updated-dependencies:
- dependency-name: "@elysiajs/bearer"
  dependency-version: 1.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: bun
- dependency-name: "@elysiajs/jwt"
  dependency-version: 1.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: bun
- dependency-name: "@sinclair/typebox"
  dependency-version: 0.34.41
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bun
- dependency-name: chalk
  dependency-version: 5.6.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: bun
- dependency-name: drizzle-orm
  dependency-version: 0.44.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bun
- dependency-name: elysia
  dependency-version: 1.4.9
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: bun
- dependency-name: jose
  dependency-version: 6.1.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.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bun
- dependency-name: "@types/node"
  dependency-version: 24.5.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bun
- dependency-name: bun-types
  dependency-version: 1.2.23
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: bun
- dependency-name: drizzle-kit
  dependency-version: 0.31.5
  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
- dependency-name: vitepress
  dependency-version: 1.6.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  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 Sep 29, 2025
Copy link
Contributor

coderabbitai bot commented Sep 29, 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.


Comment @coderabbitai help to get the list of available commands and usage tips.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants