Skip to content

Bump the all-npm-dependencies group across 1 directory with 10 updates#12

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/all-npm-dependencies-ae91a81530
Open

Bump the all-npm-dependencies group across 1 directory with 10 updates#12
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/all-npm-dependencies-ae91a81530

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 1, 2026

Copy link
Copy Markdown
Contributor

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

Package From To
@fastify/swagger-ui 5.2.6 6.0.0
@openapitools/openapi-generator-cli 2.33.1 2.39.1
@stoplight/prism-cli 5.15.10 5.15.11
@typespec/compiler 1.12.0 1.13.0
@typespec/http 1.12.0 1.13.0
@typespec/openapi3 1.12.0 1.13.0
@typespec/rest 0.82.0 0.83.0
fastify 5.8.5 5.9.0
fastify-plugin 5.1.0 6.0.0
npm-check-updates 22.2.0 22.2.9

Updates @fastify/swagger-ui from 5.2.6 to 6.0.0

Release notes

Sourced from @​fastify/swagger-ui's releases.

v6.0.0

What's Changed

Full Changelog: fastify/fastify-swagger-ui@v5.2.6...v6.0.0

Commits
  • a07ffbb 6.0.0
  • 17e11ab chore(deps-dev): bump swagger-ui-dist from 5.32.5 to 5.32.6 (#277)
  • 04e601e chore(types): remove useUnsafeMarkdown parameter (#274)
  • 835b929 chore(.gitattributes): stop eol conversion for all binary files (#270)
  • 7345d86 chore(deps-dev): bump swagger-ui-dist from 5.32.1 to 5.32.5 (#272)
  • 205e900 refactor(types): migrate from tsd to tstyche (#271)
  • See full diff in compare view

Updates @openapitools/openapi-generator-cli from 2.33.1 to 2.39.1

Release notes

Sourced from @​openapitools/openapi-generator-cli's releases.

v2.39.1

2.39.1 (2026-06-30)

Bug Fixes

  • deps: update dependency fs-extra to v11.3.6 (#1244) (2d72882)

v2.39.0

2.39.0 (2026-06-20)

Features

  • release: trigger a release after fixing sorting in list command (724575d)

v2.38.0

2.38.0 (2026-06-11)

Features

  • release: trigger a release after upgrading concurrently to newer versions (#1225) (a265046)

v2.37.0

2.37.0 (2026-06-11)

Features

  • release: trigger a release after upgrading deps to newer versions (#1223) (899c037)

v2.36.0

2.36.0 (2026-06-11)

Features

  • release: trigger a release after upgrading to node 22.x (#1217) (8f69e5a)

v2.35.0

2.35.0 (2026-06-08)

Features

v2.34.0

2.34.0 (2026-05-20)

... (truncated)

Commits
  • 2d72882 fix(deps): update dependency fs-extra to v11.3.6 (#1244)
  • 5c6f6b1 chore(deps): update dependency prettier to v3.9.3 (#1243)
  • 8e755bf chore(deps): update dependency prettier to v3.9.1 (#1242)
  • c149218 chore(deps): update dependency prettier to v3.9.0 (#1241)
  • 99016bb chore(deps): update dependency prettier to v3.8.5 (#1240)
  • 4f3a4e5 chore(deps): update commitlint monorepo to v21.1.0 (#1239)
  • cafca82 chore(deps): update dependency axios to v1.18.1 (#1238)
  • 724575d feat(release): trigger a release after fixing sorting in list command
  • 5f0253d chore(release): trigger a release (#1236)
  • 050b66f chore(fix): sort rows in list command (#1234)
  • Additional commits viewable in compare view

Updates @stoplight/prism-cli from 5.15.10 to 5.15.11

Release notes

Sourced from @​stoplight/prism-cli's releases.

v5.15.11

5.15.11 (2026-06-03)

Bug Fixes

Reverts

  • "chore(release): cut the v5.15.11 release [skip ci]" (#2798) (64783a2)
Changelog

Sourced from @​stoplight/prism-cli's changelog.

5.15.11 (2026-06-03)

Bug Fixes

Reverts

  • "chore(release): cut the v5.15.11 release [skip ci]" (#2798) (64783a2)
Commits
  • ddbe020 chore(release): cut the v5.15.11 release [skip ci]
  • 8666a2e fix(deps): bump uuid from 8.3.2 to 11.1.1 (#2802)
  • 64783a2 revert: "chore(release): cut the v5.15.11 release [skip ci]" (#2798)
  • 3f2c67e fix(deps): bump tmp (#2800)
  • 90bfde7 fix(deps): bump qs from 6.15.0 to 6.15.2 (#2799)
  • f44339b chore(release): cut the v5.15.11 release [skip ci]
  • 528ba6e fix(ci): fix upload CLI binaries step (#2785)
  • f74e50c fix(deps): bump @​tootallnate/once, http-proxy-agent and https-proxy-agent (#2...
  • d001e4a chore: migrate package manager from yarn to npm (#2794)
  • bb2a017 fix(deps): bump fast-xml-builder from 1.1.5 to 1.2.0 (#2792)
  • Additional commits viewable in compare view

Updates @typespec/compiler from 1.12.0 to 1.13.0

Release notes

Sourced from @​typespec/compiler's releases.

typespec-stable@1.13.0

@​typespec/compiler

Deprecations

  • #10876 Deprecated deepClone utility in favor of structuredClone. All internal usages have been replaced with the native structuredClone API.

Features

  • #10897 ApplyCodeFixExpect.toEqual now accepts Record<string, string> to assert on multiple files after a code fix is applied. This enables testing code fixes that write to a different file (e.g., adding augment decorators to a client.tsp).

    await ruleTester
      .expect({
        "main.tsp": `import "./client.tsp";\nmodel Foo { name: string; }`,
        "client.tsp": ``,
      })
      .applyCodeFix("add-client-override")
      .toEqual({
        "client.tsp": `@@override(Foo.name, "clientName");\n`,
      });
  • #10548 Add kind: project and entrypoint support to tspconfig.yaml for defining project boundaries and entrypoint resolution. See Project Configuration for more details.

    kind: project
    entrypoint: src/service.tsp
    emit:
      - "@typespec/openapi3"
  • #10694 Added support for accessing late-bound members on models that use template spreads or is bases.

    Previously, accessing a member that was introduced via a template instantiation would fail with an invalid-ref error:

    model Template<T> {
      ...T;
    }
    model User is Template<{name: string}>;
    alias UserName = User.name; // ❌ previously: "Model doesn't have member name"

    Now, the compiler will force-evaluate the container type when a member lookup fails on a model with unknown members (from template spreads or is), making late-bound members accessible:

    model Template<T> {
      ...T;
    }

... (truncated)

Commits
  • 212a9ed Bump version for release 1.13 (#10928)
  • 2498f8e Fix configured plugin loading by scanning for the built assembly (#10925)
  • dfc0cb3 Add TypeSpec 1.13.0 release notes page (#10929)
  • 9fc8e8b http-client-java, follow up on exactName after TCGC fix (#10927)
  • 393dc9f [python] release new version (#10926)
  • e3ae02d [python] add support for exact enum member names (#10920)
  • b248d66 fix(http-client-csharp): clear diagnostic when client namespace cannot be res...
  • 5774655 Add MPFD Support (#10664)
  • 143f361 fix: Fix ModelFactory to emit methods for models with internal discri… (#10922)
  • 82aa25a Add cop static-analysis rules for the C# emitter (#10909)
  • Additional commits viewable in compare view

Updates @typespec/http from 1.12.0 to 1.13.0

Commits
  • 212a9ed Bump version for release 1.13 (#10928)
  • 2498f8e Fix configured plugin loading by scanning for the built assembly (#10925)
  • dfc0cb3 Add TypeSpec 1.13.0 release notes page (#10929)
  • 9fc8e8b http-client-java, follow up on exactName after TCGC fix (#10927)
  • 393dc9f [python] release new version (#10926)
  • e3ae02d [python] add support for exact enum member names (#10920)
  • b248d66 fix(http-client-csharp): clear diagnostic when client namespace cannot be res...
  • 5774655 Add MPFD Support (#10664)
  • 143f361 fix: Fix ModelFactory to emit methods for models with internal discri… (#10922)
  • 82aa25a Add cop static-analysis rules for the C# emitter (#10909)
  • Additional commits viewable in compare view

Updates @typespec/openapi3 from 1.12.0 to 1.13.0

Release notes

Sourced from @​typespec/openapi3's releases.

typespec-stable@1.13.0

@​typespec/compiler

Deprecations

  • #10876 Deprecated deepClone utility in favor of structuredClone. All internal usages have been replaced with the native structuredClone API.

Features

  • #10897 ApplyCodeFixExpect.toEqual now accepts Record<string, string> to assert on multiple files after a code fix is applied. This enables testing code fixes that write to a different file (e.g., adding augment decorators to a client.tsp).

    await ruleTester
      .expect({
        "main.tsp": `import "./client.tsp";\nmodel Foo { name: string; }`,
        "client.tsp": ``,
      })
      .applyCodeFix("add-client-override")
      .toEqual({
        "client.tsp": `@@override(Foo.name, "clientName");\n`,
      });
  • #10548 Add kind: project and entrypoint support to tspconfig.yaml for defining project boundaries and entrypoint resolution. See Project Configuration for more details.

    kind: project
    entrypoint: src/service.tsp
    emit:
      - "@typespec/openapi3"
  • #10694 Added support for accessing late-bound members on models that use template spreads or is bases.

    Previously, accessing a member that was introduced via a template instantiation would fail with an invalid-ref error:

    model Template<T> {
      ...T;
    }
    model User is Template<{name: string}>;
    alias UserName = User.name; // ❌ previously: "Model doesn't have member name"

    Now, the compiler will force-evaluate the container type when a member lookup fails on a model with unknown members (from template spreads or is), making late-bound members accessible:

    model Template<T> {
      ...T;
    }

... (truncated)

Commits
  • 212a9ed Bump version for release 1.13 (#10928)
  • 2498f8e Fix configured plugin loading by scanning for the built assembly (#10925)
  • dfc0cb3 Add TypeSpec 1.13.0 release notes page (#10929)
  • 9fc8e8b http-client-java, follow up on exactName after TCGC fix (#10927)
  • 393dc9f [python] release new version (#10926)
  • e3ae02d [python] add support for exact enum member names (#10920)
  • b248d66 fix(http-client-csharp): clear diagnostic when client namespace cannot be res...
  • 5774655 Add MPFD Support (#10664)
  • 143f361 fix: Fix ModelFactory to emit methods for models with internal discri… (#10922)
  • 82aa25a Add cop static-analysis rules for the C# emitter (#10909)
  • Additional commits viewable in compare view

Updates @typespec/rest from 0.82.0 to 0.83.0

Release notes

Sourced from @​typespec/rest's releases.

@​typespec/rest@​0.83.0

No changes, version bump only.

Commits
  • 212a9ed Bump version for release 1.13 (#10928)
  • 2498f8e Fix configured plugin loading by scanning for the built assembly (#10925)
  • dfc0cb3 Add TypeSpec 1.13.0 release notes page (#10929)
  • 9fc8e8b http-client-java, follow up on exactName after TCGC fix (#10927)
  • 393dc9f [python] release new version (#10926)
  • e3ae02d [python] add support for exact enum member names (#10920)
  • b248d66 fix(http-client-csharp): clear diagnostic when client namespace cannot be res...
  • 5774655 Add MPFD Support (#10664)
  • 143f361 fix: Fix ModelFactory to emit methods for models with internal discri… (#10922)
  • 82aa25a Add cop static-analysis rules for the C# emitter (#10909)
  • Additional commits viewable in compare view

Updates fastify from 5.8.5 to 5.9.0

Release notes

Sourced from fastify's releases.

v5.9.0

What's Changed

... (truncated)

Commits
  • 2e45a44 Bumped v5.9.0
  • 630715d docs(types): mark request metadata accessors as untrusted input (#6572)
  • ff993e8 docs: update Serverless guide Dockerfile to a supported Node.js version (#6789)
  • 458f104 docs: fix incorrect code examples in Hooks and Server reference (#6622)
  • ea454d0 docs: add warning about empty string coercion with nullable types (#6452)
  • 121895b docs: migrate Zod type provider to official @​fastify package (#6686)
  • cc8d9a3 fix: make hasRequestDecorator/hasReplyDecorator recognize constructor-assigne...
  • 6e6be15 chore: Bump actions/checkout from 6 to 7 (#6812)
  • 88bf134 chore: add new sponsor (#6813)
  • fabd964 chore: replace http with https in urls (#6809)
  • Additional commits viewable in compare view

Updates fastify-plugin from 5.1.0 to 6.0.0

Release notes

Sourced from fastify-plugin's releases.

v6.0.0

What's Changed

New Contributors

Full Changelog: fastify/fastify-plugin@v5.1.0...v6.0.0

Commits
  • 05c1c32 6.0.0
  • a309399 chore: update depedabot setting (#292)
  • 3d43488 chore: removed interface deprecated
  • 629292b refactor: standardize entry points and project structure
  • 68ddddb refactor(types): migrate from tsd to tstyche (#288)
  • 12c07a4 ci: add lock-threads workflow (#286)
  • 8a4d1a2 build(deps-dev): bump neostandard from 0.12.2 to 0.13.0 (#285)
  • 8e9e035 build(deps): bump fastify/workflows/.github/workflows/plugins-ci.yml (#283)
  • 41b480e chore: remove stale workflow and node reference type declaration (#281)
  • 1f378b1 chore(license): standardise license notice (#278)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by fdawgs, a new releaser for fastify-plugin since your current version.


Updates npm-check-updates from 22.2.0 to 22.2.9

Release notes

Sourced from npm-check-updates's releases.

v22.2.9

What's Changed

Full Changelog: raineorshine/npm-check-updates@v22.2.8...v22.2.9

v22.2.8

What's Changed

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

| Package | From | To |
| --- | --- | --- |
| [@fastify/swagger-ui](https://github.com/fastify/fastify-swagger-ui) | `5.2.6` | `6.0.0` |
| [@openapitools/openapi-generator-cli](https://github.com/OpenAPITools/openapi-generator-cli) | `2.33.1` | `2.39.1` |
| [@stoplight/prism-cli](https://github.com/stoplightio/prism) | `5.15.10` | `5.15.11` |
| [@typespec/compiler](https://github.com/microsoft/typespec) | `1.12.0` | `1.13.0` |
| [@typespec/http](https://github.com/microsoft/typespec) | `1.12.0` | `1.13.0` |
| [@typespec/openapi3](https://github.com/microsoft/typespec) | `1.12.0` | `1.13.0` |
| [@typespec/rest](https://github.com/microsoft/typespec) | `0.82.0` | `0.83.0` |
| [fastify](https://github.com/fastify/fastify) | `5.8.5` | `5.9.0` |
| [fastify-plugin](https://github.com/fastify/fastify-plugin) | `5.1.0` | `6.0.0` |
| [npm-check-updates](https://github.com/raineorshine/npm-check-updates) | `22.2.0` | `22.2.9` |



Updates `@fastify/swagger-ui` from 5.2.6 to 6.0.0
- [Release notes](https://github.com/fastify/fastify-swagger-ui/releases)
- [Commits](fastify/fastify-swagger-ui@v5.2.6...v6.0.0)

Updates `@openapitools/openapi-generator-cli` from 2.33.1 to 2.39.1
- [Release notes](https://github.com/OpenAPITools/openapi-generator-cli/releases)
- [Commits](OpenAPITools/openapi-generator-cli@v2.33.1...v2.39.1)

Updates `@stoplight/prism-cli` from 5.15.10 to 5.15.11
- [Release notes](https://github.com/stoplightio/prism/releases)
- [Changelog](https://github.com/stoplightio/prism/blob/master/CHANGELOG.md)
- [Commits](stoplightio/prism@v5.15.10...v5.15.11)

Updates `@typespec/compiler` from 1.12.0 to 1.13.0
- [Release notes](https://github.com/microsoft/typespec/releases)
- [Commits](https://github.com/microsoft/typespec/compare/typespec-stable@1.12.0...typespec-stable@1.13.0)

Updates `@typespec/http` from 1.12.0 to 1.13.0
- [Release notes](https://github.com/microsoft/typespec/releases)
- [Commits](https://github.com/microsoft/typespec/compare/typespec-stable@1.12.0...typespec-stable@1.13.0)

Updates `@typespec/openapi3` from 1.12.0 to 1.13.0
- [Release notes](https://github.com/microsoft/typespec/releases)
- [Commits](https://github.com/microsoft/typespec/compare/typespec-stable@1.12.0...typespec-stable@1.13.0)

Updates `@typespec/rest` from 0.82.0 to 0.83.0
- [Release notes](https://github.com/microsoft/typespec/releases)
- [Commits](https://github.com/microsoft/typespec/compare/@typespec/rest@0.82.0...@typespec/rest@0.83.0)

Updates `fastify` from 5.8.5 to 5.9.0
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v5.8.5...v5.9.0)

Updates `fastify-plugin` from 5.1.0 to 6.0.0
- [Release notes](https://github.com/fastify/fastify-plugin/releases)
- [Commits](fastify/fastify-plugin@v5.1.0...v6.0.0)

Updates `npm-check-updates` from 22.2.0 to 22.2.9
- [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.0...v22.2.9)

---
updated-dependencies:
- dependency-name: "@fastify/swagger-ui"
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-npm-dependencies
- dependency-name: "@openapitools/openapi-generator-cli"
  dependency-version: 2.39.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
- dependency-name: "@stoplight/prism-cli"
  dependency-version: 5.15.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-npm-dependencies
- dependency-name: "@typespec/compiler"
  dependency-version: 1.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
- dependency-name: "@typespec/http"
  dependency-version: 1.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
- dependency-name: "@typespec/openapi3"
  dependency-version: 1.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
- dependency-name: "@typespec/rest"
  dependency-version: 0.83.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
- dependency-name: fastify
  dependency-version: 5.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-npm-dependencies
- dependency-name: fastify-plugin
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-npm-dependencies
- dependency-name: npm-check-updates
  dependency-version: 22.2.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-npm-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 labels Jul 1, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants