From 47134d7052d328156c11f03ca2e9b15be0af4cb1 Mon Sep 17 00:00:00 2001 From: Satyajit Sahoo Date: Sun, 9 May 2021 06:45:00 +0200 Subject: [PATCH] chore: publish - @react-navigation/bottom-tabs@6.0.0-next.7 - @react-navigation/core@6.0.0-next.4 - @react-navigation/devtools@6.0.0-next.4 - @react-navigation/drawer@6.0.0-next.6 - @react-navigation/elements@1.0.0-next.6 - @react-navigation/material-bottom-tabs@6.0.0-next.4 - @react-navigation/material-top-tabs@6.0.0-next.5 - @react-navigation/native@6.0.0-next.4 - @react-navigation/stack@6.0.0-next.11 --- packages/bottom-tabs/CHANGELOG.md | 12 ++++++++++ packages/bottom-tabs/package.json | 6 ++--- packages/core/CHANGELOG.md | 12 ++++++++++ packages/core/package.json | 2 +- packages/devtools/CHANGELOG.md | 8 +++++++ packages/devtools/package.json | 4 ++-- packages/drawer/CHANGELOG.md | 12 ++++++++++ packages/drawer/package.json | 6 ++--- packages/elements/CHANGELOG.md | 11 +++++++++ packages/elements/package.json | 4 ++-- packages/material-bottom-tabs/CHANGELOG.md | 8 +++++++ packages/material-bottom-tabs/package.json | 4 ++-- packages/material-top-tabs/CHANGELOG.md | 8 +++++++ packages/material-top-tabs/package.json | 4 ++-- packages/native/CHANGELOG.md | 12 ++++++++++ packages/native/package.json | 4 ++-- packages/stack/CHANGELOG.md | 28 ++++++++++++++++++++++ packages/stack/package.json | 6 ++--- 18 files changed, 131 insertions(+), 20 deletions(-) diff --git a/packages/bottom-tabs/CHANGELOG.md b/packages/bottom-tabs/CHANGELOG.md index 8cf63b33..7d84a4ae 100644 --- a/packages/bottom-tabs/CHANGELOG.md +++ b/packages/bottom-tabs/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0-next.7](https://github.com/react-navigation/react-navigation/compare/@react-navigation/bottom-tabs@6.0.0-next.6...@react-navigation/bottom-tabs@6.0.0-next.7) (2021-05-09) + + +### Bug Fixes + +* enable screens only on supported platforms ([#9494](https://github.com/react-navigation/react-navigation/issues/9494)) ([8da4c58](https://github.com/react-navigation/react-navigation/commit/8da4c58065607d44e9dc1ad8943e09537598dcd7)) +* make sure disabling react-native-screens works ([a369ba3](https://github.com/react-navigation/react-navigation/commit/a369ba36451ddc2bb5b247e61b725bce1e3fb5e5)) + + + + + # [6.0.0-next.6](https://github.com/react-navigation/react-navigation/compare/@react-navigation/bottom-tabs@6.0.0-next.5...@react-navigation/bottom-tabs@6.0.0-next.6) (2021-05-01) **Note:** Version bump only for package @react-navigation/bottom-tabs diff --git a/packages/bottom-tabs/package.json b/packages/bottom-tabs/package.json index 398a35d3..e9340824 100644 --- a/packages/bottom-tabs/package.json +++ b/packages/bottom-tabs/package.json @@ -1,7 +1,7 @@ { "name": "@react-navigation/bottom-tabs", "description": "Bottom tab navigator following iOS design guidelines", - "version": "6.0.0-next.6", + "version": "6.0.0-next.7", "keywords": [ "react-native-component", "react-component", @@ -36,12 +36,12 @@ "clean": "del lib" }, "dependencies": { - "@react-navigation/elements": "^1.0.0-next.5", + "@react-navigation/elements": "^1.0.0-next.6", "color": "^3.1.3", "warn-once": "^0.0.1" }, "devDependencies": { - "@react-navigation/native": "^6.0.0-next.3", + "@react-navigation/native": "^6.0.0-next.4", "@testing-library/react-native": "^7.2.0", "@types/color": "^3.0.1", "@types/react": "^16.9.53", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index b2653e0d..cc55e3d5 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0-next.4](https://github.com/react-navigation/react-navigation/compare/@react-navigation/core@6.0.0-next.3...@react-navigation/core@6.0.0-next.4) (2021-05-09) + + +### Features + +* add a new component to group multiple screens with common options ([1a6aebe](https://github.com/react-navigation/react-navigation/commit/1a6aebefcb77ea708687475c55742407d69808ce)) +* add ability to specify root param list ([b28bfdd](https://github.com/react-navigation/react-navigation/commit/b28bfddc17cbf3996fac04a34b2a7085ecf88be5)) + + + + + # [6.0.0-next.3](https://github.com/react-navigation/react-navigation/compare/@react-navigation/core@6.0.0-next.2...@react-navigation/core@6.0.0-next.3) (2021-05-01) diff --git a/packages/core/package.json b/packages/core/package.json index 30e9d9b0..3692847a 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,7 +1,7 @@ { "name": "@react-navigation/core", "description": "Core utilities for building navigators", - "version": "6.0.0-next.3", + "version": "6.0.0-next.4", "keywords": [ "react", "react-native", diff --git a/packages/devtools/CHANGELOG.md b/packages/devtools/CHANGELOG.md index a203c955..c46da7ce 100644 --- a/packages/devtools/CHANGELOG.md +++ b/packages/devtools/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0-next.4](https://github.com/react-navigation/react-navigation/compare/@react-navigation/devtools@6.0.0-next.3...@react-navigation/devtools@6.0.0-next.4) (2021-05-09) + +**Note:** Version bump only for package @react-navigation/devtools + + + + + # [6.0.0-next.3](https://github.com/react-navigation/react-navigation/compare/@react-navigation/devtools@6.0.0-next.2...@react-navigation/devtools@6.0.0-next.3) (2021-05-01) diff --git a/packages/devtools/package.json b/packages/devtools/package.json index 00ab60b8..b6c0fcd4 100644 --- a/packages/devtools/package.json +++ b/packages/devtools/package.json @@ -1,7 +1,7 @@ { "name": "@react-navigation/devtools", "description": "Developer tools for React Navigation", - "version": "6.0.0-next.3", + "version": "6.0.0-next.4", "keywords": [ "react", "react-native", @@ -36,7 +36,7 @@ "clean": "del lib" }, "dependencies": { - "@react-navigation/core": "^6.0.0-next.3", + "@react-navigation/core": "^6.0.0-next.4", "deep-equal": "^2.0.5" }, "devDependencies": { diff --git a/packages/drawer/CHANGELOG.md b/packages/drawer/CHANGELOG.md index ae03cb9f..76e06eb8 100644 --- a/packages/drawer/CHANGELOG.md +++ b/packages/drawer/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0-next.6](https://github.com/react-navigation/react-navigation/compare/@react-navigation/drawer@6.0.0-next.5...@react-navigation/drawer@6.0.0-next.6) (2021-05-09) + + +### Bug Fixes + +* enable screens only on supported platforms ([#9494](https://github.com/react-navigation/react-navigation/issues/9494)) ([8da4c58](https://github.com/react-navigation/react-navigation/commit/8da4c58065607d44e9dc1ad8943e09537598dcd7)) +* make sure disabling react-native-screens works ([a369ba3](https://github.com/react-navigation/react-navigation/commit/a369ba36451ddc2bb5b247e61b725bce1e3fb5e5)) + + + + + # [6.0.0-next.5](https://github.com/react-navigation/react-navigation/compare/@react-navigation/drawer@6.0.0-next.4...@react-navigation/drawer@6.0.0-next.5) (2021-05-01) **Note:** Version bump only for package @react-navigation/drawer diff --git a/packages/drawer/package.json b/packages/drawer/package.json index c190b8e3..93d8a371 100644 --- a/packages/drawer/package.json +++ b/packages/drawer/package.json @@ -1,7 +1,7 @@ { "name": "@react-navigation/drawer", "description": "Drawer navigator component with animated transitions and gesturess", - "version": "6.0.0-next.5", + "version": "6.0.0-next.6", "keywords": [ "react-native-component", "react-component", @@ -41,12 +41,12 @@ "clean": "del lib" }, "dependencies": { - "@react-navigation/elements": "^1.0.0-next.5", + "@react-navigation/elements": "^1.0.0-next.6", "color": "^3.1.3", "warn-once": "^0.0.1" }, "devDependencies": { - "@react-navigation/native": "^6.0.0-next.3", + "@react-navigation/native": "^6.0.0-next.4", "@testing-library/react-native": "^7.2.0", "@types/react": "^16.9.53", "@types/react-native": "~0.64.4", diff --git a/packages/elements/CHANGELOG.md b/packages/elements/CHANGELOG.md index cb5a8b65..e28062be 100644 --- a/packages/elements/CHANGELOG.md +++ b/packages/elements/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.0.0-next.6](https://github.com/react-navigation/react-navigation/compare/@react-navigation/elements@1.0.0-next.5...@react-navigation/elements@1.0.0-next.6) (2021-05-09) + + +### Bug Fixes + +* animate pressable opacity ([459fd27](https://github.com/react-navigation/react-navigation/commit/459fd270503075343b71ad446efdc2517eedcf21)) + + + + + # [1.0.0-next.5](https://github.com/react-navigation/react-navigation/compare/@react-navigation/elements@1.0.0-next.4...@react-navigation/elements@1.0.0-next.5) (2021-05-01) **Note:** Version bump only for package @react-navigation/elements diff --git a/packages/elements/package.json b/packages/elements/package.json index 02c6e3f6..6c6b3dca 100644 --- a/packages/elements/package.json +++ b/packages/elements/package.json @@ -1,7 +1,7 @@ { "name": "@react-navigation/elements", "description": "UI Components for React Navigation", - "version": "1.0.0-next.5", + "version": "1.0.0-next.6", "keywords": [ "react-native", "react-navigation", @@ -38,7 +38,7 @@ }, "devDependencies": { "@react-native-masked-view/masked-view": "^0.2.3", - "@react-navigation/native": "^6.0.0-next.3", + "@react-navigation/native": "^6.0.0-next.4", "@testing-library/react-native": "^7.2.0", "@types/react": "^16.9.53", "@types/react-native": "~0.64.4", diff --git a/packages/material-bottom-tabs/CHANGELOG.md b/packages/material-bottom-tabs/CHANGELOG.md index adb20b70..d8772c2e 100644 --- a/packages/material-bottom-tabs/CHANGELOG.md +++ b/packages/material-bottom-tabs/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0-next.4](https://github.com/react-navigation/react-navigation/compare/@react-navigation/material-bottom-tabs@6.0.0-next.3...@react-navigation/material-bottom-tabs@6.0.0-next.4) (2021-05-09) + +**Note:** Version bump only for package @react-navigation/material-bottom-tabs + + + + + # [6.0.0-next.3](https://github.com/react-navigation/react-navigation/compare/@react-navigation/material-bottom-tabs@6.0.0-next.2...@react-navigation/material-bottom-tabs@6.0.0-next.3) (2021-05-01) **Note:** Version bump only for package @react-navigation/material-bottom-tabs diff --git a/packages/material-bottom-tabs/package.json b/packages/material-bottom-tabs/package.json index dbea4b29..60b53ff9 100644 --- a/packages/material-bottom-tabs/package.json +++ b/packages/material-bottom-tabs/package.json @@ -1,7 +1,7 @@ { "name": "@react-navigation/material-bottom-tabs", "description": "Integration for bottom navigation component from react-native-paper", - "version": "6.0.0-next.3", + "version": "6.0.0-next.4", "keywords": [ "react-native-component", "react-component", @@ -41,7 +41,7 @@ "clean": "del lib" }, "devDependencies": { - "@react-navigation/native": "^6.0.0-next.3", + "@react-navigation/native": "^6.0.0-next.4", "@testing-library/react-native": "^7.2.0", "@types/react": "^16.9.53", "@types/react-native": "~0.64.4", diff --git a/packages/material-top-tabs/CHANGELOG.md b/packages/material-top-tabs/CHANGELOG.md index 0282f68b..df8edadb 100644 --- a/packages/material-top-tabs/CHANGELOG.md +++ b/packages/material-top-tabs/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0-next.5](https://github.com/react-navigation/react-navigation/compare/@react-navigation/material-top-tabs@6.0.0-next.4...@react-navigation/material-top-tabs@6.0.0-next.5) (2021-05-09) + +**Note:** Version bump only for package @react-navigation/material-top-tabs + + + + + # [6.0.0-next.4](https://github.com/react-navigation/react-navigation/compare/@react-navigation/material-top-tabs@6.0.0-next.3...@react-navigation/material-top-tabs@6.0.0-next.4) (2021-05-01) **Note:** Version bump only for package @react-navigation/material-top-tabs diff --git a/packages/material-top-tabs/package.json b/packages/material-top-tabs/package.json index bf20d8ac..6fd2891d 100644 --- a/packages/material-top-tabs/package.json +++ b/packages/material-top-tabs/package.json @@ -1,7 +1,7 @@ { "name": "@react-navigation/material-top-tabs", "description": "Integration for the animated tab view component from react-native-tab-view", - "version": "6.0.0-next.4", + "version": "6.0.0-next.5", "keywords": [ "react-native-component", "react-component", @@ -45,7 +45,7 @@ "warn-once": "^0.0.1" }, "devDependencies": { - "@react-navigation/native": "^6.0.0-next.3", + "@react-navigation/native": "^6.0.0-next.4", "@testing-library/react-native": "^7.2.0", "@types/react": "^16.9.53", "@types/react-native": "~0.64.4", diff --git a/packages/native/CHANGELOG.md b/packages/native/CHANGELOG.md index c3be706d..fb6ac386 100644 --- a/packages/native/CHANGELOG.md +++ b/packages/native/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0-next.4](https://github.com/react-navigation/react-navigation/compare/@react-navigation/native@6.0.0-next.3...@react-navigation/native@6.0.0-next.4) (2021-05-09) + + +### Features + +* add ability to specify root param list ([b28bfdd](https://github.com/react-navigation/react-navigation/commit/b28bfddc17cbf3996fac04a34b2a7085ecf88be5)) +* support navigate-like object in Link ([1478659](https://github.com/react-navigation/react-navigation/commit/14786594c004d8176570f1a4ab013b57b3180665)) + + + + + # [6.0.0-next.3](https://github.com/react-navigation/react-navigation/compare/@react-navigation/native@6.0.0-next.2...@react-navigation/native@6.0.0-next.3) (2021-05-01) diff --git a/packages/native/package.json b/packages/native/package.json index b393c2a5..9c65f3d9 100644 --- a/packages/native/package.json +++ b/packages/native/package.json @@ -1,7 +1,7 @@ { "name": "@react-navigation/native", "description": "React Native integration for React Navigation", - "version": "6.0.0-next.3", + "version": "6.0.0-next.4", "keywords": [ "react-native", "react-navigation", @@ -37,7 +37,7 @@ "clean": "del lib" }, "dependencies": { - "@react-navigation/core": "^6.0.0-next.3", + "@react-navigation/core": "^6.0.0-next.4", "escape-string-regexp": "^4.0.0", "nanoid": "^3.1.22" }, diff --git a/packages/stack/CHANGELOG.md b/packages/stack/CHANGELOG.md index c5b1fe31..9854dfbc 100644 --- a/packages/stack/CHANGELOG.md +++ b/packages/stack/CHANGELOG.md @@ -3,6 +3,34 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0-next.11](https://github.com/react-navigation/react-navigation/compare/@react-navigation/stack@6.0.0-next.10...@react-navigation/stack@6.0.0-next.11) (2021-05-09) + + +### Bug Fixes + +* enable screens only on supported platforms ([#9494](https://github.com/react-navigation/react-navigation/issues/9494)) ([8da4c58](https://github.com/react-navigation/react-navigation/commit/8da4c58065607d44e9dc1ad8943e09537598dcd7)) +* make sure disabling react-native-screens works ([a369ba3](https://github.com/react-navigation/react-navigation/commit/a369ba36451ddc2bb5b247e61b725bce1e3fb5e5)) + + +### Code Refactoring + +* drop mode prop in favor of animationPresentation option ([9ac709e](https://github.com/react-navigation/react-navigation/commit/9ac709ea1e5a63c3a48abfa334ff6a6925095a72)) + + +### Features + +* automatically set headerMode if it's modal presentation style ([4bb0b43](https://github.com/react-navigation/react-navigation/commit/4bb0b43f1a0f27c96843415de6eaa37edebfb561)) +* support mixing regular and modal presentation in same stack ([60fa3b9](https://github.com/react-navigation/react-navigation/commit/60fa3b9be976a73a5b04b632b4b37672674c956b)) + + +### BREAKING CHANGES + +* This drops the mode prop on the navigator in favor of a per-screen option animationPresentation + + + + + # [6.0.0-next.10](https://github.com/react-navigation/react-navigation/compare/@react-navigation/stack@6.0.0-next.9...@react-navigation/stack@6.0.0-next.10) (2021-05-01) **Note:** Version bump only for package @react-navigation/stack diff --git a/packages/stack/package.json b/packages/stack/package.json index dc2b6461..11f2f223 100644 --- a/packages/stack/package.json +++ b/packages/stack/package.json @@ -1,7 +1,7 @@ { "name": "@react-navigation/stack", "description": "Stack navigator component for iOS and Android with animated transitions and gestures", - "version": "6.0.0-next.10", + "version": "6.0.0-next.11", "keywords": [ "react-native-component", "react-component", @@ -40,13 +40,13 @@ "clean": "del lib" }, "dependencies": { - "@react-navigation/elements": "^1.0.0-next.5", + "@react-navigation/elements": "^1.0.0-next.6", "color": "^3.1.3", "react-native-iphone-x-helper": "^1.3.0", "warn-once": "^0.0.1" }, "devDependencies": { - "@react-navigation/native": "^6.0.0-next.3", + "@react-navigation/native": "^6.0.0-next.4", "@testing-library/react-native": "^7.2.0", "@types/color": "^3.0.1", "@types/react": "^16.9.53",