From 17f8c9f4bcf0ea5aa49bdfd4beb05b0dcb3403a0 Mon Sep 17 00:00:00 2001 From: Haitham Shami Date: Tue, 8 Mar 2022 08:53:47 -0800 Subject: [PATCH] using latest simulator version (#629) * using latest simulator version --- CHANGELOG.md | 4 ++++ README.md | 3 +++ package-lock.json | 16 ++++++++-------- package.json | 2 +- src/edge/simulator.ts | 2 +- 5 files changed, 17 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 75deb555..2a29570f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ # Change Log +## 1.25.8 - 2022-03-08 +### Changed +* Snap to the latest simulator version 0.14.12 + ## 1.25.7 - 2022-02-04 ### Changed * Fixed dev container load errors when dependency list include VSCode Remote Containers extension. diff --git a/README.md b/README.md index aec47707..8d850bf1 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,9 @@ ![Added](images/multipleplatform.gif) +## What's New (v1.25.8) +* Snap to the latest simulator version 0.14.12 + ## What's New (v1.25.0) * Generate Dev Container definition files with new Edge Solutions. * Ability to add Dev Container definition files to existing Edge Solutions. diff --git a/package-lock.json b/package-lock.json index 43eb70b5..b011ae3d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "azure-iot-edge", - "version": "1.25.7", + "version": "1.25.8", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "azure-iot-edge", - "version": "1.25.7", + "version": "1.25.8", "license": "SEE LICENSE IN LICENSE.txt", "dependencies": { "@azure/arm-containerregistry": "^8.1.1", @@ -2118,9 +2118,9 @@ } }, "node_modules/follow-redirects": { - "version": "1.14.7", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.7.tgz", - "integrity": "sha512-+hbxoLbFMbRKDwohX8GkTataGqO6Jb7jGwpAlwgy2bIz25XtRm7KEzJM76R1WiNT5SwZkX4Y75SwBolkpmE7iQ==", + "version": "1.14.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.9.tgz", + "integrity": "sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==", "funding": [ { "type": "individual", @@ -6549,9 +6549,9 @@ "dev": true }, "follow-redirects": { - "version": "1.14.7", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.7.tgz", - "integrity": "sha512-+hbxoLbFMbRKDwohX8GkTataGqO6Jb7jGwpAlwgy2bIz25XtRm7KEzJM76R1WiNT5SwZkX4Y75SwBolkpmE7iQ==" + "version": "1.14.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.9.tgz", + "integrity": "sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==" }, "form-data": { "version": "2.5.1", diff --git a/package.json b/package.json index e8b21be8..6bfc14d3 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "azure-iot-edge", "displayName": "Azure IoT Edge", "description": "This extension is now a part of Azure IoT Tools extension pack. We highly recommend installing Azure IoT Tools to get full capabilities for Azure IoT development. Develop, deploy, debug, and manage your IoT Edge solution.", - "version": "1.25.7", + "version": "1.25.8", "publisher": "vsciot-vscode", "aiKey": "95b20d64-f54f-4de3-8ad5-165a75a6c6fe", "icon": "logo.png", diff --git a/src/edge/simulator.ts b/src/edge/simulator.ts index 64452944..59d73d75 100644 --- a/src/edge/simulator.ts +++ b/src/edge/simulator.ts @@ -34,7 +34,7 @@ enum SimulatorType { export class Simulator { private static iotedgehubdevVersionUrl: string = "https://pypi.org/pypi/iotedgehubdev/json"; private static iotedgehubdevLockVersionKey = "IOTEDGEHUBDEV_VERSION"; - private static iotedgehubdevDefaultVersion = "0.14.10"; + private static iotedgehubdevDefaultVersion = "0.14.12"; private static learnMoreUrl: string = "https://aka.ms/AA3nuw8"; private static simulatorVersionKey: string = "SimulatorVersion"; private static simulatorExecutableName = "iotedgehubdev";