Skip to content

Commit

Permalink
Bump versions for release 0.55.0 - april 2024 (#3096)
Browse files Browse the repository at this point in the history
  • Loading branch information
timotheeguerin committed Apr 2, 2024
1 parent 63cb176 commit 2f53533
Show file tree
Hide file tree
Showing 180 changed files with 576 additions and 548 deletions.

This file was deleted.

8 changes: 0 additions & 8 deletions .chronus/changes/allow-encode-union-2024-2-6-17-42-29.md

This file was deleted.

15 changes: 0 additions & 15 deletions .chronus/changes/deprecate-known-values-2024-3-2-11-42-15.md

This file was deleted.

6 changes: 0 additions & 6 deletions .chronus/changes/deprecate-known-values-2024-3-2-18-48-59.md

This file was deleted.

14 changes: 0 additions & 14 deletions .chronus/changes/deprecate-projected-name-2024-1-12-21-5-53.md

This file was deleted.

This file was deleted.

14 changes: 0 additions & 14 deletions .chronus/changes/feature-dec-ts-sig-2024-2-7-19-6-24.md

This file was deleted.

8 changes: 0 additions & 8 deletions .chronus/changes/feature-dec-ts-sig-2024-2-8-21-36-50.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/fix-no-crash-nullable-2024-1-28-22-57-44.md

This file was deleted.

This file was deleted.

6 changes: 0 additions & 6 deletions .chronus/changes/fix-swagger-ui-build-2024-3-1-18-48-1.md

This file was deleted.

This file was deleted.

8 changes: 0 additions & 8 deletions .chronus/changes/fix-union-template-2024-2-26-16-22-2.md

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

24 changes: 0 additions & 24 deletions .chronus/changes/remove-unusued-dep-2024-2-29-14-4-43.md

This file was deleted.

7 changes: 0 additions & 7 deletions .chronus/changes/scalar-versioning-2024-2-26-9-56-30.md

This file was deleted.

7 changes: 0 additions & 7 deletions .chronus/changes/scalar-versioning-2024-2-26-9-56-6.md

This file was deleted.

7 changes: 0 additions & 7 deletions .chronus/changes/swagger-ui-dist-2024-3-1-16-0-13.md

This file was deleted.

This file was deleted.

25 changes: 0 additions & 25 deletions .chronus/changes/upgrade-deps-march-2024-2024-2-18-16-33-47.md

This file was deleted.

6 changes: 0 additions & 6 deletions .chronus/changes/vitest-allow-reload-js-2024-3-1-10-34-31.md

This file was deleted.

8 changes: 0 additions & 8 deletions .chronus/changes/website-doc-cleanup-2024-2-11-22-12-8.md

This file was deleted.

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

## 0.1.2

### Bump dependencies

- [#3027](https://github.com/microsoft/typespec/pull/3027) Update dependencies


## 0.1.1

### Bump dependencies
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.1",
"version": "0.1.2",
"author": "Microsoft Corporation",
"description": "Package to bundle a TypeSpec library.",
"homepage": "https://typespec.io",
Expand Down
39 changes: 39 additions & 0 deletions packages/compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,44 @@
# Change Log - @typespec/compiler

## 0.55.0

### Bug Fixes

- [#3018](https://github.com/microsoft/typespec/pull/3018) Grammar: Fix comments in template params not tokenized
- [#3052](https://github.com/microsoft/typespec/pull/3052) Fix: Union template declaration were incorrectly being finished in projection
- [#2983](https://github.com/microsoft/typespec/pull/2983) Warnings converted to error with `warn-as-error` do not prevent compilation from moving to the next stage like regular warnings
- [#3041](https://github.com/microsoft/typespec/pull/3041) Improve relability of application of codefixes in IDE, often it would not do anything
- [#3069](https://github.com/microsoft/typespec/pull/3069) TmLanguage: Fix tokenization of escaped identifiers, enums and unions

### Bump dependencies

- [#3027](https://github.com/microsoft/typespec/pull/3027) Update dependencies

### Features

- [#2992](https://github.com/microsoft/typespec/pull/2992) Enable the use of `@encode` for model properties that have a union type. This supports cases like `@encode("rfc3339") prop: utcDateTime | null`
- [#3053](https://github.com/microsoft/typespec/pull/3053) Experimental projection: Add support for scalars

### Deprecations

- [#3094](https://github.com/microsoft/typespec/pull/3094) Deprecate `@knownValues` decorator. Use a named union of string literal with a string variant to achieve the same result without a decorator

Example:
```diff
-enum FooKV { a, b, c}
-@knownValues(FooKV)
-scalar foo extends string;
+union Foo { "a", "b", "c", string }
```
- [#2910](https://github.com/microsoft/typespec/pull/2910) Deprecate `@projectedName` decorator. `@encodedName` should be used instead.

Example:
```diff
-@projectedName("json", "exp")
+@encodedName("application/json", "exp")
```


## 0.54.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.54.0",
"version": "0.55.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.54.0"
"compilerVersion": "0.55.0"
},
"rest": {
"title": "Generic REST API",
"description": "Create a project representing a generic REST API",
"compilerVersion": "0.54.0",
"compilerVersion": "0.55.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.54.0",
"compilerVersion": "0.55.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.54.0",
"compilerVersion": "0.55.0",
"libraries": [],
"files": [
{
Expand Down
Loading

0 comments on commit 2f53533

Please sign in to comment.