Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/openapi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@
],
"peerDependencies": {
"@cadl-lang/compiler": "~0.38.3",
"@cadl-lang/rest": "~0.38.0"
"@cadl-lang/rest": "~0.38.1"
},
"devDependencies": {
"@types/mocha": "~10.0.0",
"@types/node": "~18.11.9",
"@cadl-lang/compiler": "~0.38.3",
"@cadl-lang/rest": "~0.38.0",
"@cadl-lang/rest": "~0.38.1",
"@cadl-lang/eslint-config-cadl": "~0.5.0",
"@cadl-lang/library-linter": "~0.38.0",
"@cadl-lang/eslint-plugin": "~0.38.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/openapi3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@
"peerDependencies": {
"@cadl-lang/versioning": "~0.38.0",
"@cadl-lang/compiler": "~0.38.3",
"@cadl-lang/rest": "~0.38.0",
"@cadl-lang/rest": "~0.38.1",
"@cadl-lang/openapi": "~0.38.0"
},
"devDependencies": {
"@types/mocha": "~10.0.0",
"@types/node": "~18.11.9",
"@cadl-lang/compiler": "~0.38.3",
"@cadl-lang/rest": "~0.38.0",
"@cadl-lang/rest": "~0.38.1",
"@cadl-lang/openapi": "~0.38.0",
"@cadl-lang/versioning": "~0.38.0",
"@cadl-lang/eslint-config-cadl": "~0.5.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"dependencies": {
"@cadl-lang/versioning": "~0.38.0",
"@cadl-lang/compiler": "~0.38.3",
"@cadl-lang/rest": "~0.38.0",
"@cadl-lang/rest": "~0.38.1",
"@cadl-lang/openapi3": "~0.38.0",
"@cadl-lang/openapi": "~0.38.0",
"@cadl-lang/html-program-viewer": "~0.38.0",
Expand Down
12 changes: 12 additions & 0 deletions packages/rest/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
{
"name": "@cadl-lang/rest",
"entries": [
{
"version": "0.38.1",
"tag": "@cadl-lang/rest_v0.38.1",
"date": "Wed, 14 Dec 2022 20:34:58 GMT",
"comments": {
"patch": [
{
"comment": "Fix: Broken doc comment causing IDE build to not show errors"
}
]
}
},
{
"version": "0.38.0",
"tag": "@cadl-lang/rest_v0.38.0",
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 Wed, 07 Dec 2022 17:21:52 GMT and should not be manually modified.
This log was last generated on Wed, 14 Dec 2022 20:34:58 GMT and should not be manually modified.

## 0.38.1
Wed, 14 Dec 2022 20:34:58 GMT

### Patches

- Fix: Broken doc comment causing IDE build to not show errors

## 0.38.0
Wed, 07 Dec 2022 17:21:52 GMT
Expand Down
2 changes: 1 addition & 1 deletion packages/rest/lib/auth.cadl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ enum AuthType {
/**
* Basic authentication is a simple authentication scheme built into the HTTP protocol.
* The client sends HTTP requests with the Authorization header that contains the word Basic word followed by a space and a base64-encoded string username:password.
* For example, to authorize as demo / p@55w0rd the client would send
* For example, to authorize as demo / `p@55w0rd` the client would send
* ```
* Authorization: Basic ZGVtbzpwQDU1dzByZA==
* ```
Expand Down
2 changes: 1 addition & 1 deletion packages/rest/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cadl-lang/rest",
"version": "0.38.0",
"version": "0.38.1",
"author": "Microsoft Corporation",
"description": "Cadl REST protocol binding",
"homepage": "https://github.com/Microsoft/cadl",
Expand Down
2 changes: 1 addition & 1 deletion packages/samples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"dependencies": {
"@cadl-lang/versioning": "~0.38.0",
"@cadl-lang/compiler": "~0.38.3",
"@cadl-lang/rest": "~0.38.0",
"@cadl-lang/rest": "~0.38.1",
"@cadl-lang/openapi": "~0.38.0",
"@cadl-lang/openapi3": "~0.38.0",
"@cadl-lang/html-program-viewer": "~0.38.0"
Expand Down