Skip to content

Upgrade Azure generator TypeSpec dependencies to 1.9.0#56295

Draft
Copilot wants to merge 2 commits intotypespec/update-http-client-1.0.0-alpha.20260214.2from
copilot/sub-pr-56294
Draft

Upgrade Azure generator TypeSpec dependencies to 1.9.0#56295
Copilot wants to merge 2 commits intotypespec/update-http-client-1.0.0-alpha.20260214.2from
copilot/sub-pr-56294

Conversation

Copy link
Contributor

Copilot AI commented Feb 14, 2026

Description

Upgrades Azure generator TypeSpec dependencies to match upstream http-client-csharp@1.0.0-alpha.20260214.2. Fixes package-lock.json version mismatch and updates test projects for TypeSpec 1.9.0 compatibility.

TypeSpec core packages: 1.8.0 → 1.9.0

  • @typespec/compiler, @typespec/http, @typespec/openapi, @typespec/json-schema

TypeSpec library packages: 0.78.0 → 0.79.0

  • @typespec/rest, @typespec/versioning, @typespec/xml, @typespec/library-linter

Azure TypeSpec packages:

  • @azure-tools/typespec-azure-core: 0.64.0 → 0.65.0
  • @azure-tools/typespec-client-generator-core: 0.64.4 → 0.65.1

New dependencies:

  • @typespec/sse@0.79.0, @typespec/streams@0.79.0

Test compatibility fix:
TypeSpec 1.9.0 validates for duplicate client names when generic unions are instantiated multiple times. Fixed BasicTypeSpec test by replacing generic Dfe<T> with concrete named unions:

// Before: Generic union causing duplicate name errors
union Dfe<T> { T, DataFactoryElementModel }
stringProperty: Dfe<string>;
intProperty: Dfe<int32>;

// After: Concrete unions with unique names
@clientName("DfeString", "csharp")
union DfeString { string, DataFactoryElementModel }

@clientName("DfeInt32", "csharp")
union DfeInt32 { int32, DataFactoryElementModel }

Related: TypeSpec commit 071cc29


This checklist is used to make sure that common guidelines for a pull request are followed.

General Guidelines

  • Title of the pull request is clear and informative.
  • There are a small number of commits, each of which have an informative message. This means that previously merged commits do not appear in the history of the PR. For more information on cleaning up the commits in your PR, see this page.

Testing Guidelines

  • Pull request includes test coverage for the included changes.

SDK Generation Guidelines

  • If an SDK is being regenerated based on a new swagger spec, a link to the pull request containing these swagger spec changes has been included above.
  • The generate.cmd file for the SDK has been updated with the version of AutoRest, as well as the commitid of your swagger spec or link to the swagger spec, used to generate the code.
  • The *.csproj and AssemblyInfo.cs files have been updated with the new version of the SDK.

💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

Co-authored-by: JoshLove-msft <54595583+JoshLove-msft@users.noreply.github.com>
Copilot AI changed the title [WIP] Update UnbrandedGeneratorVersion to 1.0.0-alpha.20260214.2 Upgrade Azure generator TypeSpec dependencies to 1.9.0 Feb 14, 2026
Copilot AI requested a review from JoshLove-msft February 14, 2026 23:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants

Comments