Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add release notes for version 0.45.0 #1306

Merged
merged 1 commit into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/release-notes/release-2024-07-16.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: 0.44.0 June 2024
title: 0.44.0 July 2024
---

# Release Notes Version 0.44.0 - July 2024
Expand Down
50 changes: 50 additions & 0 deletions docs/release-notes/release-2024-08-06.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
---
title: 0.45.0 August 2024
---

# Release Notes Version 0.45.0 - August 2024

See TypeSpec Core 0.59 [release notes](https://typespec.io/docs/release-notes/release-2024-08-06)

:::warning
This release contains deprecations and breaking changes
:::

## Features

### @azure-tools/typespec-autorest

- [#1275](https://github.com/Azure/typespec-azure/pull/1275) Add support for encoding numeric types as string
- [#1247](https://github.com/Azure/typespec-azure/pull/1247) Add support for URI templates in routes

### @azure-tools/typespec-azure-core

- [#1154](https://github.com/Azure/typespec-azure/pull/1154) Add new `@azure-tools/typespec-azure-core/require-versioned` linting rule to require Azure service to use versioning library.
- [#1193](https://github.com/Azure/typespec-azure/pull/1193) Add new linter rule to prevent using items from Private namespace from an external library.

### @azure-tools/typespec-client-generator-core

- [#1258](https://github.com/Azure/typespec-azure/pull/1258) add support for encoding an int as a string
- [#1155](https://github.com/Azure/typespec-azure/pull/1155) Make literal endpoints overridable
- [#1148](https://github.com/Azure/typespec-azure/pull/1148) add `@override` decorator that allows authors to explicitly describe their desired client method

## Bug Fixes

### @azure-tools/typespec-autorest

- [#1248](https://github.com/Azure/typespec-azure/pull/1248) Fix issue what allowed `multi` format on a header

### @azure-tools/typespec-azure-core

- [#1198](https://github.com/Azure/typespec-azure/pull/1198) Use some more precise types for certain decorators that would have crashed otherwise

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

- [#1187](https://github.com/Azure/typespec-azure/pull/1187) Replace deprecated LocationParameter with LocationResourceParameter

### @azure-tools/typespec-client-generator-core

- [#1238](https://github.com/Azure/typespec-azure/pull/1238) TCGC, add `crossLanguageDefinitionId` to `SdkClientType`
- [#1266](https://github.com/Azure/typespec-azure/pull/1266) expose default values for endpoint template arguments through `.clientDefaultValue`
- [#1281](https://github.com/Azure/typespec-azure/pull/1281) Support @multipartBody for `bodyParam` of `SdkHttpOperation`
- [#1233](https://github.com/Azure/typespec-azure/pull/1233) don't move server description onto endpoints parameter
Loading