Skip to content

Commit 74ae7cf

Browse files
committed
Prepare version 1.3.5
1 parent d6e5e21 commit 74ae7cf

File tree

3 files changed

+35
-4
lines changed

3 files changed

+35
-4
lines changed

CHANGELOG.md

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,36 @@
22

33
## [Unreleased]
44

5+
## [1.3.5] - 2024-11-06
6+
7+
### New
8+
* Render pending recompositions for `@Composable`s that require a second layout pass
9+
* Support for overlays in accessibility snapshots
10+
* Support for Compose UI heading and selected states in accessibility snapshots
11+
* Support for toggleable state in accessibility snapshots
12+
* Support for displaying multiple accessibility descriptions, similar to Talkback
13+
* Include failure delta image in JUnit test reporting
14+
* Migrate Paparazzi to layoutlib Jellyfish 2023.3.1
15+
* Compose 1.7.5
16+
* Kotlin 2.0.21
17+
* [Gradle Plugin] Gradle 8.10.2
18+
* [Gradle Plugin] Android Gradle Plugin 8.4.2
19+
20+
### Fixed
21+
* Improve Gradle test task caching by preventing overlapping outputs with snapshotOutputDir
22+
* Migrate plugin to use modern AGP variant APIs
23+
* Fix support for AndroidX ResourcesCompat.getFont()
24+
* Fix inconsistent cross-platform text renderings in failure delta image
25+
* Relax image comparisons with OffByTwo differ to work around cross-platform rendering issues
26+
* Fix when clearAndSetSemantics is used to render content descriptions in accessibility snapshots
27+
* Avoid invalid chars in Windows filenames
28+
* Fix file move failures on Windows
29+
* Avoid hash collisions when images have similar RGB content
30+
* Cleanup unnecessary "loadPublicResourceNames" warning from log output
31+
* Additional bug fixes with accessibility snapshot tests
32+
33+
Kudos to @geoff-powell, @colinmarsch, @BrianGardnerAtl, @ribafish, @gabrielittner and others for contributions this release!
34+
535
## [1.3.4] - 2024-05-23
636

737
### New
@@ -379,7 +409,8 @@ As of this release, consumers must build on Java 11 environments.
379409

380410

381411

382-
[Unreleased]: https://github.com/cashapp/paparazzi/compare/1.3.4...HEAD
412+
[Unreleased]: https://github.com/cashapp/paparazzi/compare/1.3.5...HEAD
413+
[1.3.5]: https://github.com/cashapp/paparazzi/releases/tag/1.3.5
383414
[1.3.4]: https://github.com/cashapp/paparazzi/releases/tag/1.3.4
384415
[1.3.3]: https://github.com/cashapp/paparazzi/releases/tag/1.3.3
385416
[1.3.2]: https://github.com/cashapp/paparazzi/releases/tag/1.3.2

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ buildscript {
148148
google()
149149
}
150150
dependencies {
151-
classpath 'app.cash.paparazzi:paparazzi-gradle-plugin:1.3.4'
151+
classpath 'app.cash.paparazzi:paparazzi-gradle-plugin:1.3.5'
152152
}
153153
}
154154
@@ -158,7 +158,7 @@ apply plugin: 'app.cash.paparazzi'
158158
Using the plugins DSL:
159159
```groovy
160160
plugins {
161-
id 'app.cash.paparazzi' version '1.3.4'
161+
id 'app.cash.paparazzi' version '1.3.5'
162162
}
163163
```
164164

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=app.cash.paparazzi
2-
VERSION_NAME=1.3.5-SNAPSHOT
2+
VERSION_NAME=1.3.5
33

44
POM_URL=https://github.com/cashapp/paparazzi/
55
POM_SCM_URL=https://github.com/cashapp/paparazzi/

0 commit comments

Comments
 (0)