Skip to content

Commit

Permalink
Prepare publish for TypeSpec 0.64.0 (#5629)
Browse files Browse the repository at this point in the history
Co-authored-by: Christopher Radek <[email protected]>
  • Loading branch information
chrisradek and Christopher Radek authored Jan 15, 2025
1 parent 79aa58f commit 5478163
Show file tree
Hide file tree
Showing 85 changed files with 200 additions and 287 deletions.

This file was deleted.

This file was deleted.

This file was deleted.

7 changes: 0 additions & 7 deletions .chronus/changes/fix-json-example-2025-0-2-14-56-22.md

This file was deleted.

7 changes: 0 additions & 7 deletions .chronus/changes/fix-negative-big-int-2024-12-06-23-51-23.md

This file was deleted.

This file was deleted.

This file was deleted.

7 changes: 0 additions & 7 deletions .chronus/changes/generateSDK-2024-11-10-10-45-35.md

This file was deleted.

7 changes: 0 additions & 7 deletions .chronus/changes/generateSDK-2025-0-10-0-6-24.md

This file was deleted.

7 changes: 0 additions & 7 deletions .chronus/changes/get-stream-metadata-2024-10-19-16-52-8.md

This file was deleted.

7 changes: 0 additions & 7 deletions .chronus/changes/hide-codegen-config-2025-0-15-9-4-57.md

This file was deleted.

This file was deleted.

8 changes: 0 additions & 8 deletions .chronus/changes/mfd-01-2025-0-7-2-3-57.md

This file was deleted.

8 changes: 0 additions & 8 deletions .chronus/changes/multipart-01-2024-11-20-1-16-27.md

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

7 changes: 0 additions & 7 deletions .chronus/changes/openapi31-playground-2025-0-9-12-38-34.md

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

8 changes: 0 additions & 8 deletions .chronus/changes/scaffolding-emitter-2025-0-14-11-30-33.md

This file was deleted.

7 changes: 0 additions & 7 deletions .chronus/changes/scaffolding-wording-2025-0-9-19-12-18.md

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

7 changes: 0 additions & 7 deletions .chronus/changes/vs-vulnerabilities-2024-11-12-13-19-40.md

This file was deleted.

20 changes: 0 additions & 20 deletions .chronus/changes/vscode-scaffolding-2024-11-7-12-44-28.md

This file was deleted.

7 changes: 0 additions & 7 deletions .chronus/changes/vscode-scaffolding-2024-11-7-12-46-5.md

This file was deleted.

7 changes: 0 additions & 7 deletions .chronus/changes/wanl-fix-noway-yaml-2024-11-27-14-31-43.md

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

4 changes: 4 additions & 0 deletions packages/bundler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log - @typespec/bundler

## 0.1.11

No changes, version bump only.

## 0.1.10

No changes, version bump only.
Expand Down
2 changes: 1 addition & 1 deletion packages/bundler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@typespec/bundler",
"version": "0.1.10",
"version": "0.1.11",
"author": "Microsoft Corporation",
"description": "Package to bundle a TypeSpec library.",
"homepage": "https://typespec.io",
Expand Down
20 changes: 20 additions & 0 deletions packages/compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Change Log - @typespec/compiler

## 0.64.0

### Bug Fixes

- [#5295](https://github.com/microsoft/typespec/pull/5295) Fix incorrectly returning a positive `BigInt` for a negative `Numeric`.
- [#5353](https://github.com/microsoft/typespec/pull/5353) Meta property are auto-completed, current only supported '::type', '::parameters', '::returnType'
- [#5180](https://github.com/microsoft/typespec/pull/5180) Fixed serialization of object examples on unions
- [#5525](https://github.com/microsoft/typespec/pull/5525) Enum-driven visibility decorators and projections now interact correctly.

Projections now project EnumValue values to preserve consistency with projected Enum/EnumMember types using a best-effort
strategy.

### Features

- [#5415](https://github.com/microsoft/typespec/pull/5415) Added support for emitter selections for init template.
- [#5316](https://github.com/microsoft/typespec/pull/5316) Compiler trace will be sent to IDE as trace log through language server
- [#5594](https://github.com/microsoft/typespec/pull/5594) Support Emitters section in Init Template when creating TypeSpec project in vscode
- [#5294](https://github.com/microsoft/typespec/pull/5294) Add capacities in TypeSpec Language Server to support "Scaffolding new TypeSpec project" in IDE


## 0.63.0

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@typespec/compiler",
"version": "0.63.0",
"version": "0.64.0",
"description": "TypeSpec Compiler Preview",
"author": "Microsoft Corporation",
"license": "MIT",
Expand Down
8 changes: 4 additions & 4 deletions packages/compiler/templates/scaffolding.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"title": "Empty project",
"description": "Create an empty project.",
"libraries": [],
"compilerVersion": "0.63.0"
"compilerVersion": "0.64.0"
},
"rest": {
"title": "Generic REST API",
"description": "Create a project representing a generic REST API",
"compilerVersion": "0.63.0",
"compilerVersion": "0.64.0",
"libraries": [
"@typespec/http",
"@typespec/rest",
Expand All @@ -23,7 +23,7 @@
"library-ts": {
"title": "TypeSpec Library (With TypeScript)",
"description": "Create a new package to add decorators or linters to typespec.",
"compilerVersion": "0.63.0",
"compilerVersion": "0.64.0",
"libraries": [],
"files": [
{
Expand Down Expand Up @@ -99,7 +99,7 @@
"emitter-ts": {
"title": "TypeSpec Emitter (With TypeScript)",
"description": "Create a new package that will be emitting typespec",
"compilerVersion": "0.63.0",
"compilerVersion": "0.64.0",
"libraries": [],
"files": [
{
Expand Down
Loading

0 comments on commit 5478163

Please sign in to comment.