Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.13.0"
".": "0.14.0"
}
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [0.14.0](https://github.com/googlemaps/react-native-navigation-sdk/compare/v0.13.0...v0.14.0) (2026-02-11)


### ⚠ BREAKING CHANGES

* **Legacy Architecture Removed:** Support for the legacy React Native architecture has been removed. ([#439](https://github.com/googlemaps/react-native-navigation-sdk/issues/439))
* **View Event Handlers as Props:** Instead of using `mapViewCallbacks` and `navigationViewCallbacks` wrapper objects, event handlers are now passed directly as first-class view props. ([#439](https://github.com/googlemaps/react-native-navigation-sdk/issues/439))
* **View Flags as Props:** View flags have been moved from `viewControllers` to view props. For example, the `headerEnabled` state can now be managed directly via a view prop, instead of calling `navigationViewController.setHeaderEnabled(value)`. ([#439](https://github.com/googlemaps/react-native-navigation-sdk/issues/439))
* **Listener Configuration:** Migrate from configuring listeners via one combined setter call to setting each listener via its own dedicated setter. ([#439](https://github.com/googlemaps/react-native-navigation-sdk/issues/439))
* **Minimum Kotlin Version:** Updated the minimum Kotlin version to 2.2.10. Recommended Android Gradle Plugin (AGP) is now 8.10.0 and Gradle is now 8.11.1. ([#439](https://github.com/googlemaps/react-native-navigation-sdk/issues/439))
* **Minimum React Native Version:** Support for React Native versions below 0.79.x has been dropped. ([#439](https://github.com/googlemaps/react-native-navigation-sdk/issues/439))

### Features

* **New Architecture Support:** Adds support for the new React Native architecture using codegen to generate the native interop layer for TurboModules and Fabric views. ([#439](https://github.com/googlemaps/react-native-navigation-sdk/issues/439)) ([355f16a](https://github.com/googlemaps/react-native-navigation-sdk/commit/355f16a6b22ea3957eadf49a1cde100318e32734))
* **Android SDK Upgrade:** Upgraded Android Navigation SDK from `7.1.0` to `7.3.0`. ([#439](https://github.com/googlemaps/react-native-navigation-sdk/issues/439))
* **iOS SDK Upgrade:** Upgraded iOS Navigation SDK from `10.6.0` to `10.7.0`. ([#439](https://github.com/googlemaps/react-native-navigation-sdk/issues/439))

## [0.13.0](https://github.com/googlemaps/react-native-navigation-sdk/compare/v0.12.2...v0.13.0) (2026-01-22)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@googlemaps/react-native-navigation-sdk",
"version": "0.13.0",
"version": "0.14.0",
"author": "Google",
"description": "A React Native library for Navigation SDK on Google Maps Platform",
"main": "lib/commonjs/index",
Expand Down
Loading