Skip to content
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

SDK version bump + Null context breaking change fix. #21655

Merged
merged 2 commits into from
May 19, 2021
Merged
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
2 changes: 1 addition & 1 deletion eng/jacoco-test-coverage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-digitaltwins-core</artifactId>
<version>1.1.0</version> <!-- {x-version-update;com.azure:azure-digitaltwins-core;current} -->
<version>1.1.1</version> <!-- {x-version-update;com.azure:azure-digitaltwins-core;current} -->
azabbasi marked this conversation as resolved.
Show resolved Hide resolved
</dependency>
<dependency>
<groupId>com.azure</groupId>
Expand Down
2 changes: 1 addition & 1 deletion eng/versioning/version_client.txt
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ com.azure:azure-data-confidentialledger;1.0.0-beta.1;1.0.0-beta.2
com.azure:azure-data-schemaregistry;1.0.0-beta.4;1.0.0-beta.5
com.azure:azure-data-schemaregistry-avro;1.0.0-beta.4;1.0.0-beta.5
com.azure:azure-data-tables;12.0.0-beta.7;12.0.0-beta.8
com.azure:azure-digitaltwins-core;1.0.3;1.1.0
com.azure:azure-digitaltwins-core;1.1.0;1.1.1
com.azure:azure-e2e;1.0.0-beta.1;1.0.0-beta.1
com.azure:azure-identity;1.3.0;1.4.0-beta.1
com.azure:azure-identity-perf;1.0.0-beta.1;1.0.0-beta.1
Expand Down
6 changes: 6 additions & 0 deletions sdk/digitaltwins/azure-digitaltwins-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release History

## 1.1.1 (2021-05-19)

### Fixes and improvements

- Address breaking behavior change where previously `null` could be passed down for `context` parameter to synchronous APIs prior to version `1.0.2` but after `1.0.2` that behavior was changed. `null` can again be passed for the `context` parameter and the SDK will behave as was expected before. In these scenarios `Context.NONE` will be used as the default value.

## 1.1.0 (2021-05-17)

### Fixes and improvements
Expand Down
2 changes: 1 addition & 1 deletion sdk/digitaltwins/azure-digitaltwins-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<groupId>com.azure</groupId>
<artifactId>azure-digitaltwins-core</artifactId>
<version>1.1.0</version> <!-- {x-version-update;com.azure:azure-digitaltwins-core;current} -->
<version>1.1.1</version> <!-- {x-version-update;com.azure:azure-digitaltwins-core;current} -->

<name>Microsoft Azure client library for Digital Twins</name>
<description>This package contains the Microsoft Azure DigitalTwins client library.</description>
Expand Down
Loading