Skip to content

Commit

Permalink
overlook missing artifact (#617)
Browse files Browse the repository at this point in the history
* overlook missing artifact
* update simulator baseline version
  • Loading branch information
mhshami01 authored Oct 26, 2021
1 parent 54eedce commit acd1f2e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Change Log
## 1.25.1- 2021-10-26
### Changed
* Fixed issue with processing of modules lacking the image URI

## 1.25.0- 2021-10-05
### Changed
* Added Dev Container definitions for all supported languages
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.0",
"version": "1.25.1",
"publisher": "vsciot-vscode",
"aiKey": "95b20d64-f54f-4de3-8ad5-165a75a6c6fe",
"icon": "logo.png",
Expand Down
2 changes: 1 addition & 1 deletion src/edge/simulator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,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.9";
private static iotedgehubdevDefaultVersion = "0.14.10";
private static learnMoreUrl: string = "https://aka.ms/AA3nuw8";
private static simulatorVersionKey: string = "SimulatorVersion";
private static simulatorExecutableName = "iotedgehubdev";
Expand Down
4 changes: 3 additions & 1 deletion src/marketplace/localserver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,9 @@ export class LocalServer {
item.plans.forEach((plan) => {
if (plan.artifacts) {
const metaData = plan.artifacts.find((artifact) => artifact.name === "iot-edge-metadata.json");
plan.iotEdgeMetadataUrl = metaData.uri;
if (metaData !== undefined) {
plan.iotEdgeMetadataUrl = metaData.uri;
}
}
});
}
Expand Down

0 comments on commit acd1f2e

Please sign in to comment.