Skip to content

Commit

Permalink
feat: deprecation of az iot hub certificate root-authority (#688)
Browse files Browse the repository at this point in the history
  • Loading branch information
vilit1 committed Oct 25, 2023
1 parent 4beb615 commit 31ee49f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,21 @@ Release History
===============


0.22.1
0.23.0
+++++++++++++++

**Digital Twins updates**


* Updated Digital Twin dataplane API to use 2023-10-31. Affected commands:
* `az dt job deletion` is now GA. Deletion jobs now have an option to add a timeout in minutes to cancel long-running jobs.
* `az dt job import`, `az dt model`, and `az dt twin` now use the newer API but functionality remains the same.

**IoT Hub updates**

* Deprecation of `az iot hub certificate root-authority`. If your hub still uses a certificate on the Baltimore CyberTrust root,
your hub will be migrated to the DigiCert Global G2 root in the next wave. For any issues, email iot-ca-updates@microsoft.com.
This command will be removed in a later release.


0.22.0
+++++++++++++++
Expand Down
2 changes: 1 addition & 1 deletion azext_iot/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import os

VERSION = "0.22.1"
VERSION = "0.23.0"
EXTENSION_NAME = "azure-iot"
EXTENSION_ROOT = os.path.dirname(os.path.abspath(__file__))
EXTENSION_CONFIG_ROOT_KEY = "iotext"
Expand Down
2 changes: 1 addition & 1 deletion azext_iot/iothub/command_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def load_iothub_commands(self, _):
cmd_group.command("create", "iot_edge_devices_create", is_experimental=True)

with self.command_group(
"iot hub certificate root-authority", command_type=iothub_resource_ops, is_experimental=True
"iot hub certificate root-authority", command_type=iothub_resource_ops, deprecate_info=self.deprecate()
) as cmd_group:
cmd_group.show_command("show", "certificate_root_authority_show")
cmd_group.command("set", "certificate_root_authority_set")

0 comments on commit 31ee49f

Please sign in to comment.