diff --git a/CHANGELOG.md b/CHANGELOG.md index b59700f6958..8c0014163db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# 1.0.6 (2019-01-17) +# 1.0.6 (2019-01-31) * Stability and reliability fixes ## Edge Agent @@ -19,6 +19,7 @@ * Use HTTPS proxy on Linux and Windows ([eb75f34](https://github.com/Azure/iotedge/commit/eb75f346e19a21953c46f6cc0c2a4c77115d13e9)) * Allow modules on Edge devices with no device scope to connect to Edge Hub ([761254f](https://github.com/Azure/iotedge/commit/761254fa948d95d6de022c6b3c3e5c8e77594679)) * Handle clients with special characters ([82ce72e](https://github.com/Azure/iotedge/commit/82ce72e49a20bdd4feec417c2f7c021af8fc55c4)) +* Fix potential for dropped messages when device is rebooted ([88fd5ab](https://github.com/Azure/iotedge/commit/88fd5abc2a817d32adda1338685c0f1f9e1ff744)) ## iotedged ### Bug Fixes diff --git a/edgelet/contrib/config/windows/config.yaml b/edgelet/contrib/config/windows/config.yaml index 069048dde68..236f491fb6e 100644 --- a/edgelet/contrib/config/windows/config.yaml +++ b/edgelet/contrib/config/windows/config.yaml @@ -71,7 +71,7 @@ agent: type: "docker" env: {} config: - image: "mcr.microsoft.com/azureiotedge-agent:1.0.6-rc1" + image: "mcr.microsoft.com/azureiotedge-agent:1.0" auth: {} ############################################################################### diff --git a/edgelet/version.txt b/edgelet/version.txt index f680208fd2d..af0b7ddbffd 100644 --- a/edgelet/version.txt +++ b/edgelet/version.txt @@ -1 +1 @@ -1.0.6~rc1 +1.0.6 diff --git a/scripts/windows/setup/IotEdgeSecurityDaemon.ps1 b/scripts/windows/setup/IotEdgeSecurityDaemon.ps1 index c8817e3a088..27a43641ab0 100644 --- a/scripts/windows/setup/IotEdgeSecurityDaemon.ps1 +++ b/scripts/windows/setup/IotEdgeSecurityDaemon.ps1 @@ -526,7 +526,7 @@ function Get-SecurityDaemon { $edgeArchivePath = Download-File ` -Description 'IoT Edge security daemon' ` - -Url 'https://aka.ms/iotedged-windows-rc' ` + -Url 'https://aka.ms/iotedged-windows-latest' ` -DownloadFilename 'iotedged-windows.zip' ` -LocalCacheGlob '*iotedged-windows*' ` -Delete ([ref] $deleteEdgeArchive) diff --git a/versionInfo.json b/versionInfo.json index 1cf5401fcba..8582d655fbd 100644 --- a/versionInfo.json +++ b/versionInfo.json @@ -1,5 +1,5 @@ { - "version": "1.0.6-rc1", + "version": "1.0.6", "build": "BUILDNUMBER", "commit": "COMMITID" }