@azure-rest/iot-device-update 1.1.1-alpha.20250328.1 → 1.1.1-alpha.20250402.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +42 -0
- package/package.json +4 -2
- package/review/iot-device-update.api.md +2211 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Release History
|
|
2
|
+
|
|
3
|
+
## 1.1.1 (Unreleased)
|
|
4
|
+
|
|
5
|
+
### Features Added
|
|
6
|
+
|
|
7
|
+
### Breaking Changes
|
|
8
|
+
|
|
9
|
+
### Bugs Fixed
|
|
10
|
+
|
|
11
|
+
### Other Changes
|
|
12
|
+
|
|
13
|
+
## 1.1.0 (2025-02-10)
|
|
14
|
+
|
|
15
|
+
### Features Added
|
|
16
|
+
- refresh @azure-rest/iot-device-update sdk
|
|
17
|
+
|
|
18
|
+
## 1.0.0 (2022-09-09)
|
|
19
|
+
|
|
20
|
+
### Features Added
|
|
21
|
+
- Added filter to `listDeviceClasses` method
|
|
22
|
+
- Updated description for some methods to be more descriptive and less ambiguous
|
|
23
|
+
|
|
24
|
+
### Other Changes
|
|
25
|
+
- Removed filter from `listBestUpdatesForGroup` method
|
|
26
|
+
|
|
27
|
+
## 1.0.0-beta.2 (2022-07-08)
|
|
28
|
+
|
|
29
|
+
### Features Added
|
|
30
|
+
|
|
31
|
+
- Added `relatedFiles` and `downloadHandler` to `Update`
|
|
32
|
+
- Updated various model that reference update to include not only `updateId` but also update `description` and `friendlyName`
|
|
33
|
+
- Removed device tag concept
|
|
34
|
+
- Allow to filter by deployment status in the `listDevices` method
|
|
35
|
+
- Added ability to update device class friendly name
|
|
36
|
+
- Added ability to delete device class
|
|
37
|
+
- Added device class subgroups to groups
|
|
38
|
+
- Added new method to retrieve devices health information
|
|
39
|
+
|
|
40
|
+
## 1.0.0-beta.1 (2022-01-21)
|
|
41
|
+
|
|
42
|
+
- Initial Release
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"sdk-type": "client",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "Device Update for IoT Hub is an Azure service that enables customers to publish update for their IoT devices to the cloud, and then deploy that update to their devices (approve updates to groups of devices managed and provisioned in IoT Hub). It leverages the proven security and reliability of the Windows Update platform, optimized for IoT devices. It works globally and knows when and how to update devices, enabling customers to focus on their business goals and let Device Update for IoT Hub handle the updates.",
|
|
6
|
-
"version": "1.1.1-alpha.
|
|
6
|
+
"version": "1.1.1-alpha.20250402.1",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"node",
|
|
9
9
|
"azure",
|
|
@@ -24,7 +24,9 @@
|
|
|
24
24
|
"files": [
|
|
25
25
|
"dist/",
|
|
26
26
|
"README.md",
|
|
27
|
-
"LICENSE"
|
|
27
|
+
"LICENSE",
|
|
28
|
+
"review/",
|
|
29
|
+
"CHANGELOG.md"
|
|
28
30
|
],
|
|
29
31
|
"//metadata": {
|
|
30
32
|
"constantPaths": [
|