Skip to content

chore(deps): bump the javascript-deps group across 2 directories with 12 updates - #12514

Open
dependabot[bot] wants to merge 4 commits into
mainfrom
dependabot/npm_and_yarn/hack/bicep-types-radius/src/typespec-bicep-types/javascript-deps-f1344aa804
Open

chore(deps): bump the javascript-deps group across 2 directories with 12 updates#12514
dependabot[bot] wants to merge 4 commits into
mainfrom
dependabot/npm_and_yarn/hack/bicep-types-radius/src/typespec-bicep-types/javascript-deps-f1344aa804

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the javascript-deps group with 7 updates in the /hack/bicep-types-radius/src/typespec-bicep-types directory:

Package From To
@azure-tools/typespec-azure-resource-manager 0.69.2 0.70.0
@types/node 26.1.0 26.1.1
@typespec/compiler 1.13.0 1.14.0
@typespec/http 1.13.0 1.14.0
@typespec/openapi 1.13.0 1.14.0
@typespec/versioning 0.83.0 0.84.0
typescript 6.0.3 7.0.2

Bumps the javascript-deps group with 10 updates in the /typespec directory:

Package From To
@azure-tools/typespec-azure-resource-manager 0.69.2 0.70.0
@typespec/compiler 1.13.0 1.14.0
@typespec/http 1.13.0 1.14.0
@typespec/openapi 1.13.0 1.14.0
@typespec/versioning 0.83.0 0.84.0
@azure-tools/typespec-autorest 0.69.1 0.70.0
@azure-tools/typespec-azure-core 0.69.0 0.70.0
@azure-tools/typespec-client-generator-core 0.69.2 0.70.0
@azure-tools/typespec-go 0.14.2 0.14.3
@typespec/rest 0.83.0 0.84.0

Updates @azure-tools/typespec-azure-resource-manager from 0.69.2 to 0.70.0

Commits
  • ab39be7 Prepare publish for 0.70.0 (#4896)
  • 3e03a71 Add 2026-07-14 TypeSpec Azure release notes from Chronus changes (#4895)
  • 0e57ad3 fix(tcgc): preserve serialization options on array/dict models (#4881)
  • e8438c2 build(deps): bump core from 7eaf378 to dc88474 (#4894)
  • 8157714 Enable allowImportingTsExtensions for core/eng typecheck (#4883)
  • 53cbff7 build(deps): bump core from 3abda3e to 7eaf378 (#4889)
  • 6ace6af ci(benchmark): stop running benchmarks on PRs and remove PR comments (#4888)
  • e161baf [TS] Document api-version, examples-dir, namespace emitter options; remove un...
  • 3497e82 Benchmark external specs (azure-rest-api-specs) with a separate dashboard (#4...
  • 2398555 fix(arm): refine experimental Agent base type conversation/response items (#4...
  • Additional commits viewable in compare view

Updates @types/node from 26.1.0 to 26.1.1

Commits

Updates @typespec/compiler from 1.13.0 to 1.14.0

Release notes

Sourced from @​typespec/compiler's releases.

typespec-stable@1.14.0

@​typespec/compiler

Deprecations

  • #11169 tsp code install and tsp vs install now install the editor extensions from the marketplace instead of downloading the typespec-vscode/typespec-vs npm packages. tsp code install delegates to code --install-extension microsoft.typespec-vscode, and tsp vs install downloads the latest vsix from the Visual Studio Marketplace.

    The tsp code and tsp vs commands (install/uninstall) are now deprecated. They keep working but emit a deprecation warning; install and manage the extensions directly from the marketplace instead.

  • #10964 Deprecate old testing framework (createTestHost, createTestRunner, createTestWrapper, createTestLibrary, BasicTestRunner, TypeSpecTestLibrary, etc.). Use createTester from @typespec/compiler/testing instead.

Features

  • #11247 Add setAutoDecorator API to programmatically apply an auto decorator to a target, mirroring what the synthesized auto dec implementation does when the decorator is written in source. This lets emitters and mutators mark synthetic types without reaching into the program state map directly.

    import { setAutoDecorator } from "@typespec/compiler";
    setAutoDecorator(program, "MyLib.myFlag", target);

  • #10875 Allow @encode(string) on boolean targets, define case-insensitive true/false string semantics, and add shared case-insensitive string matcher support with encode/boolean Spector coverage.

    model FeatureFlags {
      @encode(string)
      enabled: boolean;
    }
  • #10956 Support importing .ts decorator modules from TypeSpec source files.

  • #10197 Added auto decorator modifier for declaring decorators that auto-store their arguments as metadata without requiring a JavaScript implementation.

    auto dec label(target: Model, value: valueof string);
    @​label("my-model")
    model Foo {}

    Added compiler API hasAutoDecorator, getAutoDecoratorValue, and getAutoDecoratorTargets for reading auto decorator values by FQN.

  • #11247 createTester now mounts each discovered library's tspconfig.yaml into the virtual file system, so experimental features a library opts into (e.g. auto-decorators) are honored when compiling against the tester.

  • #10805 Dim unused #suppress directives for available compiler and library diagnostics in editor scenarios.

    #suppress "deprecated" "old suppression"
    model Widget {}

Bug Fixes

  • #11113 Warn on duplicate #suppress directives on the same node.

... (truncated)

Commits
  • 156c91d Release notes 1.14 (#11248)
  • 1d7c8b6 Prepare typespec publish (#11249)
  • dc88474 feat(compiler): add setAutoDecorator API and generate auto-decorator setters ...
  • 7eaf378 [http-client-csharp] Fix options-bag override convenience for renamed grouped...
  • 53b619f fix(http-client-python): honor models-mode=none passed to OptionsDict constru...
  • c8105ea fix(compiler): install VS Code/VS extensions from marketplace instead of npm ...
  • 01848b9 Stop publishing typespec-vscode/typespec-vs to npm & run build on Linux (#11170)
  • 655c741 fix(compiler): enable compiler feature flags for library code (#11235)
  • 6404187 Deprecate old testing framework in favor of createTester (#10964)
  • 15fb8a2 Remove redundant top-level describe wrappers from @​typespec/compiler tests (#...
  • Additional commits viewable in compare view

Updates @typespec/http from 1.13.0 to 1.14.0

Commits
  • 156c91d Release notes 1.14 (#11248)
  • 1d7c8b6 Prepare typespec publish (#11249)
  • dc88474 feat(compiler): add setAutoDecorator API and generate auto-decorator setters ...
  • 7eaf378 [http-client-csharp] Fix options-bag override convenience for renamed grouped...
  • 53b619f fix(http-client-python): honor models-mode=none passed to OptionsDict constru...
  • c8105ea fix(compiler): install VS Code/VS extensions from marketplace instead of npm ...
  • 01848b9 Stop publishing typespec-vscode/typespec-vs to npm & run build on Linux (#11170)
  • 655c741 fix(compiler): enable compiler feature flags for library code (#11235)
  • 6404187 Deprecate old testing framework in favor of createTester (#10964)
  • 15fb8a2 Remove redundant top-level describe wrappers from @​typespec/compiler tests (#...
  • Additional commits viewable in compare view

Updates @typespec/openapi from 1.13.0 to 1.14.0

Release notes

Sourced from @​typespec/openapi's releases.

typespec-stable@1.14.0

@​typespec/compiler

Deprecations

  • #11169 tsp code install and tsp vs install now install the editor extensions from the marketplace instead of downloading the typespec-vscode/typespec-vs npm packages. tsp code install delegates to code --install-extension microsoft.typespec-vscode, and tsp vs install downloads the latest vsix from the Visual Studio Marketplace.

    The tsp code and tsp vs commands (install/uninstall) are now deprecated. They keep working but emit a deprecation warning; install and manage the extensions directly from the marketplace instead.

  • #10964 Deprecate old testing framework (createTestHost, createTestRunner, createTestWrapper, createTestLibrary, BasicTestRunner, TypeSpecTestLibrary, etc.). Use createTester from @typespec/compiler/testing instead.

Features

  • #11247 Add setAutoDecorator API to programmatically apply an auto decorator to a target, mirroring what the synthesized auto dec implementation does when the decorator is written in source. This lets emitters and mutators mark synthetic types without reaching into the program state map directly.

    import { setAutoDecorator } from "@typespec/compiler";
    setAutoDecorator(program, "MyLib.myFlag", target);

  • #10875 Allow @encode(string) on boolean targets, define case-insensitive true/false string semantics, and add shared case-insensitive string matcher support with encode/boolean Spector coverage.

    model FeatureFlags {
      @encode(string)
      enabled: boolean;
    }
  • #10956 Support importing .ts decorator modules from TypeSpec source files.

  • #10197 Added auto decorator modifier for declaring decorators that auto-store their arguments as metadata without requiring a JavaScript implementation.

    auto dec label(target: Model, value: valueof string);
    @​label("my-model")
    model Foo {}

    Added compiler API hasAutoDecorator, getAutoDecoratorValue, and getAutoDecoratorTargets for reading auto decorator values by FQN.

  • #11247 createTester now mounts each discovered library's tspconfig.yaml into the virtual file system, so experimental features a library opts into (e.g. auto-decorators) are honored when compiling against the tester.

  • #10805 Dim unused #suppress directives for available compiler and library diagnostics in editor scenarios.

    #suppress "deprecated" "old suppression"
    model Widget {}

Bug Fixes

  • #11113 Warn on duplicate #suppress directives on the same node.

... (truncated)

Commits
  • 156c91d Release notes 1.14 (#11248)
  • 1d7c8b6 Prepare typespec publish (#11249)
  • dc88474 feat(compiler): add setAutoDecorator API and generate auto-decorator setters ...
  • 7eaf378 [http-client-csharp] Fix options-bag override convenience for renamed grouped...
  • 53b619f fix(http-client-python): honor models-mode=none passed to OptionsDict constru...
  • c8105ea fix(compiler): install VS Code/VS extensions from marketplace instead of npm ...
  • 01848b9 Stop publishing typespec-vscode/typespec-vs to npm & run build on Linux (#11170)
  • 655c741 fix(compiler): enable compiler feature flags for library code (#11235)
  • 6404187 Deprecate old testing framework in favor of createTester (#10964)
  • 15fb8a2 Remove redundant top-level describe wrappers from @​typespec/compiler tests (#...
  • Additional commits viewable in compare view

Updates @typespec/versioning from 0.83.0 to 0.84.0

Release notes

Sourced from @​typespec/versioning's releases.

@​typespec/versioning@​0.84.0

Deprecations

  • #10964 Deprecate old testing framework (createTestHost, createTestRunner, createTestWrapper, createTestLibrary, BasicTestRunner, TypeSpecTestLibrary, etc.). Use createTester from @typespec/compiler/testing instead.
Commits
  • 156c91d Release notes 1.14 (#11248)
  • 1d7c8b6 Prepare typespec publish (#11249)
  • dc88474 feat(compiler): add setAutoDecorator API and generate auto-decorator setters ...
  • 7eaf378 [http-client-csharp] Fix options-bag override convenience for renamed grouped...
  • 53b619f fix(http-client-python): honor models-mode=none passed to OptionsDict constru...
  • c8105ea fix(compiler): install VS Code/VS extensions from marketplace instead of npm ...
  • 01848b9 Stop publishing typespec-vscode/typespec-vs to npm & run build on Linux (#11170)
  • 655c741 fix(compiler): enable compiler feature flags for library code (#11235)
  • 6404187 Deprecate old testing framework in favor of createTester (#10964)
  • 15fb8a2 Remove redundant top-level describe wrappers from @​typespec/compiler tests (#...
  • Additional commits viewable in compare view

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 @azure-tools/typespec-azure-resource-manager from 0.69.2 to 0.70.0

Commits
  • ab39be7 Prepare publish for 0.70.0 (#4896)
  • 3e03a71 Add 2026-07-14 TypeSpec Azure release notes from Chronus changes (#4895)
  • 0e57ad3 fix(tcgc): preserve serialization options on array/dict models (#4881)
  • e8438c2 build(deps): bump core from 7eaf378 to dc88474 (#4894)
  • 8157714 Enable allowImportingTsExtensions for core/eng typecheck (#4883)
  • 53cbff7 build(deps): bump core from 3abda3e to 7eaf378 (#4889)
  • 6ace6af ci(benchmark): stop running benchmarks on PRs and remove PR comments (#4888)
  • e161baf [TS] Document api-version, examples-dir, namespace emitter options; remove un...
  • 3497e82 Benchmark external specs (azure-rest-api-specs) with a separate dashboard (#4...
  • 2398555 fix(arm): refine experimental Agent base type conversation/response items (#4...
  • Additional commits viewable in compare view

Updates @typespec/compiler from 1.13.0 to 1.14.0

Release notes

Sourced from @​typespec/compiler's releases.

typespec-stable@1.14.0

@​typespec/compiler

Deprecations

  • #11169 tsp code install and tsp vs install now install the editor extensions from the marketplace instead of downloading the typespec-vscode/typespec-vs npm packages. tsp code install delegates to code --install-extension microsoft.typespec-vscode, and tsp vs install downloads the latest vsix from the Visual Studio Marketplace.

    The tsp code and tsp vs commands (install/uninstall) are now deprecated. They keep working but emit a deprecation warning; install and manage the extensions directly from the marketplace instead.

  • #10964 Deprecate old testing framework (createTestHost, createTestRunner, createTestWrapper, createTestLibrary, BasicTestRunner, TypeSpecTestLibrary, etc.). Use createTester from @typespec/compiler/testing instead.

Features

  • #11247 Add setAutoDecorator API to programmatically apply an auto decorator to a target, mirroring what the synthesized auto dec implementation does when the decorator is written in source. This lets emitters and mutators mark synthetic types without reaching into the program state map directly.

    import { setAutoDecorator } from "@typespec/compiler";
    setAutoDecorator(program, "MyLib.myFlag", target);

  • #10875 Allow @encode(string) on boolean targets, define case-insensitive true/false string semantics, and add shared case-insensitive string matcher support with encode/boolean Spector coverage.

    model FeatureFlags {
      @encode(string)
      enabled: boolean;
    }
  • #10956 Support importing .ts decorator modules from TypeSpec source files.

  • #10197 Added auto decorator modifier for declaring decorators that auto-store their arguments as metadata without requiring a JavaScript implementation.

    auto dec label(target: Model, value: valueof string);
    @​label("my-model")
    model Foo {}

    Added compiler API hasAutoDecorator, getAutoDecoratorValue, and getAutoDecoratorTargets for reading auto decorator values by FQN.

  • #11247 createTester now mounts each discovered library's tspconfig.yaml into the virtual file system, so experimental features a library opts into (e.g. auto-decorators) are honored when compiling against the tester.

  • #10805 Dim unused #suppress directives for available compiler and library diagnostics in editor scenarios.

    #suppress "deprecated" "old suppression"
    model Widget {}

Bug Fixes

  • #11113 Warn on duplicate #suppress directives on the same node.

... (truncated)

Commits
  • 156c91d Release notes 1.14 (#11248)
  • 1d7c8b6 Prepare typespec publish (#11249)
  • dc88474 feat(compiler): add setAutoDecorator API and generate auto-decorator setters ...
  • 7eaf378 [http-client-csharp] Fix options-bag override convenience for renamed grouped...
  • 53b619f fix(http-client-python): honor models-mode=none passed to OptionsDict constru...
  • c8105ea fix(compiler): install VS Code/VS extensions from marketplace instead of npm ...
  • 01848b9 Stop publishing typespec-vscode/typespec-vs to npm & run build on Linux (#11170)
  • 655c741 fix(compiler): enable compiler feature flags for library code (#11235)
  • 6404187 Deprecate old testing framework in favor of createTester (#10964)
  • 15fb8a2 Remove redundant top-level describe wrappers from @​typespec/compiler tests (#...
  • Additional commits viewable in compare view

Updates @typespec/http from 1.13.0 to 1.14.0

Commits
  • 156c91d Release notes 1.14 (#11248)
  • 1d7c8b6 Prepare typespec publish (#11249)
  • dc88474 feat(compiler): add setAutoDecorator API and generate auto-decorator setters ...
  • 7eaf378 [http-client-csharp] Fix options-bag override convenience for renamed grouped...
  • 53b619f fix(http-client-python): honor models-mode=none passed to OptionsDict constru...
  • c8105ea fix(compiler): install VS Code/VS extensions from marketplace instead of npm ...
  • 01848b9 Stop publishing typespec-vscode/typespec-vs to npm & run build on Linux (#11170)
  • 655c741 fix(compiler): enable compiler feature flags for library code (#11235)
  • 6404187 Deprecate old testing framework in favor of createTester (#10964)
  • 15fb8a2 Remove redundant top-level describe wrappers from @​typespec/compiler tests (#...
  • Additional commits viewable in compare view

Updates @typespec/openapi from 1.13.0 to 1.14.0

Release notes

Sourced from @​typespec/openapi's releases.

typespec-stable@1.14.0

@​typespec/compiler

Deprecations

  • #11169 tsp code install and tsp vs install now install the editor extensions from the marketplace instead of downloading the typespec-vscode/typespec-vs npm packages. tsp code install delegates to code --install-extension microsoft.typespec-vscode, and tsp vs install downloads the latest vsix from the Visual Studio Marketplace.

    The tsp code and tsp vs commands (install/uninstall) are now deprecated. They keep working but emit a deprecation warning; install and manage the extensions directly from the marketplace instead.

  • #10964 Deprecate old testing framework (createTestHost, createTestRunner, createTestWrapper, createTestLibrary, BasicTestRunner, TypeSpecTestLibrary, etc.). Use createTester from @typespec/compiler/testing instead.

Features

  • #11247 Add setAutoDecorator API to programmatically apply an auto decorator to a target, mirroring what the synthesized auto dec implementation does when the decorator is written in source. This lets emitters and mutators mark synthetic types without reaching into the program state map directly.

    import { setAutoDecorator } from "@typespec/compiler";
    setAutoDecorator(program, "MyLib.myFlag", target);

  • #10875 Allow @encode(string) on boolean targets, define case-insensitive true/false string semantics, and add shared case-insensitive string matcher support with encode/boolean Spector coverage.

    model FeatureFlags {
      @encode(string)
      enabled: boolean;
    }
  • #10956 Support importing .ts decorator modules from TypeSpec source files.

  • #10197 Added auto decorator modifier for declaring decorators that auto-store their arguments as metadata without requiring a JavaScript implementation.

    auto dec label(target: Model, value: valueof string);
    @​label("my-model")
    model Foo {}

    Added compiler API hasAutoDecorator, getAutoDecoratorValue, and getAutoDecoratorTargets for reading auto decorator values by FQN.

  • #11247 createTester now mounts each discovered library's tspconfig.yaml into the virtual file system, so experimental features a library opts into (e.g. auto-decorators) are honored when compiling against the tester.

  • #10805 Dim unused #suppress directives for available compiler and library diagnostics in editor scenarios.

    #suppress "deprecated" "old suppression"
    model Widget {}

Bug Fixes

  • #11113 Warn on duplicate #suppress directives on the same node.

... (truncated)

Commits
  • 156c91d Release notes 1.14 (#11248)
  • 1d7c8b6 Prepare typespec publish (#11249)
  • dc88474 feat(compiler): add setAutoDecorator API and generate auto-decorator setters ...
  • 7eaf378 [http-client-csharp] Fix options-bag override convenience for renamed grouped...
  • 53b619f fix(http-client-python): honor models-mode=none passed to OptionsDict constru...
  • c8105ea fix(compiler): install VS Code/VS extensions from marketplace instead of npm ...
  • 01848b9 Stop publishing typespec-vscode/typespec-vs to npm & run build on Linux (#11170)
  • 655c741 fix(compiler): enable compiler feature flags for library code (#11235)
  • 6404187 Deprecate old testing framework in favor of createTester (#10964)
  • 15fb8a2 Remove redundant top-level describe wrappers from @​typespec/compiler tests (#...
  • Additional commits viewable in compare view

Updates @typespec/versioning from 0.83.0 to 0.84.0

Release notes

Sourced from @​typespec/versioning's releases.

@​typespec/versioning@​0.84.0

Deprecations

  • #10964 Deprecate old testing framework (createTestHost, createTestRunner, createTestWrapper, createTestLibrary, BasicTestRunner, TypeSpecTestLibrary, etc.). Use createTester from @typespec/compiler/testing instead.
Commits
  • 156c91d Release notes 1.14 (#11248)
  • 1d7c8b6 Prepare typespec publish (#11249)
  • dc88474 feat(compiler): add setAutoDecorator API and generate auto-decorator setters ...
  • 7eaf378 [http-client-csharp] Fix options-bag override convenience for renamed grouped...
  • 53b619f fix(http-client-python): honor models-mode=none passed to OptionsDict constru...
  • c8105ea fix(compiler): install VS Code/VS extensions from marketplace instead of npm ...
  • 01848b9 Stop publishing typespec-vscode/typespec-vs to npm & run build on Linux (#11170)
  • 655c741 fix(compiler): enable compiler feature flags for library code (#11235)
  • 6404187 Deprecate old testing framework in favor of createTester (#10964)
  • 15fb8a2 Remove redundant top-level describe wrappers from @​typespec/compiler tests (#...
  • Additional commits viewable in compare view

Updates @azure-tools/typespec-azure-resource-manager from 0.69.2 to 0.70.0

Commits
  • ab39be7 Prepare publish for 0.70.0 (#4896)
  • 3e03a71 Add 2026-07-14 TypeSpec Azure release notes from Chronus changes (#4895)
  • 0e57ad3 fix(tcgc): preserve serialization options on array/dict models (#4881)
  • e8438c2 build(deps): bump core from 7eaf378 to dc88474 (#4894)
  • 8157714 Enable allowImportingTsExtensions for core/eng typecheck (#4883)
  • 53cbff7 build(deps): bump core from 3abda3e to 7eaf378 (#4889)
  • 6ace6af ci(benchmark): stop running benchmarks on PRs and remove PR comments (#4888)
  • e161baf [TS] Document api-version, examples-dir, namespace emitter options; remove un...
  • 3497e82 Benchmark external specs (azure-rest-api-specs) with a separate dashboard (#4...
  • 2398555 fix(arm): refine experimental Agent base type conversation/response items (#4...
  • Additional commits viewable in compare view

Updates @typespec/compiler from 1.13.0 to 1.14.0

Release notes

Sourced from @​typespec/compiler's releases.

typespec-stable@1.14.0

@​typespec/compiler

Deprecations

  • #11169 tsp code install and tsp vs install now install the editor extensions from the marketplace instead of downloading the typespec-vscode/typespec-vs npm packages. tsp code install delegates to code --install-extension microsoft.typespec-vscode, and tsp vs install downloads the latest vsix from the Visual Studio Marketplace.

    The tsp code and tsp vs commands (install/uninstall) are now deprecated. They keep working but emit a deprecation warning; install and manage the extensions directly from the marketplace instead.

  • #10964 Deprecate old testing framework (createTestHost, createTestRunner, createTestWrapper, createTestLibrary, BasicTestRunner, TypeSpecTestLibrary, etc.). Use createTester from @typespec/compiler/testing instead.

Features

  • #11247 Add setAutoDecorator API to programmatically apply an auto decorator to a target, mirroring what the synthesized auto dec implementation does when the decorator is written in source. This lets emitters and mutators mark synthetic types without reaching into the program state map directly.

    import { setAutoDecorator } from "@typespec/compiler";
    setAutoDecorator(program, "MyLib.myFlag", target);

  • #10875 Allow @encode(string) on boolean targets, define case-insensitive true/false string semantics, and add shared case-insensitive string matcher support with encode/boolean Spector coverage.

    model FeatureFlags {
      @encode(string)
      enabled: boolean;
    }
  • #10956 Support importing .ts decorator modules from TypeSpec source files.

  • #10197 Added auto decorator modifier for declaring decorators that auto-store their arguments as metadata without requiring a JavaScript implementation.

    auto dec label(target: Model, value: valueof string);
    @​label("my-model")
    model Foo {}

    Added compiler API hasAutoDecorator, getAutoDecoratorValue, and getAutoDecoratorTargets for reading auto decorator values by FQN.

  • #11247 createTester now mounts each discovered library's tspconfig.yaml into the virtual file system, so experimental features a library opts into (e.g. auto-decorators) are honored when compiling against the tester.

  • #10805 Dim unused #suppress directives for available compiler and library diagnostics in editor scenarios.

    #suppress "deprecated" "old suppression"
    model Widget {}

Bug Fixes

  • #11113 Warn on duplicate #suppress directives on the same node.

... (truncated)

Commits
  • 156c91d Release notes 1.14 (#11248)
  • 1d7c8b6 Prepare typespec publish (#11249)
  • dc88474 feat(compiler): add setAutoDecorator API and generate auto-decorator setters ...
  • 7eaf378 [http-client-csharp] Fix options-bag override convenience for renamed grouped...
  • 53b619f fix(http-client-python): honor models-mode=none passed to OptionsDict constru...
  • c8105ea fix(compiler): install VS Code/VS extensions from marketplace instead of npm ...
  • 01848b9 Stop publishing typespec-vscode/typespec-vs to npm & run build on Linux (#11170)
  • 655c741 fix(compiler): enable compiler feature flags for library code (#11235)
  • 6404187 Deprecate old testing framework in favor of createTester (#10964)
  • 15fb8a2 Remove redundant top-level describe wrappers from @​typespec/compiler tests (#...
  • Additional commits viewable in compare view

Updates @typespec/http from 1.13.0 to 1.14.0

Commits
  • 156c91d Release notes 1.14 (#11248)
  • 1d7c8b6 Prepare typespec publish (#11249)
  • dc88474 feat(compiler): add setAutoDecorator API and generate auto-decorator setters ...
  • 7eaf378 [http-client-csharp] Fix options-bag override convenience for renamed grouped...
  • 53b619f fix(http-client-python): honor models-mode=none passed to OptionsDict constru...
  • c8105ea fix(compiler): install VS Code/VS extensions from marketplace instead of npm ...
  • 01848b9 Stop publishing typespec-vscode/typespec-vs to npm & run build on Linux (#11170)
  • 655c741 fix(compiler): enable compiler feature flags for library code (#11235)
  • 6404187 Deprecate old testing framework in favor of createTester (#10964)
  • 15fb8a2 Remove redundant top-level describe wrappers from @​typespec/compiler tests (#...
  • Additional commits viewable in compare view

Updates @typespec/openapi from 1.13.0 to 1.14.0

Release notes

Sourced from @​typespec/openapi's releases.

typespec-stable@1.14.0

@​typespec/compiler

Deprecations

  • #11169 tsp code install and tsp vs install now install the editor extensions from the marketplace instead of downloading the typespec-vscode/typespec-vs npm packages. tsp code install delegates to code --install-extension microsoft.typespec-vscode, and tsp vs install downloads the latest vsix from the Visual Studio Marketplace.

    The tsp code and tsp vs commands (install/uninstall) are now deprecated. They keep working but emit a deprecation warning; install and manage the extensions directly from the marketplace instead.

  • #10964 Deprecate old testing framework (createTestHost, createTestRunner, createTestWrapper, createTestLibrary, BasicTestRunner, TypeSpecTestLibrary, etc.). Use createTester from @typespec/compiler/testing instead.

Features

  • #11247 Add setAutoDecorator API to programmatically apply an auto decorator to a target, mirroring what the synthesized auto dec implementation does when the decorator is written in source. This lets emitters and mutators mark synthetic types without reaching into the program state map directly.

    import { setAutoDecorator } from "@typespec/compiler";
    setAutoDecorator(program, "MyLib.myFlag", target);

  • #10875 Allow @encode(string) on boolean targets, define case-insensitive true/false string semantics, and add shared case-insensitive string matcher support with encode/boolean Spector coverage.

    model FeatureFlags {
      @encode(string)
      enabled: boolean;
    }
  • #10956 Support importing .ts decorator modules from TypeSpec source files.

  • #10197 Added auto decorator modifier for declaring decorators that auto-store their arguments as metadata without requiring a JavaScript implementation.

    auto dec label(target: Model, value: valueof string);
    @​label("my-model")
    model Foo {}

    Added compiler API hasAutoDecorator, getAutoDecoratorValue, and getAutoDecoratorTargets for reading auto decorator values by FQN.

  • #11247 createTester now mounts each discovered library's tspconfig.yaml into the virtual file system, so experimental features a library opts into (e.g. auto-decorators) are honored when compiling against the tester.

  • #10805 Dim unused #suppress directives for available compiler and library diagnostics in editor scenarios.

    #suppress "deprecated" "old suppression"
    model Widget {}

Bug Fixes

  • #11113 Warn on duplicate #suppress directives on the same node.

... (truncated)

Commits

… 12 updates

Bumps the javascript-deps group with 7 updates in the /hack/bicep-types-radius/src/typespec-bicep-types directory:

| Package | From | To |
| --- | --- | --- |
| [@azure-tools/typespec-azure-resource-manager](https://github.com/Azure/typespec-azure) | `0.69.2` | `0.70.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `26.1.0` | `26.1.1` |
| [@typespec/compiler](https://github.com/microsoft/typespec) | `1.13.0` | `1.14.0` |
| [@typespec/http](https://github.com/microsoft/typespec) | `1.13.0` | `1.14.0` |
| [@typespec/openapi](https://github.com/microsoft/typespec) | `1.13.0` | `1.14.0` |
| [@typespec/versioning](https://github.com/microsoft/typespec) | `0.83.0` | `0.84.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `6.0.3` | `7.0.2` |

Bumps the javascript-deps group with 10 updates in the /typespec directory:

| Package | From | To |
| --- | --- | --- |
| [@azure-tools/typespec-azure-resource-manager](https://github.com/Azure/typespec-azure) | `0.69.2` | `0.70.0` |
| [@typespec/compiler](https://github.com/microsoft/typespec) | `1.13.0` | `1.14.0` |
| [@typespec/http](https://github.com/microsoft/typespec) | `1.13.0` | `1.14.0` |
| [@typespec/openapi](https://github.com/microsoft/typespec) | `1.13.0` | `1.14.0` |
| [@typespec/versioning](https://github.com/microsoft/typespec) | `0.83.0` | `0.84.0` |
| [@azure-tools/typespec-autorest](https://github.com/Azure/typespec-azure) | `0.69.1` | `0.70.0` |
| [@azure-tools/typespec-azure-core](https://github.com/Azure/typespec-azure) | `0.69.0` | `0.70.0` |
| [@azure-tools/typespec-client-generator-core](https://github.com/Azure/typespec-azure) | `0.69.2` | `0.70.0` |
| [@azure-tools/typespec-go](https://github.com/Azure/typespec-azure) | `0.14.2` | `0.14.3` |
| [@typespec/rest](https://github.com/microsoft/typespec) | `0.83.0` | `0.84.0` |



Updates `@azure-tools/typespec-azure-resource-manager` from 0.69.2 to 0.70.0
- [Release notes](https://github.com/Azure/typespec-azure/releases)
- [Commits](https://github.com/Azure/typespec-azure/compare/@azure-tools/typespec-azure-resource-manager@0.69.2...typespec-azure@0.70.0)

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

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

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

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

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

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 `@azure-tools/typespec-azure-resource-manager` from 0.69.2 to 0.70.0
- [Release notes](https://github.com/Azure/typespec-azure/releases)
- [Commits](https://github.com/Azure/typespec-azure/compare/@azure-tools/typespec-azure-resource-manager@0.69.2...typespec-azure@0.70.0)

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

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

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

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

Updates `@azure-tools/typespec-azure-resource-manager` from 0.69.2 to 0.70.0
- [Release notes](https://github.com/Azure/typespec-azure/releases)
- [Commits](https://github.com/Azure/typespec-azure/compare/@azure-tools/typespec-azure-resource-manager@0.69.2...typespec-azure@0.70.0)

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

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

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

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

Updates `@azure-tools/typespec-autorest` from 0.69.1 to 0.70.0
- [Release notes](https://github.com/Azure/typespec-azure/releases)
- [Commits](https://github.com/Azure/typespec-azure/compare/@azure-tools/typespec-autorest@0.69.1...typespec-azure@0.70.0)

Updates `@azure-tools/typespec-azure-core` from 0.69.0 to 0.70.0
- [Release notes](https://github.com/Azure/typespec-azure/releases)
- [Commits](https://github.com/Azure/typespec-azure/compare/typespec-azure@0.69.0...typespec-azure@0.70.0)

Updates `@azure-tools/typespec-azure-resource-manager` from 0.69.2 to 0.70.0
- [Release notes](https://github.com/Azure/typespec-azure/releases)
- [Commits](https://github.com/Azure/typespec-azure/compare/@azure-tools/typespec-azure-resource-manager@0.69.2...typespec-azure@0.70.0)

Updates `@azure-tools/typespec-client-generator-core` from 0.69.2 to 0.70.0
- [Release notes](https://github.com/Azure/typespec-azure/releases)
- [Commits](https://github.com/Azure/typespec-azure/compare/@azure-tools/typespec-client-generator-core@0.69.2...typespec-azure@0.70.0)

Updates `@azure-tools/typespec-go` from 0.14.2 to 0.14.3
- [Release notes](https://github.com/Azure/typespec-azure/releases)
- [Commits](https://github.com/Azure/typespec-azure/commits)

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

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

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

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

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

---
updated-dependencies:
- dependency-name: "@azure-tools/typespec-azure-resource-manager"
  dependency-version: 0.70.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: javascript-deps
- dependency-name: "@types/node"
  dependency-version: 26.1.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: javascript-deps
- dependency-name: "@typespec/compiler"
  dependency-version: 1.14.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: javascript-deps
- dependency-name: "@typespec/http"
  dependency-version: 1.14.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: javascript-deps
- dependency-name: "@typespec/openapi"
  dependency-version: 1.14.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: javascript-deps
- dependency-name: "@typespec/versioning"
  dependency-version: 0.84.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: javascript-deps
- dependency-name: typescript
  dependency-version: 7.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: javascript-deps
- dependency-name: "@azure-tools/typespec-azure-resource-manager"
  dependency-version: 0.70.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: javascript-deps
- dependency-name: "@typespec/compiler"
  dependency-version: 1.14.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: javascript-deps
- dependency-name: "@typespec/http"
  dependency-version: 1.14.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: javascript-deps
- dependency-name: "@typespec/openapi"
  dependency-version: 1.14.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: javascript-deps
- dependency-name: "@typespec/versioning"
  dependency-version: 0.84.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: javascript-deps
- dependency-name: "@azure-tools/typespec-azure-resource-manager"
  dependency-version: 0.70.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: javascript-deps
- dependency-name: "@typespec/compiler"
  dependency-version: 1.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: javascript-deps
- dependency-name: "@typespec/http"
  dependency-version: 1.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: javascript-deps
- dependency-name: "@typespec/openapi"
  dependency-version: 1.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: javascript-deps
- dependency-name: "@typespec/versioning"
  dependency-version: 0.84.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: javascript-deps
- dependency-name: "@azure-tools/typespec-autorest"
  dependency-version: 0.70.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: javascript-deps
- dependency-name: "@azure-tools/typespec-azure-core"
  dependency-version: 0.70.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: javascript-deps
- dependency-name: "@azure-tools/typespec-azure-resource-manager"
  dependency-version: 0.70.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: javascript-deps
- dependency-name: "@azure-tools/typespec-client-generator-core"
  dependency-version: 0.70.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: javascript-deps
- dependency-name: "@azure-tools/typespec-go"
  dependency-version: 0.14.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: javascript-deps
- dependency-name: "@typespec/compiler"
  dependency-version: 1.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: javascript-deps
- dependency-name: "@typespec/http"
  dependency-version: 1.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: javascript-deps
- dependency-name: "@typespec/openapi"
  dependency-version: 1.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: javascript-deps
- dependency-name: "@typespec/rest"
  dependency-version: 0.84.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: javascript-deps
- dependency-name: "@typespec/versioning"
  dependency-version: 0.84.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: javascript-deps
...

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

dependabot Bot commented on behalf of github Jul 23, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: deps/npm. Please create it before Dependabot can add it to a pull request.

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

@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jul 23, 2026
Copilot AI review requested due to automatic review settings July 23, 2026 03:16
@dependabot
dependabot Bot requested review from a team as code owners July 23, 2026 03:16
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jul 23, 2026
@github-actions

Copy link
Copy Markdown

Dependency Review

✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Note

Copilot could not run the full agentic suite for this review because it was automatically requested on a bot-authored pull request. Request a review from Copilot under Reviewers to retry with the full agentic suite. Improved support for bot-authored pull requests is coming soon.

Updates the TypeSpec toolchain dependencies used by Radius and the bicep-types generator to newer releases.

Changes:

  • Bumped @typespec/* packages from 1.13.x/0.83.x to 1.14.x/0.84.x.
  • Bumped @azure-tools/typespec-* packages to 0.70.0 (and typespec-go to 0.14.3).
  • Updated generator dev tooling versions (e.g. @types/node, typescript).

Reviewed changes

Copilot reviewed 2 out of 4 changed files in this pull request and generated 2 comments.

File Description
typespec/package.json Upgrades the core TypeSpec + Azure TypeSpec plugin dependency set to newer versions.
hack/bicep-types-radius/src/typespec-bicep-types/package.json Updates TypeSpec peer/dev dependencies and build tooling versions for the bicep-types generator package.
Files not reviewed (2)
  • hack/bicep-types-radius/src/typespec-bicep-types/pnpm-lock.yaml: Generated file
  • typespec/pnpm-lock.yaml: Generated file

Comment thread hack/bicep-types-radius/src/typespec-bicep-types/package.json
Comment thread hack/bicep-types-radius/src/typespec-bicep-types/package.json
@github-actions

github-actions Bot commented Jul 23, 2026

Copy link
Copy Markdown

Unit Tests

    2 files  ±0    457 suites  ±0   7m 37s ⏱️ -3s
6 075 tests ±0  6 073 ✅ ±0  2 💤 ±0  0 ❌ ±0 
7 294 runs  ±0  7 292 ✅ ±0  2 💤 ±0  0 ❌ ±0 

Results for commit ddb287d. ± Comparison against base commit d86285e.

♻️ This comment has been updated with latest results.

@codecov

codecov Bot commented Jul 24, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 53.90%. Comparing base (d86285e) to head (ddb287d).

Additional details and impacted files
@@            Coverage Diff             @@
##             main   #12514      +/-   ##
==========================================
- Coverage   53.91%   53.90%   -0.01%     
==========================================
  Files         765      765              
  Lines       50689    50689              
==========================================
- Hits        27328    27324       -4     
- Misses      20793    20795       +2     
- Partials     2568     2570       +2     

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Signed-off-by: Sylvain Niles <sylvainniles@microsoft.com>
Signed-off-by: Sylvain Niles <sylvainniles@microsoft.com>
Signed-off-by: Sylvain Niles <sylvainniles@microsoft.com>
@sylvainsf
sylvainsf force-pushed the dependabot/npm_and_yarn/hack/bicep-types-radius/src/typespec-bicep-types/javascript-deps-f1344aa804 branch from ffb0377 to ddb287d Compare July 24, 2026 21:48
@radius-functional-tests

radius-functional-tests Bot commented Jul 24, 2026

Copy link
Copy Markdown

Radius functional test overview

🔍 Go to test action run

Click here to see the test run details
Name Value
Repository radius-project/radius
Commit ref ddb287d
Unique ID func11cf5c94a8
Image tag pr-func11cf5c94a8
  • Dapr: 1.14.4
  • Azure KeyVault CSI driver: 1.4.2
  • Azure Workload identity webhook: 1.3.0
  • Bicep recipe location ghcr.io/radius-project/dev/test/testrecipes/test-bicep-recipes/<name>:pr-func11cf5c94a8
  • Terraform recipe location http://tf-module-server.radius-test-tf-module-server.svc.cluster.local/<name>.zip (in cluster)
  • applications-rp test image location: ghcr.io/radius-project/dev/applications-rp:pr-func11cf5c94a8
  • dynamic-rp test image location: ghcr.io/radius-project/dev/dynamic-rp:pr-func11cf5c94a8
  • controller test image location: ghcr.io/radius-project/dev/controller:pr-func11cf5c94a8
  • ucp test image location: ghcr.io/radius-project/dev/ucpd:pr-func11cf5c94a8
  • deployment-engine test image location: ghcr.io/radius-project/deployment-engine:latest

Test Status

⌛ Building Radius and pushing container images for functional tests...
✅ Container images build succeeded
⌛ Publishing Bicep Recipes for functional tests...
✅ Recipe publishing succeeded
⌛ Starting ucp-cloud functional tests...
⌛ Starting corerp-cloud functional tests...
✅ ucp-cloud functional tests succeeded
✅ corerp-cloud functional tests succeeded

@github-actions

github-actions Bot commented Jul 24, 2026

Copy link
Copy Markdown

Functional Tests - statestore-noncloud

2 tests  ±0   2 ✅ ±0   6m 57s ⏱️ + 3m 52s
1 suites ±0   0 💤 ±0 
1 files   ±0   0 ❌ ±0 

Results for commit ddb287d. ± Comparison against base commit d86285e.

♻️ This comment has been updated with latest results.

@nithyatsu
nithyatsu enabled auto-merge July 27, 2026 23:33
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants