Skip to content

Commit

Permalink
Preparing package changes for release
Browse files Browse the repository at this point in the history
  • Loading branch information
markcowl committed Oct 15, 2021
1 parent 3e3bae0 commit b22d8ec
Show file tree
Hide file tree
Showing 18 changed files with 232 additions and 17 deletions.
12 changes: 12 additions & 0 deletions packages/cadl-vs/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
{
"name": "cadl-vs",
"entries": [
{
"version": "0.4.1",
"tag": "cadl-vs_v0.4.1",
"date": "Fri, 15 Oct 2021 21:33:37 GMT",
"comments": {
"dependency": [
{
"comment": "Updating dependency \"cadl-vscode\" from `0.8.0` to `0.9.0`"
}
]
}
},
{
"version": "0.4.0",
"tag": "cadl-vs_v0.4.0",
Expand Down
7 changes: 6 additions & 1 deletion packages/cadl-vs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log - cadl-vs

This log was last generated on Tue, 10 Aug 2021 20:23:04 GMT and should not be manually modified.
This log was last generated on Fri, 15 Oct 2021 21:33:37 GMT and should not be manually modified.

## 0.4.1
Fri, 15 Oct 2021 21:33:37 GMT

_Version update only_

## 0.4.0
Tue, 10 Aug 2021 20:23:04 GMT
Expand Down
4 changes: 2 additions & 2 deletions packages/cadl-vs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "cadl-vs",
"author": "Microsoft Corporation",
"version": "0.4.0",
"version": "0.4.1",
"description": "Cadl Language Support for Visual Studio",
"homepage": "https://github.com/Azure/adl",
"readme": "https://github.com/Azure/adl/blob/master/README.md",
Expand Down Expand Up @@ -29,6 +29,6 @@
},
"dependencies": {},
"devDependencies": {
"cadl-vscode": "0.8.0"
"cadl-vscode": "0.9.0"
}
}
18 changes: 18 additions & 0 deletions packages/cadl-vscode/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
{
"name": "cadl-vscode",
"entries": [
{
"version": "0.9.0",
"tag": "cadl-vscode_v0.9.0",
"date": "Fri, 15 Oct 2021 21:33:37 GMT",
"comments": {
"minor": [
{
"comment": "**Added** Language server support for directives"
},
{
"comment": "Add colorization for interfaces"
},
{
"comment": "Add colorization of union declarations"
}
]
}
},
{
"version": "0.8.0",
"tag": "cadl-vscode_v0.8.0",
Expand Down
11 changes: 10 additions & 1 deletion packages/cadl-vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# Change Log - cadl-vscode

This log was last generated on Tue, 10 Aug 2021 20:23:04 GMT and should not be manually modified.
This log was last generated on Fri, 15 Oct 2021 21:33:37 GMT and should not be manually modified.

## 0.9.0
Fri, 15 Oct 2021 21:33:37 GMT

### Minor changes

- **Added** Language server support for directives
- Add colorization for interfaces
- Add colorization of union declarations

## 0.8.0
Tue, 10 Aug 2021 20:23:04 GMT
Expand Down
2 changes: 1 addition & 1 deletion packages/cadl-vscode/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cadl-vscode",
"version": "0.8.0",
"version": "0.9.0",
"author": "Microsoft Corporation",
"description": "Cadl Language Support for VS Code",
"homepage": "https://github.com/Azure/adl",
Expand Down
68 changes: 68 additions & 0 deletions packages/compiler/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,74 @@
{
"name": "@cadl-lang/compiler",
"entries": [
{
"version": "0.21.0",
"tag": "@cadl-lang/compiler_v0.21.0",
"date": "Fri, 15 Oct 2021 21:33:37 GMT",
"comments": {
"patch": [
{
"comment": "Defensive code to prevent errors in decorators and onBuild from exiting the language server"
},
{
"comment": "Fix options comment"
},
{
"comment": "Update samples"
},
{
"comment": "Fix binding JS file namespaces and namespace decorators referencing types in a later namespace."
},
{
"comment": "fix using a namespace merged after current namespace"
},
{
"comment": "Fix namespace synthesis in certain contexts"
},
{
"comment": "Make nextLink optional in pageable response"
},
{
"comment": "Stop running decorators and emitters in language server again, fix language server crash. "
},
{
"comment": "regenerate samples"
}
],
"minor": [
{
"comment": "Add an API to clone a type"
},
{
"comment": "Reverse decorator evaluation order"
},
{
"comment": "**Added** Support for server default"
},
{
"comment": "**Added** New library helper for strong diagnostics definitions"
},
{
"comment": "**Added** New syntax to compiler for directive"
},
{
"comment": "**Added** support for suppressing warning via #suppress directive"
},
{
"comment": "Implement `interface`"
},
{
"comment": "Add walker, colorization, printer for interfaces"
},
{
"comment": "Surface decorator and emitter errors in IDE"
},
{
"comment": "Add union declarations"
}
]
}
},
{
"version": "0.20.0",
"tag": "@cadl-lang/compiler_v0.20.0",
Expand Down
30 changes: 29 additions & 1 deletion packages/compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,34 @@
# Change Log - @cadl-lang/compiler

This log was last generated on Fri, 17 Sep 2021 00:49:37 GMT and should not be manually modified.
This log was last generated on Fri, 15 Oct 2021 21:33:37 GMT and should not be manually modified.

## 0.21.0
Fri, 15 Oct 2021 21:33:37 GMT

### Minor changes

- Add an API to clone a type
- Reverse decorator evaluation order
- **Added** Support for server default
- **Added** New library helper for strong diagnostics definitions
- **Added** New syntax to compiler for directive
- **Added** support for suppressing warning via #suppress directive
- Implement `interface`
- Add walker, colorization, printer for interfaces
- Surface decorator and emitter errors in IDE
- Add union declarations

### Patches

- Defensive code to prevent errors in decorators and onBuild from exiting the language server
- Fix options comment
- Update samples
- Fix binding JS file namespaces and namespace decorators referencing types in a later namespace.
- fix using a namespace merged after current namespace
- Fix namespace synthesis in certain contexts
- Make nextLink optional in pageable response
- Stop running decorators and emitters in language server again, fix language server crash.
- regenerate samples

## 0.20.0
Fri, 17 Sep 2021 00:49:37 GMT
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": "@cadl-lang/compiler",
"version": "0.20.0",
"version": "0.21.0",
"description": "Cadl Compiler Preview",
"author": "Microsoft Corporation",
"license": "MIT",
Expand Down
20 changes: 20 additions & 0 deletions packages/openapi3/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
{
"name": "@cadl-lang/openapi3",
"entries": [
{
"version": "0.3.0",
"tag": "@cadl-lang/openapi3_v0.3.0",
"date": "Fri, 15 Oct 2021 21:33:37 GMT",
"comments": {
"minor": [
{
"comment": "**Added** Support for server default"
}
],
"dependency": [
{
"comment": "Updating dependency \"@cadl-lang/compiler\" from `0.20.0` to `0.21.0`"
},
{
"comment": "Updating dependency \"@cadl-lang/rest\" from `0.6.1` to `0.6.2`"
}
]
}
},
{
"version": "0.2.0",
"tag": "@cadl-lang/openapi3_v0.2.0",
Expand Down
9 changes: 8 additions & 1 deletion packages/openapi3/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Change Log - @cadl-lang/openapi3

This log was last generated on Fri, 17 Sep 2021 00:49:37 GMT and should not be manually modified.
This log was last generated on Fri, 15 Oct 2021 21:33:37 GMT and should not be manually modified.

## 0.3.0
Fri, 15 Oct 2021 21:33:37 GMT

### Minor changes

- **Added** Support for server default

## 0.2.0
Fri, 17 Sep 2021 00:49:37 GMT
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": "@cadl-lang/openapi3",
"version": "0.2.0",
"version": "0.3.0",
"author": "Microsoft Corporation",
"description": "Cadl library for emitting OpenAPI 3.0 from the Cadl REST protocol binding",
"homepage": "https://github.com/Azure/adl",
Expand Down Expand Up @@ -34,8 +34,8 @@
"!dist/test/**"
],
"dependencies": {
"@cadl-lang/compiler": "0.20.0",
"@cadl-lang/rest": "0.6.1"
"@cadl-lang/compiler": "0.21.0",
"@cadl-lang/rest": "0.6.2"
},
"devDependencies": {
"@types/mocha": "~7.0.2",
Expand Down
17 changes: 17 additions & 0 deletions packages/prettier-plugin-cadl/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
{
"name": "@cadl-lang/prettier-plugin-cadl",
"entries": [
{
"version": "0.5.0",
"tag": "@cadl-lang/prettier-plugin-cadl_v0.5.0",
"date": "Fri, 15 Oct 2021 21:33:37 GMT",
"comments": {
"minor": [
{
"comment": "**Added** Support for formatting directives"
}
],
"dependency": [
{
"comment": "Updating dependency \"@cadl-lang/compiler\" from `0.20.0` to `0.21.0`"
}
]
}
},
{
"version": "0.4.0",
"tag": "@cadl-lang/prettier-plugin-cadl_v0.4.0",
Expand Down
9 changes: 8 additions & 1 deletion packages/prettier-plugin-cadl/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Change Log - @cadl-lang/prettier-plugin-cadl

This log was last generated on Fri, 17 Sep 2021 00:49:37 GMT and should not be manually modified.
This log was last generated on Fri, 15 Oct 2021 21:33:37 GMT and should not be manually modified.

## 0.5.0
Fri, 15 Oct 2021 21:33:37 GMT

### Minor changes

- **Added** Support for formatting directives

## 0.4.0
Fri, 17 Sep 2021 00:49:37 GMT
Expand Down
4 changes: 2 additions & 2 deletions packages/prettier-plugin-cadl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cadl-lang/prettier-plugin-cadl",
"version": "0.4.0",
"version": "0.5.0",
"description": "",
"main": "dist/index.js",
"scripts": {
Expand All @@ -15,7 +15,7 @@
"prettier": "~2.2.1"
},
"devDependencies": {
"@cadl-lang/compiler": "0.20.0",
"@cadl-lang/compiler": "0.21.0",
"@rollup/plugin-commonjs": "~17.1.0",
"@rollup/plugin-json": "~4.1.0",
"@rollup/plugin-node-resolve": "~11.2.0",
Expand Down
17 changes: 17 additions & 0 deletions packages/rest/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
{
"name": "@cadl-lang/rest",
"entries": [
{
"version": "0.6.2",
"tag": "@cadl-lang/rest_v0.6.2",
"date": "Fri, 15 Oct 2021 21:33:37 GMT",
"comments": {
"patch": [
{
"comment": "Strongly defined diagnostics"
}
],
"dependency": [
{
"comment": "Updating dependency \"@cadl-lang/compiler\" from `0.20.0` to `0.21.0`"
}
]
}
},
{
"version": "0.6.1",
"tag": "@cadl-lang/rest_v0.6.1",
Expand Down
9 changes: 8 additions & 1 deletion packages/rest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Change Log - @cadl-lang/rest

This log was last generated on Fri, 17 Sep 2021 00:49:37 GMT and should not be manually modified.
This log was last generated on Fri, 15 Oct 2021 21:33:37 GMT and should not be manually modified.

## 0.6.2
Fri, 15 Oct 2021 21:33:37 GMT

### Patches

- Strongly defined diagnostics

## 0.6.1
Fri, 17 Sep 2021 00:49:37 GMT
Expand Down
4 changes: 2 additions & 2 deletions packages/rest/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cadl-lang/rest",
"version": "0.6.1",
"version": "0.6.2",
"author": "Microsoft Corporation",
"description": "Cadl REST protocol binding",
"homepage": "https://github.com/Azure/adl",
Expand Down Expand Up @@ -32,7 +32,7 @@
"!dist/test/**"
],
"dependencies": {
"@cadl-lang/compiler": "0.20.0"
"@cadl-lang/compiler": "0.21.0"
},
"devDependencies": {
"@types/node": "~14.0.27",
Expand Down

0 comments on commit b22d8ec

Please sign in to comment.