Skip to content

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

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/production-dependencies-d85d21aef9
Closed

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

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot bot commented on behalf of github Mar 18, 2026

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

Package From To
node-addon-api 8.5.0 8.6.0
@prisma/driver-adapter-utils 6.19.2 7.5.0
mysql2 3.16.2 3.20.0
@aws-sdk/client-bedrock-runtime 3.980.0 3.1011.0
@google-cloud/aiplatform 3.35.0 6.5.0
ollama 0.5.18 0.6.3
openai 6.17.0 6.32.0
voyageai 0.0.3 0.2.1
drizzle-orm 0.36.4 0.45.1
@prisma/client 6.19.2 7.5.0

Updates node-addon-api from 8.5.0 to 8.6.0

Changelog

Sourced from node-addon-api's changelog.

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
  • fe0c48e chore: release v8.6.0 (#1696)
  • 86a0524 chore(deps): bump the all group across 1 directory with 4 updates (#1701)
  • 67b6479 chore(deps): bump the all group across 1 directory with 10 updates (#1698)
  • 46673f4 feat: silence a legitimate vfptr sanitizer warning that is on by default in A...
  • 220bee2 feat: add SharedArrayBuffer (#1688)
  • 23ce3b1 docs: language & formatting improvements (#1679)
  • 60d439e ci: update Node.js versions in tests (#1686)
  • d0845b3 chore(deps): bump the all group across 1 directory with 3 updates (#1685)
  • c38bc48 chore(deps): bump the all group across 1 directory with 10 updates (#1683)
  • fc21302 chore: enable OIDC npm publishing (#1682)
  • 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.5.0

Release notes

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

7.5.0

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

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

Highlights

ORM

Features

  • Added support for nested transaction rollbacks via savepoints (#21678)

    Adds support for nested transaction rollback behavior for SQL databases: if an outer transaction fails, the inner nested transaction is rolled back as well. Implements this by tracking transaction ID + nesting depth so Prisma can reuse an existing open transaction in the underlying engine, and it also enables using $transaction from an interactive transaction client.

Bug fixes

Driver Adapters

  • Made the adapter-mariadb use the binary MySQL protocol to fix an issue with lossy number conversions (#29285)
  • Made @types/pg a direct dependency of adapter-pg for better TypeScript experience out-of-the-box (#29277)

Prisma Client

  • Resolved Prisma.DbNull serializing as empty object in some bundled environments like Next.js (#29286)
  • Fixed DateTime fields returning Invalid Date with unixepoch-ms timestamps in some cases (#29274)
  • Fixed a cursor-based pagination issue with @db.Date columns (#29327)

Schema Engine

  • Manual partial indexes are now preserved when partialIndexes preview feature is disabled, preventing unnecessary drops and additions in migrations (#5790, #5795)
  • Enhanced partial index predicate comparison to handle quoted vs unquoted identifiers correctly, eliminating needless recreate cycles (#5788)
  • Excluded partial unique indexes from DMMF uniqueFields and uniqueIndexes to prevent incorrect findUnique input type generation (#5792)

Studio

With the launch of Prisma ORM v7, we also introduced a rebuilt version of Prisma Studio. With the feedback we’ve gathered since the release, we’ve added some high requested features to help make Studio a better experience.

Multi-cell Selection & Full Table Search

This release brings the ability to select multiple cells when viewing your database. In addition to being able to select multiple cells, you can also search across your database. You can search for a specific table or for specific cells within that table.

Adobe Express - CleanShot 2026-03-04 at 21 15 08-2

More intuitive filtering

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

Release notes

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

v3.1011.0

3.1011.0(2026-03-17)

Documentation Changes
  • clients: fix protocol listings in readme files (#7850) (2297fedd)
New Features
  • client-emr: Add S3LoggingConfiguration to Control LogUploads (8d30ccf4)
  • client-glue: Provide approval to overwrite existing Lake Formation permissions on all child resources with the default permissions specified in 'CreateTableDefaultPermissions' and 'CreateDatabaseDefaultPermissions' when updating catalog. Allowed values are ["Accept","Deny"] . (949f5573)
  • client-bedrock-agentcore-control: Deprecating namespaces field and adding namespaceTemplates. (6f765c06)

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

v3.1010.0

3.1010.0(2026-03-16)

New Features
  • clients: update client endpoints as of 2026-03-16 (6ae1dd8a)
  • client-ecs: Amazon ECS now supports configuring whether tags are propagated to the EC2 Instance Metadata Service (IMDS) for instances launched by the Managed Instances capacity provider. This gives customers control over tag visibility in IMDS when using ECS Managed Instances. (f165f183)
  • client-bedrock-agentcore-control: Supporting hosting of public ECR Container Images in AgentCore Runtime (a3ca4b6e)
  • client-bedrock: You can now generate policy scenarios on demand using the new GENERATE POLICY SCENARIOS build workflow type. Scenarios will no longer be automatically generated during INGEST CONTENT, REFINE POLICY, and IMPORT POLICY workflows, resulting in faster completion times for these operations. (e9c8b9ce)
  • client-bedrock-agentcore: Provide support to perform deterministic operations on agent runtime through shell command executions via the new InvokeAgentRuntimeCommand API (14fb5577)
  • middleware-flexible-checksums: allow custom checksums to be used in responses (#7849) (213defa2)
Tests

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

v3.1009.0

3.1009.0(2026-03-13)

Chores
  • codegen: sync for retry strategy lifecycle fix (#7842) (7bf8888b)
Documentation Changes
  • client-medialive: Documents the VideoDescription.ScalingBehavior.SMART(underscore)CROP enum value. (fa49aa1b)
  • client-sqs: document that SQS supports AWS Query protocol, non-default (#7847) (90772af6)

... (truncated)

Changelog

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

3.1011.0 (2026-03-17)

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

3.1010.0 (2026-03-16)

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

3.1009.0 (2026-03-13)

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

3.1008.0 (2026-03-12)

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

3.1007.0 (2026-03-11)

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

3.1006.0 (2026-03-10)

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

3.1005.0 (2026-03-09)

... (truncated)

Commits

Updates @google-cloud/aiplatform from 3.35.0 to 6.5.0

Release notes

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

compute: v6.5.0

6.5.0 (2025-11-21)

Features

  • [compute] Update Compute Engine v1beta API to revision 20251019 (#6869) (68d767e)

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)

containeranalysis: v6.4.0

6.4.0 (2026-01-16)

Features

  • [containeranalysis] A new message File is added (#6987) (0413036)

recaptcha-enterprise: v6.4.0

6.4.0 (2026-01-16)

Features

  • [recaptchaenterprise] Update NetApp v1 API with Host Groups, Block Volumes, Cache Volumes, and Backup Restore (#6993) (bc588be)

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)

aiplatform: v6.3.0

6.3.0 (2026-02-02)

... (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 (#254)
  • 9dc9716 Update multi-tool.ts imports (#231)
  • de292ee docs(readme): add Cloud Models JS usage and Cloud API example (#253)
  • Additional commits viewable in compare view

Updates openai from 6.17.0 to 6.32.0

Release notes

Sourced from openai's releases.

v6.32.0

6.32.0 (2026-03-17)

Full Changelog: v6.31.0...v6.32.0

Features

  • api: 5.4 nano and mini model slugs (068df6d)

v6.31.0

6.31.0 (2026-03-16)

Full Changelog: v6.30.1...v6.31.0

Features

  • api: add in/nin filter types to ComparisonFilter (b2eda27)

v6.30.1

6.30.1 (2026-03-16)

Full Changelog: v6.30.0...v6.30.1

Chores

  • internal: tweak CI branches (25f5d74)

v6.30.0

6.30.0 (2026-03-16)

Full Changelog: v6.29.0...v6.30.0

Features

  • api: add /v1/videos endpoint option to batches (271d879)
  • api: add defer_loading field to NamespaceTool (7cc8f0a)

Bug Fixes

  • api: oidc publishing for npm (fa50066)

v6.29.0

6.29.0 (2026-03-13)

Full Changelog: v6.28.0...v6.29.0

Features

... (truncated)

Changelog

Sourced from openai's changelog.

6.32.0 (2026-03-17)

Full Changelog: v6.31.0...v6.32.0

Features

  • api: 5.4 nano and mini model slugs (068df6d)

6.31.0 (2026-03-16)

Full Changelog: v6.30.1...v6.31.0

Features

  • api: add in/nin filter types to ComparisonFilter (b2eda27)

6.30.1 (2026-03-16)

Full Changelog: v6.30.0...v6.30.1

Chores

  • internal: tweak CI branches (25f5d74)

6.30.0 (2026-03-16)

Full Changelog: v6.29.0...v6.30.0

Features

  • api: add /v1/videos endpoint option to batches (271d879)
  • api: add defer_loading field to NamespaceTool (7cc8f0a)

Bug Fixes

  • api: oidc publishing for npm (fa50066)

6.29.0 (2026-03-13)

Full Changelog: v6.28.0...v6.29.0

Features

6.28.0 (2026-03-13)

Full Changelog: v6.27.0...v6.28.0

... (truncated)

Commits
Maintainer changes

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


Updates voyageai from 0.0.3 to 0.2.1

Commits

Updates drizzle-orm from 0.36.4 to 0.45.1

Release notes

Sourced from drizzle-orm's releases.

0.45.1

  • Fixed pg-native Pool detection in node-postgres transactions breaking in environments with forbidden require() (#5107)

0.45.0

  • Fixed pg-native Pool detection in node-postgres transactions
  • Allowed subqueries in select fields
  • Updated typo algorythm => algorithm
  • Fixed $onUpdate not handling SQL values (fixes #2388, tests implemented by L-Mario564 in #2911)
  • Fixed pg mappers not handling Date instances in bun-sql:postgresql driver responses for date, timestamp types (fixes #4493)

0.44.7

0.44.6

  • feat: add $replicas reference #4874

0.44.5

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

0.44.4

0.44.3

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

0.44.2

  • [BUG]: Fixed type issues with joins with certain variations of tsconfig: #4535, #4457

0.44.1

0.44.0

Error handling

Starting from this version, we’ve introduced a new DrizzleQueryError that wraps all errors from database drivers and provides a set of useful information:

  1. A proper stack trace to identify which exact Drizzle query failed
  2. The generated SQL string and its parameters
  3. The original stack trace from the driver that caused the DrizzleQueryError

Drizzle cache module

... (truncated)

Commits
  • a086f59 Fixed pg-native Pool detection in node-postgres transactions breaking in envi...
  • c445637 Merge pull request #5095 from drizzle-team/main-workflows
  • e7b3aaa Merge branch 'main' into main-workflows
  • 0d885a5 refactor: Update condition for run-feature job to improve clarity and functio...
  • 45a1ffb Merge pull request #5087 from drizzle-team/main-workflows
  • 6357645 chore: Comment out NEON_HTTP_CONNECTION_STRING requirement in release workflows
  • 53dec98 refactor: Simplify release router workflow by removing unnecessary switch job...

@dependabot @github
Copy link
Copy Markdown
Author

dependabot bot commented on behalf of github Mar 18, 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.

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/production-dependencies-d85d21aef9 branch from a5133fe to 8c6c971 Compare March 18, 2026 18:11
…y with 10 updates

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

| Package | From | To |
| --- | --- | --- |
| [node-addon-api](https://github.com/nodejs/node-addon-api) | `8.5.0` | `8.6.0` |
| [@prisma/driver-adapter-utils](https://github.com/prisma/prisma/tree/HEAD/packages/driver-adapter-utils) | `6.19.2` | `7.5.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.1011.0` |
| [@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.32.0` |
| [voyageai](https://github.com/voyage-ai/typescript-sdk) | `0.0.3` | `0.2.1` |
| [drizzle-orm](https://github.com/drizzle-team/drizzle-orm) | `0.36.4` | `0.45.1` |
| [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) | `6.19.2` | `7.5.0` |



Updates `node-addon-api` from 8.5.0 to 8.6.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.6.0)

Updates `@prisma/driver-adapter-utils` from 6.19.2 to 7.5.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/7.5.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.1011.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.1011.0/clients/client-bedrock-runtime)

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.32.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.32.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 `drizzle-orm` from 0.36.4 to 0.45.1
- [Release notes](https://github.com/drizzle-team/drizzle-orm/releases)
- [Commits](drizzle-team/drizzle-orm@0.36.4...0.45.1)

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

---
updated-dependencies:
- dependency-name: node-addon-api
  dependency-version: 8.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@prisma/driver-adapter-utils"
  dependency-version: 7.5.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.1011.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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.32.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: drizzle-orm
  dependency-version: 0.45.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@prisma/client"
  dependency-version: 7.5.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/production-dependencies-d85d21aef9 branch from 8c6c971 to 2ee2cfe Compare March 25, 2026 18:13
@dependabot @github
Copy link
Copy Markdown
Author

dependabot bot commented on behalf of github Mar 27, 2026

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

@dependabot dependabot bot closed this Mar 27, 2026
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/production-dependencies-d85d21aef9 branch March 27, 2026 07:53
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