Skip to content

Commit

Permalink
Prepare Azure Core Management 1.0.0-beta.2 Release (#12914)
Browse files Browse the repository at this point in the history
* disable flaky assert (#12793)

* open to azure-core, for f.setAccessible(true); in FlatteningSerializer (#12863)

* Prepare Azure Core Management for release 1.0.0-beta.2

Co-authored-by: Weidong Xu <weidxu@microsoft.com>
  • Loading branch information
alzimmermsft and weidongxu-microsoft authored Jul 8, 2020
1 parent 255a2ab commit 99c59c1
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
5 changes: 4 additions & 1 deletion sdk/core/azure-core-management/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Release History

## 1.0.0-beta.2 (Unreleased)
## 1.0.0-beta.2 (2020-07-08)

- Added additional `ManagementError` constructors.
- Added additional `PollingState` checks.
- Fixed polling status HTTP status code check to include `204`.

## 1.0.0-beta.1 (2020-06-17)
- `PollerFactory` for polling of long-running operation.
Expand Down
4 changes: 2 additions & 2 deletions sdk/core/azure-core-management/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Azure Core Management library is a collection of classes common to the Azure ARM
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core-management</artifactId>
<version>1.0.0-beta.1</version>
<version>1.0.0-beta.2</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand All @@ -37,4 +37,4 @@ Azure Projects Contribution Guidelines](http://azure.github.io/guidelines.html).
1. Create your feature branch (`git checkout -b my-new-feature`)
1. Commit your changes (`git commit -am 'Add some feature'`)
1. Push to the branch (`git push origin my-new-feature`)
1. Create new Pull Request
1. Create new Pull Request
11 changes: 8 additions & 3 deletions sdk/core/azure-core-management/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,14 @@
exports com.azure.core.management.serializer;
exports com.azure.core.management.exception;

opens com.azure.core.management to com.fasterxml.jackson.databind;
opens com.azure.core.management.exception to com.fasterxml.jackson.databind;
opens com.azure.core.management.implementation.polling to com.fasterxml.jackson.databind;
opens com.azure.core.management to
com.fasterxml.jackson.databind,
com.azure.core;
opens com.azure.core.management.exception to
com.fasterxml.jackson.databind,
com.azure.core;
opens com.azure.core.management.implementation.polling to
com.fasterxml.jackson.databind;

uses com.azure.core.http.HttpClientProvider;
}
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ public String getName() {
} catch (InterruptedException e) {
//
}
Assertions.assertEquals(count, getCallCount.get());
//Assertions.assertEquals(count, getCallCount.get());
} finally {
if (lroServer.isRunning()) {
lroServer.shutdown();
Expand Down

0 comments on commit 99c59c1

Please sign in to comment.