Skip to content

Commit

Permalink
http-client-java, eng, update jar and cadl-ranch (#4709)
Browse files Browse the repository at this point in the history
  • Loading branch information
weidongxu-microsoft authored Oct 12, 2024
1 parent 2daeb6f commit 267a4f9
Show file tree
Hide file tree
Showing 33 changed files with 320 additions and 2,508 deletions.
4 changes: 3 additions & 1 deletion packages/http-client-java/emitter/src/code-model-builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,9 @@ export class CodeModelBuilder {
versioning: { previewStringRegex: /$/ },
}); // include all versions and do the filter by ourselves

this.program.reportDiagnostics(this.sdkContext.diagnostics);
// TODO: reportDiagnostics from TCGC temporary disabled
// issue https://github.com/Azure/typespec-azure/issues/1675
// this.program.reportDiagnostics(this.sdkContext.diagnostics);

// auth
// TODO: it is not very likely, but different client could have different auth
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core</artifactId>
<version>1.52.0</version>
<version>1.53.0</version>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ public class Project {
public enum Dependency {
// azure
AZURE_CLIENT_SDK_PARENT("com.azure", "azure-client-sdk-parent", "1.7.0"),
AZURE_CORE("com.azure", "azure-core", "1.52.0"),
AZURE_CORE_MANAGEMENT("com.azure", "azure-core-management", "1.15.3"),
AZURE_CORE_HTTP_NETTY("com.azure", "azure-core-http-netty", "1.15.4"),
AZURE_CORE_TEST("com.azure", "azure-core-test", "1.27.0-beta.1"),
AZURE_IDENTITY("com.azure", "azure-identity", "1.13.3"),
AZURE_CORE_EXPERIMENTAL("com.azure", "azure-core-experimental", "1.0.0-beta.53"),
AZURE_CORE("com.azure", "azure-core", "1.53.0"),
AZURE_CORE_MANAGEMENT("com.azure", "azure-core-management", "1.15.4"),
AZURE_CORE_HTTP_NETTY("com.azure", "azure-core-http-netty", "1.15.5"),
AZURE_CORE_TEST("com.azure", "azure-core-test", "1.27.0-beta.2"),
AZURE_IDENTITY("com.azure", "azure-identity", "1.14.0"),
AZURE_CORE_EXPERIMENTAL("com.azure", "azure-core-experimental", "1.0.0-beta.54"),

CLIENTCORE("io.clientcore", "core", "1.0.0-beta.1"),
CLIENTCORE_JSON("io.clientcore", "core-json", "1.0.0-beta.1");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core-management</artifactId>
<version>1.15.3</version>
<version>1.15.4</version>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"testserver-stop": "npx cadl-ranch server stop"
},
"dependencies": {
"@azure-tools/cadl-ranch-specs": "0.37.3",
"@azure-tools/cadl-ranch-specs": "0.37.6",
"@typespec/http-client-java": "file:/../../typespec-http-client-java-0.1.0.tgz",
"@typespec/http-client-java-tests": "file:"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core</artifactId>
<version>1.52.0</version>
<version>1.53.0</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
Expand All @@ -38,7 +38,7 @@
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core-test</artifactId>
<version>1.27.0-beta.1</version>
<version>1.27.0-beta.2</version>
<scope>test</scope>
<exclusions>
<exclusion>
Expand All @@ -50,12 +50,12 @@
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-identity</artifactId>
<version>1.13.3</version>
<version>1.14.0</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core-management</artifactId>
<version>1.15.3</version>
<version>1.15.4</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down

This file was deleted.

Loading

0 comments on commit 267a4f9

Please sign in to comment.