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 11 updates #366

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the all group with 11 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.37.0
hono 4.6.5 4.6.13
toucan-js 3.4.0 4.0.0
tsx 4.15.7 4.19.2
@biomejs/biome 1.8.2 1.9.4
@cloudflare/workers-types 4.20240620.0 4.20241205.0
drizzle-kit 0.22.7 0.29.1
typescript 5.5.2 5.7.2
wrangler 3.61.0 3.93.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.37.0

Release notes

Sourced from drizzle-orm's releases.

0.37.0

New Dialects

🎉 SingleStore dialect is now available in Drizzle

Thanks to the SingleStore team for creating a PR with all the necessary changes to support the MySQL-compatible part of SingleStore. You can already start using it with Drizzle. The SingleStore team will also help us iterate through updates and make more SingleStore-specific features available in Drizzle

import { int, singlestoreTable, varchar } from 'drizzle-orm/singlestore-core';
import { drizzle } from 'drizzle-orm/singlestore';
export const usersTable = singlestoreTable('users_table', {
id: int().primaryKey(),
name: varchar({ length: 255 }).notNull(),
age: int().notNull(),
email: varchar({ length: 255 }).notNull().unique(),
});
...
const db = drizzle(process.env.DATABASE_URL!);
db.select()...

You can check out our Getting started guides to try SingleStore!

New Drivers

🎉 SQLite Durable Objects driver is now available in Drizzle

You can now query SQLite Durable Objects in Drizzle!

For the full example, please check our Get Started Section

/// <reference types="@cloudflare/workers-types" />
import { drizzle, DrizzleSqliteDODatabase } from 'drizzle-orm/durable-sqlite';
import { DurableObject } from 'cloudflare:workers'
import { migrate } from 'drizzle-orm/durable-sqlite/migrator';
import migrations from '../drizzle/migrations';
import { usersTable } from './db/schema';
export class MyDurableObject1 extends DurableObject {
storage: DurableObjectStorage;
db: DrizzleSqliteDODatabase<any>;
constructor(ctx: DurableObjectState, env: Env) {
super(ctx, env);
this.storage = ctx.storage;
</tr></table>

... (truncated)

Commits

Updates hono from 4.6.5 to 4.6.13

Release notes

Sourced from hono's releases.

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

New Contributors

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

v4.6.10

What's Changed

... (truncated)

Commits
  • 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)
  • 190e122 refactor: use Array.prototype.at() to look at the end (#3703)
  • 76b7109 v4.6.12
  • 7ebf854 fix(adapter/aws-lambda): add alb event requestContext undefined check for tes...
  • bfc190f feat(css): add CSP nonce to hono/css related style and script tags (#3685)
  • 3059741 perf(router): sort handlers by score only when necessary (#3697)
  • 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 @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.29.1

Release notes

Sourced from drizzle-kit's releases.

[email protected]

  • Fix SingleStore generate migrations command

[email protected]

New Dialects

🎉 SingleStore dialect is now available in Drizzle

Thanks to the SingleStore team for creating a PR with all the necessary changes to support the MySQL-compatible part of SingleStore. You can already start using it with Drizzle. The SingleStore team will also help us iterate through updates and make more SingleStore-specific features available in Drizzle

import 'dotenv/config';
import { defineConfig } from 'drizzle-kit';
export default defineConfig({
dialect: 'singlestore',
out: './drizzle',
schema: './src/db/schema.ts',
dbCredentials: {
url: process.env.DATABASE_URL!,
},
});

You can check out our Getting started guides to try SingleStore!

New Drivers

🎉 SQLite Durable Objects driver is now available in Drizzle

You can now query SQLite Durable Objects in Drizzle!

For the full example, please check our Get Started Section

import 'dotenv/config';
import { defineConfig } from 'drizzle-kit';
export default defineConfig({
  out: './drizzle',
  schema: './src/db/schema.ts',
  dialect: 'sqlite',
  driver: 'durable-sqlite',
});

[email protected]

Bug fixes

... (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.93.0

Release notes

Sourced from wrangler's releases.

[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

  • #7454 f2045be Thanks @​petebacondarwin! - refactor: Ensure that unstable type exports are all prefixed with Unstable_ rather than just Unstable

  • #7461 9ede45b Thanks @​petebacondarwin! - fix: relax validation of unsafe configuration to allow an empty object

    The types, the default and the code in general support an empty object for this config setting.

    So it makes sense to avoid erroring when validating the config.

  • #7446 9435af0 Thanks @​petebacondarwin! - fix: make sure Wrangler doesn't create a .wrangler tmp dir in the functions/ folder of a Pages project

    This regression was introduced in cloudflare/workers-sdk#7415 and this change fixes it by reverting that change.

  • #7385 14a7bc6 Thanks @​edmundhung! - The x-provision experimental flag now support inherit bindings in deploys

  • #7463 073293f Thanks @​penalosa! - Clarify messaging around wrangler versions commands to reflect that they're stable (and have been since GA during birthday week)

  • #7436 5e69799 Thanks @​Ankcorn! - Relax type on observability.enabled to remove linting error for nested configurations

  • #7450 8c873ed Thanks @​petebacondarwin! - fix: ensure that version secrets commands do not write wrangler config warnings

... (truncated)

Changelog

Sourced from wrangler's changelog.

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
    • 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

  • #7454 f2045be Thanks @​petebacondarwin! - refactor: Ensure that unstable type exports are all prefixed with Unstable_ rather than just Unstable

  • #7461 9ede45b Thanks @​petebacondarwin! - fix: relax validation of unsafe configuration to allow an empty object

    The types, the default and the code in general support an empty object for this config setting.

    So it makes sense to avoid erroring when validating the config.

  • #7446 9435af0 Thanks @​petebacondarwin! - fix: make sure Wrangler doesn't create a .wrangler tmp dir in the functions/ folder of a Pages project

    This regression was introduced in cloudflare/workers-sdk#7415 and this change fixes it by reverting that change.

  • #7385 14a7bc6 Thanks @​edmundhung! - The x-provision experimental flag now support inherit bindings in deploys

  • #7463 073293f Thanks @​penalosa! - Clarify messaging around wrangler versions commands to reflect that they're stable (and have been since GA during birthday week)

  • #7436 5e69799 Thanks @​Ankcorn! - Relax type on observability.enabled to remove linting error for nested configurations

  • #7450 8c873ed Thanks @​petebacondarwin! - fix: ensure that version secrets commands do not write wrangler config warnings

... (truncated)

Commits
  • 3d8a652 Version Packages (#7439)
  • b9d4d5a ci: extend the timeout on BundleController.test.ts "custom build" test to red...
  • 20a0f17 WfP Assets support (#7448)
  • 21a9e24 chore(deps): bump the workerd-and-workers-types group across 1 directory with...
  • 073293f Mark wrangler versions as stable (#7463)
  • 5ea9d8e remove stray await (#7453)
  • 9ede45b fix: relax validation of unsafe configuration to allow an empty object (#7461)
  • f2045be refactor: Ensure that unstable type exports are all prefixed with Unstable_...
  • f4ae6ee Wranger dev support with experimental_serve_directly (#7445)
  • 8c873ed fix: ensure that version secrets commands do not write wrangler config warnin...
  • 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
  • `@dependabo...

Description has been truncated

Bumps the all group with 11 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.37.0` |
| [hono](https://github.com/honojs/hono) | `4.6.5` | `4.6.13` |
| [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` |
| [@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.29.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.93.0` |



Updates `@libsql/client` from 0.6.2 to 0.14.0
- [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.37.0
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](drizzle-team/drizzle-orm@0.31.2...0.37.0)

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

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 `@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.29.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.93.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: "@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 9, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 16, 2024

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

@dependabot dependabot bot closed this Dec 16, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/api/all-75a77a6d31 branch December 16, 2024 03:47
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