Skip to content

Latest commit

 

History

History
70 lines (46 loc) · 2.53 KB

CHANGELOG.md

File metadata and controls

70 lines (46 loc) · 2.53 KB

Change Log

Version 2.0.2 (2021-04-19)

  • Ensured that malformed or incomplete data saved to disk does not result in an exception when attempting to restore state.

Version 2.0.1 (2021-03-31)

  • Improve thread-safety to avoid rare NullPointerException.

Version 2.0.0 (2021-03-16)

  • Bridge now depends on AndroidX rather than the support libraries.

Version 1.3.1 (2021-03-02)

  • Prevented CancellationException that might result due to a rare race condition on startup.

Version 1.3.0 (2020-12-07)

  • Reduced memory usage when processing data by skipping Base64-encoding step and using custom file storage.
  • Improved performance when processing Bitmap objects by avoiding compression.

Version 1.2.1 (2019-11-14)

  • Fixed bug preventing data from being properly cleared internally during configuration changes.
  • Fixed bug resulting in non-launcher intents (such as deep links) sometimes unnecessarily clearing saved data.

Version 1.2.0 (2019-05-30)

  • Bridge can now save the state of View objects. You may now optionally provide a ViewSavedStateHandler to Bridge.initialize in order to unlock this functionality.
  • Improved performance during configuration changes and when navigating while apps are in the foreground.

Version 1.1.3 (2018-10-08)

  • Bridge.clear is now safe to call in Activity.onDestroy when "Don't Keep Activities" is enabled.
  • All data is now correctly cleared on fresh launches for apps that do not use Bridge in every Activity.
  • Min SDK is now 14.

Version 1.1.2 (2018-06-04)

  • Data will no longer be automatically cleared for objects that go out of memory while an app is running. It is now more strongly recommended to use the clear method to manually delete data for objects in the process of being discarded.

Version 1.1.1 (2017-08-17)

  • Fixed clear behavior for a removed Fragment in the backstack.

Version 1.1.0 (2017-08-16)

  • Added support for saving Bitmaps.
  • Improved automatic clearing of old data.
  • Added clear method for manually clearing data from disk for a given object.
  • Added clearAll method for manually clearing all data from disk associated with Bridge.

Version 1.0.0 (2017-06-22)

Initial release.