Skip to content

Commit e9d8af5

Browse files
release: cut the 5.1.0 release (#209)
* release: cut the 5.1.0 release
1 parent 1042328 commit e9d8af5

File tree

2 files changed

+30
-3
lines changed

2 files changed

+30
-3
lines changed

CHANGELOG.md

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
<a name="5.1.0"></a>
2+
# [5.1.0](https://github.com/NativeScript/nativescript-dev-appium/compare/5.0.0...5.1.0) (2019-03-07)
3+
4+
5+
### Bug Fixes
6+
7+
* args ([#163](https://github.com/NativeScript/nativescript-dev-appium/issues/163)) ([db33521](https://github.com/NativeScript/nativescript-dev-appium/commit/db33521))
8+
* find element by automation name ([#206](https://github.com/NativeScript/nativescript-dev-appium/issues/206)) ([df9e6ed](https://github.com/NativeScript/nativescript-dev-appium/commit/df9e6ed))
9+
* skip propmting on post install when the console is not interactive ([1042328](https://github.com/NativeScript/nativescript-dev-appium/commit/1042328))
10+
* **uielement:** isSelected and isChecked ([#203](https://github.com/NativeScript/nativescript-dev-appium/issues/203)) ([4e3e290](https://github.com/NativeScript/nativescript-dev-appium/commit/4e3e290))
11+
* check if storage is 'undefined' ([#99](https://github.com/NativeScript/nativescript-dev-appium/issues/99)) ([e2ca7cf](https://github.com/NativeScript/nativescript-dev-appium/commit/e2ca7cf))
12+
13+
14+
15+
### Features
16+
17+
* extend interaction with text ([#208](https://github.com/NativeScript/nativescript-dev-appium/issues/208)) ([45a8ff6](https://github.com/NativeScript/nativescript-dev-appium/commit/45a8ff6))
18+
* remoteAddress option ([#202](https://github.com/NativeScript/nativescript-dev-appium/issues/202)) ([efee24e](https://github.com/NativeScript/nativescript-dev-appium/commit/efee24e))
19+
* start session command. ([#207](https://github.com/NativeScript/nativescript-dev-appium/issues/207)) ([89ab7b0](https://github.com/NativeScript/nativescript-dev-appium/commit/89ab7b0))
20+
21+
122
<a name="5.0.0"></a>
223
# [5.0.0]() (2019-01-29)
324

@@ -19,7 +40,12 @@
1940

2041
### BREAKING CHANGES
2142

22-
* --reuseDevice options is removed. This is not concerning test which uses sauceLabs
43+
* **devMode:** validate() args returns a promise
44+
* There will be no longer --reuseDevice option available. From now on will be preserved options from appium caps "fullReset"
45+
46+
Migration steps:
47+
To reuse device set in your Appium capabilities file <b>"fullReset": false</b>
48+
Not to reuse device set <b>"fullReset": true</b>
2349

2450
Before:
2551
```

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nativescript-dev-appium",
3-
"version": "5.0.0",
3+
"version": "5.1.0",
44
"description": "A NativeScript plugin to help integrate and run Appium tests",
55
"author": "NativeScript",
66
"license": "MIT",
@@ -55,6 +55,7 @@
5555
"postinstall": "node ./postinstall.js",
5656
"prepare": "tsc",
5757
"watch": "tsc --watch",
58-
"test": "mocha --timeout 999999"
58+
"test": "mocha --timeout 999999",
59+
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
5960
}
6061
}

0 commit comments

Comments
 (0)