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 #386

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 3, 2025

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.2.0
drizzle-orm 0.31.2 0.39.1
hono 4.6.5 4.6.20
toucan-js 3.4.0 4.1.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.20250129.0
drizzle-kit 0.22.7 0.30.4
typescript 5.5.2 5.7.3
wrangler 3.61.0 3.107.2

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.2.0

Release notes

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

2.2.0

No release notes provided.

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
  • f951c4b bumped version and updated authenticators list
  • be10451 Merge pull request #83 from Paul-Taiwo/feat-exclude-credentials
  • 6529e36 docs: update documentation to include details about customProperties
  • b38fcab feat: add customProperties option to allow arbitrary properties in authentica...
  • 49d92d9 docs: clarify usage of customProperties
  • b56f62a feat: add customProperties option to allow arbitrary properties in creationOp...
  • 9f87265 chore(docs): add reference link to WebAuthn spec for
  • 7f7c037 feat: add to passkey creation process
  • b9fa783 Merge pull request #82 from noman-land/fix-typo
  • 55bee13 Fix typo
  • Additional commits viewable in compare view

Updates drizzle-orm from 0.31.2 to 0.39.1

Release notes

Sourced from drizzle-orm's releases.

0.39.1

  • Fixed SQLite onConflict clauses being overwritten instead of stacked - #2276
  • Added view support to aliasedTable()
  • Fixed sql builder prefixing aliased views and tables with their schema

0.39.0

New features

Bun SQL driver support

You can now use the new Bun SQL driver released in Bun v1.2.0 with Drizzle

In version 1.2.0, Bun has issues with executing concurrent statements, which may lead to errors if you try to run several queries simultaneously. We've created a github issue that you can track. Once it's fixed, you should no longer encounter any such errors on Bun's SQL side

import { drizzle } from 'drizzle-orm/bun-sql';
const db = drizzle(process.env.PG_DB_URL!);
const result = await db.select().from(...);

or you can use Bun SQL instance

import { drizzle } from 'drizzle-orm/bun-sql';
import { SQL } from 'bun';
const client = new SQL(process.env.PG_DB_URL!);
const db = drizzle({ client });
const result = await db.select().from(...);

Current Limitations:

  • json and jsonb inserts and selects currently perform an additional JSON.stringify on the Bun SQL side. Once this is removed, they should work properly. You can always use custom types and redefine the mappers to and from the database.
  • datetime, date, and timestamp will not work properly when using mode: string in Drizzle. This is due to Bun's API limitations, which prevent custom parsers for queries. As a result, Drizzle cannot control the response sent from Bun SQL to Drizzle. Once this feature is added to Bun SQL, it should work as expected.
  • array types currently have issues in Bun SQL.

You can check more in Bun docs

You can check more getting started examples in Drizzle docs

WITH now supports INSERT, UPDATE, DELETE and raw sql template

with and insert

const users = pgTable('users', {
</tr></table> 

... (truncated)

Commits
  • 4d72640 Merge pull request #4037 from drizzle-team/beta
  • 5ffd0bd Bump versions
  • 991e8b4 Merge pull request #4023 from Karibash/bugfix/unsigned-column
  • cdbf1e9 Merge branch 'beta' into bugfix/unsigned-column
  • d9f609a Merge pull request #4020 from Karibash/bugfix/index-name
  • c32d6a7 Merge branch 'beta' into bugfix/index-name
  • 3ded70f Merge pull request #4018 from OleksiiKH0240/main
  • 97c2cf2 Merge branch 'beta' into main
  • 3cd4f9f Merge pull request #4028 from drizzle-team/on-conflict-chaining-fix
  • 4074110 0.3.1
  • Additional commits viewable in compare view

Updates hono from 4.6.5 to 4.6.20

Release notes

Sourced from hono's releases.

v4.6.20

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.6.19...v4.6.20

v4.6.19

What's Changed

Full Changelog: honojs/hono@v4.6.18...v4.6.19

v4.6.18

What's Changed

Full Changelog: honojs/hono@v4.6.17...v4.6.18

v4.6.17

What's Changed

New Contributors

Full Changelog: honojs/hono@v4.6.16...v4.6.17

v4.6.16

What's Changed

... (truncated)

Commits
  • b2affb8 4.6.20
  • a1ae224 fix(lambda-edge-adapter): Support Alternate Domain Names and Multiple Cookies...
  • 0ef206b chore: bump np (#3874)
  • 0aa8acc chore: Use new text-based bun lockfile (#3846)
  • d72aa4b refactor(helper/streaming): Avoid attaching AbortSignal on newer versions of ...
  • d40fffb v4.6.19
  • f5e9f3a fix(helper/adapter): env should set c type correctly (#3856)
  • d75e9ec fix(types): missing response type on OnHandlerInterface (#3852)
  • ecf5a0b v4.6.18
  • 7a7918d fix(factory): correct the type of factory.createMiddleware() (#3849)
  • Additional commits viewable in compare view

Updates toucan-js from 3.4.0 to 4.1.0

Release notes

Sourced from toucan-js's releases.

[email protected]

Minor Changes

  • a0138f7: feat: Add zodErrorsIntegration

    This integration improves the format of errors recorded to Sentry when using Zod

[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
  • 117a3bd Version Packages (#253)
  • 075b8af Fix test (#254)
  • a0138f7 feat: Add zodErrorsIntegration (#252)
  • 0365687 chore(deps): update dependency prettier-plugin-organize-imports to v4 (#240)
  • a8df3ef chore(deps): update actions/checkout action to v4 (#209)
  • 9341671 chore(deps): update dependency miniflare to v3 (#186)
  • e25621e fix(deps): update dependency eslint-config-prettier to v9 (#201)
  • f00c585 chore(deps): update actions/setup-node action to v4 (#216)
  • ad8612f chore(deps): update dependency @​rollup/plugin-commonjs to v26 (#237)
  • f8e0bbb Version Packages (#239)
  • Additional commits viewable in compare view

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.20250129.0

Commits

Updates drizzle-kit from 0.22.7 to 0.30.4

Release notes

Sourced from drizzle-kit's releases.

[email protected]

  • Fix bug that generates incorrect syntax when introspect in mysql
  • Fix a bug that caused incorrect syntax output when introspect in unsigned columns

[email protected]

SingleStore push and generate improvements

As SingleStore did not support certain DDL statements before this release, you might encounter an error indicating that some schema changes cannot be applied due to a database issue. Starting from this version, drizzle-kit will detect such cases and initiate table recreation with data transfer between the tables

Bug fixes

[email protected]

[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

</tr></table> 

... (truncated)

Commits

Updates typescript from 5.5.2 to 5.7.3

Release notes

Sourced from typescript's releases.

TypeScript 5.7.3

For release notes, check out the release announcement.

Downloads are available on npm

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

... (truncated)

Commits
  • a5e123d Update LKG
  • 8bc0204 🤖 Pick PR #60828 (Fix CodeQL configuration, releases) into release-5.7 (#60923)
  • 7aa63df 🤖 Pick PR #60393 (Don't try to add an implicit undefi...) into release-5.7 (#...
  • 9df7c36 Bump version to 5.7.3 and LKG
  • e167412 🤖 Pick PR #60794 (Harden sanitizeLog against incorr...) into release-5.7 (#...
  • 9ba364c Fix coverage build on release-5.7 (#60792)
  • 4b7441a 🤖 Pick PR #60680 (Mark the inherited any-based index ...) into release-5.7 (#...
  • e844dc3 Cherry-pick #60402, #60440, #60616 into release-5.7 (#60777)
  • 21b02a1 🤖 Pick PR #60749 (Do not require import attribute on ...) into release-5.7 (#...
  • b82fd16 🤖 Pick PR #60576 (Avoid incorrectly reusing assertion...) into release-5.7 (#...
  • Additional commits viewable in compare view

Updates wrangler from 3.61.0 to 3.107.2

Release notes

Sourced from wrangler's releases.

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Minor Changes

  • #7897 34f9797 Thanks @​WillTaylorDev! - chore: provides run_worker_first for Worker-script-first configuration. Deprecates experimental_serve_directly.

Patch Changes

  • #7945 d758215 Thanks @​ns476! - Add Images binding (in private beta for the time being)

  • #7947 f57bc4e Thanks @​dario-piotrowicz! - fix: avoid getPlatformProxy logging twice that it is using vars defined in .dev.vars files

    when getPlatformProxy is called and it retrieves values from .dev.vars files, it logs twice a message like: Using vars defined in .dev.vars, the changes here make sure that in such cases this log only appears once

  • #7889 38db4ed Thanks @​emily-shen! - feat: add experimental resource auto-provisioning to versions upload

  • #7864 de6fa18 Thanks @​dario-piotrowicz! - Update the unstable_getMiniflareWorkerOptions types to always include an env parameter.

    The unstable_getMiniflareWorkerOptions types, when accepting a config object as the first argument, didn't accept a second env argument. The changes here make sure they do, since the env is still relevant for picking up variables from .dev.vars files.

  • #7964 bc4d6c8 Thanks @​LuisDuarte1! - Fix scripts binding to a workflow in a different script overriding workflow config

  • Updated dependencies [cf4f47a]:

[email protected]

Minor Changes

  • #7856 2b6f149 Thanks @​emily-shen! - feat: add sanitised error messages to Wrangler telemetry

    Error messages that have been audited for potential inclusion of personal information, and explicitly opted-in, are now included in Wrangler's telemetry collection. Collected error messages will not include any filepaths, user input or any other potentially private content.

... (truncated)

Changelog

Sourced from wrangler's changelog.

3.107.2

Patch Changes

3.107.1

Patch Changes

3.107.0

Minor Changes

  • #7897 34f9797 Thanks @​WillTaylorDev! - chore: provides run_worker_first for Worker-script-first configuration. Deprecates experimental_serve_directly.

Patch Changes

  • #7945 d758215 Thanks @​ns476! - Add Images binding (in private beta for the time being)

  • #7947 f57bc4e Thanks @​dario-piotrowicz! - fix: avoid getPlatformProxy logging twice that it is using vars defined in .dev.vars files

    when getPlatformProxy is called and it retrieves values from .dev.vars files, it logs twice a message like: Using vars defined in .d...

    Description has been truncated

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.2.0` |
| [drizzle-orm](https://github.com/drizzle-team/drizzle-orm) | `0.31.2` | `0.39.1` |
| [hono](https://github.com/honojs/hono) | `4.6.5` | `4.6.20` |
| [toucan-js](https://github.com/robertcepa/toucan-js) | `3.4.0` | `4.1.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.20250129.0` |
| [drizzle-kit](https://github.com/drizzle-team/drizzle-orm) | `0.22.7` | `0.30.4` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.5.2` | `5.7.3` |
| [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) | `3.61.0` | `3.107.2` |



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.2.0
- [Release notes](https://github.com/passwordless-id/webauthn/releases)
- [Commits](passwordless-id/webauthn@1.6.1...2.2.0)

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

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

Updates `toucan-js` from 3.4.0 to 4.1.0
- [Release notes](https://github.com/robertcepa/toucan-js/releases)
- [Commits](https://github.com/robertcepa/toucan-js/compare/[email protected]@4.1.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.20250129.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.4
- [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.3
- [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.3)

Updates `wrangler` from 3.61.0 to 3.107.2
- [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 Feb 3, 2025
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