Skip to content

Releases: RoverPlatform/rover-ios

4.11.5

05 Nov 15:29

Choose a tag to compare

Release Notes

  • Prevent leakage of extensions on iOS system types (Hashable conformance on CGRect, CGSize, CGPoint), causing potential linker issues in apps that also extend those types

4.11.4

28 Aug 21:10

Choose a tag to compare

Release Notes

  • Resolve potential crash during sync

4.11.3

22 Aug 21:17

Choose a tag to compare

Release Notes

  • Support for explicitly specifying navigation bar appearance, by adding two new parameters to CommunicationHubView and CommunicationHubHostingController: navigationBarBackgroundColor and navigationBarColorScheme.

If a coloured navigation bar is desired, pass the desired color as the background color and set the color scheme to dark, so the elements (back arrow, search bar) of the nav bar appear visible on top of the background color. Example:

CommunicationHubHostingController(
      /// Optionally specify the Communication Hub's title bar text, if needed. It defaults to "Inbox".
      title: "Inbox",
      // Optionally specify the accent color to use for buttons and links. It defaults to your app's accent color.
      accentColor: .green,
      navigationBarBackgroundColor: Color("App Brand Accent Color"),
      navigationBarColorScheme: .dark
)

4.11.2

21 Aug 20:35

Choose a tag to compare

Release Notes

  • Bug fixes and performance improvements

4.11.1

08 Aug 17:07

Choose a tag to compare

Release Notes

  • Improve correctness of post sync
  • Posts deep links now launch standalone modals

4.11.0

22 Jul 18:23

Choose a tag to compare

Release Notes

4.10.3

09 Jul 13:45

Choose a tag to compare

Release Notes

  • Enable authenticated usage of multiple internal Rover data APIs

4.10.2

09 Jun 20:29

Choose a tag to compare

Release Notes

  • Bump iOS target version to iOS 16

4.10.1

30 May 18:08

Choose a tag to compare

Release Notes

  • Mitigate a potential rare crash resulting from an concurrency interaction between UICollectionView and attributed strings

4.10.0

07 Mar 17:52

Choose a tag to compare

Release Notes

This release introduces SDK Authentication, which enables developers to integrate identity information from their backend with Rover in the form of a JWT ID Token. See SDK Authentication on the Rover documentation for further details and usage.