Skip to content

Commit 3dccb28

Browse files
Update Node.js dependencies and core submodule to latest (#3285)
* Initial plan * Update core submodule and Node.js dependencies to latest Co-authored-by: weidongxu-microsoft <53292327+weidongxu-microsoft@users.noreply.github.com> * Run SyncTests.ps1 to sync test changes from core Co-authored-by: weidongxu-microsoft <53292327+weidongxu-microsoft@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: weidongxu-microsoft <53292327+weidongxu-microsoft@users.noreply.github.com>
1 parent 602d5ff commit 3dccb28

13 files changed

Lines changed: 219 additions & 348 deletions

File tree

core

Submodule core updated 487 files

typespec-extension/package-lock.json

Lines changed: 14 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

typespec-extension/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@
4747
"generator/http-client-generator/target/classes/PerfAutomation.jfc"
4848
],
4949
"peerDependencies": {
50-
"@azure-tools/openai-typespec": "^1.9.0",
50+
"@azure-tools/openai-typespec": "^1.10.0",
5151
"@azure-tools/typespec-autorest": ">=0.65.0 <1.0.0",
5252
"@azure-tools/typespec-azure-core": ">=0.65.0 <1.0.0",
5353
"@azure-tools/typespec-azure-resource-manager": ">=0.65.0 <1.0.0",
5454
"@azure-tools/typespec-azure-rulesets": ">=0.65.0 <1.0.0",
55-
"@azure-tools/typespec-client-generator-core": ">=0.65.0 <1.0.0",
55+
"@azure-tools/typespec-client-generator-core": ">=0.65.1 <1.0.0",
5656
"@azure-tools/typespec-liftr-base": ">=0.11.0 <1.0.0",
5757
"@typespec/compiler": "^1.9.0",
5858
"@typespec/http": "^1.9.0",
@@ -67,12 +67,12 @@
6767
"lodash": "~4.17.23"
6868
},
6969
"devDependencies": {
70-
"@azure-tools/openai-typespec": "^1.9.0",
70+
"@azure-tools/openai-typespec": "^1.10.0",
7171
"@azure-tools/typespec-autorest": "0.65.0",
7272
"@azure-tools/typespec-azure-core": "0.65.0",
7373
"@azure-tools/typespec-azure-resource-manager": "0.65.0",
7474
"@azure-tools/typespec-azure-rulesets": "0.65.0",
75-
"@azure-tools/typespec-client-generator-core": "0.65.0",
75+
"@azure-tools/typespec-client-generator-core": "0.65.1",
7676
"@azure-tools/typespec-liftr-base": "0.11.0",
7777
"@microsoft/api-extractor": "^7.56.3",
7878
"@types/js-yaml": "~4.0.9",
@@ -96,7 +96,7 @@
9696
"eslint": "~9.39.2",
9797
"eslint-plugin-deprecation": "~3.0.0",
9898
"eslint-plugin-import": "^2.32.0",
99-
"eslint-plugin-unicorn": "^62.0.0",
99+
"eslint-plugin-unicorn": "^63.0.0",
100100
"prettier": "~3.8.1",
101101
"rimraf": "~6.1.2",
102102
"typescript": "~5.9.3",

typespec-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"@typespec/sse": "0.79.0",
3232
"@typespec/streams": "0.79.0",
3333
"@azure-tools/typespec-azure-core": "0.65.0",
34-
"@azure-tools/typespec-client-generator-core": "0.65.0",
34+
"@azure-tools/typespec-client-generator-core": "0.65.1",
3535
"@azure-tools/typespec-azure-resource-manager": "0.65.0",
3636
"@azure-tools/typespec-autorest": "0.65.0",
3737
"@azure-tools/typespec-liftr-base": "0.11.0"

typespec-tests/src/main/java/tsptest/clientinitialization/ClientInitializationClientBuilder.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,12 @@
4040
/**
4141
* A builder for creating a new instance of the ClientInitializationClient type.
4242
*/
43-
@ServiceClientBuilder(serviceClients = { ClientInitializationClient.class, ClientInitializationAsyncClient.class })
43+
@ServiceClientBuilder(
44+
serviceClients = {
45+
ClientInitializationClient.class,
46+
ClientInitializationAsyncClient.class,
47+
SubClient.class,
48+
SubAsyncClient.class })
4449
public final class ClientInitializationClientBuilder implements HttpTrait<ClientInitializationClientBuilder>,
4550
ConfigurationTrait<ClientInitializationClientBuilder>, EndpointTrait<ClientInitializationClientBuilder> {
4651
@Generated

typespec-tests/src/main/java/tsptest/clientinitialization/SubAsyncClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/**
2222
* Initializes a new instance of the asynchronous SubClient type.
2323
*/
24-
@ServiceClient(builder = SubClientBuilder.class, isAsync = true)
24+
@ServiceClient(builder = ClientInitializationClientBuilder.class, isAsync = true)
2525
public final class SubAsyncClient {
2626
@Generated
2727
private final SubClientImpl serviceClient;

typespec-tests/src/main/java/tsptest/clientinitialization/SubClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Initializes a new instance of the synchronous SubClient type.
2121
*/
22-
@ServiceClient(builder = SubClientBuilder.class)
22+
@ServiceClient(builder = ClientInitializationClientBuilder.class)
2323
public final class SubClient {
2424
@Generated
2525
private final SubClientImpl serviceClient;

0 commit comments

Comments
 (0)