Skip to content

Releases: software-mansion/react-native-screens

4.9.0

21 Feb 17:51
3aea98a
Compare
Choose a tag to compare

What's Changed

Minor release focused on bringing stable support for react-native 0.78.

✅ Improvements

  • feat: support for RN 0.78.0-rc.5 by @kkafar in #2626
  • chore: restore backward compat for new & old architecture by @kkafar in #2730

🐛 Bug fixes

  • fix(Android,Paper): regenerate codegened files for old architecture by @kkafar in #2715
  • fix(iOS,Paper): fix false-negative lookup result for parent view from content wrapper by @kkafar in #2719
  • fix(Android): fix sheet transition when there is no dimming applied by @kkafar in #2723

🔢 Miscellaneous

  • refactor: detect fabric with RN$Bridgeless by @tjzel in #2722
  • chore(readme): update supported react-native versions by @kkafar in #2727

New Contributors

Full Changelog: 4.8.0...4.9.0

4.9.0-beta.0

19 Feb 19:20
901aa73
Compare
Choose a tag to compare
4.9.0-beta.0 Pre-release
Pre-release

What's Changed

Support for 0.78, releasing this as beta yet, because it breaks backward compatibility for Paper - I hope to restore it before stable.

  • feat: support for RN 0.78.0-rc.5 by @kkafar in #2626
  • fix(Android,Paper): regenerate codegened files for old architecture by @kkafar in #2715

Full Changelog: 4.8.0...4.9.0-beta.0

4.8.0

19 Feb 17:56
93f4b57
Compare
Choose a tag to compare

What's Changed

Fixup for 4.7.0 with unresolved import (when using frameworks) + 16 KB page size support on Android

  • [Android] Add support for 16KB page size by @m-bert in #2702
  • fix(iOS): missing import when using frameworks on ios by @kkafar in #2711
  • chore: suppress -Wdollar-in-identifier-extension compile time warning by @kkafar in #2707

New Contributors

Full Changelog: 4.7.0...4.8.0

4.7.0

18 Feb 08:24
a1e388f
Compare
Choose a tag to compare

What's Changed

Minor release focused on bugfixing.

⚠️ Fixes causing potential behaviour changes

In case you use formSheet stack presentation on Android this might change the hide animation of the sheet. Previous one was buggy, therefore this change is considered a fix rather than a breaking change.

  • ⚠️ fix(Android): separate transitions of sheet and dimming view by @kkafar in #2542

🐛 Bug fixes

  • fix(Android): missing background color for formSheets on RN 0.77+ by @kkafar in #2660
  • fix(iOS): wrong height of formSheet in nested stack with fitToContents by @kkafar in #2670
  • fix(iOS): fix quick modal presentation sequence where foreign modal is being dismissed by @kkafar in #2671
  • fix: add missing files to whitelist in package.json by @kkafar in #2673
  • fix(Android): missing transition events with formSheet presentation by @kkafar in #2682
  • fix(iOS): look through whole ancestor chain when looking for screenview from content wrapper by @kkafar in #2683
  • fix(Android,Fabric): infinite state update loop in header subview by @kkafar in #2685
  • fix(Android,Fabric): prevent another infinite state update loop for header subviews with zero size by @kkafar in #2696

🔢 Miscellaneous

  • chore(repo): exclude kotlin compiler log files from repo by @kkafar in #2680
  • chore(docs): add note that fitToContents includes small bottom padding on iOS by @kkafar in #2701

Full Changelog: 4.6.0...4.7.0

4.7.0-beta.4

11 Feb 15:29
7777810
Compare
Choose a tag to compare
4.7.0-beta.4 Pre-release
Pre-release

What's Changed

Changes relative to beta.3

  • fix(Android): missing transition events with formSheet presentation by @kkafar in #2682
  • fix(iOS): look through whole ancestor chain when looking for screenview from content wrapper by @kkafar in #2683
  • chore(repo): exclude kotlin compiler log files from repo by @kkafar in #2680

Full Changelog: 4.7.0-beta.3...4.7.0-beta.4

4.7.0-beta.3

07 Feb 15:11
54743fe
Compare
Choose a tag to compare
4.7.0-beta.3 Pre-release
Pre-release

What's Changed

Follow up for beta.2

  • fix: add missing files to whitelist in package.json by @kkafar in #2673

Full Changelog: 4.7.0-beta.2...4.7.0-beta.3

4.7.0-beta.2

07 Feb 14:35
5d67015
Compare
Choose a tag to compare
4.7.0-beta.2 Pre-release
Pre-release

What's Changed

Relative to 4.7.0-beta.1

🐛 Bug fixes

  • fix(Android): missing background color for formSheets on RN 0.77+ by @kkafar in #2660
  • fix(iOS): wrong height of formSheet in nested stack with fitToContents by @kkafar in #2670
  • fix(iOS): fix quick modal presentation sequence where foreign modal is being dismissed by @kkafar in #2671

Full Changelog: 4.7.0-beta.1...4.7.0-beta.2

4.7.0-beta.1

06 Feb 13:20
89f8ad3
Compare
Choose a tag to compare
4.7.0-beta.1 Pre-release
Pre-release

What's Changed

Beta changing type of animation for form sheet on Android. See the PR #2542 for more details. Enabling this behaviour will most likely require to specify some animation prop on form sheet screen in stable 4.7.0, but currently it replaced the default.

⚠️ Behaviour changes

  • fix(Android): separate transitions of sheet and dimming view by @kkafar in #2542

🔢 Miscellaneous

  • chore: bump react-navigation submodule version by @kkafar in #2658

Full Changelog: 4.6.0-beta.1...4.7.0-beta.1

4.6.0

31 Jan 12:12
a8ae962
Compare
Choose a tag to compare

What's Changed

Minor release providing few important fixes, including these for pressables on new architecture and FullWindowOverlay.

⚠️ Deprecations

  • feat(Android): deprecate series of status/navigation bar related props by @kkafar in #2638

👍 Improvements

  • refactor(iOS): update view controller once per transaction when adding header subviews by @kkafar in #2623

🐛 Bug fixes

  • fix: clicking on Pressable located in screen header by @coado and @kkafar in #2466
  • fix(iOS): make RCTMountingTransactionObserving implementation new-arch only by @kkafar in #2624
  • fix: remove workaround for removing clipped subviews by @kkafar in #2596
  • fix(iOS,Fabric): fix invalid position of FullWindowOverlay in certain scenarios by @kkafar in #2641
  • fix(Android): fix draw ordering in transparent modal & stack nested in tabs interaction by @kkafar in #2647
  • fix(Android): Restore focus on page transitions by @micheleb in #2640

🔢 Miscellaneous

  • chore(types): update information on nested stack rendering support by @kkafar in #2639
  • chore: bump deps in lib & examples (part 1 of fixing CI) by @kkafar in #2618
  • chore(CI): fix part 2 - set xcode-version to 16.1 by @kkafar in #2620
  • chore(examples): remove dependency on react-native-vector-icons by @kkafar in #2621
  • refactor(Android): rename FabricEnabledHeaderSubviewGroup -> FabricEnabledHeaderSubviewViewGroup + fix arch-consistency check by @kkafar in #2622
  • release: 4.6.0-beta.0 by @kkafar in #2625
  • chore: bump RN to 0.77.0-rc.7 in examples and lib by @kkafar in #2630
  • chore: fix code editing (add dev dependency on eslint-plugin-ft-flow by @kkafar in #2644
  • chore(CI): fix linting by @kkafar in #2645
  • chore: bump react-navigation submodule version by @kkafar in #2658

New Contributors

Full Changelog: 4.5.0...4.6.0

4.6.0-beta.1

24 Jan 17:04
a8f1be3
Compare
Choose a tag to compare
4.6.0-beta.1 Pre-release
Pre-release

What's Changed

These changes are relative to beta.0

⚠️ Deprecations

  • feat(Android): deprecate series of status/navigation bar related props by @kkafar in #2638

🐛 Bug fixes

  • fix(iOS,Fabric): fix invalid position of FullWindowOverlay in certain scenarios by @kkafar in #2641
  • fix(Android): Restore focus on page transitions by @micheleb in #2640
  • fix(Android): fix draw ordering in transparent modal & stack nested in tabs interaction by @kkafar in #2647

🔢 Miscellaneous

  • release: 4.6.0-beta.0 by @kkafar in #2625
  • chore: bump RN to 0.77.0-rc.7 in examples and lib by @kkafar in #2630
  • refactor(iOS): update view controller once per transaction when adding header subviews by @kkafar in #2623
  • chore(types): update information on nested stack rendering support by @kkafar in #2639
  • chore: fix code editing (add dev dependency on eslint-plugin-ft-flow by @kkafar in #2644
  • chore(CI): fix linting by @kkafar in #2645

New Contributors

Full Changelog: 4.6.0-beta.0...4.6.0-beta.1