Skip to content

Commit

Permalink
Bump version for compiler & openapi3 0.53.1 hotfix (#2898)
Browse files Browse the repository at this point in the history
  • Loading branch information
timotheeguerin authored Feb 8, 2024
1 parent e6a045b commit 0b0c70e
Show file tree
Hide file tree
Showing 26 changed files with 89 additions and 81 deletions.
7 changes: 0 additions & 7 deletions .changeset/hotfix-unions-handling-2024-1-8-1-20-37.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hotfix-unions-handling-2024-1-8-1-20-38.md

This file was deleted.

4 changes: 2 additions & 2 deletions packages/best-practices/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@
"!dist/test/**"
],
"peerDependencies": {
"@typespec/compiler": "workspace:~0.53.0"
"@typespec/compiler": "workspace:~0.53.1"
},
"devDependencies": {
"@types/node": "~18.11.9",
"@typespec/compiler": "workspace:~0.53.0",
"@typespec/compiler": "workspace:~0.53.1",
"@typespec/eslint-config-typespec": "workspace:~0.53.0",
"@typespec/eslint-plugin": "workspace:~0.53.0",
"eslint": "^8.55.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/bundler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"!dist/test/**"
],
"dependencies": {
"@typespec/compiler": "workspace:~0.53.0",
"@typespec/compiler": "workspace:~0.53.1",
"@rollup/plugin-virtual": "~3.0.1",
"@rollup/plugin-commonjs": "~25.0.4",
"@rollup/plugin-json": "~6.1.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log - @typespec/compiler

## 0.53.1

### Patch Changes

- e6a045b: Allow using default values for union property types

## 0.53.0

### Minor Changes
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.53.0",
"version": "0.53.1",
"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.53.0"
"compilerVersion": "0.53.1"
},
"rest": {
"title": "Generic REST API",
"description": "Create a project representing a generic REST API",
"compilerVersion": "0.53.0",
"compilerVersion": "0.53.1",
"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.53.0",
"compilerVersion": "0.53.1",
"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.53.0",
"compilerVersion": "0.53.1",
"libraries": [],
"files": [
{
Expand Down
4 changes: 2 additions & 2 deletions packages/html-program-viewer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"!dist/test/**"
],
"peerDependencies": {
"@typespec/compiler": "workspace:~0.53.0"
"@typespec/compiler": "workspace:~0.53.1"
},
"dependencies": {
"prettier": "~3.1.1",
Expand All @@ -61,7 +61,7 @@
"@types/node": "~18.11.9",
"@types/react": "~18.2.22",
"@types/react-dom": "~18.2.7",
"@typespec/compiler": "workspace:~0.53.0",
"@typespec/compiler": "workspace:~0.53.1",
"@typespec/eslint-config-typespec": "workspace:~0.53.0",
"@babel/core": "^7.22.20",
"eslint": "^8.55.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/http/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@
"!dist/test/**"
],
"peerDependencies": {
"@typespec/compiler": "workspace:~0.53.0"
"@typespec/compiler": "workspace:~0.53.1"
},
"devDependencies": {
"@types/node": "~18.11.9",
"@typespec/compiler": "workspace:~0.53.0",
"@typespec/compiler": "workspace:~0.53.1",
"@typespec/eslint-config-typespec": "workspace:~0.53.0",
"@typespec/library-linter": "workspace:~0.53.0",
"@typespec/eslint-plugin": "workspace:~0.53.0",
Expand Down
9 changes: 8 additions & 1 deletion packages/json-schema/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
# Change Log - @typespec/json-schema

## 0.53.0
## 0.53.1

### Patch Changes

- e6a045b: Allow using default values for union property types
- Updated dependencies [e6a045b]
- @typespec/compiler@0.53.1

## 0.53.0

### Patch Changes

This log was last generated on Wed, 24 Jan 2024 05:46:53 GMT and should not be manually modified.

Expand Down
6 changes: 3 additions & 3 deletions packages/json-schema/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@typespec/json-schema",
"version": "0.53.0",
"version": "0.53.1",
"author": "Microsoft Corporation",
"description": "TypeSpec library for emitting TypeSpec to JSON Schema and converting JSON Schema to TypeSpec",
"homepage": "https://github.com/microsoft/typespec",
Expand Down Expand Up @@ -44,11 +44,11 @@
"!dist/test/**"
],
"peerDependencies": {
"@typespec/compiler": "workspace:~0.53.0"
"@typespec/compiler": "workspace:~0.53.1"
},
"devDependencies": {
"@types/node": "~18.11.9",
"@typespec/compiler": "workspace:~0.53.0",
"@typespec/compiler": "workspace:~0.53.1",
"@typespec/library-linter": "workspace:~0.53.0",
"@typespec/eslint-plugin": "workspace:~0.53.0",
"@typespec/eslint-config-typespec": "workspace:~0.53.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/library-linter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@
"!dist/test/**"
],
"peerDependencies": {
"@typespec/compiler": "workspace:~0.53.0"
"@typespec/compiler": "workspace:~0.53.1"
},
"devDependencies": {
"@types/node": "~18.11.9",
"@typespec/compiler": "workspace:~0.53.0",
"@typespec/compiler": "workspace:~0.53.1",
"@typespec/eslint-config-typespec": "workspace:~0.53.0",
"eslint": "^8.55.0",
"vitest": "^1.2.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/openapi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@
"!dist/test/**"
],
"peerDependencies": {
"@typespec/compiler": "workspace:~0.53.0",
"@typespec/compiler": "workspace:~0.53.1",
"@typespec/http": "workspace:~0.53.0"
},
"devDependencies": {
"@types/node": "~18.11.9",
"@typespec/compiler": "workspace:~0.53.0",
"@typespec/compiler": "workspace:~0.53.1",
"@typespec/http": "workspace:~0.53.0",
"@typespec/rest": "workspace:~0.53.0",
"@typespec/eslint-config-typespec": "workspace:~0.53.0",
Expand Down
7 changes: 7 additions & 0 deletions packages/openapi3/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log - @typespec/openapi3

## 0.53.1

### Patch Changes

- e6a045b: Allow using default values for union property types
- e6a045b: Fix: union of primitive types that gets emitted as an `enum` keeps the description

## 0.53.0

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/openapi3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@typespec/openapi3",
"version": "0.53.0",
"version": "0.53.1",
"author": "Microsoft Corporation",
"description": "TypeSpec library for emitting OpenAPI 3.0 from the TypeSpec REST protocol binding",
"homepage": "https://typespec.io",
Expand Down Expand Up @@ -55,13 +55,13 @@
},
"peerDependencies": {
"@typespec/versioning": "workspace:~0.53.0",
"@typespec/compiler": "workspace:~0.53.0",
"@typespec/compiler": "workspace:~0.53.1",
"@typespec/http": "workspace:~0.53.0",
"@typespec/openapi": "workspace:~0.53.0"
},
"devDependencies": {
"@types/node": "~18.11.9",
"@typespec/compiler": "workspace:~0.53.0",
"@typespec/compiler": "workspace:~0.53.1",
"@typespec/http": "workspace:~0.53.0",
"@typespec/rest": "workspace:~0.53.0",
"@typespec/openapi": "workspace:~0.53.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/playground-website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@
"dependencies": {
"@typespec/playground": "workspace:~0.1.0",
"@typespec/versioning": "workspace:~0.53.0",
"@typespec/compiler": "workspace:~0.53.0",
"@typespec/compiler": "workspace:~0.53.1",
"@typespec/http": "workspace:~0.53.0",
"@typespec/rest": "workspace:~0.53.0",
"@typespec/openapi3": "workspace:~0.53.0",
"@typespec/json-schema": "workspace:~0.53.0",
"@typespec/openapi3": "workspace:~0.53.1",
"@typespec/json-schema": "workspace:~0.53.1",
"@typespec/openapi": "workspace:~0.53.0",
"@typespec/protobuf": "workspace:~0.53.0",
"@typespec/html-program-viewer": "workspace:~0.53.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@
"@fluentui/react-components": "~9.42.0",
"@fluentui/react-icons": "^2.0.221",
"@typespec/bundler": "workspace:~0.1.0",
"@typespec/compiler": "workspace:~0.53.0",
"@typespec/compiler": "workspace:~0.53.1",
"@typespec/html-program-viewer": "workspace:~0.53.0",
"@typespec/http": "workspace:~0.53.0",
"@typespec/openapi": "workspace:~0.53.0",
"@typespec/openapi3": "workspace:~0.53.0",
"@typespec/openapi3": "workspace:~0.53.1",
"@typespec/protobuf": "workspace:~0.53.0",
"@typespec/rest": "workspace:~0.53.0",
"@typespec/versioning": "workspace:~0.53.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/prettier-plugin-typespec/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"devDependencies": {
"prettier_2": "npm:prettier@2.8.7",
"@typespec/compiler": "workspace:~0.53.0",
"@typespec/compiler": "workspace:~0.53.1",
"@typespec/internal-build-utils": "workspace:~0.53.0",
"@rollup/plugin-commonjs": "~25.0.4",
"@rollup/plugin-json": "~6.1.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/protobuf/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
"regen-docs": "tspd doc . --enable-experimental --output-dir ../../docs/libraries/protobuf/reference"
},
"peerDependencies": {
"@typespec/compiler": "workspace:~0.53.0"
"@typespec/compiler": "workspace:~0.53.1"
},
"devDependencies": {
"@typespec/compiler": "workspace:~0.53.0",
"@typespec/compiler": "workspace:~0.53.1",
"@typespec/eslint-config-typespec": "workspace:~0.53.0",
"@typespec/eslint-plugin": "workspace:~0.53.0",
"@types/node": "~18.11.9",
Expand Down
4 changes: 2 additions & 2 deletions packages/rest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@
"!dist/test/**"
],
"peerDependencies": {
"@typespec/compiler": "workspace:~0.53.0",
"@typespec/compiler": "workspace:~0.53.1",
"@typespec/http": "workspace:~0.53.0"
},
"devDependencies": {
"@types/node": "~18.11.9",
"@typespec/compiler": "workspace:~0.53.0",
"@typespec/compiler": "workspace:~0.53.1",
"@typespec/http": "workspace:~0.53.0",
"@typespec/eslint-config-typespec": "workspace:~0.53.0",
"@typespec/library-linter": "workspace:~0.53.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/samples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@
],
"dependencies": {
"@typespec/best-practices": "workspace:~0.46.0",
"@typespec/compiler": "workspace:~0.53.0",
"@typespec/compiler": "workspace:~0.53.1",
"@typespec/html-program-viewer": "workspace:~0.53.0",
"@typespec/http": "workspace:~0.53.0",
"@typespec/json-schema": "workspace:~0.53.0",
"@typespec/json-schema": "workspace:~0.53.1",
"@typespec/openapi": "workspace:~0.53.0",
"@typespec/openapi3": "workspace:~0.53.0",
"@typespec/openapi3": "workspace:~0.53.1",
"@typespec/rest": "workspace:~0.53.0",
"@typespec/versioning": "workspace:~0.53.0"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/tspd/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@
"!dist/test/**"
],
"dependencies": {
"@typespec/compiler": "workspace:~0.53.0",
"@typespec/compiler": "workspace:~0.53.1",
"yaml": "~2.3.4",
"prettier": "~3.1.1",
"picocolors": "~1.0.0",
"yargs": "~17.7.2"
},
"devDependencies": {
"@typespec/compiler": "workspace:~0.53.0",
"@typespec/compiler": "workspace:~0.53.1",
"@typespec/eslint-config-typespec": "workspace:~0.53.0",
"@typespec/prettier-plugin-typespec": "workspace:~0.53.0",
"@types/node": "~18.11.9",
Expand Down
2 changes: 1 addition & 1 deletion packages/typespec-vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
"@rollup/plugin-typescript": "~11.1.5",
"@types/node": "~18.11.9",
"@types/vscode": "~1.85.0",
"@typespec/compiler": "workspace:~0.53.0",
"@typespec/compiler": "workspace:~0.53.1",
"@typespec/eslint-config-typespec": "workspace:~0.53.0",
"@typespec/internal-build-utils": "workspace:~0.53.0",
"eslint": "^8.55.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/versioning/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@
"!dist/test/**"
],
"peerDependencies": {
"@typespec/compiler": "workspace:~0.53.0"
"@typespec/compiler": "workspace:~0.53.1"
},
"devDependencies": {
"@types/node": "~18.11.9",
"@typespec/compiler": "workspace:~0.53.0",
"@typespec/compiler": "workspace:~0.53.1",
"@typespec/eslint-config-typespec": "workspace:~0.53.0",
"@typespec/library-linter": "workspace:~0.53.0",
"@typespec/eslint-plugin": "workspace:~0.53.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,16 @@
},
"devDependencies": {
"@swc/core": "^1.3.62",
"@typespec/compiler": "workspace:~0.53.0",
"@typespec/compiler": "workspace:~0.53.1",
"@typespec/tspd": "workspace:~0.46.0",
"@typespec/spec": "workspace:*",
"@typespec/http": "workspace:~0.53.0",
"@typespec/rest": "workspace:~0.53.0",
"@typespec/openapi": "workspace:~0.53.0",
"@typespec/openapi3": "workspace:~0.53.0",
"@typespec/openapi3": "workspace:~0.53.1",
"@typespec/protobuf": "workspace:~0.53.0",
"@typespec/versioning": "workspace:~0.53.0",
"@typespec/json-schema": "workspace:~0.53.0",
"@typespec/json-schema": "workspace:~0.53.1",
"@docusaurus/module-type-aliases": "^3.0.0",
"@docusaurus/types": "^3.0.0",
"@docusaurus/tsconfig": "^3.0.0",
Expand Down
Loading

0 comments on commit 0b0c70e

Please sign in to comment.