Skip to content

Prepare release core and annotation-processor #45133

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

Closed
wants to merge 1 commit into from
Closed
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
11 changes: 4 additions & 7 deletions sdk/clientcore/annotation-processor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
# Release History

## 1.0.0-beta.3 (Unreleased)
## 1.0.0-beta.3 (2025-04-25)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes
- Add diagnostic/logging messages for annotation processor [#45116](https://github.com/Azure/azure-sdk-for-java/pull/45116)
- Add support for parameterized host in annotation-processor [#45099](https://github.com/Azure/azure-sdk-for-java/pull/45099)
- Add support for static headers and query params in compile time codegen [#44750](https://github.com/Azure/azure-sdk-for-java/pull/44750)

## 1.0.0-beta.2 (2025-04-03)

Expand Down
6 changes: 3 additions & 3 deletions sdk/clientcore/annotation-processor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ The client-core annotation processor for introducing compile-time code generatio
<proc>only</proc>
<generatedSourcesDirectory>${project.build.directory}/generated-sources/</generatedSourcesDirectory>
<annotationProcessorPaths>
<annotationProcessorPath>
<annotationProcessorPath>[version_client.txt](../../../eng/versioning/version_client.txt)
<groupId>io.clientcore</groupId>
<artifactId>annotation-processor</artifactId>
<version>1.0.0-beta.1</version> <!-- {x-version-update;io.clientcore:annotation-processor;current} -->
<version>1.0.0-beta.3</version> <!-- {x-version-update;io.clientcore:annotation-processor;current} -->
</annotationProcessorPath>
</annotationProcessorPaths>
<annotationProcessors>
Expand All @@ -48,7 +48,7 @@ The client-core annotation processor for introducing compile-time code generatio
<dependency>
<groupId>io.clientcore</groupId>
<artifactId>annotation-processor</artifactId>
<version>1.0.0-beta.1</version> <!-- {x-version-update;io.clientcore:annotation-processor;current} -->
<version>1.0.0-beta.3</version> <!-- {x-version-update;io.clientcore:annotation-processor;current} -->
</dependency>
</dependencies>
</plugin>
Expand Down
9 changes: 4 additions & 5 deletions sdk/clientcore/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
# Release History

## 1.0.0-beta.9 (Unreleased)
## 1.0.0-beta.9 (2025-04-25)

### Features Added
- Added base exception type `CoreException` and use unchecked exceptions on BinaryData and high-level APIs (#44892)(https://github.com/Azure/azure-sdk-for-java/pull/44892)

### Breaking Changes

### Bugs Fixed

### Other Changes
- Removed `log(Throwable) overload and added setThrowable() method on LoggingEvent.
- Updated ChallengeHandler to use AuthenticateChallenge APIs instead of HttpRequest or Response APIs.

## 1.0.0-beta.8 (2025-04-03)

Expand Down
2 changes: 1 addition & 1 deletion sdk/clientcore/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ add the direct dependency to your project as follows.
<dependency>
<groupId>io.clientcore</groupId>
<artifactId>core</artifactId>
<version>1.0.0-beta.6</version>
<version>1.0.0-beta.9</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
Loading