Skip to content

build(deps): bump the nestjs group across 1 directory with 9 updates - #466

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bun/nestjs-c6b3554ffd
Open

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bun/nestjs-c6b3554ffd

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the nestjs group with 9 updates in the / directory:

Package From To
@nestjs/common 11.1.0 12.0.3
@nestjs/config 4.0.2 12.0.0
@nestjs/core 11.1.0 12.0.3
@nestjs/cqrs 11.0.3 12.0.0
@nestjs/jwt 11.0.0 12.0.2
@nestjs/passport 11.0.5 12.0.0
@nestjs/platform-fastify 11.1.0 12.0.3
@nestjs/swagger 11.2.0 12.0.1
@nestjs/testing 11.1.0 12.0.3

Updates @nestjs/common from 11.1.0 to 12.0.3

Release notes

Sourced from @​nestjs/common's releases.

v12.0.3 (2026-09-15)

Bug fixes

Dependencies

Committers: 4

v12.0.2 (2026-09-14)

Bug fixes

Enhancements

... (truncated)

Commits
  • 1415179 chore(release): publish v12.0.3 release
  • bc0fb56 fix(common): validate uuid version and variant when no version is set (#17738)
  • 03a7c98 test(common): add specs for parse uuid pipe with version 7 (#17754)
  • 3c2eaa5 fix(deps): update dependency file-type to v22.1.0 (#17753)
  • d00202a fix(common): invoke proto-key stripping hook via this in transform (#17761)
  • ee168a5 chore(release): publish v12.0.2 release
  • 31a1e50 docs(core,common): document the HTTP adapter contract for custom adapters (#1...
  • 88a6886 test(common): cover remaining branches in core and http decorators (#17712)
  • 290ab07 fix(common): support object path segments in issue messages (#17690)
  • 02ee6d4 fix(common): Support numeric string values in ParseEnumPipe (#17668)
  • Additional commits viewable in compare view

Updates @nestjs/config from 4.0.2 to 12.0.0

Release notes

Sourced from @​nestjs/config's releases.

12.0.0

What's Changed

@nestjs/config is now a native ES module, environment validation is built on Standard Schema instead of Joi-specific code, and the major version is aligned with the Nest 12 release line (there is no 5.x4.0.4 goes straight to 12.0.0).

ESM migration

The package is published as pure ESM ("type": "module", compiled with NodeNext) behind a proper exports map. The legacy root index.js / index.d.ts shims are gone, and deep imports into build internals are no longer resolvable — import from the package root.

// ✅
import { ConfigModule, ConfigService } from '@nestjs/config';
// ❌ no longer resolvable
import { ConfigService } from '@​nestjs/config/dist/config.service';

require(esm) — CommonJS still works

You do not need to convert your app to ESM. Thanks to Node's require(esm) support (Node 20.19+ / 22.12+), a CommonJS app can keep using require('@nestjs/config') unchanged.

Validation is now Standard Schema based

validationSchema accepts any schema implementing the Standard Schema spec — Zod (v3, v4, v4-mini), Valibot, ArkType, Joi 18+, and anything else that adopts it. There is no longer any Joi-specific code path in the module, and Joi is no longer implied as the validation library.

ConfigModule.forRoot({
  validationSchema: z.object({
    PORT: z.coerce.number().default(3000),
    DATABASE_NAME: z.string(),
  }),
});

Joi keeps working — it implements Standard Schema as of v18 — and the historical abortEarly: false / allowUnknown: true defaults are still applied automatically for Joi schemas, so existing Joi setups behave as before.

Breaking: validationOptions shape

Options are now the Standard Schema Options object, and library-specific settings move under libraryOptions:

// Before (4.x)
validationOptions: { allowUnknown: false, abortEarly: true }
// Now (12.x)
validationOptions: { libraryOptions: { allowUnknown: false, abortEarly: true } }

The generic parameter changed accordingly: ConfigModuleOptions<ValidationOptions extends StandardSchemaV1.Options>, and validationSchema is typed as StandardSchemaV1 rather than any — a schema that does not implement the spec is now a compile-time error instead of a runtime one.

... (truncated)

Commits
  • 269312f chore(): release v12.0.0
  • 5748c1f chore: upgrade to v12
  • d833a6a chore(deps): update dependency oxlint to v1.80.0 (#2408)
  • 4555cbc chore(deps): update nest monorepo to v11.2.3 (#2407)
  • 4561739 chore(deps): update dependency vite to v8.2.2 (#2406)
  • 0fc13bb chore(deps): update dependency joi to v18.2.5 (#2405)
  • 22642b8 chore(deps): update dependency oxlint to v1.79.0 (#2404)
  • d3a7dd5 chore(deps): update dependency vitest to v4.1.11 (#2403)
  • 8c87973 chore(deps): update dependency zod to v4.4.3 (#2402)
  • 949dc88 Merge pull request #2356 from nestjs/renovate/cimg-node-24.x
  • Additional commits viewable in compare view

Updates @nestjs/core from 11.1.0 to 12.0.3

Release notes

Sourced from @​nestjs/core's releases.

v12.0.3 (2026-09-15)

Bug fixes

Dependencies

Committers: 4

v12.0.2 (2026-09-14)

Bug fixes

Enhancements

... (truncated)

Commits
  • 1415179 chore(release): publish v12.0.3 release
  • ee168a5 chore(release): publish v12.0.2 release
  • 31a1e50 docs(core,common): document the HTTP adapter contract for custom adapters (#1...
  • 1d1dbf7 fix(core): discover factory providers with discovery decorators (#17667)
  • 788e886 fix(core): avoid treating error instances with statusCode as http errors (#...
  • ddbb455 fix(core): clean up repeated shutdown signal listeners (#17625)
  • 783d539 refactor(core): extract duplicate debug-mode check into shared helper
  • a3a31b9 refactor: use Object.hasOwn
  • a9bf20b fix(core): Serialize errorCode for plain HttpException responses
  • 52b5e10 fix(core): restore logger after silent lazy module load
  • Additional commits viewable in compare view

Updates @nestjs/cqrs from 11.0.3 to 12.0.0

Release notes

Sourced from @​nestjs/cqrs's releases.

Release 12.0.0

What's Changed

@nestjs/cqrs is now a native ES module, and the major version is aligned with the Nest 12 release line (11.0.3 goes straight to 12.0.0).

ESM migration

The package is published as pure ESM ("type": "module", compiled with NodeNext) behind a proper exports map. The legacy root index.js / index.d.ts / index.ts shims are gone, and deep imports into build internals are no longer resolvable — import from the package root.

// ✅
import { CommandBus, EventBus, AggregateRoot } from '@nestjs/cqrs';
// ❌ no longer resolvable
import { CommandBus } from '@​nestjs/cqrs/dist/command-bus';

./package.json is exported as well, for tooling that reads the manifest.

require(esm) — CommonJS still works

You do not need to convert your app to ESM. Thanks to Node's require(esm) support, CommonJS consumers can keep requiring the package exactly as before:

const { CommandBus } = require('@nestjs/cqrs'); // still works

The . export declares import, require, and default conditions, all pointing at the same ESM build, so CJS resolution no longer fails with ERR_PACKAGE_PATH_NOT_EXPORTED.

Breaking changes

  • Node.js ^20.19.0 || >=22.12.0 is now required (engines). These are the versions where require(esm) is unflagged — older Node cannot load ESM from CommonJS at all.
  • Nest 12 is now the required peer. @nestjs/common and @nestjs/core peer ranges are ^12.0.0; support for Nest 10 and 11 has been dropped.
  • Deep imports removed. Anything reaching into @nestjs/cqrs/dist/* must import from the package root instead.
  • Root shims removed. index.js / index.d.ts at the package root no longer exist; resolution goes through the exports map.

There are no changes to the public API — command/query/event buses, handlers, sagas, AggregateRoot, decorators, and operators all behave exactly as they did in v11.

Commits
  • 9b614ae chore(): release v12.0.0
  • 7e99bda chore: upgrade to v12
  • 1de147a chore(deps): update dependency oxlint to v1.80.0 (#2349)
  • 77ccfd2 chore(deps): update nest monorepo to v11.2.3 (#2348)
  • 1b25f34 chore(deps): update dependency vite to v8.2.2 (#2347)
  • a372a0f chore(deps): update dependency oxlint to v1.79.0 (#2346)
  • 4b5af3b chore(deps): update dependency vitest to v4.1.11 (#2345)
  • c1238f2 Merge pull request #2323 from nestjs/renovate/typescript-7.x
  • 2bb511e chore(deps): update dependency typescript to v7
  • d5afbdd Merge pull request #2284 from nestjs/renovate/cimg-node-24.x
  • Additional commits viewable in compare view

Updates @nestjs/jwt from 11.0.0 to 12.0.2

Release notes

Sourced from @​nestjs/jwt's releases.

Release 12.0.2

What's Changed

New Contributors

Full Changelog: nestjs/jwt@12.0.1...12.0.2

Release 12.0.1

  • fix: jsonwebtoken esm imports (05d0075)

Release 12.0.0

What's Changed

@nestjs/jwt is now a native ES module, and the major version is aligned with the Nest 12 release line

ESM migration

The package is published as pure ESM ("type": "module", compiled with NodeNext) behind a proper exports map. The legacy root index.js / index.d.ts / index.ts shims are gone, and deep imports into build internals are no longer resolvable — import from the package root.

// ✅
import { JwtModule, JwtService } from '@nestjs/jwt';
// ❌ no longer resolvable
import { JwtService } from '@​nestjs/jwt/dist/jwt.service';

require(esm) — CommonJS still works

You do not need to convert your app to ESM. Thanks to Node's require(esm) support (Node 20.19+, 22.12+, and all of 24.x), a CommonJS Nest application can keep requiring the package exactly as before:

const { JwtModule, JwtService } = require('@nestjs/jwt');

TypeScript users compiling to CommonJS are unaffected as long as their runtime is on a supported Node version. On older Node releases, require() of this package will throw ERR_REQUIRE_ESM — upgrade Node, or switch the consuming code to import.

jsonwebtoken re-exports

The error classes re-exported from jsonwebtoken (TokenExpiredError, NotBeforeError, JsonWebTokenError) are now re-exported explicitly by name instead of via a star export, so they resolve correctly under ESM interop with the CJS jsonwebtoken package. No import changes are needed on your side:

import { TokenExpiredError } from '@nestjs/jwt';

Upgrading

</tr></table> 

... (truncated)

Commits
  • 59b8bfa chore(): release v12.0.2
  • 82fdda1 Merge pull request #2261 from nestjs/renovate/cimg-node-24.x
  • 065f855 Merge pull request #2270 from nestjs/renovate/release-it-21.x
  • 6ddf5cf Merge pull request #2269 from Asadshah7950/fix/decode-overloads-and-nullability
  • b206dee chore(deps): update dependency release-it to v21.0.3
  • 936e18f fix(jwt): refine decode overloads for additive complete typing
  • d5cccd2 fix(jwt): add type overloads for decode with complete option and nullable return
  • bf85819 chore(deps): update dependency lint-staged to v17.5.1 (#2268)
  • 79dd561 chore(deps): update dependency @​types/node to v24.13.4 (#2267)
  • b586525 chore(deps): update node.js to v24.21.0
  • Additional commits viewable in compare view

Updates @nestjs/passport from 11.0.5 to 12.0.0

Release notes

Sourced from @​nestjs/passport's releases.

Release 12.0.0

What's Changed

@nestjs/passport is now a native ES module, and the major version is aligned with the Nest 12 release line.

ESM migration

The package is published as pure ESM ("type": "module", compiled with NodeNext) behind a proper exports map. The legacy root index.js / index.d.ts / index.ts shims are gone, and deep imports into build internals (e.g. @nestjs/passport/dist/auth.guard) are no longer resolvable — import from the package root:

import { AuthGuard, PassportModule, PassportStrategy } from '@nestjs/passport';

require(esm) — CommonJS still works

You do not need to convert your app to ESM. Thanks to Node's require(esm) support, a CommonJS app can keep doing:

const { AuthGuard, PassportModule } = require('@nestjs/passport');

This requires Node.js 20.19+ or 22.12+ (where require(esm) is enabled by default). On older Node versions you must either upgrade Node or move your app to ESM.

AuthGuard no longer forwards module options to passport.authenticate()

defaultStrategy and property — options that belong to PassportModule.register(), not to Passport itself — were being passed straight through to passport.authenticate(), where they could collide with strategy-level options. They are now stripped before the call, so a strategy only ever receives real AuthenticateOptions.

The signature of getAuthenticateOptions() changed accordingly:

// before
getAuthenticateOptions(
  context: ExecutionContext,
): Promise<IAuthModuleOptions> | IAuthModuleOptions | undefined;
// after
getAuthenticateOptions(
context: ExecutionContext,
):
| Promise<AuthGuardAuthenticateOptions>
| AuthGuardAuthenticateOptions
| undefined;

AuthGuardAuthenticateOptions is exported from the package root and is passport.AuthenticateOptions with defaultStrategy explicitly disallowed. If you override getAuthenticateOptions() and return defaultStrategy, TypeScript will now flag it — remove it and set it via PassportModule.register({ defaultStrategy: '...' }) instead.

Peer dependencies

"peerDependencies": {
</tr></table> 

... (truncated)

Commits
  • 0f15350 chore(): release v12.0.0
  • c6af6f6 chore: upgrade to v12
  • d05c93e chore(deps): update dependency oxlint to v1.80.0 (#2309)
  • 8d06e0c chore(deps): update nest monorepo to v11.2.3 (#2308)
  • 875fddc chore(deps): update dependency oxlint to v1.79.0 (#2307)
  • dd63061 chore(deps): update vitest monorepo to v4.1.11 (#2306)
  • 28e6701 Merge pull request #2300 from GiHoon1123/fix-947-authenticate-options
  • 849d11c Merge master into fix-947-authenticate-options, resolve conflicts
  • de02b20 Merge pull request #2250 from nestjs/renovate/cimg-node-24.x
  • e27a9c8 Merge pull request #2230 from nestjs/chore/esm-migration
  • Additional commits viewable in compare view

Updates @nestjs/platform-fastify from 11.1.0 to 12.0.3

Release notes

Sourced from @​nestjs/platform-fastify's releases.

v12.0.3 (2026-09-15)

Bug fixes

Dependencies

Committers: 4

v12.0.2 (2026-09-14)

Bug fixes

Enhancements

... (truncated)

Commits
  • 1415179 chore(release): publish v12.0.3 release
  • ee168a5 chore(release): publish v12.0.2 release
  • e93c8e1 fix: absolute-form middleware bypass (fastify) and unserializable pattern cra...
  • 7c4fd19 fix(deps): update dependency fastify to v5.12.4 (#17729)
  • 7796520 fix(fastify): derive neutral version when accept header is absent (#17705)
  • 3e149fa fix(fastify): send responses for exceptions thrown from middleware (#17699)
  • 4c751c5 chore(release): publish v12.0.1 release
  • 3c25112 chore: update peer deps
  • 6494a6c chore(release): publish v12.0.0 release
  • c921a60 fix(fastify): append headers instead of overwriting
  • Additional commits viewable in compare view

Updates @nestjs/swagger from 11.2.0 to 12.0.1

Release notes

Sourced from @​nestjs/swagger's releases.

Release 12.0.1

12.0.1 (2026-08-28)

Bug fixes

Dependencies

Committers: 1

Release 12.0.0

What's Changed

@nestjs/swagger is now a native ES module, requires Nest 12, and changes how nullable schemas are spelled in the generated document.

ESM migration

The package is published as pure ESM ("type": "module", compiled with NodeNext) behind a proper exports map. The legacy root index.ts / plugin.js / plugin.ts shims are gone, and deep imports into build internals are no longer resolvable — import from the package root (@nestjs/swagger) or from @nestjs/swagger/plugin.

require(esm) — CommonJS still works

You do not need to convert your app to ESM. Thanks to Node's require(esm) support, a CommonJS app can keep doing const { SwaggerModule } = require('@nestjs/swagger'). The CLI plugin entry (@nestjs/swagger/plugin) also keeps a require condition so nest-cli.json setups load it unchanged.

This is why the package now declares "engines": { "node": "^20.19.0 || >=22.12.0" } — those are the Node versions where require(esm) is available without a flag.

Nest 12 peer dependencies

@nestjs/common and @nestjs/core peers are now ^12.0.0. @nestjs/mapped-types moves to 12.0.0 (itself ESM, with its major aligned to the Nest 12 line), so PartialType, PickType, OmitType and IntersectionType come from an ESM build too.

Standard Schema support

Schemas passed to Nest 12's route decorators (for example @Body({ schema: z.object({ ... }) })) can now be reflected into the OpenAPI document. Supply an adapter via the new standardSchemaConverter document option:

import { SwaggerModule, DocumentBuilder } from '@nestjs/swagger';
import type { SwaggerDocumentOptions } from '@nestjs/swagger';
import { createSchema } from 'zod-openapi';
import type { ZodType } from 'zod';
// Standard Schema exposes the producing library under ~standard.vendor,
// which is how you narrow the raw value to a library-specific type.
function isZodSchema(schema: unknown): schema is ZodType {
return (
!!schema &&
typeof schema === 'object' &&
(schema as { '~standard'?: { vendor?: string } })['~standard']?.vendor ===
'zod'
);
</tr></table>

... (truncated)

Commits
  • 4274e7c chore(): release v12.0.1
  • 325d009 Merge pull request #4082 from nestjs/fix/esm-hoist-static-imports
  • 8980a54 fix: esm hoist static imports
  • 31b0bf4 chore(deps): update dependency lint-staged to v17.4.1 (#4078)
  • b71a812 Merge pull request #4077 from nestjs/renovate/swagger-ui-dist-5.x-lockfile
  • ec18a13 chore(deps): update dependency swagger-ui-dist to v5.32.14
  • 0f85b4c Merge pull request #4072 from nestjs/renovate/js-yaml-5.x
  • 7d8b38e Merge pull request #4076 from nestjs/renovate/vite-8.x-lockfile
  • ebc4cb8 Merge pull request #4069 from nestjs/renovate/zod-openapi-6.x
  • 71e1769 Merge pull request #4068 from nestjs/renovate/swagger-ui-dist-5.x
  • Additional commits viewable in compare view

Updates @nestjs/testing from 11.1.0 to 12.0.3

Release notes

Sourced from @​nestjs/testing's releases.

v12.0.3 (2026-09-15)

Bug fixes

Dependencies

Committers: 4

v12.0.2 (2026-09-14)

Bug fixes

Enhancements

... (truncated)

Commits
  • 1415179 chore(release): publish v12.0.3 release
  • ee168a5 chore(release): publish v12.0.2 release
  • 4c751c5 chore(release): publish v12.0.1 release
  • 3c25112 chore: update peer deps
  • 6494a6c chore(release): publish v12.0.0 release
  • edb0034 Merge branch 'master' into v12.0.0
  • 4535f43 chore(release): publish v11.2.1 release
  • e255755 chore: resolve conflicts, minor fixes
  • 5d1b19b Merge branch 'master' into v12.0.0
  • f2a7e4b chore(release): publish v11.2.0 release
  • Additional commits viewable in compare view

@dependabot dependabot Bot added scope:dependencies dependency updates type:build changes to the build system or external dependencies labels Aug 31, 2026
@flex-development
flex-development Bot enabled auto-merge (squash) August 31, 2026 20:45
@dependabot
dependabot Bot force-pushed the dependabot/bun/nestjs-c6b3554ffd branch from 33015eb to ffcba92 Compare September 3, 2026 03:17
@dependabot
dependabot Bot force-pushed the dependabot/bun/nestjs-c6b3554ffd branch from ffcba92 to 2e828c1 Compare September 21, 2026 20:44
Bumps the nestjs group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@nestjs/common](https://github.com/nestjs/nest/tree/HEAD/packages/common) | `11.1.0` | `12.0.3` |
| [@nestjs/config](https://github.com/nestjs/config) | `4.0.2` | `12.0.0` |
| [@nestjs/core](https://github.com/nestjs/nest/tree/HEAD/packages/core) | `11.1.0` | `12.0.3` |
| [@nestjs/cqrs](https://github.com/nestjs/cqrs) | `11.0.3` | `12.0.0` |
| [@nestjs/jwt](https://github.com/nestjs/jwt) | `11.0.0` | `12.0.2` |
| [@nestjs/passport](https://github.com/nestjs/passport) | `11.0.5` | `12.0.0` |
| [@nestjs/platform-fastify](https://github.com/nestjs/nest/tree/HEAD/packages/platform-fastify) | `11.1.0` | `12.0.3` |
| [@nestjs/swagger](https://github.com/nestjs/swagger) | `11.2.0` | `12.0.1` |
| [@nestjs/testing](https://github.com/nestjs/nest/tree/HEAD/packages/testing) | `11.1.0` | `12.0.3` |



Updates `@nestjs/common` from 11.1.0 to 12.0.3
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v12.0.3/packages/common)

Updates `@nestjs/config` from 4.0.2 to 12.0.0
- [Release notes](https://github.com/nestjs/config/releases)
- [Commits](nestjs/config@4.0.2...12.0.0)

Updates `@nestjs/core` from 11.1.0 to 12.0.3
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v12.0.3/packages/core)

Updates `@nestjs/cqrs` from 11.0.3 to 12.0.0
- [Release notes](https://github.com/nestjs/cqrs/releases)
- [Commits](nestjs/cqrs@11.0.3...12.0.0)

Updates `@nestjs/jwt` from 11.0.0 to 12.0.2
- [Release notes](https://github.com/nestjs/jwt/releases)
- [Commits](nestjs/jwt@11.0.0...12.0.2)

Updates `@nestjs/passport` from 11.0.5 to 12.0.0
- [Release notes](https://github.com/nestjs/passport/releases)
- [Commits](nestjs/passport@11.0.5...12.0.0)

Updates `@nestjs/platform-fastify` from 11.1.0 to 12.0.3
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v12.0.3/packages/platform-fastify)

Updates `@nestjs/swagger` from 11.2.0 to 12.0.1
- [Release notes](https://github.com/nestjs/swagger/releases)
- [Commits](nestjs/swagger@11.2.0...12.0.1)

Updates `@nestjs/testing` from 11.1.0 to 12.0.3
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v12.0.3/packages/testing)

---
updated-dependencies:
- dependency-name: "@nestjs/common"
  dependency-version: 12.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nestjs
- dependency-name: "@nestjs/config"
  dependency-version: 12.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nestjs
- dependency-name: "@nestjs/core"
  dependency-version: 12.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nestjs
- dependency-name: "@nestjs/cqrs"
  dependency-version: 12.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nestjs
- dependency-name: "@nestjs/jwt"
  dependency-version: 12.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nestjs
- dependency-name: "@nestjs/passport"
  dependency-version: 12.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nestjs
- dependency-name: "@nestjs/platform-fastify"
  dependency-version: 12.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nestjs
- dependency-name: "@nestjs/swagger"
  dependency-version: 12.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nestjs
- dependency-name: "@nestjs/testing"
  dependency-version: 12.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: nestjs
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/bun/nestjs-c6b3554ffd branch from 2e828c1 to 129885c Compare September 22, 2026 20:44

This branch has not been deployed

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

Labels

scope:dependencies dependency updates type:build changes to the build system or external dependencies

Projects

Status: 🆕 New

Development

Successfully merging this pull request may close these issues.

0 participants