Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): bump the all group across 1 directory with 12 updates #371

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 16, 2024

Bumps the all group with 12 updates in the /api directory:

Package From To
@libsql/client 0.6.2 0.14.0
@passwordless-id/webauthn 1.6.1 2.1.2
drizzle-orm 0.31.2 0.38.2
hono 4.6.5 4.6.14
toucan-js 3.4.0 4.0.0
tsx 4.15.7 4.19.2
zod 3.23.8 3.24.1
@biomejs/biome 1.8.2 1.9.4
@cloudflare/workers-types 4.20240620.0 4.20241205.0
drizzle-kit 0.22.7 0.30.1
typescript 5.5.2 5.7.2
wrangler 3.61.0 3.95.0

Updates @libsql/client from 0.6.2 to 0.14.0

Changelog

Sourced from @​libsql/client's changelog.

Changelog

0.15.0-pre.1 -- 2024-11-15

  • Initial support for offline writes.

0.12.0 -- 2024-09-16

  • Upgrade hrana-client-ts to latest 0.7.0 version which has stable isomorphic-fetch implementation (see libsql/hrana-client-ts#19)

0.11.0 -- 2024-09-13

0.10.0 -- 2024-08-26

  • Add a migrate() API that can be used to do migrations on both schema databases and regular databases. It is mostly dedicated to schema migration tools.

0.8.1 -- 2024-08-03

  • Fix embedded replica sync WAL index path name , which caused "No such file or directory" for local sync in some cases (#244).

0.8.0 -- 2024-07-30

  • No changes from 0.8.0-pre.1.

0.8.0-pre.1 -- 2024-07-18

0.7.0 -- 2024-06-25

  • Add configurable concurrency limit for parallel query execution (defaults to 20) to address socket hangup errors.
Commits

Updates @passwordless-id/webauthn from 1.6.1 to 2.1.2

Release notes

Sourced from @​passwordless-id/webauthn's releases.

2.1.2

No release notes provided.

2.1.1

No release notes provided.

2.1.0

No release notes provided.

2.0.4

No release notes provided.

2.0.3

No release notes provided.

2.0.2

  • autocomplete flag and isAutocompleteAvailable()
  • allowCredentials also accepts list of credentials ids instead of {id: ..., transports: ...}
  • transports also returned as part of registration

2.0.1

  • Fixed type coutner => counter
  • Attempt at CommonJS build fix

2.0.0

At last, the new version is here! It now supports the most recent features like conditional UI and hints, has defaults that better support security keys and uses the default intermediate JSON format for a better interop with other libraries. For more details, consult the docs at https://webauthn.passwordless.id

1.6.2

No release notes provided.

Commits

Updates drizzle-orm from 0.31.2 to 0.38.2

Release notes

Sourced from drizzle-orm's releases.

0.38.2

New features

USE INDEX, FORCE INDEX and IGNORE INDEX for MySQL

In MySQL, the statements USE INDEX, FORCE INDEX, and IGNORE INDEX are hints used in SQL queries to influence how the query optimizer selects indexes. These hints provide fine-grained control over index usage, helping optimize performance when the default behavior of the optimizer is not ideal.

Use Index

The USE INDEX hint suggests to the optimizer which indexes to consider when processing the query. The optimizer is not forced to use these indexes but will prioritize them if they are suitable.

export const users = mysqlTable('users', {
  id: int('id').primaryKey(),
  name: varchar('name', { length: 100 }).notNull(),
}, () => [usersTableNameIndex]);
const usersTableNameIndex = index('users_name_index').on(users.name);
await db.select()
.from(users, { useIndex: usersTableNameIndex })
.where(eq(users.name, 'David'));

Ignore Index

The IGNORE INDEX hint tells the optimizer to avoid using specific indexes for the query. MySQL will consider all other indexes (if any) or perform a full table scan if necessary.

export const users = mysqlTable('users', {
  id: int('id').primaryKey(),
  name: varchar('name', { length: 100 }).notNull(),
}, () => [usersTableNameIndex]);
const usersTableNameIndex = index('users_name_index').on(users.name);
await db.select()
.from(users, { ignoreIndex: usersTableNameIndex })
.where(eq(users.name, 'David'));

Force Index

The FORCE INDEX hint forces the optimizer to use the specified index(es) for the query. If the specified index cannot be used, MySQL will not fall back to other indexes; it might resort to a full table scan instead.

export const users = mysqlTable('users', {
  id: int('id').primaryKey(),
  name: varchar('name', { length: 100 }).notNull(),
}, () => [usersTableNameIndex]);
</tr></table> 

... (truncated)

Commits
  • 10d2230 Merge pull request #3760 from drizzle-team/beta
  • fe986e6 Merge branch 'main' of github.com:drizzle-team/drizzle-orm into beta
  • 3572f21 Add release notes
  • 7cd9d79 Merge pull request #3693 from drizzle-team/feature/mysql-force-index
  • d9d234e Merge branch 'beta' into feature/mysql-force-index
  • 21dab20 Merge pull request #3705 from drizzle-team/drizzle-kit/export-sql
  • 5ba9147 Merge branch 'beta' into drizzle-kit/export-sql
  • 866c257 Merge pull request #3750 from drizzle-team/beta
  • d379dcf dprint
  • 54d5e5e Release Notes
  • Additional commits viewable in compare view

Updates hono from 4.6.5 to 4.6.14

Release notes

Sourced from hono's releases.

v4.6.14

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.6.13...v4.6.14

v4.6.13

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.6.12...v4.6.13

v4.6.12

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.6.11...v4.6.12

v4.6.11

What's Changed

... (truncated)

Commits
  • 4eb101d v4.6.14
  • dffd60f fix(streaming) Prevent console.error(undefined) (#3747)
  • baa231e fix: Remove charset parameter from MIME type of application/json (#3743)
  • 47bb23c perf(trie-router): avoid calling spread operator for Object.create(null) (#...
  • 979510f perf(pattern-router): improve performance when create null object (#3730)
  • 50ff212 v4.6.13
  • af5affc fix(utils/ipaddr): support IPv6-mapped IPv4 address (#3727)
  • fc8fb0f fix(middleware/cors): explicitly return No Content for statusText in options ...
  • 80c7e22 chore(cloudflare-workers): Add Cloudflare Static Assets reference to serveSta...
  • 4af04a6 fix(aws-lambda): Fix query string handling for v1 (#3717)
  • Additional commits viewable in compare view

Updates toucan-js from 3.4.0 to 4.0.0

Release notes

Sourced from toucan-js's releases.

[email protected]

Major Changes

  • fce854c and c29ddfa: This release upgrades the underlying Sentry SDKs to v8.

    • Toucan now extends ScopeClass instead of Hub.
    • Class-based integrations have been removed in Sentry v8. Toucan adapts to this change by renaming:
      • Dedupe integration to dedupeIntegration
      • ExtraErrorData integration to extraErrorDataIntegration
      • RewriteFrames integration to rewriteFramesIntegration
      • SessionTiming integration to sessionTimingIntegration
      • LinkedErrors integration to linkedErrorsIntegration
      • RequestData integration to requestDataIntegration
    • Additionally, Transaction integration is no longer provided.
    • Toucan instance can now be deeply copied using Toucan.clone().

    Refer to Sentry v8 release notes and Sentry v7->v8 for additional context.

Special shout-out to @​timfish for their contribution 🚀

Commits

Updates tsx from 4.15.7 to 4.19.2

Release notes

Sourced from tsx's releases.

v4.19.2

4.19.2 (2024-10-26)

Bug Fixes

  • generate sourcesContent when Node.js debugger is enabled (#670) (7c47074)

This release is also available on:

v4.19.1

4.19.1 (2024-09-12)

Bug Fixes


This release is also available on:

v4.19.0

4.19.0 (2024-08-27)

Features

  • watch: deprecate ignore flag in favor or exclude flag (157c3ec)

This release is also available on:

v4.18.0

4.18.0 (2024-08-24)

... (truncated)

Commits
  • 7c47074 fix: generate sourcesContent when Node.js debugger is enabled (#670)
  • 315d5f4 docs(watch): document --include flag
  • 375e39a test: refactor enforce-timeout
  • 524cb77 docs(cjs): add compilation caveats
  • 7f8a051 chore(deps): update dependency node to v20.18.0 (#660)
  • 97e8de0 chore: upgrade pnpm
  • 95d2b0f chore: remove commit hooks
  • 0161078 docs: add prisma as a premium sponsor
  • 09f9532 chore(docs): fix typo (#655)
  • 0329bfc fix(cjs): patch module.path for accurate cache ID
  • Additional commits viewable in compare view

Updates zod from 3.23.8 to 3.24.1

Release notes

Sourced from zod's releases.

v3.24.1

Commits:

  • 0c6cbbdd1315683dd3d589fbdc5765c26431dcc9 Undeprecate .nonempty()
  • 4e219d6ad9d5e56e20afd7423092f506400a29e4 Bump min TS version to 5.0
  • 65adeeacef0274abbda5438470a3d2bfd376256d v3.24.1

v3.24.0

Implement @standard-schema/spec

This is the first version of Zod to implement the Standard Schema spec. This is a new community effort among several validation library authors to implement a common interface, with the goal of simplifying the process of integrating schema validators with the rest of the ecosystem. Read more about the project and goals here.

z.string().jwt()

Thanks to @​Mokshit06 and @​Cognition-Labs for this contribution!

To verify that a string is a valid 3-part JWT.

z.string().jwt();

⚠️ This does not verify your JWT cryptographically! It merely ensures its in the proper format. Use a library like jsonwebtoken to verify the JWT signature, parse the token, and read the claims.

To constrain the JWT to a specific algorithm:

z.string().jwt({ alg: "RS256" });

z.string().base64url()

Thank you to @​marvinruder!

To complement the JWT validation, Zod 3.24 implements a standalone .base64url() string validation API. (The three elements of JWTs are base64url-encoded JSON strings.)

z.string().base64url()

This functionality is available along the standard z.string().base64() validator added in Zod 3.23.

z.string().cidr()

Thanks to @​wataryooou for their work on this!

A validator for CIDR notation for specifying IP address ranges, e.g. 192.24.12.0/22.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by colinhacks, a new releaser for zod since your current version.


Updates @biomejs/biome from 1.8.2 to 1.9.4

Release notes

Sourced from @​biomejs/biome's releases.

CLI v1.9.4

Analyzer

Bug fixes

  • Improved the message for unused suppression comments. Contributed by @​dyc3

  • Fix #4228, where the rule a11y/noInteractiveElementToNoninteractiveRole incorrectly reports a role for non-interactive elements. Contributed by @​eryue0220

  • noSuspiciousSemicolonInJsx now catches suspicious semicolons in React fragments. Contributed by @​vasucp1207

CLI

Enhancements

  • The --summary reporter now reports parsing diagnostics too. Contributed by @​ematipico

  • Improved performance of GritQL queries by roughly 25-30%. Contributed by @​arendjr

Configuration

Bug fixes

  • Fix an issue where the JSON schema marked lint rules options as mandatory. Contributed by @​ematipico

Formatter

Bug fixes

  • Fix #4121. Respect line width when printing multiline strings. Contributed by @​ah-yu

Linter

New features

Bug Fixes

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

v1.9.4 (2024-10-17)

Analyzer

Bug fixes

  • Implement GraphQL suppression action. Contributed by @​vohoanglong0107

  • Improved the message for unused suppression comments. Contributed by @​dyc3

  • Fix #4228, where the rule a11y/noInteractiveElementToNoninteractiveRole incorrectly reports a role for non-interactive elements. Contributed by @​eryue0220

  • noSuspiciousSemicolonInJsx now catches suspicious semicolons in React fragments. Contributed by @​vasucp1207

  • The syntax rule noTypeOnlyImportAttributes now ignores .cts files (#4361).

    Since TypeScript 5.3, type-only imports can be associated to an import attribute in CommonJS-enabled files. See the TypeScript docs.

    The following code is no longer reported as a syntax error:

    import type { TypeFromRequire } from "pkg" with {
        "resolution-mode": "require"
    };

    Note that this is only allowed in files ending with the cts extension.

    Contributed by @​Conaclos

CLI

Enhancements

  • The --summary reporter now reports parsing diagnostics too. Contributed by @​ematipico

  • Improved performance of GritQL queries by roughly 25-30%. Contributed by @​arendjr

Configuration

Bug fixes

  • Fix an issue where the JSON schema marked lint rules options as mandatory. Contributed by @​ematipico

Editors

Formatter

Bug fixes

... (truncated)

Commits

Updates @cloudflare/workers-types from 4.20240620.0 to 4.20241205.0

Commits

Updates drizzle-kit from 0.22.7 to 0.30.1

Release notes

Sourced from drizzle-kit's releases.

[email protected]

New Features

drizzle-kit export

To make drizzle-kit integration with other migration tools, like Atlas much easier, we've prepared a new command called export. It will translate your drizzle schema in SQL representation(DDL) statements and outputs to the console

// schema.ts
import { pgTable, serial, text } from 'drizzle-orm/pg-core'
export const users = pgTable('users', {
id: serial('id').primaryKey(),
email: text('email').notNull(),
name: text('name')
});

Running

npx drizzle-kit export

will output this string to console

CREATE TABLE "users" (
        "id" serial PRIMARY KEY NOT NULL,
        "email" text NOT NULL,
        "name" text
);

By default, the only option for now is --sql, so the output format will be SQL DDL statements. In the future, we will support additional output formats to accommodate more migration tools

npx drizzle-kit export --sql

[email protected]

Starting from this update, the PostgreSQL dialect will align with the behavior of all other dialects. It will no longer include IF NOT EXISTS, $DO, or similar statements, which could cause incorrect DDL statements to not fail when an object already exists in the database and should actually fail.

This change marks our first step toward several major upgrades we are preparing:

  • An updated and improved migration workflow featuring commutative migrations, a revised folder structure, and enhanced collaboration capabilities for migrations.
  • Better support for Xata migrations.
  • Compatibility with CockroachDB (achieving full compatibility will only require removing serial fields from the migration folder).

[email protected]

  • Fix SingleStore generate migrations command

[email protected]

... (truncated)

Commits

Updates typescript from 5.5.2 to 5.7.2

Release notes

Sourced from typescript's releases.

TypeScript 5.7

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.7 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.7 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

... (truncated)

Commits
  • d701d90 Bump version to 5.7.2 and LKG
  • 0503a63 🤖 Pick PR #60450 (Move to file: fix detection of refe...) into release-5.7 (#...
  • 3140dbb 🤖 Pick PR #60488 (Stub out copilotRelated command) into release-5.7 (#60495)
  • c1216de Update LKG
  • 3ee2b95 🤖 Pick PR #60415 (Fix false positive rewriteRelativeI...) into release-5.7 (#...
  • 44bd3f2 Bump version to 5.7.1-rc and LKG
  • 5925c81 Update LKG
  • 84d58cf Merge remote-tracking branch 'origin/main' into release-5.7
  • 0ec4d30 Fixing exception on unsaved file (#60362)
  • 11b2930 Add compatible overloads that accept ArrayBuffer to BigInt64Array/BigUint64Ar...
  • Additional commits viewable in compare view

Updates wrangler from 3.61.0 to 3.95.0

Release notes

Sourced from wrangler's releases.

[email protected]

Minor Changes

[email protected]

Minor Changes

  • #7229 669d7ad Thanks @​gabivlj! - Introduce a new cloudchamber command wrangler cloudchamber apply, which will be used by customers to deploy container-apps

Patch Changes

  • #7002 d2447c6 Thanks @​GregBrimble! - fix: More helpful error messages when validating compatibility date

  • #7493 4c140bc Thanks @​emily-shen! - fix: remove non-json output in json mode commands

    Fixes regressions in 3.93.0 where unwanted text (wrangler banner, telemetry notice) was printing in commands that should only output valid json.

  • Updated dependencies [5449fe5]:

[email protected]

Minor Changes

  • #7291 f5b9cd5 Thanks @​edmundhung! - Add anonymous telemetry to Wrangler commands

    For new users, Cloudflare will collect anonymous usage telemetry to guide and improve Wrangler's development. If you have already opted out of Wrangler's existing telemetry, this setting will still be respected.

    See our data policy for more details on what we collect and how to opt out if you wish.

  • #7448 20a0f17 Thanks @​GregBrimble! - feat: Allow Workers for Platforms scripts (scripts deployed with --dispatch-namespace) to bring along assets

  • #7445 f4ae6ee Thanks @​WillTaylorDev! - Support for assets.experimental_serve_directly with wrangler dev

Patch Changes

  • #7256 415e5b5 Thanks @​jamesopstad! - Export unstable_readConfig function and Unstable_Config, Unstable_RawConfig, Unstable_RawEnvironment and Unstable_MiniflareWorkerOptions types from Wrangler. Overload unstable_getMiniflareWorkerOptions function to accept a config that has already been loaded.

  • #7431 8f25ebe Thanks @​vicb! - chore(wrangler): update unenv dependency version

    Pull in:

    • unjs/unenv#351
    • unjs/unenv#354
    • unjs/unenv#363
    • unjs/unenv#367
  • #7426 b40d0ab Thanks @​petebacondarwin! - fix: allow the asset directory to be omitted in Wrangler config for commands that don't need it

... (truncated)

Changelog

Sourced from wrangler's changelog.

3.95.0

Minor Changes

3.94.0

Minor Changes

  • #7229 669d7ad Thanks @​gabivlj! - Introduce a new cloudchamber command wrangler cloudchamber apply, which will be used by customers to deploy container-apps

Patch Changes

  • #7002 d2447c6 Thanks @​GregBrimble! - fix: More helpful error messages when validating compatibility date

  • #7493 4c140bc Thanks @​emily-shen! - fix: remove non-json output in json mode commands

    Fixes regressions in 3.93.0 where unwanted text (wrangler banner, telemetry notice) was printing in commands that should only output valid json.

  • Updated dependencies [5449fe5]:

3.93.0

Minor Changes

  • #7291 f5b9cd5 Thanks @​edmundhung! - Add anonymous telemetry to Wrangler commands

    For new users, Cloudflare will collect anonymous usage telemetry to guide and improve Wrangler's development. If you have already opted out of Wrangler's existing telemetry, this setting will still be respected.

    See our data policy for more details on what we collect and how to opt out if you wish.

  • #7448 20a0f17 Thanks @​GregBrimble! - feat: Allow Workers for Platforms scripts (scripts deployed with --dispatch-namespace) to bring along assets

  • #7445 f4ae6ee Thanks @​WillTaylorDev! - Support for assets.experimental_serve_directly with wrangler dev

Patch Changes

  • #7256 415e5b5 Thanks @​jamesopstad! - Export unstable_readConfig function and Unstable_Config, Unstable_RawConfig, Unstable_RawEnvironment and Unstable_MiniflareWorkerOptions types from Wrangler. Overload unstable_getMiniflareWorkerOptions function to accept a config that has already been loaded.

  • #7431 8f25ebe Thanks @​vicb! - chore(wrangler): update unenv dependency version

    Pull in:

    • unjs/unenv#351
    • unjs/unenv#354
    • unjs/unenv#363

... (truncated)

Commits

Bumps the all group with 12 updates in the /api directory:

| Package | From | To |
| --- | --- | --- |
| [@libsql/client](https://github.com/libsql/libsql-client-ts) | `0.6.2` | `0.14.0` |
| [@passwordless-id/webauthn](https://github.com/passwordless-id/webauthn) | `1.6.1` | `2.1.2` |
| [drizzle-orm](https://github.com/drizzle-team/drizzle-orm) | `0.31.2` | `0.38.2` |
| [hono](https://github.com/honojs/hono) | `4.6.5` | `4.6.14` |
| [toucan-js](https://github.com/robertcepa/toucan-js) | `3.4.0` | `4.0.0` |
| [tsx](https://github.com/privatenumber/tsx) | `4.15.7` | `4.19.2` |
| [zod](https://github.com/colinhacks/zod) | `3.23.8` | `3.24.1` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `1.8.2` | `1.9.4` |
| [@cloudflare/workers-types](https://github.com/cloudflare/workerd) | `4.20240620.0` | `4.20241205.0` |
| [drizzle-kit](https://github.com/drizzle-team/drizzle-orm) | `0.22.7` | `0.30.1` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.5.2` | `5.7.2` |
| [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) | `3.61.0` | `3.95.0` |



Updates `@libsql/client` from 0.6.2 to 0.14.0
- [Release notes](https://github.com/libsql/libsql-client-ts/releases)
- [Changelog](https://github.com/tursodatabase/libsql-client-ts/blob/main/CHANGELOG.md)
- [Commits](tursodatabase/libsql-client-ts@v0.6.2...v0.14.0)

Updates `@passwordless-id/webauthn` from 1.6.1 to 2.1.2
- [Release notes](https://github.com/passwordless-id/webauthn/releases)
- [Commits](passwordless-id/webauthn@1.6.1...2.1.2)

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

Updates `hono` from 4.6.5 to 4.6.14
- [Release notes](https://github.com/honojs/hono/releases)
- [Commits](honojs/hono@v4.6.5...v4.6.14)

Updates `toucan-js` from 3.4.0 to 4.0.0
- [Release notes](https://github.com/robertcepa/toucan-js/releases)
- [Commits](https://github.com/robertcepa/toucan-js/compare/[email protected]@4.0.0)

Updates `tsx` from 4.15.7 to 4.19.2
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.15.7...v4.19.2)

Updates `zod` from 3.23.8 to 3.24.1
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Changelog](https://github.com/colinhacks/zod/blob/main/CHANGELOG.md)
- [Commits](colinhacks/zod@v3.23.8...v3.24.1)

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

Updates `@cloudflare/workers-types` from 4.20240620.0 to 4.20241205.0
- [Release notes](https://github.com/cloudflare/workerd/releases)
- [Changelog](https://github.com/cloudflare/workerd/blob/main/RELEASE.md)
- [Commits](https://github.com/cloudflare/workerd/commits)

Updates `drizzle-kit` from 0.22.7 to 0.30.1
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](https://github.com/drizzle-team/drizzle-orm/commits/[email protected])

Updates `typescript` from 5.5.2 to 5.7.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.5.2...v5.7.2)

Updates `wrangler` from 3.61.0 to 3.95.0
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Changelog](https://github.com/cloudflare/workers-sdk/blob/main/packages/wrangler/CHANGELOG.md)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/[email protected]/packages/wrangler)

---
updated-dependencies:
- dependency-name: "@libsql/client"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@passwordless-id/webauthn"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: drizzle-orm
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: hono
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: toucan-js
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: tsx
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: zod
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@biomejs/biome"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@cloudflare/workers-types"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: drizzle-kit
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: wrangler
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 16, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 23, 2024

Superseded by #373.

@dependabot dependabot bot closed this Dec 23, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/api/all-c8cba50f7f branch December 23, 2024 04:03
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