Skip to content

Commit fb2a187

Browse files
authored
Bump emitter version to 0.54.0 (#4014)
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
1 parent 39ebc04 commit fb2a187

8 files changed

Lines changed: 40 additions & 7 deletions

File tree

packages/autorest.typescript/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 6.0.74 (2026-06-01)
2+
3+
- [Feature] Bump TypeSpec dependencies to latest stable and next pre-release versions. Please refer to [#4012](https://github.com/Azure/autorest.typescript/pull/4012)
4+
- [Bugfix] Fix config/script gaps between JS emitter and SDK libraries. Please refer to [#4006](https://github.com/Azure/autorest.typescript/pull/4006)
5+
- [Feature] Bump turbo from 2.6.3 to 2.9.14. Please refer to [#3989](https://github.com/Azure/autorest.typescript/pull/3989)
6+
- [Feature] Remove `head-as-boolean` emitter flag (superseded by TCGC `@responseAsBool`). Please refer to [#3986](https://github.com/Azure/autorest.typescript/pull/3986)
7+
- [Feature] Improve resolveReferences performance. Please refer to [#4004](https://github.com/Azure/autorest.typescript/pull/4004)
8+
- [Bugfix] Fix deserializer throwing on empty response body (success and error paths). Please refer to [#3948](https://github.com/Azure/autorest.typescript/pull/3948)
9+
- [Feature] Decouple typespec-ts from rlc-common. Please refer to [#3926](https://github.com/Azure/autorest.typescript/pull/3926)
10+
- [Feature] Update naming terminology: cadl-ranch → spector, HLC → AutoRest. Please refer to [#3957](https://github.com/Azure/autorest.typescript/pull/3957)
11+
112
## 6.0.73 (2026-05-25)
213

314
- [Feature] Bump TypeSpec dependencies to latest stable. Please refer to [#4002](https://github.com/Azure/autorest.typescript/pull/4002)

packages/autorest.typescript/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@autorest/typescript",
3-
"version": "6.0.73",
3+
"version": "6.0.74",
44
"scripts": {
55
"build": "tsc -p . && npm run copyFiles",
66
"build:test:browser:rlc": "tsc -p tsconfig.browser-test.json && tsx test/commands/prepare-deps.ts --browser && webpack --config webpack.config.test.js --env mode=rlc",
@@ -77,7 +77,7 @@
7777
"source-map-support": "^0.5.16",
7878
"ts-morph": "^23.0.0",
7979
"@azure/core-auth": "^1.6.0",
80-
"@azure-tools/rlc-common": "workspace:^0.53.3"
80+
"@azure-tools/rlc-common": "workspace:^0.54.0"
8181
},
8282
"devDependencies": {
8383
"@azure-tools/test-recorder": "^3.0.0",

packages/rlc-common/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 0.54.0 (2026-06-01)
2+
3+
- [Feature] Bump TypeSpec dependencies to latest stable and next pre-release versions. Please refer to [#4012](https://github.com/Azure/autorest.typescript/pull/4012)
4+
- [Bugfix] Fix config/script gaps between JS emitter and SDK libraries. Please refer to [#4006](https://github.com/Azure/autorest.typescript/pull/4006)
5+
- [Feature] Bump turbo from 2.6.3 to 2.9.14. Please refer to [#3989](https://github.com/Azure/autorest.typescript/pull/3989)
6+
- [Feature] Remove `head-as-boolean` emitter flag (superseded by TCGC `@responseAsBool`). Please refer to [#3986](https://github.com/Azure/autorest.typescript/pull/3986)
7+
- [Feature] Improve resolveReferences performance. Please refer to [#4004](https://github.com/Azure/autorest.typescript/pull/4004)
8+
- [Bugfix] Fix deserializer throwing on empty response body (success and error paths). Please refer to [#3948](https://github.com/Azure/autorest.typescript/pull/3948)
9+
- [Feature] Decouple typespec-ts from rlc-common. Please refer to [#3926](https://github.com/Azure/autorest.typescript/pull/3926)
10+
- [Feature] Update naming terminology: cadl-ranch → spector, HLC → AutoRest. Please refer to [#3957](https://github.com/Azure/autorest.typescript/pull/3957)
11+
112
## 0.53.3 (2026-05-25)
213

314
- [Feature] Bump TypeSpec dependencies to latest stable. Please refer to [#4002](https://github.com/Azure/autorest.typescript/pull/4002)

packages/rlc-common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@azure-tools/rlc-common",
3-
"version": "0.53.3",
3+
"version": "0.54.0",
44
"description": "",
55
"type": "module",
66
"main": "dist/index.js",

packages/typespec-test/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "1.0.0",
44
"type": "module",
55
"dependencies": {
6-
"@azure-tools/typespec-ts": "workspace:^0.53.3",
6+
"@azure-tools/typespec-ts": "workspace:^0.54.0",
77
"@typespec/openapi": "^1.12.0",
88
"@azure-tools/typespec-autorest": "^0.68.0",
99
"@typespec/openapi3": "^1.12.0",

packages/typespec-ts/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 0.54.0 (2026-06-01)
2+
3+
- [Feature] Bump TypeSpec dependencies to latest stable and next pre-release versions. Please refer to [#4012](https://github.com/Azure/autorest.typescript/pull/4012)
4+
- [Bugfix] Fix config/script gaps between JS emitter and SDK libraries. Please refer to [#4006](https://github.com/Azure/autorest.typescript/pull/4006)
5+
- [Feature] Bump turbo from 2.6.3 to 2.9.14. Please refer to [#3989](https://github.com/Azure/autorest.typescript/pull/3989)
6+
- [Feature] Remove `head-as-boolean` emitter flag (superseded by TCGC `@responseAsBool`). Please refer to [#3986](https://github.com/Azure/autorest.typescript/pull/3986)
7+
- [Feature] Improve resolveReferences performance. Please refer to [#4004](https://github.com/Azure/autorest.typescript/pull/4004)
8+
- [Bugfix] Fix deserializer throwing on empty response body (success and error paths). Please refer to [#3948](https://github.com/Azure/autorest.typescript/pull/3948)
9+
- [Feature] Decouple typespec-ts from rlc-common. Please refer to [#3926](https://github.com/Azure/autorest.typescript/pull/3926)
10+
- [Feature] Update naming terminology: cadl-ranch → spector, HLC → AutoRest. Please refer to [#3957](https://github.com/Azure/autorest.typescript/pull/3957)
11+
112
## 0.53.3 (2026-05-25)
213

314
- [Feature] Bump TypeSpec dependencies to latest stable. Please refer to [#4002](https://github.com/Azure/autorest.typescript/pull/4002)

packages/typespec-ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@azure-tools/typespec-ts",
3-
"version": "0.53.3",
3+
"version": "0.54.0",
44
"description": "An experimental TypeSpec emitter for TypeScript RLC",
55
"main": "dist/src/index.js",
66
"type": "module",

pnpm-lock.yaml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)