Skip to content

Commit e473049

Browse files
committed
Update default Edge runtime version to 1.4 LTS
1 parent e459b2e commit e473049

File tree

5 files changed

+15
-14
lines changed

5 files changed

+15
-14
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Change Log
2+
## 1.25.11 - 2022-12-12
3+
### Changed
4+
* Update default Edge runtime version to 1.4 LTS
5+
26
## 1.25.10 - 2022-11-03
37
### Changed
48
* Snap to the latest simulator version 0.14.18

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ The Azure IoT Visual Studio Code extension is in a maintenance mode. Please see
1818

1919
![Added](images/multipleplatform.gif)
2020

21+
## What's New (v1.25.11)
22+
* Update default Edge runtime version to 1.4 LTS
23+
2124
## What's New (v1.25.10)
2225
* Snap to the latest simulator version 0.14.18
2326

assets/solution/deployment.template.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"edgeAgent": {
1717
"type": "docker",
1818
"settings": {
19-
"image": "mcr.microsoft.com/azureiotedge-agent:1.2",
19+
"image": "mcr.microsoft.com/azureiotedge-agent:1.4",
2020
"createOptions": {}
2121
}
2222
},
@@ -25,7 +25,7 @@
2525
"status": "running",
2626
"restartPolicy": "always",
2727
"settings": {
28-
"image": "mcr.microsoft.com/azureiotedge-hub:1.2",
28+
"image": "mcr.microsoft.com/azureiotedge-hub:1.4",
2929
"createOptions": {
3030
"HostConfig": {
3131
"PortBindings": {

package.json

+3-5
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.10",
5+
"version": "1.25.11-rc0",
66
"publisher": "vsciot-vscode",
77
"aiKey": "95b20d64-f54f-4de3-8ad5-165a75a6c6fe",
88
"icon": "logo.png",
@@ -293,15 +293,13 @@
293293
"azure-iot-edge.version.supported.edgeRuntime": {
294294
"type": "array",
295295
"default": [
296-
"1.0",
297-
"1.1",
298-
"1.2"
296+
"1.4"
299297
],
300298
"description": "List of supported Edge Runtime images versions"
301299
},
302300
"azure-iot-edge.version.default.edgeRuntime": {
303301
"type": "string",
304-
"default": "1.2",
302+
"default": "1.4",
305303
"description": "Set the edgeAgent and edgeHub images version, which will be referenced in deployment manifest."
306304
},
307305
"azure-iot-edge.3rdPartyModuleTemplates": {

src/common/version.ts

+3-7
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,11 @@ export class Versions {
1414
public static getSchemaVersionMap(): Map<string, string> {
1515
// Mapping between Edge Runtime version and module schema version
1616
const edgeAgentSchemaVerMap: Map<string, string> = new Map([
17-
["1.0", "1.0"],
18-
["1.1", "1.1"],
19-
["1.2", "1.1"],
17+
["1.4", "1.4"],
2018
]);
2119

2220
const edgeHubSchemaVerMap: Map<string, string> = new Map([
23-
["1.0", "1.0"],
24-
["1.1", "1.1"],
25-
["1.2", "1.1"],
21+
["1.4", "1.4"],
2622
]);
2723

2824
const verMap: Map<string, string> = new Map();
@@ -108,7 +104,7 @@ export class Versions {
108104
}
109105

110106
private static getDefaultEdgeRuntimeVersion(): string {
111-
return Versions.getValue(Constants.versionDefaultEdgeRuntime, "1.0") as string;
107+
return Versions.getValue(Constants.versionDefaultEdgeRuntime, "1.4") as string;
112108
}
113109

114110
private static getNewImageVersionJson(input: ImageJson, versionMap: Map<string, string>): string {

0 commit comments

Comments
 (0)