Skip to content
This repository was archived by the owner on Aug 8, 2022. It is now read-only.

Commit 87dfca2

Browse files
authored
Merge pull request #237 from Shopify/release-1.1.0-beta3
Prepare release 1.1.0-beta3
2 parents 62b60a9 + ca2af26 commit 87dfca2

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,25 @@
11
# Testify Change Log
22

3-
## Unreleased
3+
## 1.1.0-beta3
44

55
### Library
66

77
### Gradle Plugin
88

99
#### Bug fixes
1010

11+
- Several internal changes to support Gradle 7.
12+
- Fix https://github.com/Shopify/android-testify/issues/225
13+
Apply annotations to task properties for up-to-date checks. Adds missing annotations on public properties in Tasks to assist with up-to-date checks. Missing annotations are now errors in Gradle 7.0+.
1114
- Fix https://github.com/Shopify/android-testify/issues/234
1215
Using the Testify plugin with AGP 7+ would generate the error "Cannot query the value of property 'applicationId' because configuration of project ':app' has not completed yet". Fixed by catching the error and providing a sensible default. In the case where the test packaged ID is incorrectly inferred, the user can specify `testify { testPackageId "my.custom.package.test" }` in their build.gradle to override the inferred value.
1316

17+
### Library
18+
19+
#### Changes
20+
21+
- Renamed the `rootViewId` setter on `ScreenshotTestRule` for better Java interoperability. It has been renamed to `setRootViewIdResource`.
22+
1423
---
1524

1625
## 1.1.0-beta2
0 Bytes
Binary file not shown.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ buildscript {
2121
jcenter()
2222
}
2323
dependencies {
24-
classpath "com.shopify.testify:plugin:1.1.0-beta2"
24+
classpath "com.shopify.testify:plugin:1.1.0-beta3"
2525
}
2626
}
2727

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ buildscript {
2828
'mockito2' : '3.3.3', // https://github.com/mockito/mockito/releases
2929
'mockitoAndroid' : '3.3.3', // https://mvnrepository.com/artifact/org.mockito/mockito-android
3030
'mockitokotlin' : '2.2.0', // https://github.com/nhaarman/mockito-kotlin
31-
'testify' : '1.1.0-beta2', // https://github.com/Shopify/android-testify/releases
31+
'testify' : '1.1.0-beta3', // https://github.com/Shopify/android-testify/releases
3232
]
3333
coreVersions = [
3434
'compileSdk': 30,

0 commit comments

Comments
 (0)