Skip to content

Commit 25cf5c8

Browse files
authored
Prepare clientcore for beta.3 release (Azure#43950)
1 parent 56c7913 commit 25cf5c8

File tree

10 files changed

+14
-18
lines changed

10 files changed

+14
-18
lines changed

eng/code-quality-reports/src/main/resources/checkstyle/clientcore-checkstyle.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ page at http://checkstyle.sourceforge.net/config.html -->
391391
'System.out' and 'System.err' is not allowed as well.
392392
4) All classes should use ClientLogger as logger only but except ClientLogger itself -->
393393
<module name="com.azure.tools.checkstyle.checks.GoodLoggingCheck">
394-
<property name="fullyQualifiedLoggerName" value="io.clientcore.core.util.ClientLogger" />
394+
<property name="fullyQualifiedLoggerName" value="io.clientcore.core.instrumentation.logging.ClientLogger" />
395395
</module>
396396

397397
<!-- CUSTOM CHECKS -->

eng/versioning/version_client.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ com.azure.resourcemanager:azure-resourcemanager-neonpostgres;1.0.0-beta.1;1.0.0-
472472
com.azure.resourcemanager:azure-resourcemanager-pineconevectordb;1.0.0-beta.1;1.0.0-beta.1
473473
com.azure.tools:azure-sdk-archetype;1.0.0;1.2.0-beta.1
474474
com.azure.tools:azure-sdk-build-tool;1.0.0;1.1.0-beta.1
475-
io.clientcore:clientcore-parent;1.0.0-beta.1;1.0.0-beta.1
475+
io.clientcore:clientcore-parent;1.0.0-beta.1;1.0.0-beta.2
476476
io.clientcore:core;1.0.0-beta.2;1.0.0-beta.3
477477
io.clientcore:http-okhttp3;1.0.0-beta.1;1.0.0-beta.1
478478
io.clientcore:http-stress;1.0.0-beta.1;1.0.0-beta.1

sdk/clientcore/core/CHANGELOG.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
# Release History
22

3-
## 1.0.0-beta.3 (Unreleased)
4-
5-
### Features Added
3+
## 1.0.0-beta.3 (2025-01-27)
64

75
### Breaking Changes
8-
9-
### Bugs Fixed
10-
11-
### Other Changes
6+
- Downgraded clientcore baseline from Java 17 to Java 8.
7+
- Updated clientcore into a multi-release JAR. The Java 8 version of the JAR will be used for Java 8-16, and the Java 17 version of the JAR will be used for Java 17+.
128

139
## 1.0.0-beta.2 (2025-01-17)
1410

sdk/clientcore/core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ add the direct dependency to your project as follows.
2525
<dependency>
2626
<groupId>io.clientcore</groupId>
2727
<artifactId>core</artifactId>
28-
<version>1.0.0-beta.2</version>
28+
<version>1.0.0-beta.3</version>
2929
</dependency>
3030
```
3131
[//]: # ({x-version-update-end})

sdk/clientcore/core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.clientcore</groupId>
1010
<artifactId>clientcore-parent</artifactId>
11-
<version>1.0.0-beta.1</version> <!-- {x-version-update;io.clientcore:clientcore-parent;current} -->
11+
<version>1.0.0-beta.2</version> <!-- {x-version-update;io.clientcore:clientcore-parent;current} -->
1212
<relativePath>../../parents/clientcore-parent</relativePath>
1313
</parent>
1414

sdk/clientcore/core/src/main/java/io/clientcore/core/implementation/http/rest/SwaggerMethodParser.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public class SwaggerMethodParser implements HttpResponseDecodeData {
7171
// to search the raw value on each call.
7272
private final String rawHost;
7373
private final String fullyQualifiedMethodName;
74-
private final ClientLogger methodLogger;
74+
private final ClientLogger logger;
7575
private final HttpMethod httpMethod;
7676
private final String relativePath;
7777
private final Map<String, List<String>> queryParams = new LinkedHashMap<>();
@@ -109,7 +109,7 @@ public SwaggerMethodParser(Method swaggerMethod) {
109109
this.rawHost = interfaceParser.getHost();
110110
final Class<?> swaggerInterface = swaggerMethod.getDeclaringClass();
111111
fullyQualifiedMethodName = swaggerInterface.getName() + "." + swaggerMethod.getName();
112-
methodLogger = new ClientLogger(fullyQualifiedMethodName);
112+
logger = new ClientLogger(fullyQualifiedMethodName);
113113

114114
if (!swaggerMethod.isAnnotationPresent(HttpRequestInformation.class)) {
115115
// Should this also check whether there are multiple HTTP method annotations as well?
@@ -308,7 +308,7 @@ public String getFullyQualifiedMethodName() {
308308
* @return The {@link ClientLogger} that will be used to log during the request and response.
309309
*/
310310
public ClientLogger getMethodLogger() {
311-
return methodLogger;
311+
return logger;
312312
}
313313

314314
/**

sdk/clientcore/http-okhttp3/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.clientcore</groupId>
1010
<artifactId>clientcore-parent</artifactId>
11-
<version>1.0.0-beta.1</version> <!-- {x-version-update;io.clientcore:clientcore-parent;current} -->
11+
<version>1.0.0-beta.2</version> <!-- {x-version-update;io.clientcore:clientcore-parent;current} -->
1212
<relativePath>../../parents/clientcore-parent</relativePath>
1313
</parent>
1414

sdk/clientcore/http-stress/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.clientcore</groupId>
1010
<artifactId>clientcore-parent</artifactId>
11-
<version>1.0.0-beta.1</version> <!-- {x-version-update;io.clientcore:clientcore-parent;current} -->
11+
<version>1.0.0-beta.2</version> <!-- {x-version-update;io.clientcore:clientcore-parent;current} -->
1212
<relativePath>../../parents/clientcore-parent</relativePath>
1313
</parent>
1414

sdk/clientcore/optional-dependency-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>io.clientcore</groupId>
1010
<artifactId>clientcore-parent</artifactId>
11-
<version>1.0.0-beta.1</version> <!-- {x-version-update;io.clientcore:clientcore-parent;current} -->
11+
<version>1.0.0-beta.2</version> <!-- {x-version-update;io.clientcore:clientcore-parent;current} -->
1212
<relativePath>../../parents/clientcore-parent</relativePath>
1313
</parent>
1414

sdk/parents/clientcore-parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>io.clientcore</groupId>
88
<artifactId>clientcore-parent</artifactId>
99
<packaging>pom</packaging>
10-
<version>1.0.0-beta.1</version> <!-- {x-version-update;io.clientcore:clientcore-parent;current} -->
10+
<version>1.0.0-beta.2</version> <!-- {x-version-update;io.clientcore:clientcore-parent;current} -->
1111

1212
<name>SDK for Java - Client Libraries</name>
1313
<description>Parent POM for SDK for Java</description>

0 commit comments

Comments
 (0)