Skip to content

chore(deps): bump the production-dependencies group across 1 directory with 13 updates#36

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/production-dependencies-3e3dc3433e
Open

chore(deps): bump the production-dependencies group across 1 directory with 13 updates#36
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/production-dependencies-3e3dc3433e

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot bot commented on behalf of github Apr 8, 2026

Bumps the production-dependencies group with 13 updates in the / directory:

Package From To
node-addon-api 8.5.0 8.7.0
@prisma/driver-adapter-utils 6.19.2 7.7.0
mysql2 3.16.2 3.20.0
@aws-sdk/client-bedrock-runtime 3.980.0 3.1026.0
cohere-ai 7.20.0 8.0.0
@huggingface/transformers 3.8.1 4.0.1
@google-cloud/aiplatform 3.35.0 6.5.0
ollama 0.5.18 0.6.3
openai 6.17.0 6.33.0
voyageai 0.0.3 0.2.1
adm-zip 0.5.16 0.5.17
drizzle-orm 0.36.4 0.45.2
@prisma/client 6.19.2 7.7.0

Updates node-addon-api from 8.5.0 to 8.7.0

Changelog

Sourced from node-addon-api's changelog.

8.7.0 (2026-03-23)

Features

  • add Date::New overload for a std::chrono::system_clock::time_point (#1705) (7fb063d)
  • add Object::GetPrototype and Object::SetPrototype (#1715) (967bbd5), closes #1691
  • add support for SharedArrayBuffer in DataViews (#1714) (7b8d69e)

Bug Fixes

8.6.0 (2026-01-30)

Features

  • add SharedArrayBuffer (#1688) (220bee2)
  • silence a legitimate vfptr sanitizer warning that is on by default in Android NDK 29 (#1692) (46673f4)
Commits
  • 0eafea5 chore: release v8.7.0 (#1716)
  • 7fb063d feat: add Date::New overload for a std::chrono::system_clock::time_point (#1705)
  • 7b8d69e feat: add support for SharedArrayBuffer in DataViews (#1714)
  • f8210c6 chore(deps): bump the all group across 1 directory with 6 updates (#1717)
  • 967bbd5 feat: add Object::GetPrototype and Object::SetPrototype (#1715)
  • 7fef973 fix: fix -Wextra-semi (#1718)
  • 845ba8e fix: add missing const to ObjectReference::Set string parameter (#1713)
  • af7d42e doc: add instructions to build with ninja (#1709)
  • fe0c48e chore: release v8.6.0 (#1696)
  • 86a0524 chore(deps): bump the all group across 1 directory with 4 updates (#1701)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for node-addon-api since your current version.


Updates @prisma/driver-adapter-utils from 6.19.2 to 7.7.0

Release notes

Sourced from @​prisma/driver-adapter-utils's releases.

7.7.0

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

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

Highlights

ORM

prisma bootstrap command

A new prisma bootstrap command (#29374, #29424) sequences the full Prisma Postgres setup into a single interactive flow. It detects the current project state and runs only the steps that are needed:

  1. Init or scaffold — In an empty directory, offers a choice of 10 starter templates (Next.js, Express, Hono, Fastify, Nuxt, SvelteKit, Remix, React Router 7, Astro, NestJS) from prisma-examples. In an existing project without a schema, runs prisma init.
  2. Link — Authenticates via the browser and connects to a Prisma Postgres database. Skips if already linked.
  3. Install dependencies — Detects the package manager and offers to install missing @prisma/client, prisma, and dotenv.
  4. Migrate — Runs prisma migrate dev if the schema contains models.
  5. Generate — Runs prisma generate.
  6. Seed — Runs prisma db seed if a seed script is configured.

Each side-effecting step prompts for confirmation. Re-running the command skips already-completed steps.

Basic usage

npx prisma@latest bootstrap

With a starter template

npx prisma@latest bootstrap --template nextjs

Non-interactive (CI)

npx prisma@latest bootstrap --api-key "$PRISMA_API_KEY" --database "db_abc123"

Open roles at Prisma

Interested in joining Prisma? We're growing and have several exciting opportunities across the company for developers who are passionate about building with Prisma. Explore our open positions on our Careers page and find the role that's right for you.

Enterprise support

Thousands of teams use Prisma and many of them already tap into our Enterprise & Agency Support Program for hands-on help with everything from schema integrations and performance tuning to security and compliance.

With this program you also get priority issue triage and bug fixes, expert scalability advice, and custom training so that your Prisma-powered apps stay rock-solid at any scale. Learn more or join: https://prisma.io/enterprise.

... (truncated)

Commits
  • 6091e02 feat: add support for nested transaction rollbacks via savepoints in sql (#21...
  • 531886f fix: fix byte upserts by removing legacy byte array representation (#28913)
  • 7e120ed feat(adapter-mariadb): Improve MariaDB adapter error reporting by surfacing u...
  • 0c6db15 fix(adapter-{pg,neon,ppg}): handle 22P02 error in Postgres (#28849)
  • See full diff in compare view

Updates mysql2 from 3.16.2 to 3.20.0

Release notes

Sourced from mysql2's releases.

v3.20.0

3.20.0 (2026-03-15)

Features

  • add TracingChannel support for native APM instrumentation (#4178) (c06afc2)

Bug Fixes

  • explicitly specify in auth plugins (#4175) (#4187) (5ac5563)
  • prevent double release from corrupting the connection pool (#4186) (7e57db6)
  • restore PoolConnection as subclass of Connection (#4183) (97855a6)

v3.19.1

3.19.1 (2026-03-09)

Security Bug Fixes

  • bound null-terminated string read to packet end (fixes a potential OOB read reported by Doruk Tan Ozturk (peaktwilight)) (#4161) (91c5229)
  • handle malformed geometry payloads (fixes a potential DoS vulnerability reported by Doruk Tan Ozturk (peaktwilight)) (#4164) (1869215)
  • prevent query param override of URL-defined connection options (fixes a potential config injection vulnerability reported by Doruk Tan Ozturk (peaktwilight)) (#4162) (3123b4e)
  • validate buffer bounds in geometry parser (fixes a potential DoS vulnerability reported by Doruk Tan Ozturk (peaktwilight)) (#4159) (7c2ae00)

v3.19.0

3.19.0 (2026-03-05)

Features

  • use server's preferred auth method to eliminate auth switch roundtrip (#4140) (b57c671)

Bug Fixes

  • fix precision loss for large decimal values (#4135) (099beea)

v3.18.2

3.18.2 (2026-02-26)

Bug Fixes

  • types: add supportBigNumbers, bigNumberStrings, dateStrings, and timezone options to QueryOptions (#4127) (b274e72)
  • types: extend QueryValues to callback-based methods (#4129) (2ad5f0b)
  • types: improve ExecuteValues "nested" params (#4133) (3f94950)
  • types: support Raw and Uint8Array params (#4132) (bde9aec)

... (truncated)

Changelog

Sourced from mysql2's changelog.

3.20.0 (2026-03-15)

Features

  • add TracingChannel support for native APM instrumentation (#4178) (c06afc2)

Bug Fixes

  • explicitly specify in auth plugins (#4175) (#4187) (5ac5563)
  • prevent double release from corrupting the connection pool (#4186) (7e57db6)
  • restore PoolConnection as subclass of Connection (#4183) (97855a6)

3.19.1 (2026-03-09)

Bug Fixes

  • bound null-terminated string read to packet end (fixes a potential OOB read reported by Doruk Tan Ozturk (peaktwilight)) (#4161) (91c5229)
  • handle malformed geometry payloads (fixes a potential DoS vulnerability reported by Doruk Tan Ozturk (peaktwilight)) (#4164) (1869215)
  • prevent query param override of URL-defined connection options (fixes a potential config injection vulnerability reported by Doruk Tan Ozturk (peaktwilight)) (#4162) (3123b4e)
  • validate buffer bounds in geometry parser (fixes a potential DoS vulnerability reported by Doruk Tan Ozturk (peaktwilight)) (#4159) (7c2ae00)

3.19.0 (2026-03-05)

Features

  • use server's preferred auth method to eliminate auth switch roundtrip (#4140) (b57c671)

Bug Fixes

  • fix precision loss for large decimal values (#4135) (099beea)

3.18.2 (2026-02-26)

Bug Fixes

  • types: add supportBigNumbers, bigNumberStrings, dateStrings, and timezone options to QueryOptions (#4127) (b274e72)
  • types: extend QueryValues to callback-based methods (#4129) (2ad5f0b)
  • types: improve ExecuteValues "nested" params (#4133) (3f94950)
  • types: support Raw and Uint8Array params (#4132) (bde9aec)

3.18.1 (2026-02-25)

Bug Fixes

... (truncated)

Commits

Updates @aws-sdk/client-bedrock-runtime from 3.980.0 to 3.1026.0

Release notes

Sourced from @​aws-sdk/client-bedrock-runtime's releases.

v3.1026.0

3.1026.0(2026-04-07)

Chores
  • clients: add AWS retry customizations for DynamoDB, SQS, SFN, SWF (#7922) (4d9c5928)
  • codegen: update for sparse types and retry 2.1 updates (#7916) (b19357a7)
  • scripts: add codegen flag for PR creation (#7920) (899eb5ca)
New Features
  • clients: update client endpoints as of 2026-04-07 (1a9724c8)
  • client-rtbfabric: AWS RTB Fabric External Responder gateways now support HTTP in addition to HTTPS for inbound external links. Gateways can accept bid requests on port 80 or serve both protocols simultaneously via listener configuration, giving customers flexible transport options for their bidding infrastructure (e7dae9e3)
  • client-bedrock-agentcore: This release includes support for 1) InvokeBrowser API, enabling OS-level control of AgentCore Browser Tool sessions through mouse actions, keyboard input, and screenshots. 2) Added documentation noting that empty sessions are automatically deleted after one day in the ListSessions API. (209baf8c)
  • client-accessanalyzer: Revert previous additions of API changes. (2498b344)
  • client-outposts: This change allows listAssets to surface pending and non-compute asset information. Adds the INSTALLING asset state enum and the STORAGE, POWERSHELF, SWITCH, and NETWORKING AssetTypes. (12921a6f)
  • client-s3: Updated list of the valid AWS Region values for the LocationConstraint parameter for general purpose buckets. (229167dd)
  • client-ecs: This release provides the functionality of mounting Amazon S3 Files to Amazon ECS tasks by adding support for the new S3FilesVolumeConfiguration parameter in ECS RegisterTaskDefinition API. (1816b915)
  • client-datasync: Allow IAM role ARNs with IAM Paths for "SecretAccessRoleArn" field in "CustomSecretConfig" (2493464b)
  • client-lambda: Launching Lambda integration with S3 Files as a new file system configuration. (4e40cc0c)
  • client-ec2: EC2 Capacity Manager adds new dimensions for grouping and filtering capacity metrics, including tag-based dimensions and Account Name. (4f5a452a)
  • client-eks: EKS MNG WarmPool feature to support ASG WarmPool feature. (b982b678)
  • client-connect: The voice enhancement mode used by the agent can now be viewed on the contact record via the DescribeContact api. (1411825c)
  • client-datazone: Update Configurations and registerS3AccessGrantLocation as public attributes for cfn (49597475)
  • client-braket: Added support for t3, g6, and g6e instance types for Hybrid Jobs. (5107b43e)
  • client-s3files: Support for S3 Files, a new shared file system that connects any AWS compute directly with your data in Amazon S3. It provides fast, direct access to all of your S3 data as files with full file system semantics and low-latency performance, without your data ever leaving S3. (b87065a7)
Bug Fixes
  • scripts: default generate-client-tarball-since to origin/main (#7917) (314b203d)
Tests
  • performance-tests: create performance test package (#7864) (ee85613c)

For list of updated packages, view updated-packages.md in assets-3.1026.0.zip

v3.1025.0

3.1025.0(2026-04-06)

Documentation Changes
  • client-geo-maps: This release updates API reference documentation for Amazon Location Service Maps APIs to reflect regional restrictions for Grab Maps users (8e08de51)
New Features
  • clients: update client endpoints as of 2026-04-06 (a2eb33da)

... (truncated)

Changelog

Sourced from @​aws-sdk/client-bedrock-runtime's changelog.

3.1026.0 (2026-04-07)

Note: Version bump only for package @​aws-sdk/client-bedrock-runtime

3.1025.0 (2026-04-06)

Note: Version bump only for package @​aws-sdk/client-bedrock-runtime

3.1024.0 (2026-04-03)

Note: Version bump only for package @​aws-sdk/client-bedrock-runtime

3.1023.0 (2026-04-02)

Note: Version bump only for package @​aws-sdk/client-bedrock-runtime

3.1022.0 (2026-04-01)

Note: Version bump only for package @​aws-sdk/client-bedrock-runtime

3.1021.0 (2026-03-31)

Bug Fixes

  • codegen: sync for adaptive retry throttling detection fix (#7905) (03f108d)

... (truncated)

Commits

Updates cohere-ai from 7.20.0 to 8.0.0

Release notes

Sourced from cohere-ai's releases.

8.0.0

What's Changed

Full Changelog: cohere-ai/cohere-typescript@7.21.1...8.0.0

7.21.1

No release notes provided.

7.21.0

No release notes provided.

7.20.1

What's Changed

Full Changelog: cohere-ai/cohere-typescript@7.20.0...7.20.1

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for cohere-ai since your current version.


Updates @huggingface/transformers from 3.8.1 to 4.0.1

Release notes

Sourced from @​huggingface/transformers's releases.

4.0.0

🚀 Transformers.js v4

We're excited to announce that Transformers.js v4 is now available on NPM! After a year of development (we started in March 2025 🤯), we're finally ready for you to use it.

npm i @huggingface/transformers

Links: YouTube Video, Blog Post, Demo Collection

New WebGPU backend

The biggest change is undoubtedly the adoption of a new WebGPU Runtime, completely rewritten in C++. We've worked closely with the ONNX Runtime team to thoroughly test this runtime across our ~200 supported model architectures, as well as many new v4-exclusive architectures.

In addition to better operator support (for performance, accuracy, and coverage), this new WebGPU runtime allows the same transformers.js code to be used across a wide variety of JavaScript environments, including browsers, server-side runtimes, and desktop applications. That's right, you can now run WebGPU-accelerated models directly in Node, Bun, and Deno!

We've proven that it's possible to run state-of-the-art AI models 100% locally in the browser, and now we're focused on performance: making these models run as fast as possible, even in resource-constrained environments. This required completely rethinking our export strategy, especially for large language models. We achieve this by re-implementing new models operation by operation, leveraging specialized ONNX Runtime Contrib Operators like com.microsoft.GroupQueryAttention, com.microsoft.MatMulNBits, or com.microsoft.QMoE to maximize performance.

For example, adopting the com.microsoft.MultiHeadAttention operator, we were able to achieve a ~4x speedup for BERT-based embedding models.

New models

Thanks to our new export strategy and ONNX Runtime's expanding support for custom operators, we've been able to add many new models and architectures to Transformers.js v4. These include popular models like GPT-OSS, Chatterbox, GraniteMoeHybrid, LFM2-MoE, HunYuanDenseV1, Apertus, Olmo3, FalconH1, and Youtu-LLM. Many of these required us to implement support for advanced architectural patterns, including Mamba (state-space models), Multi-head Latent Attention (MLA), and Mixture of Experts (MoE). Perhaps most importantly, these models are all compatible with WebGPU, allowing users to run them directly in the browser or server-side JavaScript environments with hardware acceleration. We've released several Transformers.js v4 demos so far... and we'll continue to release more!

Additionally, we've added support for larger models exceeding 8B parameters. In our tests, we've been able to run GPT-OSS 20B (q4f16) at ~60 tokens per second on an M4 Pro Max.

... (truncated)

Commits

Updates @google-cloud/aiplatform from 3.35.0 to 6.5.0

Release notes

Sourced from @​google-cloud/aiplatform's releases.

containeranalysis: v6.5.0

6.5.0 (2026-01-31)

Features

  • [containeranalysis] A new field last_vulnerability_update_time is added to message .grafeas.v1.DiscoveryOccurrence (#7039) (c56f26b)

aiplatform: v6.5.0

6.5.0 (2026-03-02)

Features

  • Add traffic_type, tool_use_prompt_tokens_details to message GenerateContentResponse.UsageMetadata (#7266) (9f91e05)

aiplatform: v6.4.0

6.4.0 (2026-02-03)

Features

  • Force-delete for RagCorpora, ignoring any external errors and ensuring deletion of the RagCorpus (#7085) (b69b8ae)

gke-hub: v6.4.0

6.4.0 (2026-03-19)

Features

  • [gkehub] A new field kubernetes_api_server_version is added to message .google.cloud.gkehub.configmanagement.v1beta.MembershipState (#7534) (9de1438)

aiplatform: v6.3.0

6.3.0 (2026-02-02)

Features

dataproc: v6.3.0

6.3.0 (2026-02-19)

Features

  • [dataproc] Add ClusterType to support creating Zero-Scale clusters (#7252) (d0d345d)

aiplatform: v6.2.0

6.2.0 (2026-01-22)

... (truncated)

Changelog

Sourced from @​google-cloud/aiplatform's changelog.

6.5.0 (2026-03-02)

Features

  • Add traffic_type, tool_use_prompt_tokens_details to message GenerateContentResponse.UsageMetadata (#7266) (9f91e05)

6.4.0 (2026-02-03)

Features

  • Force-delete for RagCorpora, ignoring any external errors and ensuring deletion of the RagCorpus (#7085) (b69b8ae)

6.3.0 (2026-02-02)

Features

6.2.0 (2026-01-22)

Features

  • [Many APIs] Added OUTPUT_ONLY annotations to create_time and update_time in InternalRange to reflect existing service behavior (#7013) (0dbd123)
  • RAG - add mode config to RagEngineConfig with Spanner and Serverless (#7016) (2273e3c)

6.1.0 (2026-01-12)

Features

  • Add Lustre support to the Vertex Training Custom Job API (#6952) (8e2862c)
  • Add Lustre support to the Vertex Training Custom Job API (#6959) (168fe86)

6.0.0 (2025-12-09)

⚠ BREAKING CHANGES

  • fix issue when using UrlContext tool (#6911)

Bug Fixes

5.14.0 (2025-11-21)

... (truncated)

Commits
  • 6c9eeab chore: release main (#6809)
  • fcf84bf feat: Add JAILBREAK category to SafetySettings for prediction service (#6801)
  • 6a0eeb4 feat: Add labels field for Predict API for Imagen use case (v1beta and v1) (#...
  • 77010a8 chore: run compileProtos and update gapic-node-processing (#6760)
  • b8b4290 chore: update .Owlbot.yamls to correct path (#6725)
  • 62d8ab8 chore: update all libraries .OwlBot.yaml and owlbot.py file to librarian.js (...
  • de794dc chore: release main (#6679)
  • 961ac1a feat: PSC support for custom weights deploy (#6695)
  • f48ce9b feat: Tuning PreTunedModel API field (#6612)
  • 83e3ad1 chore: release main (#6599)
  • Additional commits viewable in compare view

Updates ollama from 0.5.18 to 0.6.3

Release notes

Sourced from ollama's releases.

v0.6.3

What's Changed

New Contributors

Full Changelog: ollama/ollama-js@v0.6.2...v0.6.3

v0.6.2

Full Changelog: ollama/ollama-js@v0.6.1...v0.6.2

v0.6.1

What's Changed

New Contributors

Full Changelog: ollama/ollama-js@v0.6.0...v0.6.1

v0.6.0

What's Changed

New Contributors

Full Changelog: ollama/ollama-js@v0.5.18...v0.6.0

Commits
  • a667d4d browser/interfaces: add VersionResponse type and add ollama.version() to READ...
  • c3b668c browser/interfaces: add logprobs (#260)
  • 75baea0 browser: add method to retrieve server version (#259)
  • 603df9f Update publish.yaml
  • b4acbee Revert "fix: regenerate package-lock.json with complete @​swc/core platform en...
  • 5b54730 fix: regenerate package-lock.json with complete @​swc/core platform entries (#...
  • 5a132f6 fix: streaming chunk boundaries (#256)
  • 3b8db71 remove duplicate line in .npmignore (

…y with 13 updates

Bumps the production-dependencies group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [node-addon-api](https://github.com/nodejs/node-addon-api) | `8.5.0` | `8.7.0` |
| [@prisma/driver-adapter-utils](https://github.com/prisma/prisma/tree/HEAD/packages/driver-adapter-utils) | `6.19.2` | `7.7.0` |
| [mysql2](https://github.com/sidorares/node-mysql2) | `3.16.2` | `3.20.0` |
| [@aws-sdk/client-bedrock-runtime](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-bedrock-runtime) | `3.980.0` | `3.1026.0` |
| [cohere-ai](https://github.com/cohere-ai/cohere-typescript) | `7.20.0` | `8.0.0` |
| [@huggingface/transformers](https://github.com/huggingface/transformers.js) | `3.8.1` | `4.0.1` |
| [@google-cloud/aiplatform](https://github.com/googleapis/google-cloud-node/tree/HEAD/packages/google-cloud-aiplatform) | `3.35.0` | `6.5.0` |
| [ollama](https://github.com/ollama/ollama-js) | `0.5.18` | `0.6.3` |
| [openai](https://github.com/openai/openai-node) | `6.17.0` | `6.33.0` |
| [voyageai](https://github.com/voyage-ai/typescript-sdk) | `0.0.3` | `0.2.1` |
| [adm-zip](https://github.com/cthackers/adm-zip) | `0.5.16` | `0.5.17` |
| [drizzle-orm](https://github.com/drizzle-team/drizzle-orm) | `0.36.4` | `0.45.2` |
| [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) | `6.19.2` | `7.7.0` |



Updates `node-addon-api` from 8.5.0 to 8.7.0
- [Release notes](https://github.com/nodejs/node-addon-api/releases)
- [Changelog](https://github.com/nodejs/node-addon-api/blob/main/CHANGELOG.md)
- [Commits](nodejs/node-addon-api@v8.5.0...v8.7.0)

Updates `@prisma/driver-adapter-utils` from 6.19.2 to 7.7.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/7.7.0/packages/driver-adapter-utils)

Updates `mysql2` from 3.16.2 to 3.20.0
- [Release notes](https://github.com/sidorares/node-mysql2/releases)
- [Changelog](https://github.com/sidorares/node-mysql2/blob/master/Changelog.md)
- [Commits](sidorares/node-mysql2@v3.16.2...v3.20.0)

Updates `@aws-sdk/client-bedrock-runtime` from 3.980.0 to 3.1026.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-bedrock-runtime/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1026.0/clients/client-bedrock-runtime)

Updates `cohere-ai` from 7.20.0 to 8.0.0
- [Release notes](https://github.com/cohere-ai/cohere-typescript/releases)
- [Commits](cohere-ai/cohere-typescript@7.20.0...8.0.0)

Updates `@huggingface/transformers` from 3.8.1 to 4.0.1
- [Release notes](https://github.com/huggingface/transformers.js/releases)
- [Commits](https://github.com/huggingface/transformers.js/commits)

Updates `@google-cloud/aiplatform` from 3.35.0 to 6.5.0
- [Release notes](https://github.com/googleapis/google-cloud-node/releases)
- [Changelog](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-cloud-aiplatform/CHANGELOG.md)
- [Commits](https://github.com/googleapis/google-cloud-node/commits/dlp-v6.5.0/packages/google-cloud-aiplatform)

Updates `ollama` from 0.5.18 to 0.6.3
- [Release notes](https://github.com/ollama/ollama-js/releases)
- [Commits](ollama/ollama-js@v0.5.18...v0.6.3)

Updates `openai` from 6.17.0 to 6.33.0
- [Release notes](https://github.com/openai/openai-node/releases)
- [Changelog](https://github.com/openai/openai-node/blob/master/CHANGELOG.md)
- [Commits](openai/openai-node@v6.17.0...v6.33.0)

Updates `voyageai` from 0.0.3 to 0.2.1
- [Release notes](https://github.com/voyage-ai/typescript-sdk/releases)
- [Commits](voyage-ai/typescript-sdk@0.0.3...0.2.1)

Updates `adm-zip` from 0.5.16 to 0.5.17
- [Release notes](https://github.com/cthackers/adm-zip/releases)
- [Changelog](https://github.com/cthackers/adm-zip/blob/master/history.md)
- [Commits](cthackers/adm-zip@v0.5.16...v0.5.17)

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

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

---
updated-dependencies:
- dependency-name: node-addon-api
  dependency-version: 8.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@prisma/driver-adapter-utils"
  dependency-version: 7.7.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: mysql2
  dependency-version: 3.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@aws-sdk/client-bedrock-runtime"
  dependency-version: 3.1026.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: cohere-ai
  dependency-version: 8.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@huggingface/transformers"
  dependency-version: 4.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@google-cloud/aiplatform"
  dependency-version: 6.5.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: ollama
  dependency-version: 0.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: openai
  dependency-version: 6.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: voyageai
  dependency-version: 0.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: adm-zip
  dependency-version: 0.5.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: drizzle-orm
  dependency-version: 0.45.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@prisma/client"
  dependency-version: 7.7.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Copy Markdown
Author

dependabot bot commented on behalf of github Apr 8, 2026

Labels

The following labels could not be found: automated, dependencies. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants