From d5e0ed4655ff6f0a9686653619ccc6b261302640 Mon Sep 17 00:00:00 2001 From: Zdravko Branzov Date: Tue, 12 Nov 2019 11:52:02 +0200 Subject: [PATCH] release: cut the 6.1.3 release --- CHANGELOG.md | 11 +++++++++++ package.json | 2 +- test/device-manager.spec.ts | 6 +++--- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f01519e..b89928a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## [6.1.3](https://github.com/NativeScript/nativescript-dev-appium/compare/6.1.2...6.1.3) (2019-11-12) + + +### Bug Fixes + +* **ios:** apply getActualRectangle ([#267](https://github.com/NativeScript/nativescript-dev-appium/issues/267)) ([ebe92e0](https://github.com/NativeScript/nativescript-dev-appium/commit/ebe92e0)) +* compareElement to use proper rectangle and generate proper diff image. ([cd76798](https://github.com/NativeScript/nativescript-dev-appium/commit/cd76798)) +* resolve device type by device name ([#277](https://github.com/NativeScript/nativescript-dev-appium/issues/277)) ([e7d7345](https://github.com/NativeScript/nativescript-dev-appium/commit/e7d7345)) + + + ## [6.1.2](https://github.com/NativeScript/nativescript-dev-appium/compare/6.1.0...6.1.2) (2019-10-04) diff --git a/package.json b/package.json index 639e473..7bc0aef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nativescript-dev-appium", - "version": "6.2.0", + "version": "6.1.3", "description": "A NativeScript plugin to help integrate and run Appium tests", "author": "NativeScript", "license": "MIT", diff --git a/test/device-manager.spec.ts b/test/device-manager.spec.ts index bec3568..163b998 100644 --- a/test/device-manager.spec.ts +++ b/test/device-manager.spec.ts @@ -206,8 +206,8 @@ describe("start-appium-server-ios", async () => { appPath: iosApp, appiumCaps: { platformName: Platform.IOS, - deviceName: /^iPhone XR$/, - platformVersion: /12/, + deviceName: /^iPhone XR 12$/, + platformVersion: "12.2", fullReset: true }, verbose: false @@ -275,7 +275,7 @@ describe("dev-mode-options", async () => { before("start devices", async () => { await DeviceController.startDevice({ platform: Platform.ANDROID, apiLevel: "23" }); - await DeviceController.startDevice({ platform: Platform.IOS, apiLevel: /12./, name: "iPhone XR" }); + await DeviceController.startDevice({ platform: Platform.IOS, apiLevel: "12.2", name: "iPhone XR 12" }); appiumServer = new AppiumServer({}); await appiumServer.start(8399); });