Jeremy Woods | d3071bf | 2023-05-02 14:43:42 -0700 | [diff] [blame] | 1 | # Log for changes in the Fragment library |
| 2 | # |
| 3 | # `Added`: for new features |
| 4 | # `Changed`: for changes in existing functionality |
| 5 | # `Deprecated`: for soon to be removed functionality |
| 6 | # `Removed`: for now removed feature |
| 7 | # `Fixed`: for any bug fixes |
| 8 | # `Security`: in case of vulnerabilities |
Jeremy Woods | 251cbde | 2023-05-03 11:19:43 -0700 | [diff] [blame] | 9 | # |
| 10 | # Possible headings: |
| 11 | # API Changes |
| 12 | # Bug Fixes |
| 13 | # Dependency Updates |
| 14 | # Behavior Change |
| 15 | # External Contributions |
Jeremy Woods | d3071bf | 2023-05-02 14:43:42 -0700 | [diff] [blame] | 16 | |
| 17 | # Unreleased |
| 18 | |
Clara Fok | d05ccdb | 2023-05-24 11:39:10 -0700 | [diff] [blame] | 19 | ### Bug Fixes |
| 20 | - Fixed an issue where the saved state stored when the activity was stopped but not destroyed |
| 21 | would be incorrectly cached even after the fragment instance was moved back to the RESUMED state. |
| 22 | This would cause that cached state to be reused if that fragment instance was on the back stack |
| 23 | when using the multiple back stacks API to save and restore that fragment. |
| 24 | |
Jeremy Woods | b384ccc | 2023-05-31 16:27:05 +0000 | [diff] [blame] | 25 | ### New Features |
| 26 | |
| 27 | * Fragments now provide support for Predictive back when using |
| 28 | Animators. This allows you to use the back gesture motion to seek to the |
| 29 | previous fragment with your custom Animator before deciding to either |
| 30 | commit or cancel the transaction via the completed gesture. |
| 31 | |
| 32 | |
| 33 | # 1.6.0-rc01 |
| 34 | |
Jeremy Woods | 251cbde | 2023-05-03 11:19:43 -0700 | [diff] [blame] | 35 | ### Dependency Updates |
| 36 | |
Clara Fok | d05ccdb | 2023-05-24 11:39:10 -0700 | [diff] [blame] | 37 | - Changed dependency of Activity library from version 1.5.1 to version 1.7.1. |
Jeremy Woods | 251cbde | 2023-05-03 11:19:43 -0700 | [diff] [blame] | 38 | |