From ce44e84daa041371fb1f03e627c53f6f5cf7d036 Mon Sep 17 00:00:00 2001 From: googlemaps-bot Date: Wed, 11 Feb 2026 18:14:32 +0100 Subject: [PATCH 1/2] chore(main): release 0.14.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 11 +++++++++++ package.json | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ed21d28..727e2be 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.13.0" + ".": "0.14.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9611ba0..5a30d61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.14.0](https://github.com/googlemaps/react-native-navigation-sdk/compare/v0.13.0...v0.14.0) (2026-02-11) + + +### ⚠ BREAKING CHANGES + +* support new React Native architecture ([#439](https://github.com/googlemaps/react-native-navigation-sdk/issues/439)) + +### Features + +* support new React Native architecture ([#439](https://github.com/googlemaps/react-native-navigation-sdk/issues/439)) ([355f16a](https://github.com/googlemaps/react-native-navigation-sdk/commit/355f16a6b22ea3957eadf49a1cde100318e32734)) + ## [0.13.0](https://github.com/googlemaps/react-native-navigation-sdk/compare/v0.12.2...v0.13.0) (2026-01-22) diff --git a/package.json b/package.json index d9cfd00..034fc84 100644 --- a/package.json +++ b/package.json @@ -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", From 88696405b21cb4feee1c43252aa63842f822d2eb Mon Sep 17 00:00:00 2001 From: Joonas Kerttula Date: Wed, 11 Feb 2026 09:21:48 -0800 Subject: [PATCH 2/2] docs: update changelog to include all breaking changes --- CHANGELOG.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a30d61..3bb3aff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,18 @@ ### ⚠ BREAKING CHANGES -* support new React Native architecture ([#439](https://github.com/googlemaps/react-native-navigation-sdk/issues/439)) +* **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 -* support new React Native architecture ([#439](https://github.com/googlemaps/react-native-navigation-sdk/issues/439)) ([355f16a](https://github.com/googlemaps/react-native-navigation-sdk/commit/355f16a6b22ea3957eadf49a1cde100318e32734)) +* **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)