Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Feb 25, 2025

Bumps the typespec group with 16 updates in the / directory:

Package From To
@azure-tools/typespec-apiview 0.4.9 0.5.0
@azure-tools/typespec-autorest 0.48.0 0.51.0
@azure-tools/typespec-azure-core 0.48.0 0.51.0
@azure-tools/typespec-azure-portal-core 0.48.0 0.51.0
@azure-tools/typespec-azure-resource-manager 0.48.0 0.51.0
@azure-tools/typespec-azure-rulesets 0.48.0 0.51.0
@azure-tools/typespec-client-generator-cli 0.14.1 0.15.3
@azure-tools/typespec-client-generator-core 0.48.3 0.51.3
@typespec/compiler 0.62.0 0.65.3
@typespec/http 0.62.0 0.65.0
@typespec/openapi 0.62.0 0.65.0
@typespec/openapi3 0.62.0 0.65.0
@typespec/prettier-plugin-typespec 0.62.0 0.65.0
@typespec/rest 0.62.0 0.65.0
@typespec/streams 0.62.0 0.65.0
@typespec/versioning 0.62.0 0.65.0

Updates @azure-tools/typespec-apiview from 0.4.9 to 0.5.0

Commits

Updates @azure-tools/typespec-autorest from 0.48.0 to 0.51.0

Commits

Updates @azure-tools/typespec-azure-core from 0.48.0 to 0.51.0

Release notes

Sourced from @​azure-tools/typespec-azure-core's releases.

@​azure-tools/typespec-azure-rulesets@​0.51.0

Bump dependencies

  • #2109 Upgrade dependencies

[email protected]

@​azure-tools/typespec-autorest

Bug Fixes

  • #2137 Ensure that @clientName value propagates to x-ms-enum.name for enums and unions.

Bump dependencies

  • #2109 Upgrade dependencies

Features

  • #2091 Add @externalTypeRef decorator, to been able to specify an external reference that should be used when emitting.
  • #2173 Update versioning handling to use new mutator approach
  • #2094 Use the @identifiers decorator to identify and utilize identifiers for x-ms-identifiers. Additionally, use the @key decorator to identify identifiers.

@​azure-tools/typespec-azure-core

Bump dependencies

  • #2109 Upgrade dependencies

@​azure-tools/typespec-azure-portal-core

Bump dependencies

  • #2109 Upgrade dependencies

@​azure-tools/typespec-azure-resource-manager

Bug Fixes

  • #2178 Fixing etag property name on common-types from eTag to etag.

... (truncated)

Commits

Updates @azure-tools/typespec-azure-portal-core from 0.48.0 to 0.51.0

Updates @azure-tools/typespec-azure-resource-manager from 0.48.0 to 0.51.0

Commits

Updates @azure-tools/typespec-azure-rulesets from 0.48.0 to 0.51.0

Release notes

Sourced from @​azure-tools/typespec-azure-rulesets's releases.

@​azure-tools/typespec-azure-rulesets@​0.51.0

Bump dependencies

  • #2109 Upgrade dependencies

@​azure-tools/typespec-azure-rulesets@​0.50.0

No changes, version bump only.

@​azure-tools/typespec-azure-rulesets@​0.49.0

Bug Fixes

  • #1950 Update lockfile for core changes

Features

  • #1923 Discourage usage of new decorator @Azure.ResourceManager.Legacy.customAzureResource
  • #1740 Update the arm no-response-body rule to behave similarly to the core rule, but with the additional requirement that the 202 response can and should also be empty
Commits

Updates @azure-tools/typespec-client-generator-cli from 0.14.1 to 0.15.3

Commits

Updates @azure-tools/typespec-client-generator-core from 0.48.3 to 0.51.3

Release notes

Sourced from @​azure-tools/typespec-client-generator-core's releases.

@​azure-tools/typespec-client-generator-core@​0.51.3

Bug Fixes

  • #2252 isGeneratedName always set to true only when it is the inner type of nullable union.
  • #2252 Remove parameter cache to retain HTTP metadata info for model property.

@​azure-tools/typespec-client-generator-core@​0.51.2

Bug Fixes

  • #2229 Fix missing result segments of anonymous paged response with header.
  • #2196 Do not allow union with circular ref, change union name inside nullable type and do not take nullable type as non-body response.

Features

  • #2206 Add pagingMetadata.continuationTokenParameterSegments and pagingMetadata.continuationTokenResponseSegments to SdkPagingServiceMetadata to indicate the mapping of continuation token parameter and response.
  • #2206 Make SdkServiceResponseHeader to be part of SdkModelPropertyType. Then it could contain the client related info.
  • #2206 Add SdkPagingServiceMetadata type to store all paging related info.
  • #2220 Add crossLanguageDefinitionId property for SdkNullableType.

Deprecations

  • #2206 Deprecate __raw_paged_metadata, nextLinkPath and nextLinkOperation in SdkPagingServiceMethodOptions. Use pagingMetadata.__raw, pagingMetadata.nextLinkSegments and pagingMetadata.nextLinkOperation instead.
  • #2206 Deprecate resultPath in SdkMethodResponse. Use resultSegments instead.
  • #2219 Deprecate clientNamespace property in SdkClientType, SdkNullableType, SdkEnumType, SdkUnionType and SdkModelType. Use namespace instead.

Breaking Changes

  • #2217 Remove null form union for value property type of SdkConstantType. It is a breaking change, but since no logic will come to null type, it shall have little impact.

@​azure-tools/typespec-client-generator-core@​0.51.1

Bug Fixes

  • #2211 Make sure to keep orphan models

@​azure-tools/typespec-client-generator-core@​0.50.3

Bug Fixes

  • #2027 Change @clientInitialization decorator's options parameter to ClientInitializationOptions type. The options now could set how to initialize the client. Though the implementation could support backward compatibility, it's better to have all specs that use this decorator change from @clientInitialization(CustomizedOption) to @clientInitialization({parameters: CustomizedOption}). A new helper getClientInitializationOptions is added for getting the new ClientInitializationOptions info from the @clientInitialization decorator.
  • #2027 Add new children property to SdkClientType to include all the sub client belong to that client.
  • #2027 Add clientInitialization property to SdkClientType. Its type is SdkClientInitializationType which includes the initialization parameters and how to initialize the client.
  • #2027 Deprecate initialization property of SdkClientType. Use init.paramters of SdkClientType instead.
  • #2027 Deprecate SdkClientAccessor type. Use parent and children property from SdkClientType to find client hierarchy instead.

@​azure-tools/typespec-client-generator-core@​0.50.2

Bug Fixes

... (truncated)

Commits

Updates @typespec/compiler from 0.62.0 to 0.65.3

Release notes

Sourced from @​typespec/compiler's releases.

@​typespec/compiler@​0.65.3

Bug Fixes

  • #6041 Fix validation issue in @opExample when using versioning/mutators

@​typespec/compiler@​0.65.2

Bug Fixes

  • #6003 Fix regression where enum values would report not being assignable to their enum when using versioning

@​typespec/compiler@​0.65.1

Bug Fixes

  • #5975 Downgrade arborist dependency which added node20+ requirement
Commits

Updates @typespec/http from 0.62.0 to 0.65.0

Commits

Updates @typespec/openapi from 0.62.0 to 0.65.0

Release notes

Sourced from @​typespec/openapi's releases.

@​typespec/openapi3@​0.59.1

Bug Fixes

  • #4168 Fix: query params are explode: true by default in OpenAPI 3.0
Commits

Updates @typespec/openapi3 from 0.62.0 to 0.65.0

Release notes

Sourced from @​typespec/openapi3's releases.

@​typespec/openapi3@​0.59.1

Bug Fixes

  • #4168 Fix: query params are explode: true by default in OpenAPI 3.0
Commits

Updates @typespec/prettier-plugin-typespec from 0.62.0 to 0.65.0

Updates @typespec/rest from 0.62.0 to 0.65.0

Release notes

Sourced from @​typespec/rest's releases.

@​typespec/rest@​0.64.1

Bug Fixes

  • #5726 Updates CollectionWithNextLink to support pagination

@​typespec/rest@​0.63.1

Bug Fixes

  • #5535 In some scenarios, the options for the @path decorator do not accurately reflect the provided parameters, including the #{allowReserved: true} which is the x-ms-skip-url-encoding option. This change addresses and fixes this issue.
Commits

Updates @typespec/streams from 0.62.0 to 0.65.0

Commits

Updates @typespec/versioning from 0.62.0 to 0.65.0

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the typespec group with 16 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@azure-tools/typespec-apiview](https://github.com/Azure/azure-sdk-tools) | `0.4.9` | `0.5.0` |
| [@azure-tools/typespec-autorest](https://github.com/Azure/typespec-azure) | `0.48.0` | `0.51.0` |
| [@azure-tools/typespec-azure-core](https://github.com/Azure/typespec-azure) | `0.48.0` | `0.51.0` |
| [@azure-tools/typespec-azure-portal-core](https://azure.github.io/typespec-azure) | `0.48.0` | `0.51.0` |
| [@azure-tools/typespec-azure-resource-manager](https://github.com/Azure/typespec-azure) | `0.48.0` | `0.51.0` |
| [@azure-tools/typespec-azure-rulesets](https://github.com/Azure/typespec-azure) | `0.48.0` | `0.51.0` |
| [@azure-tools/typespec-client-generator-cli](https://github.com/Azure/azure-sdk-tools) | `0.14.1` | `0.15.3` |
| [@azure-tools/typespec-client-generator-core](https://github.com/Azure/typespec-azure) | `0.48.3` | `0.51.3` |
| [@typespec/compiler](https://github.com/microsoft/typespec) | `0.62.0` | `0.65.3` |
| [@typespec/http](https://github.com/microsoft/typespec) | `0.62.0` | `0.65.0` |
| [@typespec/openapi](https://github.com/microsoft/typespec) | `0.62.0` | `0.65.0` |
| [@typespec/openapi3](https://github.com/microsoft/typespec) | `0.62.0` | `0.65.0` |
| @typespec/prettier-plugin-typespec | `0.62.0` | `0.65.0` |
| [@typespec/rest](https://github.com/microsoft/typespec) | `0.62.0` | `0.65.0` |
| [@typespec/streams](https://github.com/microsoft/typespec) | `0.62.0` | `0.65.0` |
| [@typespec/versioning](https://github.com/microsoft/typespec) | `0.62.0` | `0.65.0` |



Updates `@azure-tools/typespec-apiview` from 0.4.9 to 0.5.0
- [Release notes](https://github.com/Azure/azure-sdk-tools/releases)
- [Commits](https://github.com/Azure/azure-sdk-tools/commits/doc-warden_0.5.0)

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

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

Updates `@azure-tools/typespec-azure-portal-core` from 0.48.0 to 0.51.0

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

Updates `@azure-tools/typespec-azure-rulesets` from 0.48.0 to 0.51.0
- [Release notes](https://github.com/Azure/typespec-azure/releases)
- [Commits](https://github.com/Azure/typespec-azure/compare/@azure-tools/[email protected]...@azure-tools/[email protected])

Updates `@azure-tools/typespec-client-generator-cli` from 0.14.1 to 0.15.3
- [Release notes](https://github.com/Azure/azure-sdk-tools/releases)
- [Commits](https://github.com/Azure/azure-sdk-tools/commits)

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

Updates `@typespec/compiler` from 0.62.0 to 0.65.3
- [Release notes](https://github.com/microsoft/typespec/releases)
- [Commits](https://github.com/microsoft/typespec/compare/[email protected]...@typespec/[email protected])

Updates `@typespec/http` from 0.62.0 to 0.65.0
- [Release notes](https://github.com/microsoft/typespec/releases)
- [Commits](https://github.com/microsoft/typespec/commits)

Updates `@typespec/openapi` from 0.62.0 to 0.65.0
- [Release notes](https://github.com/microsoft/typespec/releases)
- [Commits](https://github.com/microsoft/typespec/commits)

Updates `@typespec/openapi3` from 0.62.0 to 0.65.0
- [Release notes](https://github.com/microsoft/typespec/releases)
- [Commits](https://github.com/microsoft/typespec/commits)

Updates `@typespec/prettier-plugin-typespec` from 0.62.0 to 0.65.0

Updates `@typespec/rest` from 0.62.0 to 0.65.0
- [Release notes](https://github.com/microsoft/typespec/releases)
- [Commits](https://github.com/microsoft/typespec/commits)

Updates `@typespec/streams` from 0.62.0 to 0.65.0
- [Release notes](https://github.com/microsoft/typespec/releases)
- [Commits](https://github.com/microsoft/typespec/commits)

Updates `@typespec/versioning` from 0.62.0 to 0.65.0
- [Release notes](https://github.com/microsoft/typespec/releases)
- [Commits](https://github.com/microsoft/typespec/commits)

---
updated-dependencies:
- dependency-name: "@azure-tools/typespec-apiview"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typespec
- dependency-name: "@azure-tools/typespec-autorest"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typespec
- dependency-name: "@azure-tools/typespec-azure-core"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typespec
- dependency-name: "@azure-tools/typespec-azure-portal-core"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typespec
- dependency-name: "@azure-tools/typespec-azure-resource-manager"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typespec
- dependency-name: "@azure-tools/typespec-azure-rulesets"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typespec
- dependency-name: "@azure-tools/typespec-client-generator-cli"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typespec
- dependency-name: "@azure-tools/typespec-client-generator-core"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typespec
- dependency-name: "@typespec/compiler"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typespec
- dependency-name: "@typespec/http"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typespec
- dependency-name: "@typespec/openapi"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typespec
- dependency-name: "@typespec/openapi3"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typespec
- dependency-name: "@typespec/prettier-plugin-typespec"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typespec
- dependency-name: "@typespec/rest"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typespec
- dependency-name: "@typespec/streams"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typespec
- dependency-name: "@typespec/versioning"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typespec
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Feb 25, 2025
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.

1 participant