Skip to content

Bump the dependencies group across 1 directory with 15 updates - #1417

Merged
cristianrgreco merged 2 commits into
mainfrom
dependabot/npm_and_yarn/dependencies-cfed589fae
Aug 3, 2026
Merged

Bump the dependencies group across 1 directory with 15 updates#1417
cristianrgreco merged 2 commits into
mainfrom
dependabot/npm_and_yarn/dependencies-cfed589fae

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 3, 2026

Copy link
Copy Markdown
Contributor

Bumps the dependencies group with 15 updates in the / directory:

Package From To
eslint 10.7.0 10.8.0
npm-check-updates 22.2.9 23.0.0
prettier 3.9.5 3.9.6
typescript 6.0.3 7.0.2
typescript-eslint 8.63.0 8.65.0
undici 8.7.0 8.9.0
@azure/cosmos 4.9.3 4.10.0
@google-cloud/firestore 8.6.0 8.7.0
@google-cloud/spanner 8.8.1 8.10.0
firebase-admin 14.1.0 14.2.0
@aws-sdk/client-s3 3.1085.0 3.1095.0
@types/superagent 8.1.10 8.1.11
mongoose 9.7.4 9.8.0
mysql2 3.22.6 3.23.1
oracledb 7.0.0 7.0.1

Updates eslint from 10.7.0 to 10.8.0

Release notes

Sourced from eslint's releases.

v10.8.0

Features

  • 2fee9bb feat: export ConfigObject from eslint/config (#21082) (sethamus)

Bug Fixes

  • 6b8d2f7 fix: escape reserved characters in rule id in html formatter (#21129) (Francesco Trotta)
  • 9091071 fix: prevent no-unreachable-loop crash when all loop types are ignored (#21116) (Pixel)
  • e23fafe fix: prefer-object-spread add semicolon when adding parenthesis (#21081) (synthex-byte)
  • 20b5ad0 fix: quadratic-time regex in prefer-template (#21096) (Milos Djermanovic)
  • 8b6f6c0 fix: apply ignore configs to computed methods in class-methods-use-this (#21094) (Pixel)
  • b2c608c fix: NewExpression with parenthesized callee in preserve-caught-error (#21083) (Francesco Trotta)

Documentation

  • 6ddf858 docs: fix broken Specify Parser Options anchor link (#21106) (Minsu)
  • 784dfbe docs: Clarify no-eq-null description (#21120) (Park Harin)
  • 7ec733a docs: Fix typos and grammar in glossary (#21095) (Marry (Subin Yang))
  • 92bb13f docs: replace quake link (#21108) (Jung Hyeon Jun)
  • 68eb4a5 docs: fix broken Specify Globals anchor links in rule pages (#21103) (Minsu)
  • d28f697 docs: replace Code Climate CLI links with Qlty CLI links (#21099) (Jung Hyeon Jun)
  • eccc68d docs: correct --suppressions-location option description (#21093) (Ga eun Lee)
  • c5963f7 docs: Update README (GitHub Actions Bot)

Chores

  • 4fbf46d test: pin webpack version to 5.108.4 (#21137) (Francesco Trotta)
  • 2d063e2 chore: update HTTP URLs to HTTPS in JSDoc and comments (#21101) (Bo Hyun Kim)
  • eccbe7b test: add error locations to no-class-assign (#21123) (devoil)
  • e7d1e43 ci: bump actions/setup-go from 6 to 7 (#21118) (dependabot[bot])
  • e9d66d0 ci: bump actions/setup-node from 6 to 7 (#21119) (dependabot[bot])
  • ee225b6 test: Add error location details to no-eq-null rule (#21117) (Park Harin)
  • 044a627 chore: update minimatch to ^10.2.5 (#21107) (김채영)
  • fb09aa8 chore: update ecosystem plugins (#21115) (ESLint Bot)
  • 5abd878 test: add error locations to no-proto (#21114) (Gihyeon Jeong / 정기현)
  • 9715887 test: Add error location details to no-div-regex (#21110) (Park Harin)
  • a746ec6 test: add error locations to no-new-wrappers (#21109) (Gihyeon Jeong / 정기현)
  • 8dde645 test: add error locations to no-ex-assign (#21102) (devoil)
  • 13ab0ec test: add error locations to no-label-var (#21098) (Gihyeon Jeong / 정기현)
  • a99906f test: Add error location details to no-delete-var rule (#21105) (Park Harin)
  • c47e8dc chore: add missing backticks to languages/js/index.js (#21104) (beeen)
  • 0174428 chore: add missing backticks to translate-cli-options.js (#21097) (dongkyu lee)
  • 3d36589 chore: add missing backticks to serialization.js (#21091) (이규환)
  • dcc9312 test: add error locations to eqeqeq (#21090) (Ga eun Lee)
  • 2710b18 ci: Add explicit permissions to rebuild-docs-sites workflow (#21089) (Marry (Subin Yang))
  • 5d2f866 chore: update dependency prettier to v3.9.5 (#21086) (renovate[bot])
  • d584e31 chore: fix failing ecosystem test for eslint-plugin-unicorn (#21084) (Francesco Trotta)
  • bf3eda0 chore: update ecosystem plugins (#21079) (ESLint Bot)
Commits

Updates npm-check-updates from 22.2.9 to 23.0.0

Release notes

Sourced from npm-check-updates's releases.

v23.0.0

⚠️ Breaking changes & migration

1. Node.js 22+ required (#1844) The minimum supported Node.js is now 22. Supported versions: ^22.22.2 || ^24.15.0 || >=26.0.0 (and npm >=10).

  • Migration: Upgrade Node before installing. On older Node, stay on v22.x.

2. Pure ESM package — CJS build dropped, default export is now callable (#1916, #1894) The package is now pure ESM (no more CommonJS build), and the default export is now callable directly. ncu.run() and ncu.defineConfig() still work as namespaced properties.

  • Migration (ESM):
    // before
    import * as ncu from 'npm-check-updates'
    const upgraded = await ncu.run({ /* ... */ })
    // after
    import ncu from 'npm-check-updates'
    const upgraded = await ncu({ /* ... */ }) // ncu.run({...}) also still works
  • Migration (CommonJS): Still usable via Node's native require() of ESM (Node 22+), but the import shape changed:
    // before
    const ncu = require('npm-check-updates')
    // after
    const { default: ncu } = require('npm-check-updates')
    ncu({ /* ... */ }).then(upgraded => console.log(upgraded))

3. filterVersion / rejectVersion no longer accept a predicate function. Use filter / reject instead. (#1933) These options now accept only a string, wildcard, glob, comma/space-delimited list, or /regex/. (CLI usage is unchanged — the CLI never supported functions.)

  • Migration: If you passed a function to filterVersion/rejectVersion in .ncurc.js or via the module API, move it to filter / reject instead. Those receive the package name and the parsed current version, so they can match on both:
    // before
    filterVersion: (name, semver) => !(name.startsWith('@myorg/') && +semver[0].major > 5)
    // after
    filter:        (name, semver) => !(name.startsWith('@myorg/') && +semver[0].major > 5)

4. Output is now grouped by default (#1937) --format now defaults to ["group"], so upgrades are grouped by major / minor / patch out of the box. This is a better default for most users.

  • Migration: To get the old flat output, use:
    ncu --format no-group
    The new no- prefix removes a value from the default list instead of replacing the whole list, so --format no-group,time disables grouping while adding publish times.

5. --target semver now respects explicit upper bounds (#1920) An explicit upper bound in a range is now preserved and never exceeded, e.g. ^9.5.0 <10^9.7.0 <10 (previously the bound could be overrun). This can change which versions are selected for ranges with explicit upper bounds.

✨ Other improvements

  • Native TypeScript loading (#1888), lazy-loaded npm-registry-fetch for faster startup (#1898), and reduced dependencies for a lighter install.

... (truncated)

Commits
  • 2417fe3 23.0.0
  • 61b8818 Update deps (#1948)
  • 548c6e3 Merge pull request #1943 from raineorshine/xmr/test-doctor
  • d31677a test/doctor: run fixtures from a temp copy instead of mutating tracked files
  • 31c7e85 Fix and clean up skipped tests (#1941)
  • c7c968f Merge pull request #1935 from raineorshine/xmr/fix-regex
  • e42e613 Update dependencies (#1940)
  • 5c7b422 Add regression test for single-character override keys that are not '.'
  • 8d0d4be Move override tests into upgradePackageData.test.ts
  • 21b8f53 Use jsonc-parser for packageManager and JSON catalog upgrades
  • Additional commits viewable in compare view

Updates prettier from 3.9.5 to 3.9.6

Release notes

Sourced from prettier's releases.

3.9.6

What's Changed

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.9.6

diff

TypeScript: Preserve quotes for methods named new (#19621 by @​kovsu)

// Input
interface Container {
  "new"(id: string): number;
}
// Prettier 3.9.5
interface Container {
new(id: string): number;
}
// Prettier 3.9.6
interface Container {
"new"(id: string): number;
}

TypeScript: Support import defer (#19624, #19675 by @​fisker)

// Input
import defer * as foo from "foo";
// Prettier 3.9.5
import * as foo from "foo";
// Prettier 3.9.6
import defer * as foo from "foo";

JavaScript: Added a new official plugin @prettier/plugin-yuku (#19628, #19629 by @​fisker)

@prettier/plugin-yuku is powered by Yuku (A high-performance JavaScript/TypeScript compiler toolchain written in Zig).

This plugin includes two new parsers: yuku (JavaScript syntax) and yuku-ts (TypeScript syntax).

To use this plugin:

  1. Install the plugin:

    yarn add --dev prettier @prettier/plugin-yuku

... (truncated)

Commits

Updates typescript from 6.0.3 to 7.0.2

Commits
Maintainer changes

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


Updates typescript-eslint from 8.63.0 to 8.65.0

Release notes

Sourced from typescript-eslint's releases.

v8.65.0

8.65.0 (2026-07-20)

🚀 Features

  • add warning when TS 7 is detected (#12529)
  • eslint-plugin: [no-restricted-imports] deprecate extension rule (#12527, #19562, #11889)
  • eslint-plugin: [no-shadow] specialized error on enum declaration and member shadowing (#12578)
  • parser: add onUnsupportedTypeScriptVersion option to error on unsupported TypeScript versions (#12465)
  • typescript-estree: throw for invalid import defer syntax (#12552)

🩹 Fixes

  • eslint-plugin: [prefer-string-starts-ends-with] handle escaped $ ending regex literals (#12515)
  • eslint-plugin: [unbound-method] report unbound methods accessed via member expression on union types (#12448)
  • eslint-plugin: [no-unnecessary-parameter-property-assignment] don't flag computed assignments with a variable key (#12568)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.64.0

8.64.0 (2026-07-13)

🚀 Features

  • support parsing import defer (#12513)
  • eslint-plugin: [no-loop-func] support using / await using declarations and deprecate the rule (#12500)
  • typescript-estree: throw for invalid definite assignment in class properties (#12543)

🩹 Fixes

  • eslint-plugin: [require-array-sort-compare] handle constrained arrays (#12512)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from typescript-eslint's changelog.

8.65.0 (2026-07-20)

🚀 Features

  • add warning when TS 7 is detected (#12529)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

8.64.0 (2026-07-13)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

Commits

Updates undici from 8.7.0 to 8.9.0

Release notes

Sourced from undici's releases.

v8.9.0

⚠️ Security fixes

High severity

  • GHSA-4cwx-7wf7-3272: malformed qualified private Cache-Control directives could cause cross-user information disclosure in shared caches or a parse-time crash. The cache parser now treats empty qualified directives conservatively and safely handles mixed qualified and unqualified directives. Fixed by 4fe5bc5f with regression coverage in 9f09b49a.

Medium severity

  • GHSA-m8rv-5g2x-5cg5: a malicious type property on a duck-typed blob-like HTTP/1.1 request body could inject CRLF sequences into the generated content-type header. Undici now coerces and validates the value before adding it to the request. Fixed by 7d3cf924.
  • GHSA-jr45-8vmc-qm54: optional whitespace around = in qualified no-cache and private directives could bypass shared-cache restrictions and disclose authenticated data across users. Cache-Control parsing now normalizes these forms and applies conservative cache decisions. Fixed by c601fff1.
  • GHSA-8xcm-r25x-g524: the retry interceptor could expose a stale Content-Length after resuming a partial response, potentially causing downstream response desynchronization, hangs, or corruption. Undici now rejects partial responses whose Content-Length is inconsistent with Content-Range. Fixed by e11a68ed, with corrected fixtures in 2b3f7493.
  • GHSA-v3r7-h72x-cjcm: unsanitized domain and unparsed values passed to setCookie() could inject cookie attributes. Undici now validates cookie domains, paths, and unparsed attributes more strictly. Fixed by 10d93fc3.

Additional hardening

Undici now validates non-string header values after coercion, including array elements, preventing crafted toString() or Symbol.toPrimitive implementations from introducing CRLF sequences. This defense-in-depth change was made in 354a151f.

What's Changed

New Contributors

Full Changelog: nodejs/undici@v8.8.0...v8.9.0

v8.8.0

What's Changed

... (truncated)

Commits
  • 21a8e1e Bumped v8.9.0 (#5589)
  • 7d3cf92 fix: validate blob body content type
  • c601fff fix(cache): harden cache directive parsing
  • 2b3f749 test(retry): correct broken content-range fixtures in retry-handler.js
  • e11a68e fix(retry): reject partial content length mismatch
  • 9f09b49 test: cover crash on mixed unqualified and qualified private cache directives
  • 4fe5bc5 fix: handle empty qualified private cache directive
  • 10d93fc fix: harden cookie domain, path, and unparsed attribute validation
  • a17e301 Ignore auto-generated .npmrc on Windows (#5583)
  • a0922b0 fix: handle frozen globalThis in setGlobalDispatcher (#5574)
  • Additional commits viewable in compare view

Updates @azure/cosmos from 4.9.3 to 4.10.0

Changelog

Sourced from @​azure/cosmos's changelog.

4.10.0 (2026-07-21)

Features Added

  • Added a semantic reranking API. Use Container.semanticRerank(rerankContext, documents, options) to score and reorder documents by relevance via the Cosmos DB Inference Service. Configure it through enablePreviewFeatures.semanticRerank on CosmosClientOptions: inferenceEndpoint (required) and an optional inferenceRequestTimeout (ms, default 5000) single-attempt timeout that fails with HTTP 408 when exceeded. Requires AAD authentication. The result and any thrown error include CosmosDiagnostics for the operation.
  • Added enablePreviewFeatures to CosmosClientOptions, a dictionary for opting into preview features of the SDK.

Bugs Fixed

  • #38087 Made boundingBox optional on the SpatialIndex type. Bounding boxes are only required for geometry spatial indexes, not geography ones.
  • Fixed cross-partition queries making a redundant /pkranges metadata call on every query. Queries now reuse the shared partition key range cache (worst for hybrid queries, which previously fetched ranges per component query). The cache is also made failure-safe so a transient fetch error no longer poisons later lookups.
  • #39115 Fixed continuation token handling for enableQueryControl queries. Resuming now routes through the query plan instead of forwarding the SDK-internal composite token to the gateway, avoiding an extra failing call and the MalformedContinuationToken error.
Commits
  • 022e01c Adlnu/fix signoff pipeline (#38985)
  • a55c383 [Cosmos] Bump @​azure/cosmos version to 4.10.0 (#39305)
  • 04d12eb feat(cosmos): add semantic rerank API (#37981)
  • 73754d0 [cosmos] Route enableQueryControl continuation resume through the query plan ...
  • 0b2529b [@​azure/cosmos] Reuse shared partition key range cache for cross-partition qu...
  • 55e1705 feat(cosmos): add enablePreviewFeatures to CosmosClientOptions (#39040)
  • 1d09a0f [EngSys] upgrade dev dependency prettier to v3.9.1 (#39127)
  • 0616d26 Re-export RestError and isRestError in non-management packages (#39007)
  • 3181ad2 [EngSys] Bump min-version to node 22 (#38887) NO_CI
  • 56d7d95 fix(cosmos): make boundingBox optional on SpatialIndex type (#38230)
  • Additional commits viewable in compare view

Updates @google-cloud/firestore from 8.6.0 to 8.7.0

Release notes

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

firestore: v8.7.0

8.7.0 (2026-07-21)

Features

  • firestore: Add support for 16MB documents (#8649) (ecf348b)

Bug Fixes

  • firestore: Eager evict idle REST clients on gRPC transition (#8817) (506b8b6)
Changelog

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

8.7.0 (2026-07-21)

Features

  • firestore: Add support for 16MB documents (#8649) (ecf348b)

Bug Fixes

  • firestore: Eager evict idle REST clients on gRPC transition (#8817) (506b8b6)
Commits
  • cf40e9e chore(main): release firestore 8.5.0 (#8040)
  • 0de62c0 Revert "chore(main): release firestore 8.4.0 (#7898)" (#8036)
  • 5d85291 chore: cleanup redundant .gitattributes files (#8007)
  • 88ad07c test(firestore): add test for union stage with user data (#7894)
  • d713ca8 chore(main): release firestore 8.4.0 (#7898)
  • df38263 ci: pin sinon to 21.0.3 to work around breaking changes in 21.1.0 (#8001)
  • 55d6385 Merge pull request #7915 from googleapis/mila/arraySlice-arrayFilter
  • 0e6487a Merge pull request #7980 from googleapis/run-system-tests-in-parallel
  • d72d1c0 remove beta annotation
  • 0fa836d Merge branch 'main' into mila/arraySlice-arrayFilter
  • Additional commits viewable in compare view

Updates @google-cloud/spanner from 8.8.1 to 8.10.0

Release notes

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

spanner: v8.10.0

8.10.0 (2026-07-23)

Features

  • Spanner: Modify default maxConcurrentStreamsLowWatermark value … (#8933) (7d991ec)
  • Update API sources and regenerate (#8914) (e9d308b)

spanner: v8.9.0

8.9.0 (2026-07-16)

Features

  • spanner: Add support for custom affinity key (#8157) (0d02ecc)

Bug Fixes

  • spanner: Missing callback parameter in close (#8127) (7548ab0)
  • spanner: System test against regular sessions (#8872) (bd23de1)

Performance Improvements

Changelog

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

8.10.0 (2026-07-23)

Features

  • Spanner: Modify default maxConcurrentStreamsLowWatermark value … (#8933) (7d991ec)
  • Update API sources and regenerate (#8914) (e9d308b)

8.9.0 (2026-07-16)

Features

  • spanner: Add support for custom affinity key (#8157) (0d02ecc)

Bug Fixes

  • spanner: Missing callback parameter in close (#8127) (7548ab0)
  • spanner: System test against regular sessions (#8872) (bd23de1)

Performance Improvements

Commits
  • 212421f chore(main): release spanner 8.10.0 (#8945)
  • 7d991ec feat(Spanner): modify default maxConcurrentStreamsLowWatermark value … (#8933)
  • c7a394c chore(main): release spanner 8.9.0 (#8830)
  • 0d02ecc feat(spanner): add support for custom affinity key (#8157)
  • 3977740 Remove the system test configs and the system test (#8808)
  • bd23de1 fix(spanner): system test against regular sessions (#8872)
  • 07fe148 perf(Spanner): Eliminate extend overhead (#8865)
  • 02a260f test: run the spanner system tests in google cloud build against regu… (#8864)
  • 7548ab0 fix(spanner): missing callback parameter in close (#8127)
  • See full diff in compare view

Updates firebase-admin from 14.1.0 to 14.2.0

Release notes

Sourced from firebase-admin's releases.

Firebase Admin Node.js SDK v14.2.0

New Features

  • feat(functions): Implement TaskQueue Scopes (#3210)

Bug Fixes

  • fix(dataconnect): Refactor CRUD helpers to use GraphQL variables and @allow directive (#3182)

Miscellaneous

  • [chore] Release 14.2.0 (#3213)
  • build(deps): bump websocket-driver from 0.7.4 to 0.7.5 (#3212)
  • build(deps-dev): bump @​types/node from 26.0.0 to 26.1.1 (

Bumps the dependencies group with 15 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [eslint](https://github.com/eslint/eslint) | `10.7.0` | `10.8.0` |
| [npm-check-updates](https://github.com/raineorshine/npm-check-updates) | `22.2.9` | `23.0.0` |
| [prettier](https://github.com/prettier/prettier) | `3.9.5` | `3.9.6` |
| [typescript](https://github.com/microsoft/TypeScript) | `6.0.3` | `7.0.2` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.63.0` | `8.65.0` |
| [undici](https://github.com/nodejs/undici) | `8.7.0` | `8.9.0` |
| [@azure/cosmos](https://github.com/Azure/azure-sdk-for-js/tree/HEAD/sdk/cosmosdb/cosmos) | `4.9.3` | `4.10.0` |
| [@google-cloud/firestore](https://github.com/googleapis/google-cloud-node/tree/HEAD/handwritten/firestore) | `8.6.0` | `8.7.0` |
| [@google-cloud/spanner](https://github.com/googleapis/google-cloud-node/tree/HEAD/handwritten/spanner) | `8.8.1` | `8.10.0` |
| [firebase-admin](https://github.com/firebase/firebase-admin-node) | `14.1.0` | `14.2.0` |
| [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) | `3.1085.0` | `3.1095.0` |
| [@types/superagent](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/superagent) | `8.1.10` | `8.1.11` |
| [mongoose](https://github.com/Automattic/mongoose) | `9.7.4` | `9.8.0` |
| [mysql2](https://github.com/sidorares/node-mysql2) | `3.22.6` | `3.23.1` |
| [oracledb](https://github.com/oracle/node-oracledb) | `7.0.0` | `7.0.1` |



Updates `eslint` from 10.7.0 to 10.8.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v10.7.0...v10.8.0)

Updates `npm-check-updates` from 22.2.9 to 23.0.0
- [Release notes](https://github.com/raineorshine/npm-check-updates/releases)
- [Changelog](https://github.com/raineorshine/npm-check-updates/blob/main/CHANGELOG.md)
- [Commits](raineorshine/npm-check-updates@v22.2.9...v23.0.0)

Updates `prettier` from 3.9.5 to 3.9.6
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.9.5...3.9.6)

Updates `typescript` from 6.0.3 to 7.0.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](https://github.com/microsoft/TypeScript/commits)

Updates `typescript-eslint` from 8.63.0 to 8.65.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.65.0/packages/typescript-eslint)

Updates `undici` from 8.7.0 to 8.9.0
- [Release notes](https://github.com/nodejs/undici/releases)
- [Commits](nodejs/undici@v8.7.0...v8.9.0)

Updates `@azure/cosmos` from 4.9.3 to 4.10.0
- [Release notes](https://github.com/Azure/azure-sdk-for-js/releases)
- [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/cosmosdb/cosmos/CHANGELOG.md)
- [Commits](https://github.com/Azure/azure-sdk-for-js/commits/@azure/cosmos_4.10.0/sdk/cosmosdb/cosmos)

Updates `@google-cloud/firestore` from 8.6.0 to 8.7.0
- [Release notes](https://github.com/googleapis/google-cloud-node/releases)
- [Changelog](https://github.com/googleapis/google-cloud-node/blob/main/handwritten/firestore/CHANGELOG.md)
- [Commits](https://github.com/googleapis/google-cloud-node/commits/spanner-v8.7.0/handwritten/firestore)

Updates `@google-cloud/spanner` from 8.8.1 to 8.10.0
- [Release notes](https://github.com/googleapis/google-cloud-node/releases)
- [Changelog](https://github.com/googleapis/google-cloud-node/blob/main/handwritten/spanner/CHANGELOG.md)
- [Commits](https://github.com/googleapis/google-cloud-node/commits/spanner-v8.10.0/handwritten/spanner)

Updates `firebase-admin` from 14.1.0 to 14.2.0
- [Release notes](https://github.com/firebase/firebase-admin-node/releases)
- [Changelog](https://github.com/firebase/firebase-admin-node/blob/main/CHANGELOG.md)
- [Commits](firebase/firebase-admin-node@v14.1.0...v14.2.0)

Updates `@aws-sdk/client-s3` from 3.1085.0 to 3.1095.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-s3/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1095.0/clients/client-s3)

Updates `@types/superagent` from 8.1.10 to 8.1.11
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/superagent)

Updates `mongoose` from 9.7.4 to 9.8.0
- [Release notes](https://github.com/Automattic/mongoose/releases)
- [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md)
- [Commits](Automattic/mongoose@9.7.4...9.8.0)

Updates `mysql2` from 3.22.6 to 3.23.1
- [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.22.6...v3.23.1)

Updates `oracledb` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/oracle/node-oracledb/releases)
- [Changelog](https://github.com/oracle/node-oracledb/blob/main/CHANGELOG.md)
- [Commits](oracle/node-oracledb@v7.0.0...v7.0.1)

---
updated-dependencies:
- dependency-name: eslint
  dependency-version: 10.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: npm-check-updates
  dependency-version: 23.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: prettier
  dependency-version: 3.9.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: typescript
  dependency-version: 7.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: typescript-eslint
  dependency-version: 8.65.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: undici
  dependency-version: 8.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@azure/cosmos"
  dependency-version: 4.10.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@google-cloud/firestore"
  dependency-version: 8.7.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@google-cloud/spanner"
  dependency-version: 8.10.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: firebase-admin
  dependency-version: 14.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@aws-sdk/client-s3"
  dependency-version: 3.1095.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/superagent"
  dependency-version: 8.1.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: mongoose
  dependency-version: 9.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: mysql2
  dependency-version: 3.23.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: oracledb
  dependency-version: 7.0.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code major An incompatible API change labels Aug 3, 2026
@netlify

netlify Bot commented Aug 3, 2026

Copy link
Copy Markdown

Deploy Preview for testcontainers-node ready!

Name Link
🔨 Latest commit 66afbbe
🔍 Latest deploy log https://app.netlify.com/projects/testcontainers-node/deploys/6a70ace6d752220008642482
😎 Deploy Preview https://deploy-preview-1417--testcontainers-node.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@cristianrgreco cristianrgreco removed the major An incompatible API change label Aug 3, 2026
@cristianrgreco
cristianrgreco merged commit f314a3e into main Aug 3, 2026
269 checks passed
@cristianrgreco
cristianrgreco deleted the dependabot/npm_and_yarn/dependencies-cfed589fae branch August 3, 2026 16:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant