Skip to content

Commit 257dd01

Browse files
Publish 12.11.2 [ci skip]
1 parent 530eb40 commit 257dd01

10 files changed

Lines changed: 54 additions & 15 deletions

File tree

CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,44 @@
11
# Change Log
22

3+
## [12.11.2](https://github.com/wix/Detox/tree/12.11.2) (2019-06-21)
4+
[Full Changelog](https://github.com/wix/Detox/compare/12.11.1...12.11.2)
5+
6+
**Enhancements**
7+
8+
- Update EarlGrey to include TrustKit fixes [\#1392](https://github.com/wix/Detox/issues/1392)
9+
- \(Android\) Introduce exception-based, edge-monitoring in scrolling actions of all flavours \(equiv to iOS\) [\#1464](https://github.com/wix/Detox/pull/1464) ([d4vidi](https://github.com/d4vidi))
10+
- refactor: allow technically to control multiple detox instances [\#1144](https://github.com/wix/Detox/pull/1144) ([manuquentin](https://github.com/manuquentin))
11+
12+
**Fixed Bugs**
13+
14+
- bug: timeout error on detox.cleanup\(\) if an app had been terminated earlier in a test [\#1460](https://github.com/wix/Detox/issues/1460)
15+
- \(Android\) Endless scrolling attempts if item not found using `waitFor` [\#1409](https://github.com/wix/Detox/issues/1409)
16+
17+
**Closed Issues**
18+
19+
- Second Test File Causing Issues [\#1458](https://github.com/wix/Detox/issues/1458)
20+
- Detox hangs on "Trying permissions" on CircleCI [\#1457](https://github.com/wix/Detox/issues/1457)
21+
- `invocationManager` is cached by nodejs' require cache and prevent multiple client [\#1119](https://github.com/wix/Detox/issues/1119)
22+
23+
**Merged Pull Requests**
24+
25+
- fix\(ws\): explicit error handling [\#1467](https://github.com/wix/Detox/pull/1467) ([noomorph](https://github.com/noomorph))
26+
- fix: conduct cleanup even if app has been already terminated [\#1465](https://github.com/wix/Detox/pull/1465) ([noomorph](https://github.com/noomorph))
27+
- Revive generation script [\#1459](https://github.com/wix/Detox/pull/1459) ([d4vidi](https://github.com/d4vidi))
28+
- Increase log-level for result of 'adb devices' command [\#1453](https://github.com/wix/Detox/pull/1453) ([d4vidi](https://github.com/d4vidi))
29+
30+
## [12.11.1](https://github.com/wix/Detox/tree/12.11.1) (2019-06-14)
31+
[Full Changelog](https://github.com/wix/Detox/compare/12.11.0...12.11.1)
32+
33+
**Closed Issues**
34+
35+
- Regex For Matchers [\#1441](https://github.com/wix/Detox/issues/1441)
36+
37+
**Merged Pull Requests**
38+
39+
- use --byId instead of --simulator [\#1448](https://github.com/wix/Detox/pull/1448) ([vonovak](https://github.com/vonovak))
40+
- Update APIRef.ActionsOnElement.md [\#1437](https://github.com/wix/Detox/pull/1437) ([leotm](https://github.com/leotm))
41+
342
## [12.11.0](https://github.com/wix/Detox/tree/12.11.0) (2019-06-07)
443
[Full Changelog](https://github.com/wix/Detox/compare/12.10.3...12.11.0)
544

detox/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "detox",
33
"description": "E2E tests and automation for mobile",
4-
"version": "12.11.1",
4+
"version": "12.11.2",
55
"bin": {
66
"detox": "local-cli/cli.js"
77
},

detox/test/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "detox-test",
3-
"version": "12.11.1",
3+
"version": "12.11.2",
44
"private": true,
55
"engines": {
66
"node": ">=8.3.0"
@@ -25,7 +25,7 @@
2525
},
2626
"devDependencies": {
2727
"@babel/core": "^7.4.5",
28-
"detox": "^12.11.1",
28+
"detox": "^12.11.2",
2929
"express": "^4.15.3",
3030
"jest": "24.6.x",
3131
"lodash": "^4.14.1",

examples/demo-native-android/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "detox-demo-native-android",
3-
"version": "12.11.1",
3+
"version": "12.11.2",
44
"private": true,
55
"scripts": {
66
"packager": "react-native start",
77
"detox-server": "detox run-server",
88
"e2e": "mocha e2e --opts ./e2e/mocha.opts"
99
},
1010
"devDependencies": {
11-
"detox": "^12.11.1",
11+
"detox": "^12.11.2",
1212
"mocha": "^6.1.3"
1313
},
1414
"detox": {}

examples/demo-native-ios/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "detox-demo-native-ios",
3-
"version": "12.11.1",
3+
"version": "12.11.2",
44
"private": true,
55
"devDependencies": {
6-
"detox": "^12.11.1",
6+
"detox": "^12.11.2",
77
"mocha": "^6.1.3"
88
},
99
"detox": {

examples/demo-react-native-detox-instruments/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "demo-react-native-detox-instruments",
3-
"version": "12.11.1",
3+
"version": "12.11.2",
44
"private": true,
55
"scripts": {},
66
"devDependencies": {
7-
"detox": "^12.11.1",
7+
"detox": "^12.11.2",
88
"mocha": "6.x.x"
99
},
1010
"detox": {

examples/demo-react-native-jest/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "demo-react-native-jest",
3-
"version": "12.11.1",
3+
"version": "12.11.2",
44
"private": true,
55
"scripts": {
66
"test:android-release": "detox test --configuration android.emu.release -l verbose"
77
},
88
"devDependencies": {
9-
"detox": "^12.11.1",
9+
"detox": "^12.11.2",
1010
"jest": "24.x.x"
1111
},
1212
"detox": {

examples/demo-react-native/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "example",
3-
"version": "12.11.1",
3+
"version": "12.11.2",
44
"private": true,
55
"scripts": {
66
"start": "react-native start",
@@ -20,7 +20,7 @@
2020
"react-native": "0.59.8"
2121
},
2222
"devDependencies": {
23-
"detox": "^12.11.1",
23+
"detox": "^12.11.2",
2424
"mocha": "^6.1.3"
2525
},
2626
"detox": {

generation/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "generation",
3-
"version": "12.4.0",
3+
"version": "12.11.2",
44
"description": "Generate wrapper code for native dependencies",
55
"main": "index.js",
66
"private": true,

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"examples/demo-react-native-jest",
1212
"generation"
1313
],
14-
"version": "12.11.1",
14+
"version": "12.11.2",
1515
"npmClient": "npm",
1616
"command": {
1717
"publish": {

0 commit comments

Comments
 (0)