Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade compiler v0.48 #2029

Merged
merged 28 commits into from
Sep 26, 2023
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
b2bf37f
upgrade the tsp compiler version
MaryGao Sep 19, 2023
d6cb382
Update the breakings
MaryGao Sep 19, 2023
f7b17e8
Merge remote-tracking branch 'origin/main' into upgrade-compiler-v0.48
MaryGao Sep 19, 2023
eafebb6
Fix to pass build errors
MaryGao Sep 19, 2023
77b8a5f
Update the !
MaryGao Sep 19, 2023
d94c5fd
Fix the ut issue in rlc
MaryGao Sep 19, 2023
f7a65f3
Update the test cases
MaryGao Sep 19, 2023
93d6d06
Update the test cases
MaryGao Sep 19, 2023
c0b6f13
update the lib to dev
MaryGao Sep 21, 2023
afdb56f
Update the test cases
MaryGao Sep 21, 2023
b258ae1
Update the spec
MaryGao Sep 21, 2023
4db33a8
Update the lint
MaryGao Sep 21, 2023
748745b
Disable the polling operation setting due to wrong def
MaryGao Sep 21, 2023
d700808
Update .vscode/launch.json
MaryGao Sep 21, 2023
3d4fe46
Update .vscode/launch.json
MaryGao Sep 21, 2023
9beaf7a
Update the error spec
MaryGao Sep 21, 2023
bece042
temp
MaryGao Sep 21, 2023
cd9ee55
temp
MaryGao Sep 21, 2023
2b4b536
update the test cases
MaryGao Sep 22, 2023
0bd3065
Update the test cases
MaryGao Sep 22, 2023
a519249
update changes in openai
MaryGao Sep 22, 2023
35d1d4d
update the statement
MaryGao Sep 22, 2023
f8f749f
Update the modular lro
MaryGao Sep 22, 2023
d2d7d3f
Update the openapi.json
MaryGao Sep 22, 2023
6d83594
Update .vscode/launch.json
MaryGao Sep 22, 2023
a803437
Update packages/typespec-ts/src/modular/buildCodeModel.ts
MaryGao Sep 25, 2023
11fbfdd
update the name
MaryGao Sep 25, 2023
53f4ccc
Update the dependency to dev
MaryGao Sep 26, 2023
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
9 changes: 6 additions & 3 deletions common/config/rush/pnpm-config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/pnpm-config.schema.json",
"useWorkspaces": true,
"strictPeerDependencies": false
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/pnpm-config.schema.json",
"useWorkspaces": true,
"strictPeerDependencies": false,
"globalOverrides": {
"@azure-tools/typespec-client-generator-core": "0.35.0-dev.5"
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pending tcgc release

}
}
289 changes: 175 additions & 114 deletions common/config/rush/pnpm-lock.yaml

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions packages/typespec-test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
"version": "1.0.0",
"type": "module",
"dependencies": {
"@typespec/compiler": ">=0.47.0 <1.0.0",
"@typespec/compiler": ">=0.48.0 <1.0.0",
"@azure-tools/typespec-ts": "workspace:^0.16.0",
"@typespec/http": ">=0.47.0 <1.0.0",
"@typespec/rest": ">=0.47.0 <1.0.0",
"@typespec/openapi": ">=0.47.0 <1.0.0",
"@typespec/versioning": ">=0.47.0 <1.0.0",
"@azure-tools/typespec-azure-core": ">=0.33.0 <1.0.0",
"@azure-tools/typespec-autorest": ">=0.33.0 <1.0.0",
"@azure-tools/typespec-client-generator-core": ">=0.33.0 <1.0.0",
"@typespec/openapi3": ">=0.47.0 <1.0.0",
"@typespec/prettier-plugin-typespec": ">=0.47.0 <1.0.0",
"@typespec/http": ">=0.48.0 <1.0.0",
"@typespec/rest": ">=0.48.0 <1.0.0",
"@typespec/openapi": ">=0.48.0 <1.0.0",
"@typespec/versioning": ">=0.48.0 <1.0.0",
"@azure-tools/typespec-azure-core": ">=0.34.0 <1.0.0",
"@azure-tools/typespec-autorest": ">=0.34.0 <1.0.0",
"@azure-tools/typespec-client-generator-core": ">=0.34.0 <1.0.0",
"@typespec/openapi3": ">=0.48.0 <1.0.0",
"@typespec/prettier-plugin-typespec": ">=0.48.0 <1.0.0",
"prettier": "2.7.1"
},
"devDependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@
{
"name": "Endpoint",
"in": "path",
"required": true,
"description": "Supported Cognitive Services endpoints (protocol and hostname, for example:\nhttps://westus2.api.cognitive.microsoft.com).",
"required": true,
"type": "string"
},
{
"name": "ApiVersion",
"in": "path",
"required": true,
"description": "Api Version",
"required": true,
"type": "string",
"enum": [
"v1.1"
Expand Down Expand Up @@ -95,8 +95,8 @@
},
"headers": {
"x-ms-error-code": {
"description": "Error code.",
"type": "string"
"type": "string",
"description": "Error code."
}
}
}
Expand Down Expand Up @@ -141,8 +141,8 @@
},
"headers": {
"x-ms-error-code": {
"description": "Error code.",
"type": "string"
"type": "string",
"description": "Error code."
}
}
}
Expand Down Expand Up @@ -186,8 +186,8 @@
},
"headers": {
"x-ms-error-code": {
"description": "Error code.",
"type": "string"
"type": "string",
"description": "Error code."
}
}
}
Expand Down Expand Up @@ -222,8 +222,8 @@
},
"headers": {
"x-ms-error-code": {
"description": "Error code.",
"type": "string"
"type": "string",
"description": "Error code."
}
}
}
Expand Down Expand Up @@ -253,8 +253,8 @@
},
"headers": {
"x-ms-error-code": {
"description": "Error code.",
"type": "string"
"type": "string",
"description": "Error code."
}
}
}
Expand Down Expand Up @@ -308,8 +308,8 @@
},
"headers": {
"x-ms-error-code": {
"description": "Error code.",
"type": "string"
"type": "string",
"description": "Error code."
}
}
}
Expand Down Expand Up @@ -353,8 +353,8 @@
},
"headers": {
"x-ms-error-code": {
"description": "Error code.",
"type": "string"
"type": "string",
"description": "Error code."
}
}
}
Expand Down Expand Up @@ -391,8 +391,8 @@
},
"headers": {
"x-ms-error-code": {
"description": "Error code.",
"type": "string"
"type": "string",
"description": "Error code."
}
}
}
Expand Down Expand Up @@ -429,8 +429,8 @@
},
"headers": {
"x-ms-error-code": {
"description": "Error code.",
"type": "string"
"type": "string",
"description": "Error code."
}
}
}
Expand Down Expand Up @@ -467,8 +467,8 @@
},
"headers": {
"x-ms-error-code": {
"description": "Error code.",
"type": "string"
"type": "string",
"description": "Error code."
}
}
}
Expand Down
Loading
Loading