diff --git a/.changeset/bright-taxes-cheat.md b/.changeset/bright-taxes-cheat.md deleted file mode 100644 index c5d55cba..00000000 --- a/.changeset/bright-taxes-cheat.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'react-native-bottom-tabs': patch ---- - -Fix phantom tab switch on iOS when scene re-appears diff --git a/.changeset/grumpy-otters-report.md b/.changeset/grumpy-otters-report.md deleted file mode 100644 index 04e4f9d0..00000000 --- a/.changeset/grumpy-otters-report.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'react-native-bottom-tabs': patch ---- - -Disable tabBarInactiveTintColor on iOS >= 26 diff --git a/.changeset/short-teeth-fix.md b/.changeset/short-teeth-fix.md deleted file mode 100644 index c69bb52a..00000000 --- a/.changeset/short-teeth-fix.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'react-native-bottom-tabs': patch ---- - -Fix tvOS compilation due to unavailable APIs diff --git a/.changeset/stable-tab-tint.md b/.changeset/stable-tab-tint.md deleted file mode 100644 index 50273c9c..00000000 --- a/.changeset/stable-tab-tint.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'react-native-bottom-tabs': patch ---- - -Keep iOS tab transitions smooth when switching between tabs with and without active tint colors. diff --git a/.changeset/tidy-eels-wish.md b/.changeset/tidy-eels-wish.md deleted file mode 100644 index b5ae190b..00000000 --- a/.changeset/tidy-eels-wish.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'react-native-bottom-tabs': minor ---- - -Add `experimental_bakedTintColors` prop to opt into the iOS 26 Liquid Glass active and inactive tint color workaround. diff --git a/packages/expo-template/CHANGELOG.md b/packages/expo-template/CHANGELOG.md index ac845088..a7e30c7d 100644 --- a/packages/expo-template/CHANGELOG.md +++ b/packages/expo-template/CHANGELOG.md @@ -1,5 +1,13 @@ # @bottom-tabs/expo-template +## 1.1.1 + +### Patch Changes + +- Updated dependencies [[`942e441`](https://github.com/callstack/react-native-bottom-tabs/commit/942e4419e4667ab7ed58bcf5313d8ec291f7c659), [`2a8a9a0`](https://github.com/callstack/react-native-bottom-tabs/commit/2a8a9a0898f78a45834375652b1d765b96193160), [`1c5b385`](https://github.com/callstack/react-native-bottom-tabs/commit/1c5b38565c464e612c3be715bded1f8950efc5d4), [`2ebe13b`](https://github.com/callstack/react-native-bottom-tabs/commit/2ebe13bef3a19b3c4168c741275ff00d96604cd7), [`412e9ca`](https://github.com/callstack/react-native-bottom-tabs/commit/412e9ca37e029edb6e0b808e1a9a576e7bf7d02e)]: + - react-native-bottom-tabs@1.3.0 + - @bottom-tabs/react-navigation@1.3.0 + ## 1.1.0 ### Minor Changes diff --git a/packages/expo-template/package.json b/packages/expo-template/package.json index 65a6b238..2e7aff18 100644 --- a/packages/expo-template/package.json +++ b/packages/expo-template/package.json @@ -1,7 +1,7 @@ { "name": "@bottom-tabs/expo-template", "main": "expo-router/entry", - "version": "1.1.0", + "version": "1.1.1", "scripts": { "start": "expo start", "reset-project": "node ./scripts/reset-project.js", @@ -18,7 +18,7 @@ "preset": "jest-expo" }, "dependencies": { - "@bottom-tabs/react-navigation": "1.2.0", + "@bottom-tabs/react-navigation": "1.3.0", "@expo/vector-icons": "^14.0.2", "@react-navigation/native": "^7.2.2", "expo": "^54.0.1", @@ -37,7 +37,7 @@ "react": "^19.1.0", "react-dom": "18.3.1", "react-native": "0.81.4", - "react-native-bottom-tabs": "1.2.0", + "react-native-bottom-tabs": "1.3.0", "react-native-gesture-handler": "^2.28.0", "react-native-reanimated": "^4.1.0", "react-native-safe-area-context": "^5.6.1", diff --git a/packages/react-native-bottom-tabs/CHANGELOG.md b/packages/react-native-bottom-tabs/CHANGELOG.md index 9ed1cc0d..37e4a742 100644 --- a/packages/react-native-bottom-tabs/CHANGELOG.md +++ b/packages/react-native-bottom-tabs/CHANGELOG.md @@ -1,5 +1,21 @@ # react-native-bottom-tabs +## 1.3.0 + +### Minor Changes + +- [#522](https://github.com/callstack/react-native-bottom-tabs/pull/522) [`412e9ca`](https://github.com/callstack/react-native-bottom-tabs/commit/412e9ca37e029edb6e0b808e1a9a576e7bf7d02e) Thanks [@thiagobrez](https://github.com/thiagobrez)! - Add `experimental_bakedTintColors` prop to opt into the iOS 26 Liquid Glass active and inactive tint color workaround. + +### Patch Changes + +- [#526](https://github.com/callstack/react-native-bottom-tabs/pull/526) [`942e441`](https://github.com/callstack/react-native-bottom-tabs/commit/942e4419e4667ab7ed58bcf5313d8ec291f7c659) Thanks [@davidecallegaro](https://github.com/davidecallegaro)! - Fix phantom tab switch on iOS when scene re-appears + +- [#527](https://github.com/callstack/react-native-bottom-tabs/pull/527) [`2a8a9a0`](https://github.com/callstack/react-native-bottom-tabs/commit/2a8a9a0898f78a45834375652b1d765b96193160) Thanks [@thiagobrez](https://github.com/thiagobrez)! - Disable tabBarInactiveTintColor on iOS >= 26 + +- [#508](https://github.com/callstack/react-native-bottom-tabs/pull/508) [`1c5b385`](https://github.com/callstack/react-native-bottom-tabs/commit/1c5b38565c464e612c3be715bded1f8950efc5d4) Thanks [@oscnord](https://github.com/oscnord)! - Fix tvOS compilation due to unavailable APIs + +- [#519](https://github.com/callstack/react-native-bottom-tabs/pull/519) [`2ebe13b`](https://github.com/callstack/react-native-bottom-tabs/commit/2ebe13bef3a19b3c4168c741275ff00d96604cd7) Thanks [@thiagobrez](https://github.com/thiagobrez)! - Keep iOS tab transitions smooth when switching between tabs with and without active tint colors. + ## 1.2.0 ### Minor Changes diff --git a/packages/react-native-bottom-tabs/package.json b/packages/react-native-bottom-tabs/package.json index d0c28f5e..82271705 100644 --- a/packages/react-native-bottom-tabs/package.json +++ b/packages/react-native-bottom-tabs/package.json @@ -1,6 +1,6 @@ { "name": "react-native-bottom-tabs", - "version": "1.2.0", + "version": "1.3.0", "description": "Native Bottom Tabs for React Native", "source": "./src/index.tsx", "main": "./lib/module/index.js", diff --git a/packages/react-navigation/CHANGELOG.md b/packages/react-navigation/CHANGELOG.md index 3369570b..8466ba14 100644 --- a/packages/react-navigation/CHANGELOG.md +++ b/packages/react-navigation/CHANGELOG.md @@ -1,5 +1,7 @@ # @bottom-tabs/react-navigation +## 1.3.0 + ## 1.2.0 ### Minor Changes diff --git a/packages/react-navigation/package.json b/packages/react-navigation/package.json index 5dc3f6db..1f5a7173 100644 --- a/packages/react-navigation/package.json +++ b/packages/react-navigation/package.json @@ -1,6 +1,6 @@ { "name": "@bottom-tabs/react-navigation", - "version": "1.2.0", + "version": "1.3.0", "description": "React Native Bottom Tabs React Navigation integration", "source": "./src/index.tsx", "main": "./lib/commonjs/index.js", diff --git a/yarn.lock b/yarn.lock index 786c9aea..854010b0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2721,7 +2721,7 @@ __metadata: resolution: "@bottom-tabs/expo-template@workspace:packages/expo-template" dependencies: "@babel/core": "npm:^7.28.4" - "@bottom-tabs/react-navigation": "npm:1.2.0" + "@bottom-tabs/react-navigation": "npm:1.3.0" "@expo/vector-icons": "npm:^14.0.2" "@react-navigation/native": "npm:^7.2.2" "@types/jest": "npm:^29.5.12" @@ -2745,7 +2745,7 @@ __metadata: react: "npm:^19.1.0" react-dom: "npm:18.3.1" react-native: "npm:0.81.4" - react-native-bottom-tabs: "npm:1.2.0" + react-native-bottom-tabs: "npm:1.3.0" react-native-gesture-handler: "npm:^2.28.0" react-native-reanimated: "npm:^4.1.0" react-native-safe-area-context: "npm:^5.6.1" @@ -2778,7 +2778,7 @@ __metadata: languageName: unknown linkType: soft -"@bottom-tabs/react-navigation@npm:*, @bottom-tabs/react-navigation@npm:1.2.0, @bottom-tabs/react-navigation@workspace:packages/react-navigation": +"@bottom-tabs/react-navigation@npm:*, @bottom-tabs/react-navigation@npm:1.3.0, @bottom-tabs/react-navigation@workspace:packages/react-navigation": version: 0.0.0-use.local resolution: "@bottom-tabs/react-navigation@workspace:packages/react-navigation" dependencies: @@ -16107,7 +16107,7 @@ __metadata: languageName: unknown linkType: soft -"react-native-bottom-tabs@npm:*, react-native-bottom-tabs@npm:1.2.0, react-native-bottom-tabs@workspace:packages/react-native-bottom-tabs": +"react-native-bottom-tabs@npm:*, react-native-bottom-tabs@npm:1.3.0, react-native-bottom-tabs@workspace:packages/react-native-bottom-tabs": version: 0.0.0-use.local resolution: "react-native-bottom-tabs@workspace:packages/react-native-bottom-tabs" dependencies: