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

Bump digital twins versions to prepare for release #17020

Merged
merged 9 commits into from
Oct 30, 2020
Merged
Show file tree
Hide file tree
Changes from 2 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/versioning/version_client.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ com.azure:azure-data-appconfiguration;1.1.6;1.2.0-beta.1
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.2;12.0.0-beta.3
com.azure:azure-digitaltwins-core;1.0.0-beta.3;1.0.0
com.azure:azure-digitaltwins-core;1.0.0;1.0.1
alzimmermsft marked this conversation as resolved.
Show resolved Hide resolved
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This needs to be kept 1.0.0 for the first GA release.

com.azure:azure-e2e;1.0.0-beta.1;1.0.0-beta.1
com.azure:azure-identity;1.1.3;1.2.0-beta.3
com.azure:azure-identity-perf;1.0.0-beta.1;1.0.0-beta.1
Expand Down
23 changes: 20 additions & 3 deletions sdk/digitaltwins/azure-digitaltwins-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,34 @@
# Release History

## 1.0.0 (Unreleased)
## 1.0.1 (Unreleased)
alzimmermsft marked this conversation as resolved.
Show resolved Hide resolved


## 1.0.0 (2020-10-30)

### New Features

- Regenerate protocol layer from service API version 2020-10-31
- Update service API version to use service API version 2020-10-31 by default
- Add optional parameters for traceparent and tracestate to all service request APIs to support distributed tracing

### Breaking Changes
### Breaking changes

- Replace all Response<string> and Pageable<string> APIs with Response<T> and Pageable<T> respectively
- Rename CreateDigitalTwin, CreateRelationship and CreateEventRoute APIs to CreateOrReplaceDigitalTwin, CreateOrReplaceRelationship and CreateOrReplaceEventRoute respectively
- Renamed model type "ModelData" to "DigitalTwinsModelData" to make type less generic, and less likely to conflict with other libraries
- Renamed model type "EventRoute" to "DigitalTwinsEventRoute" to make type less generic, and less likely to conflict with other libraries
- Remove UpdateOperationsUtility and replace it with a direct dependency on JsonPatchDocument from azure-core
- Remove WritableProperty since service no longer returns that type
- Remove MaxItemCount parameter as an option for GetEventRoutes APIs since users are expected to provide page size in pageable type's .AsPages() method instead
- Rename DigitalTwinsModelData field "DisplayName" to "LanguageDisplayNames" for clarity
- Rename DigitalTwinsModelData field "Description" to "LanguageDescriptions" for clarity
- Flatten DigitalTwinsRequestOptions so that each API takes in ifMatch and ifNoneMatch header directly
- Rework BasicDigitalTwin and other helper classes to better match the service definitions
- Add messageId as mandatory parameter for telemetry APIs. Service API version 2020-10-31 requires this parameter.

### Fixes and improvements
- Fix bug where CreateDigitalTwin and CreateRelationship APIs always sent ifNoneMatch header with value "*" making it impossible to replace an existing entity


## 1.0.0-beta.3 (2020-10-01)

- Fixed issue with pagination APIs that support max-item-count where the item count was not respected from the second page forward.
Expand Down
2 changes: 1 addition & 1 deletion sdk/digitaltwins/azure-digitaltwins-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ For the best development experience, developers should use the official Microsof
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-digitaltwins-core</artifactId>
<version>1.0.0-beta.3</version>
<version>1.0.0</version>
</dependency>
```

Expand Down