Skip to content

Commit acd1f2e

Browse files
authored
overlook missing artifact (#617)
* overlook missing artifact * update simulator baseline version
1 parent 54eedce commit acd1f2e

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Change Log
2+
## 1.25.1- 2021-10-26
3+
### Changed
4+
* Fixed issue with processing of modules lacking the image URI
5+
26
## 1.25.0- 2021-10-05
37
### Changed
48
* Added Dev Container definitions for all supported languages

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "azure-iot-edge",
33
"displayName": "Azure IoT Edge",
44
"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.",
5-
"version": "1.25.0",
5+
"version": "1.25.1",
66
"publisher": "vsciot-vscode",
77
"aiKey": "95b20d64-f54f-4de3-8ad5-165a75a6c6fe",
88
"icon": "logo.png",

src/edge/simulator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ enum SimulatorType {
3333
export class Simulator {
3434
private static iotedgehubdevVersionUrl: string = "https://pypi.org/pypi/iotedgehubdev/json";
3535
private static iotedgehubdevLockVersionKey = "IOTEDGEHUBDEV_VERSION";
36-
private static iotedgehubdevDefaultVersion = "0.14.9";
36+
private static iotedgehubdevDefaultVersion = "0.14.10";
3737
private static learnMoreUrl: string = "https://aka.ms/AA3nuw8";
3838
private static simulatorVersionKey: string = "SimulatorVersion";
3939
private static simulatorExecutableName = "iotedgehubdev";

src/marketplace/localserver.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,9 @@ export class LocalServer {
9393
item.plans.forEach((plan) => {
9494
if (plan.artifacts) {
9595
const metaData = plan.artifacts.find((artifact) => artifact.name === "iot-edge-metadata.json");
96-
plan.iotEdgeMetadataUrl = metaData.uri;
96+
if (metaData !== undefined) {
97+
plan.iotEdgeMetadataUrl = metaData.uri;
98+
}
9799
}
98100
});
99101
}

0 commit comments

Comments
 (0)