From db67b0e25a0c2deaa16d6311a891e3a762a920d9 Mon Sep 17 00:00:00 2001 From: Azure IoT Client Build Date: Wed, 28 Apr 2021 23:16:06 +0000 Subject: [PATCH] release(2021-04-28): bump package versions --- build/tools/package.json | 4 ++-- common/core/package.json | 4 ++-- common/transport/amqp/package.json | 6 +++--- common/transport/http/package.json | 6 +++--- common/transport/mqtt/package.json | 6 +++--- device/core/package.json | 8 +++---- device/node-red/package.json | 8 +++---- device/samples/package.json | 10 ++++----- device/samples/pnp/package.json | 18 ++++++++-------- device/transport/amqp/package.json | 10 ++++----- device/transport/http/package.json | 12 +++++------ device/transport/mqtt/package.json | 10 ++++----- e2etests/package.json | 14 ++++++------ provisioning/device/package.json | 6 +++--- provisioning/device/samples/package.json | 24 ++++++++++----------- provisioning/device/ts-samples/package.json | 24 ++++++++++----------- provisioning/e2e/package.json | 24 ++++++++++----------- provisioning/service/package.json | 8 +++---- provisioning/service/samples/package.json | 4 ++-- provisioning/transport/amqp/package.json | 10 ++++----- provisioning/transport/http/package.json | 10 ++++----- provisioning/transport/mqtt/package.json | 10 ++++----- security/symmetric/package.json | 6 +++--- security/tpm/package.json | 6 +++--- security/x509/package.json | 6 +++--- service/package.json | 10 ++++----- service/samples/javascript/package.json | 4 ++-- service/samples/typescript/package.json | 4 ++-- ts-e2e/package.json | 14 ++++++------ 29 files changed, 143 insertions(+), 143 deletions(-) diff --git a/build/tools/package.json b/build/tools/package.json index d009d0a04..093dbdba8 100644 --- a/build/tools/package.json +++ b/build/tools/package.json @@ -19,9 +19,9 @@ }, "homepage": "https://github.com/azure/azure-iot-sdk-node#readme", "dependencies": { - "azure-iothub": "1.13.2-alpha.210322.1", + "azure-iothub": "1.14.0", "chalk": "^1.1.3", "pem": "^1.14.2", "yargs": "^15.3.1" } -} +} \ No newline at end of file diff --git a/common/core/package.json b/common/core/package.json index d7948cc00..2a8b1a9db 100644 --- a/common/core/package.json +++ b/common/core/package.json @@ -1,6 +1,6 @@ { "name": "azure-iot-common", - "version": "1.12.8-alpha.210322.1", + "version": "1.12.8", "description": "Common components shared by Azure IoT device and service SDKs", "author": "Microsoft Corporation", "license": "MIT", @@ -78,4 +78,4 @@ "url": "https://github.com/Azure/azure-iot-sdk-node/issues" }, "homepage": "https://github.com/Azure/azure-iot-sdk-node#readme" -} +} \ No newline at end of file diff --git a/common/transport/amqp/package.json b/common/transport/amqp/package.json index 243a5b5fe..ddded4cf9 100644 --- a/common/transport/amqp/package.json +++ b/common/transport/amqp/package.json @@ -1,6 +1,6 @@ { "name": "azure-iot-amqp-base", - "version": "2.4.8-alpha.210322.1", + "version": "2.4.8", "description": "AMQP operations used by Azure IoT device and service SDKs", "author": "Microsoft Corporation", "license": "MIT", @@ -8,7 +8,7 @@ "typings": "index.d.ts", "dependencies": { "async": "^2.6.3", - "azure-iot-common": "1.12.8-alpha.210322.1", + "azure-iot-common": "1.12.8", "debug": "^4.3.1", "lodash.merge": "^4.6.1", "machina": "^4.0.2", @@ -83,4 +83,4 @@ "url": "https://github.com/Azure/azure-iot-sdk-node/issues" }, "homepage": "https://github.com/Azure/azure-iot-sdk-node#readme" -} +} \ No newline at end of file diff --git a/common/transport/http/package.json b/common/transport/http/package.json index f267b5455..67e257ace 100644 --- a/common/transport/http/package.json +++ b/common/transport/http/package.json @@ -1,13 +1,13 @@ { "name": "azure-iot-http-base", - "version": "1.11.8-alpha.210322.1", + "version": "1.11.8", "description": "HTTP operations used by Azure IoT device and service SDKs", "author": "Microsoft Corporation", "license": "MIT", "main": "index.js", "typings": "index.d.ts", "dependencies": { - "azure-iot-common": "1.12.8-alpha.210322.1", + "azure-iot-common": "1.12.8", "debug": "^4.3.1", "uuid": "^3.3.2" }, @@ -76,4 +76,4 @@ "url": "https://github.com/Azure/azure-iot-sdk-node/issues" }, "homepage": "https://github.com/Azure/azure-iot-sdk-node#readme" -} +} \ No newline at end of file diff --git a/common/transport/mqtt/package.json b/common/transport/mqtt/package.json index 9a137882a..609e43209 100644 --- a/common/transport/mqtt/package.json +++ b/common/transport/mqtt/package.json @@ -1,13 +1,13 @@ { "name": "azure-iot-mqtt-base", - "version": "1.12.8-alpha.210322.1", + "version": "1.12.8", "description": "MQTT operations used by Azure IoT device and service SDKs", "author": "Microsoft Corporation", "license": "MIT", "main": "main.js", "typings": "index.d.ts", "dependencies": { - "azure-iot-common": "1.12.8-alpha.210322.1", + "azure-iot-common": "1.12.8", "debug": "^4.3.1", "machina": "^4.0.2", "mqtt": "^4.0.0", @@ -79,4 +79,4 @@ "url": "https://github.com/Azure/azure-iot-sdk-node/issues" }, "homepage": "https://github.com/Azure/azure-iot-sdk-node#readme" -} +} \ No newline at end of file diff --git a/device/core/package.json b/device/core/package.json index 035217c72..9a4926e3e 100644 --- a/device/core/package.json +++ b/device/core/package.json @@ -1,6 +1,6 @@ { "name": "azure-iot-device", - "version": "1.17.4-alpha.210322.1", + "version": "1.17.4-alpha.210428.1", "description": "Azure IoT device SDK", "author": "Microsoft Corporation", "license": "MIT", @@ -9,8 +9,8 @@ "dependencies": { "@azure/abort-controller": "1.0.1", "@azure/storage-blob": "^12.0.0", - "azure-iot-common": "1.12.8-alpha.210322.1", - "azure-iot-http-base": "1.11.8-alpha.210322.1", + "azure-iot-common": "1.12.8", + "azure-iot-http-base": "1.11.8", "debug": "^4.3.1", "lodash": "^4.17.21", "machina": "^4.0.2", @@ -85,4 +85,4 @@ "url": "https://github.com/Azure/azure-iot-sdk-node/issues" }, "homepage": "https://github.com/Azure/azure-iot-sdk-node#readme" -} +} \ No newline at end of file diff --git a/device/node-red/package.json b/device/node-red/package.json index 232f1501d..8e7e6eef9 100644 --- a/device/node-red/package.json +++ b/device/node-red/package.json @@ -5,10 +5,10 @@ "author": "Microsoft Corp.", "license": "MIT", "dependencies": { - "azure-iot-device": "1.17.4-alpha.210322.1", - "azure-iot-device-amqp": "1.13.4-alpha.210322.1", - "azure-iot-device-http": "1.13.4-alpha.210322.1", - "azure-iot-device-mqtt": "1.15.4-alpha.210322.1" + "azure-iot-device": "1.17.4-alpha.210428.1", + "azure-iot-device-amqp": "1.13.4-alpha.210428.1", + "azure-iot-device-http": "1.13.4-alpha.210428.1", + "azure-iot-device-mqtt": "1.15.4-alpha.210428.1" }, "node-red": { "nodes": { diff --git a/device/samples/package.json b/device/samples/package.json index 8e1cb85b8..b8eddf38a 100644 --- a/device/samples/package.json +++ b/device/samples/package.json @@ -6,10 +6,10 @@ "author": "Microsoft Corp.", "license": "MIT", "dependencies": { - "azure-iot-device": "1.17.4-alpha.210322.1", - "azure-iot-device-amqp": "1.13.4-alpha.210322.1", - "azure-iot-device-http": "1.13.4-alpha.210322.1", - "azure-iot-device-mqtt": "1.15.4-alpha.210322.1", + "azure-iot-device": "1.17.4-alpha.210428.1", + "azure-iot-device-amqp": "1.13.4-alpha.210428.1", + "azure-iot-device-http": "1.13.4-alpha.210428.1", + "azure-iot-device-mqtt": "1.15.4-alpha.210428.1", "es5-shim": "^4.5.12", "https-proxy-agent": "^5.0.0", "lodash": "^4.17.21" @@ -22,4 +22,4 @@ "lint": "jshint --show-non-errors .", "ci": "npm run lint" } -} +} \ No newline at end of file diff --git a/device/samples/pnp/package.json b/device/samples/pnp/package.json index e397518dd..9ea324038 100644 --- a/device/samples/pnp/package.json +++ b/device/samples/pnp/package.json @@ -6,14 +6,14 @@ "author": "Microsoft Corp.", "license": "MIT", "dependencies": { - "azure-iot-common": "1.12.8-alpha.210322.1", - "azure-iot-device": "1.17.4-alpha.210322.1", - "azure-iot-device-amqp": "1.13.4-alpha.210322.1", - "azure-iot-device-http": "1.13.4-alpha.210322.1", - "azure-iot-device-mqtt": "1.15.4-alpha.210322.1", - "azure-iot-provisioning-device": "1.8.8-alpha.210322.1", - "azure-iot-provisioning-device-mqtt": "1.7.8-alpha.210322.1", - "azure-iot-security-symmetric-key": "1.7.8-alpha.210322.1", + "azure-iot-common": "1.12.8", + "azure-iot-device": "1.17.4-alpha.210428.1", + "azure-iot-device-amqp": "1.13.4-alpha.210428.1", + "azure-iot-device-http": "1.13.4-alpha.210428.1", + "azure-iot-device-mqtt": "1.15.4-alpha.210428.1", + "azure-iot-provisioning-device": "1.8.8-alpha.210428.1", + "azure-iot-provisioning-device-mqtt": "1.7.8-alpha.210428.1", + "azure-iot-security-symmetric-key": "1.7.8-alpha.210428.1", "es5-shim": "^4.5.12", "lodash": "^4.17.21" }, @@ -24,4 +24,4 @@ "npmlockrefresh": "npm i --package-lock-only", "lint": "jshint --show-non-errors ." } -} +} \ No newline at end of file diff --git a/device/transport/amqp/package.json b/device/transport/amqp/package.json index 531d8880c..383454478 100644 --- a/device/transport/amqp/package.json +++ b/device/transport/amqp/package.json @@ -1,6 +1,6 @@ { "name": "azure-iot-device-amqp", - "version": "1.13.4-alpha.210322.1", + "version": "1.13.4-alpha.210428.1", "description": "AMQP transport for Azure IoT device SDK", "author": "Microsoft Corporation", "license": "MIT", @@ -8,9 +8,9 @@ "typings": "index.d.ts", "dependencies": { "async": "^2.6.3", - "azure-iot-amqp-base": "2.4.8-alpha.210322.1", - "azure-iot-common": "1.12.8-alpha.210322.1", - "azure-iot-device": "1.17.4-alpha.210322.1", + "azure-iot-amqp-base": "2.4.8", + "azure-iot-common": "1.12.8", + "azure-iot-device": "1.17.4-alpha.210428.1", "debug": "^4.3.1", "machina": "^4.0.2", "rhea": "^1.0.15", @@ -82,4 +82,4 @@ "url": "https://github.com/Azure/azure-iot-sdk-node/issues" }, "homepage": "https://github.com/Azure/azure-iot-sdk-node#readme" -} +} \ No newline at end of file diff --git a/device/transport/http/package.json b/device/transport/http/package.json index ba7d8a6b4..3866f5af5 100644 --- a/device/transport/http/package.json +++ b/device/transport/http/package.json @@ -1,21 +1,21 @@ { "name": "azure-iot-device-http", - "version": "1.13.4-alpha.210322.1", + "version": "1.13.4-alpha.210428.1", "description": "HTTP transport for Azure IoT device SDK", "author": "Microsoft Corporation", "license": "MIT", "main": "index.js", "typings": "index.d.ts", "dependencies": { - "azure-iot-common": "1.12.8-alpha.210322.1", - "azure-iot-device": "1.17.4-alpha.210322.1", - "azure-iot-http-base": "1.11.8-alpha.210322.1", + "azure-iot-common": "1.12.8", + "azure-iot-device": "1.17.4-alpha.210428.1", + "azure-iot-http-base": "1.11.8", "debug": "^4.3.1", "node-crontab": "^0.0.8" }, "devDependencies": { "@types/node": "^9.6.61", - "azure-iothub": "1.13.2-alpha.210322.1", + "azure-iothub": "1.14.0", "chai": "^4.3.3", "mocha": "^7.1.1", "nyc": "^15.0.0", @@ -79,4 +79,4 @@ "url": "https://github.com/Azure/azure-iot-sdk-node/issues" }, "homepage": "https://github.com/Azure/azure-iot-sdk-node#readme" -} +} \ No newline at end of file diff --git a/device/transport/mqtt/package.json b/device/transport/mqtt/package.json index 2d6f82e90..7de78a0c4 100644 --- a/device/transport/mqtt/package.json +++ b/device/transport/mqtt/package.json @@ -1,15 +1,15 @@ { "name": "azure-iot-device-mqtt", - "version": "1.15.4-alpha.210322.1", + "version": "1.15.4-alpha.210428.1", "description": "MQTT transport for Azure IoT device SDK", "author": "Microsoft Corporation", "license": "MIT", "main": "index.js", "typings": "index.d.ts", "dependencies": { - "azure-iot-common": "1.12.8-alpha.210322.1", - "azure-iot-device": "1.17.4-alpha.210322.1", - "azure-iot-mqtt-base": "1.12.8-alpha.210322.1", + "azure-iot-common": "1.12.8", + "azure-iot-device": "1.17.4-alpha.210428.1", + "azure-iot-mqtt-base": "1.12.8", "debug": "^4.3.1", "machina": "^4.0.2", "uuid": "^3.3.2" @@ -81,4 +81,4 @@ "url": "https://github.com/Azure/azure-iot-sdk-node/issues" }, "homepage": "https://github.com/Azure/azure-iot-sdk-node#readme" -} +} \ No newline at end of file diff --git a/e2etests/package.json b/e2etests/package.json index e1e640c07..a22e704f0 100644 --- a/e2etests/package.json +++ b/e2etests/package.json @@ -10,12 +10,12 @@ "@azure/event-hubs": "^1.0.8", "@azure/storage-blob": "^12.0.0", "async": "^2.6.3", - "azure-iot-common": "1.12.8-alpha.210322.1", - "azure-iot-device": "1.17.4-alpha.210322.1", - "azure-iot-device-amqp": "1.13.4-alpha.210322.1", - "azure-iot-device-http": "1.13.4-alpha.210322.1", - "azure-iot-device-mqtt": "1.15.4-alpha.210322.1", - "azure-iothub": "1.13.2-alpha.210322.1", + "azure-iot-common": "1.12.8", + "azure-iot-device": "1.17.4-alpha.210428.1", + "azure-iot-device-amqp": "1.13.4-alpha.210428.1", + "azure-iot-device-http": "1.13.4-alpha.210428.1", + "azure-iot-device-mqtt": "1.15.4-alpha.210428.1", + "azure-iothub": "1.14.0", "azure-storage": "^2.10.2", "debug": "^4.3.1", "lodash": "^4.17.21", @@ -83,4 +83,4 @@ "url": "https://github.com/Azure/azure-iot-sdk-node/issues" }, "homepage": "https://github.com/Azure/azure-iot-sdk-node#readme" -} +} \ No newline at end of file diff --git a/provisioning/device/package.json b/provisioning/device/package.json index 633f6d763..866eca5dc 100644 --- a/provisioning/device/package.json +++ b/provisioning/device/package.json @@ -1,13 +1,13 @@ { "name": "azure-iot-provisioning-device", - "version": "1.8.8-alpha.210322.1", + "version": "1.8.8-alpha.210428.1", "description": "Azure Device Provisioning SDK device client", "author": "Microsoft Corporation", "license": "MIT", "main": "index.js", "typings": "index.d.ts", "dependencies": { - "azure-iot-common": "1.12.8-alpha.210322.1", + "azure-iot-common": "1.12.8", "debug": "^4.3.1", "machina": "^4.0.2" }, @@ -76,4 +76,4 @@ "url": "https://github.com/Azure/azure-iot-sdk-node/issues" }, "homepage": "https://github.com/Azure/azure-iot-sdk-node#readme" -} +} \ No newline at end of file diff --git a/provisioning/device/samples/package.json b/provisioning/device/samples/package.json index b91347fd3..5e4c6848a 100644 --- a/provisioning/device/samples/package.json +++ b/provisioning/device/samples/package.json @@ -5,17 +5,17 @@ "author": "Microsoft Corporation", "license": "MIT", "dependencies": { - "azure-iot-device": "1.17.4-alpha.210322.1", - "azure-iot-device-amqp": "1.13.4-alpha.210322.1", - "azure-iot-device-http": "1.13.4-alpha.210322.1", - "azure-iot-device-mqtt": "1.15.4-alpha.210322.1", - "azure-iot-provisioning-device": "1.8.8-alpha.210322.1", - "azure-iot-provisioning-device-amqp": "1.8.8-alpha.210322.1", - "azure-iot-provisioning-device-http": "1.8.8-alpha.210322.1", - "azure-iot-provisioning-device-mqtt": "1.7.8-alpha.210322.1", - "azure-iot-security-symmetric-key": "1.7.8-alpha.210322.1", - "azure-iot-security-tpm": "1.8.8-alpha.210322.1", - "azure-iot-security-x509": "1.7.8-alpha.210322.1", + "azure-iot-device": "1.17.4-alpha.210428.1", + "azure-iot-device-amqp": "1.13.4-alpha.210428.1", + "azure-iot-device-http": "1.13.4-alpha.210428.1", + "azure-iot-device-mqtt": "1.15.4-alpha.210428.1", + "azure-iot-provisioning-device": "1.8.8-alpha.210428.1", + "azure-iot-provisioning-device-amqp": "1.8.8-alpha.210428.1", + "azure-iot-provisioning-device-http": "1.8.8-alpha.210428.1", + "azure-iot-provisioning-device-mqtt": "1.7.8-alpha.210428.1", + "azure-iot-security-symmetric-key": "1.7.8-alpha.210428.1", + "azure-iot-security-tpm": "1.8.8-alpha.210428.1", + "azure-iot-security-x509": "1.7.8-alpha.210428.1", "rhea": "^1.0.15" }, "scripts": { @@ -32,4 +32,4 @@ "url": "https://github.com/Azure/azure-iot-sdk-node/issues" }, "homepage": "https://github.com/Azure/azure-iot-sdk-node#readme" -} +} \ No newline at end of file diff --git a/provisioning/device/ts-samples/package.json b/provisioning/device/ts-samples/package.json index 2bf715940..7766fcd21 100644 --- a/provisioning/device/ts-samples/package.json +++ b/provisioning/device/ts-samples/package.json @@ -5,17 +5,17 @@ "author": "Microsoft Corporation", "license": "MIT", "dependencies": { - "azure-iot-device": "1.17.4-alpha.210322.1", - "azure-iot-device-amqp": "1.13.4-alpha.210322.1", - "azure-iot-device-http": "1.13.4-alpha.210322.1", - "azure-iot-device-mqtt": "1.15.4-alpha.210322.1", - "azure-iot-provisioning-device": "1.8.8-alpha.210322.1", - "azure-iot-provisioning-device-amqp": "1.8.8-alpha.210322.1", - "azure-iot-provisioning-device-http": "1.8.8-alpha.210322.1", - "azure-iot-provisioning-device-mqtt": "1.7.8-alpha.210322.1", - "azure-iot-security-symmetric-key": "1.7.8-alpha.210322.1", - "azure-iot-security-tpm": "1.8.8-alpha.210322.1", - "azure-iot-security-x509": "1.7.8-alpha.210322.1" + "azure-iot-device": "1.17.4-alpha.210428.1", + "azure-iot-device-amqp": "1.13.4-alpha.210428.1", + "azure-iot-device-http": "1.13.4-alpha.210428.1", + "azure-iot-device-mqtt": "1.15.4-alpha.210428.1", + "azure-iot-provisioning-device": "1.8.8-alpha.210428.1", + "azure-iot-provisioning-device-amqp": "1.8.8-alpha.210428.1", + "azure-iot-provisioning-device-http": "1.8.8-alpha.210428.1", + "azure-iot-provisioning-device-mqtt": "1.7.8-alpha.210428.1", + "azure-iot-security-symmetric-key": "1.7.8-alpha.210428.1", + "azure-iot-security-tpm": "1.8.8-alpha.210428.1", + "azure-iot-security-x509": "1.7.8-alpha.210428.1" }, "devDependencies": { "tslint": "^6.1.3", @@ -38,4 +38,4 @@ "url": "https://github.com/Azure/azure-iot-sdk-node/issues" }, "homepage": "https://github.com/Azure/azure-iot-sdk-node#readme" -} +} \ No newline at end of file diff --git a/provisioning/e2e/package.json b/provisioning/e2e/package.json index baebe415f..aad840ca2 100644 --- a/provisioning/e2e/package.json +++ b/provisioning/e2e/package.json @@ -1,21 +1,21 @@ { "name": "azure-iot-provisioning-device-e2e", - "version": "1.8.8-alpha.210322.1", + "version": "1.8.8-alpha.210428.1", "description": "E2E tests for the Azure Device Provisioning SDK", "author": "Microsoft Corporation", "license": "MIT", "dependencies": { "async": "^2.6.3", - "azure-iot-common": "1.12.8-alpha.210322.1", - "azure-iot-provisioning-device": "1.8.8-alpha.210322.1", - "azure-iot-provisioning-device-amqp": "1.8.8-alpha.210322.1", - "azure-iot-provisioning-device-http": "1.8.8-alpha.210322.1", - "azure-iot-provisioning-device-mqtt": "1.7.8-alpha.210322.1", - "azure-iot-provisioning-service": "1.8.8-alpha.210322.1", - "azure-iot-security-symmetric-key": "1.7.8-alpha.210322.1", - "azure-iot-security-tpm": "1.8.8-alpha.210322.1", - "azure-iot-security-x509": "1.7.8-alpha.210322.1", - "azure-iothub": "1.13.2-alpha.210322.1", + "azure-iot-common": "1.12.8", + "azure-iot-provisioning-device": "1.8.8-alpha.210428.1", + "azure-iot-provisioning-device-amqp": "1.8.8-alpha.210428.1", + "azure-iot-provisioning-device-http": "1.8.8-alpha.210428.1", + "azure-iot-provisioning-device-mqtt": "1.7.8-alpha.210428.1", + "azure-iot-provisioning-service": "1.8.8-alpha.210428.1", + "azure-iot-security-symmetric-key": "1.7.8-alpha.210428.1", + "azure-iot-security-tpm": "1.8.8-alpha.210428.1", + "azure-iot-security-x509": "1.7.8-alpha.210428.1", + "azure-iothub": "1.14.0", "chai": "^4.3.3", "debug": "^4.3.1", "jshint": "^2.12.0", @@ -48,4 +48,4 @@ "url": "https://github.com/Azure/azure-iot-sdk-node/issues" }, "homepage": "https://github.com/Azure/azure-iot-sdk-node#readme" -} +} \ No newline at end of file diff --git a/provisioning/service/package.json b/provisioning/service/package.json index ba956d634..b99fa58e2 100644 --- a/provisioning/service/package.json +++ b/provisioning/service/package.json @@ -1,14 +1,14 @@ { "name": "azure-iot-provisioning-service", - "version": "1.8.8-alpha.210322.1", + "version": "1.8.8-alpha.210428.1", "description": "Azure IoT SDK - Provisioning Service Client", "author": "Microsoft Corporation", "license": "MIT", "main": "iotprovisioningservice.js", "typings": "iotprovisioningservice.d.ts", "dependencies": { - "azure-iot-common": "1.12.8-alpha.210322.1", - "azure-iot-http-base": "1.11.8-alpha.210322.1", + "azure-iot-common": "1.12.8", + "azure-iot-http-base": "1.11.8", "debug": "^4.3.1" }, "devDependencies": { @@ -77,4 +77,4 @@ "url": "https://github.com/Azure/azure-iot-sdk-node/issues" }, "homepage": "https://github.com/Azure/azure-iot-sdk-node#readme" -} +} \ No newline at end of file diff --git a/provisioning/service/samples/package.json b/provisioning/service/samples/package.json index f9787fc28..586740dce 100644 --- a/provisioning/service/samples/package.json +++ b/provisioning/service/samples/package.json @@ -5,7 +5,7 @@ "author": "Microsoft Corporation", "license": "MIT", "dependencies": { - "azure-iot-provisioning-service": "1.8.8-alpha.210322.1", + "azure-iot-provisioning-service": "1.8.8-alpha.210428.1", "yargs": "^15.3.1" }, "devDependencies": { @@ -26,4 +26,4 @@ "url": "https://github.com/Azure/azure-iot-sdk-node/issues" }, "homepage": "https://github.com/Azure/azure-iot-sdk-node#readme" -} +} \ No newline at end of file diff --git a/provisioning/transport/amqp/package.json b/provisioning/transport/amqp/package.json index 55283ee2d..1ada74107 100644 --- a/provisioning/transport/amqp/package.json +++ b/provisioning/transport/amqp/package.json @@ -1,6 +1,6 @@ { "name": "azure-iot-provisioning-device-amqp", - "version": "1.8.8-alpha.210322.1", + "version": "1.8.8-alpha.210428.1", "description": "AMQP transport for Azure Device Provisioning SDK", "author": "Microsoft Corporation", "license": "MIT", @@ -8,9 +8,9 @@ "typings": "index.d.ts", "dependencies": { "async": "^2.6.3", - "azure-iot-amqp-base": "2.4.8-alpha.210322.1", - "azure-iot-common": "1.12.8-alpha.210322.1", - "azure-iot-provisioning-device": "1.8.8-alpha.210322.1", + "azure-iot-amqp-base": "2.4.8", + "azure-iot-common": "1.12.8", + "azure-iot-provisioning-device": "1.8.8-alpha.210428.1", "buffer-builder": "^0.2.0", "debug": "^4.3.1", "machina": "^4.0.2", @@ -82,4 +82,4 @@ "url": "httpss://github.com/Azure/azure-iot-sdk-node/issues" }, "homepage": "https://github.com/Azure/azure-iot-sdk-node#readme" -} +} \ No newline at end of file diff --git a/provisioning/transport/http/package.json b/provisioning/transport/http/package.json index c731c5841..933e1bc07 100644 --- a/provisioning/transport/http/package.json +++ b/provisioning/transport/http/package.json @@ -1,15 +1,15 @@ { "name": "azure-iot-provisioning-device-http", - "version": "1.8.8-alpha.210322.1", + "version": "1.8.8-alpha.210428.1", "description": "HTTP transport for Azure Device Provisioning SDK", "author": "Microsoft Corporation", "license": "MIT", "main": "index.js", "typings": "index.d.ts", "dependencies": { - "azure-iot-common": "1.12.8-alpha.210322.1", - "azure-iot-http-base": "1.11.8-alpha.210322.1", - "azure-iot-provisioning-device": "1.8.8-alpha.210322.1", + "azure-iot-common": "1.12.8", + "azure-iot-http-base": "1.11.8", + "azure-iot-provisioning-device": "1.8.8-alpha.210428.1", "debug": "^4.3.1", "machina": "^4.0.2" }, @@ -78,4 +78,4 @@ "url": "https://github.com/Azure/azure-iot-sdk-node/issues" }, "homepage": "https://github.com/Azure/azure-iot-sdk-node#readme" -} +} \ No newline at end of file diff --git a/provisioning/transport/mqtt/package.json b/provisioning/transport/mqtt/package.json index f947d5907..07e92508c 100644 --- a/provisioning/transport/mqtt/package.json +++ b/provisioning/transport/mqtt/package.json @@ -1,15 +1,15 @@ { "name": "azure-iot-provisioning-device-mqtt", - "version": "1.7.8-alpha.210322.1", + "version": "1.7.8-alpha.210428.1", "description": "MQTT transport for Azure Device Provisioning SDK", "author": "Microsoft Corporation", "license": "MIT", "main": "index.js", "typings": "index.d.ts", "dependencies": { - "azure-iot-common": "1.12.8-alpha.210322.1", - "azure-iot-mqtt-base": "1.12.8-alpha.210322.1", - "azure-iot-provisioning-device": "1.8.8-alpha.210322.1", + "azure-iot-common": "1.12.8", + "azure-iot-mqtt-base": "1.12.8", + "azure-iot-provisioning-device": "1.8.8-alpha.210428.1", "debug": "^4.3.1", "machina": "^4.0.2", "uuid": "^3.3.2" @@ -79,4 +79,4 @@ "url": "https://github.com/Azure/azure-iot-sdk-node/issues" }, "homepage": "https://github.com/Azure/azure-iot-sdk-node#readme" -} +} \ No newline at end of file diff --git a/security/symmetric/package.json b/security/symmetric/package.json index 24a04e9d8..934d18879 100644 --- a/security/symmetric/package.json +++ b/security/symmetric/package.json @@ -1,13 +1,13 @@ { "name": "azure-iot-security-symmetric-key", - "version": "1.7.8-alpha.210322.1", + "version": "1.7.8-alpha.210428.1", "description": "Azure IoT Symmetric Key Security Client", "author": "Microsoft Corporation", "license": "MIT", "main": "index.js", "typings": "index.d.ts", "dependencies": { - "azure-iot-common": "1.12.8-alpha.210322.1", + "azure-iot-common": "1.12.8", "debug": "^4.3.1" }, "devDependencies": { @@ -76,4 +76,4 @@ "url": "https://github.com/Azure/azure-iot-sdk-node/issues" }, "homepage": "https://github.com/Azure/azure-iot-sdk-node#readme" -} +} \ No newline at end of file diff --git a/security/tpm/package.json b/security/tpm/package.json index b7eae1dae..57b6ce1c5 100644 --- a/security/tpm/package.json +++ b/security/tpm/package.json @@ -1,13 +1,13 @@ { "name": "azure-iot-security-tpm", - "version": "1.8.8-alpha.210322.1", + "version": "1.8.8-alpha.210428.1", "description": "Azure IoT TPM security client", "author": "Microsoft Corporation", "license": "MIT", "main": "index.js", "typings": "index.d.ts", "dependencies": { - "azure-iot-common": "1.12.8-alpha.210322.1", + "azure-iot-common": "1.12.8", "base32-encode": "^1.0.0", "debug": "^4.3.1", "machina": "^4.0.2", @@ -80,4 +80,4 @@ "url": "https://github.com/Azure/azure-iot-sdk-node/issues" }, "homepage": "https://github.com/Azure/azure-iot-sdk-node#readme" -} +} \ No newline at end of file diff --git a/security/x509/package.json b/security/x509/package.json index 88294ad7a..2a7834180 100644 --- a/security/x509/package.json +++ b/security/x509/package.json @@ -1,13 +1,13 @@ { "name": "azure-iot-security-x509", - "version": "1.7.8-alpha.210322.1", + "version": "1.7.8-alpha.210428.1", "description": "Azure IoT x509 security client", "author": "Microsoft Corporation", "license": "MIT", "main": "index.js", "typings": "index.d.ts", "dependencies": { - "azure-iot-common": "1.12.8-alpha.210322.1", + "azure-iot-common": "1.12.8", "debug": "^4.3.1" }, "devDependencies": { @@ -75,4 +75,4 @@ "url": "https://github.com/Azure/azure-iot-sdk-node/issues" }, "homepage": "https://github.com/Azure/azure-iot-sdk-node#readme" -} +} \ No newline at end of file diff --git a/service/package.json b/service/package.json index ada199e8a..3b4ed9392 100644 --- a/service/package.json +++ b/service/package.json @@ -1,6 +1,6 @@ { "name": "azure-iothub", - "version": "1.13.2-alpha.210322.1", + "version": "1.14.0", "description": "Azure IoT SDK - IoT Hub", "author": "Microsoft Corporation", "license": "MIT", @@ -9,9 +9,9 @@ "dependencies": { "@azure/ms-rest-js": "^2.0.5", "async": "^2.6.3", - "azure-iot-amqp-base": "2.4.8-alpha.210322.1", - "azure-iot-common": "1.12.8-alpha.210322.1", - "azure-iot-http-base": "1.11.8-alpha.210322.1", + "azure-iot-amqp-base": "2.4.8", + "azure-iot-common": "1.12.8", + "azure-iot-http-base": "1.11.8", "debug": "^4.3.1", "lodash": "^4.17.21", "machina": "^4.0.2", @@ -98,4 +98,4 @@ "url": "https://github.com/Azure/azure-iot-sdk-node/issues" }, "homepage": "https://github.com/Azure/azure-iot-sdk-node#readme" -} +} \ No newline at end of file diff --git a/service/samples/javascript/package.json b/service/samples/javascript/package.json index dbbbf9f32..16a39f74a 100644 --- a/service/samples/javascript/package.json +++ b/service/samples/javascript/package.json @@ -11,10 +11,10 @@ "ci": "npm run lint" }, "dependencies": { - "azure-iothub": "1.13.2-alpha.210322.1", + "azure-iothub": "1.14.0", "azure-storage": "^2.10.2" }, "devDependencies": { "jshint": "^2.12.0" } -} +} \ No newline at end of file diff --git a/service/samples/typescript/package.json b/service/samples/typescript/package.json index be9a432b6..97ff872a4 100644 --- a/service/samples/typescript/package.json +++ b/service/samples/typescript/package.json @@ -6,7 +6,7 @@ "author": "Microsoft Corp.", "license": "MIT", "dependencies": { - "azure-iothub": "1.13.2-alpha.210322.1" + "azure-iothub": "1.14.0" }, "devDependencies": { "source-map-support": "^0.5.16", @@ -21,4 +21,4 @@ "npmlockrefresh": "npm i --package-lock-only", "ci": "npm -s run lint && npm -s run build" } -} +} \ No newline at end of file diff --git a/ts-e2e/package.json b/ts-e2e/package.json index 27b6cbea8..7f6f5a3fc 100644 --- a/ts-e2e/package.json +++ b/ts-e2e/package.json @@ -19,12 +19,12 @@ "@types/mocha": "^2.2.41", "@types/node": "^9.6.61", "@types/uuid": "^3.4.5", - "azure-iot-common": "1.12.8-alpha.210322.1", - "azure-iot-device": "1.17.4-alpha.210322.1", - "azure-iot-device-amqp": "1.13.4-alpha.210322.1", - "azure-iot-device-http": "1.13.4-alpha.210322.1", - "azure-iot-device-mqtt": "1.15.4-alpha.210322.1", - "azure-iothub": "1.13.2-alpha.210322.1", + "azure-iot-common": "1.12.8", + "azure-iot-device": "1.17.4-alpha.210428.1", + "azure-iot-device-amqp": "1.13.4-alpha.210428.1", + "azure-iot-device-http": "1.13.4-alpha.210428.1", + "azure-iot-device-mqtt": "1.15.4-alpha.210428.1", + "azure-iothub": "1.14.0", "chai": "^4.3.3", "debug": "^4.3.1", "mocha": "^7.1.1", @@ -33,4 +33,4 @@ "uuid": "^3.3.2", "uuid-buffer": "^1.0.3" } -} +} \ No newline at end of file