Skip to content
Open
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/versioning/version_client.txt
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ com.azure:azure-identity-extensions;1.2.8;1.3.0-beta.1
com.azure:azure-identity-broker;1.1.21;1.2.0-beta.1
com.azure:azure-identity-broker-samples;1.0.0-beta.1;1.0.0-beta.1
com.azure:azure-identity-perf;1.0.0-beta.1;1.0.0-beta.1
com.azure:azure-iot-deviceupdate;1.0.33;1.1.0-beta.1
com.azure:azure-iot-deviceupdate;1.0.33;2.0.0-beta.1
com.azure:azure-iot-modelsrepository;1.0.0-beta.1;1.0.0-beta.2
com.azure:azure-json;1.5.1;1.6.0-beta.1
com.azure:azure-maps-traffic;1.0.0-beta.1;1.0.0-beta.2
Expand Down
19 changes: 14 additions & 5 deletions sdk/deviceupdate/azure-iot-deviceupdate/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
# Release History

## 1.1.0-beta.1 (Unreleased)
## 2.0.0-beta.1 (2026-06-15)

This release is the first preview of the rewritten Device Update for IoT Hub client library generated from
TypeSpec. It targets API version `2026-06-01`.

### Features Added

### Breaking Changes
- Added `DeviceManagementClient` (and `DeviceManagementAsyncClient`) for device, group, deployment and
diagnostics operations, plus `DeviceManagementClientBuilder`.
- `DeviceUpdateClient` (and `DeviceUpdateAsyncClient`) now expose strongly-typed models in addition to the
existing low-level `BinaryData` / `RequestOptions` overloads.

### Bugs Fixed
### Breaking Changes

### Other Changes
- `DeviceUpdateClientBuilder.buildClient()` and `buildAsyncClient()` were removed. Use
`buildDeviceUpdateClient()` / `buildDeviceUpdateAsyncClient()` for the update catalog, and the new
`DeviceManagementClientBuilder` (or `DeviceUpdateClientBuilder.buildDeviceManagementClient()` /
`buildDeviceManagementAsyncClient()`) for device management.
Comment on lines +15 to +20

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Ignore me if SDK dev recommended this.

Generally, we won't break customer only because we'd restructure the Clients.

@Lawrence-O Lawrence-O Jul 7, 2026

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Is there a way to restore the clients? Again per our teams conversation, this was done during the typespec migration and we didn't really have any control over this.


## 1.0.33 (2026-05-05)

Expand Down Expand Up @@ -372,4 +381,4 @@ This is a new version of client SDK. Changes are:
This is the initial release of Azure Device Update for IoT Hub library. For more information, please see the [README](https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/deviceupdate/azure-iot-deviceupdate/README.md)
and [samples](https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/deviceupdate/azure-iot-deviceupdate/src/samples/README.md).

This is a Public Preview version, so breaking changes are possible in subsequent releases as we improve the product. To provide feedback, please submit an issue in our [Azure SDK for Java GitHub repo](https://github.com/Azure/azure-sdk-for-java/issues).
This is a Public Preview version, so breaking changes are possible in subsequent releases as we improve the product. To provide feedback, please submit an issue in our [Azure SDK for Java GitHub repo](https://github.com/Azure/azure-sdk-for-java/issues).
2 changes: 1 addition & 1 deletion sdk/deviceupdate/azure-iot-deviceupdate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ For the best development experience, developers should use the official Microsof
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-iot-deviceupdate</artifactId>
<version>1.1.0-beta.1</version>
<version>2.0.0-beta.1</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
2 changes: 1 addition & 1 deletion sdk/deviceupdate/azure-iot-deviceupdate/assets.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "java",
"TagPrefix": "java/deviceupdate/azure-iot-deviceupdate",
"Tag": "java/deviceupdate/azure-iot-deviceupdate_e6c0b7421b"
"Tag": "java/deviceupdate/azure-iot-deviceupdate_4a925a77df"
}
6 changes: 3 additions & 3 deletions sdk/deviceupdate/azure-iot-deviceupdate/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>com.azure</groupId>
<artifactId>azure-iot-deviceupdate</artifactId>
<version>1.1.0-beta.1</version> <!-- {x-version-update;com.azure:azure-iot-deviceupdate;current} -->
<version>2.0.0-beta.1</version> <!-- {x-version-update;com.azure:azure-iot-deviceupdate;current} -->
<name>Microsoft Device Update for IoT Hub client library for Java</name>
<description>This package contains Microsoft Device Update for IoT Hub client library.</description>

Expand All @@ -27,8 +27,8 @@
</scm>

<properties>
<jacoco.min.linecoverage>0.25</jacoco.min.linecoverage>
<jacoco.min.branchcoverage>0.1</jacoco.min.branchcoverage>
<jacoco.min.linecoverage>0.10</jacoco.min.linecoverage>
<jacoco.min.branchcoverage>0</jacoco.min.branchcoverage>
<!-- Configures the Java 9+ run to perform the required module exports, opens, and reads that are necessary for testing but shouldn't be part of the module-info. -->
<javaModulesSurefireArgLine>
--add-opens com.azure.core/com.azure.core.implementation.util=ALL-UNNAMED
Expand Down
Loading