From a70adfbca1cfc3141a6dffb99e685563a7d52a08 Mon Sep 17 00:00:00 2001 From: Satyajit Sahoo Date: Thu, 1 Jul 2021 03:08:40 +0200 Subject: [PATCH] chore: publish - @react-navigation/bottom-tabs@6.0.0-next.20 - @react-navigation/core@6.0.0-next.15 - @react-navigation/devtools@6.0.0-next.16 - @react-navigation/drawer@6.0.0-next.19 - @react-navigation/elements@1.0.0-next.19 - flipper-plugin-react-navigation@1.3.0 - @react-navigation/material-bottom-tabs@6.0.0-next.16 - @react-navigation/material-top-tabs@6.0.0-next.16 - @react-navigation/native-stack@6.0.0-next.9 - @react-navigation/native@6.0.0-next.15 - @react-navigation/routers@6.0.0-next.6 - @react-navigation/stack@6.0.0-next.27 --- packages/bottom-tabs/CHANGELOG.md | 8 ++++++++ packages/bottom-tabs/package.json | 6 +++--- packages/core/CHANGELOG.md | 16 ++++++++++++++++ packages/core/package.json | 4 ++-- packages/devtools/CHANGELOG.md | 11 +++++++++++ packages/devtools/package.json | 4 ++-- packages/drawer/CHANGELOG.md | 8 ++++++++ packages/drawer/package.json | 6 +++--- packages/elements/CHANGELOG.md | 8 ++++++++ packages/elements/package.json | 4 ++-- .../flipper-plugin-react-navigation/CHANGELOG.md | 11 +++++++++++ .../flipper-plugin-react-navigation/package.json | 4 ++-- packages/material-bottom-tabs/CHANGELOG.md | 8 ++++++++ packages/material-bottom-tabs/package.json | 6 +++--- packages/material-top-tabs/CHANGELOG.md | 8 ++++++++ packages/material-top-tabs/package.json | 4 ++-- packages/native-stack/CHANGELOG.md | 8 ++++++++ packages/native-stack/package.json | 6 +++--- packages/native/CHANGELOG.md | 11 +++++++++++ packages/native/package.json | 4 ++-- packages/routers/CHANGELOG.md | 8 ++++++++ packages/routers/package.json | 2 +- packages/stack/CHANGELOG.md | 8 ++++++++ packages/stack/package.json | 6 +++--- 24 files changed, 141 insertions(+), 28 deletions(-) diff --git a/packages/bottom-tabs/CHANGELOG.md b/packages/bottom-tabs/CHANGELOG.md index f26d2aed..d9068905 100644 --- a/packages/bottom-tabs/CHANGELOG.md +++ b/packages/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.20](https://github.com/react-navigation/react-navigation/compare/@react-navigation/bottom-tabs@6.0.0-next.18...@react-navigation/bottom-tabs@6.0.0-next.20) (2021-07-01) + +**Note:** Version bump only for package @react-navigation/bottom-tabs + + + + + # [6.0.0-next.19](https://github.com/react-navigation/react-navigation/compare/@react-navigation/bottom-tabs@6.0.0-next.18...@react-navigation/bottom-tabs@6.0.0-next.19) (2021-06-10) **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 98070cf8..d3803af0 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.19", + "version": "6.0.0-next.20", "keywords": [ "react-native-component", "react-component", @@ -36,12 +36,12 @@ "clean": "del lib" }, "dependencies": { - "@react-navigation/elements": "^1.0.0-next.18", + "@react-navigation/elements": "^1.0.0-next.19", "color": "^3.1.3", "warn-once": "^0.1.0" }, "devDependencies": { - "@react-navigation/native": "^6.0.0-next.14", + "@react-navigation/native": "^6.0.0-next.15", "@testing-library/react-native": "^7.2.0", "@types/color": "^3.0.1", "@types/react": "^17.0.9", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 4cf04aff..60002b3e 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,22 @@ 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.15](https://github.com/react-navigation/react-navigation/compare/@react-navigation/core@6.0.0-next.13...@react-navigation/core@6.0.0-next.15) (2021-07-01) + + +### Bug Fixes + +* fix typechecking in linking config ([b1134c8](https://github.com/react-navigation/react-navigation/commit/b1134c8a34f96be2817cb780c4bd23b2025b4c35)) + + +### Features + +* show stack trace in the flipper plugin ([97772af](https://github.com/react-navigation/react-navigation/commit/97772affa3c8f26489f0bdbfb6872ef4377b8ed1)) + + + + + # [6.0.0-next.14](https://github.com/react-navigation/react-navigation/compare/@react-navigation/core@6.0.0-next.13...@react-navigation/core@6.0.0-next.14) (2021-06-10) diff --git a/packages/core/package.json b/packages/core/package.json index 1517e794..4264c0e6 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.14", + "version": "6.0.0-next.15", "keywords": [ "react", "react-native", @@ -35,7 +35,7 @@ "clean": "del lib" }, "dependencies": { - "@react-navigation/routers": "^6.0.0-next.5", + "@react-navigation/routers": "^6.0.0-next.6", "escape-string-regexp": "^4.0.0", "nanoid": "^3.1.23", "query-string": "^7.0.0", diff --git a/packages/devtools/CHANGELOG.md b/packages/devtools/CHANGELOG.md index 82aa8a10..60c4c361 100644 --- a/packages/devtools/CHANGELOG.md +++ b/packages/devtools/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. +# [6.0.0-next.16](https://github.com/react-navigation/react-navigation/compare/@react-navigation/devtools@6.0.0-next.14...@react-navigation/devtools@6.0.0-next.16) (2021-07-01) + + +### Features + +* show stack trace in the flipper plugin ([97772af](https://github.com/react-navigation/react-navigation/commit/97772affa3c8f26489f0bdbfb6872ef4377b8ed1)) + + + + + # [6.0.0-next.15](https://github.com/react-navigation/react-navigation/compare/@react-navigation/devtools@6.0.0-next.14...@react-navigation/devtools@6.0.0-next.15) (2021-06-10) diff --git a/packages/devtools/package.json b/packages/devtools/package.json index 4e174e16..b76c1db5 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.15", + "version": "6.0.0-next.16", "keywords": [ "react", "react-native", @@ -40,7 +40,7 @@ "nanoid": "^3.1.23" }, "devDependencies": { - "@react-navigation/core": "^6.0.0-next.14", + "@react-navigation/core": "^6.0.0-next.15", "@testing-library/react-native": "^7.2.0", "@types/deep-equal": "^1.0.1", "@types/react": "^17.0.9", diff --git a/packages/drawer/CHANGELOG.md b/packages/drawer/CHANGELOG.md index 5b33bc58..296dff16 100644 --- a/packages/drawer/CHANGELOG.md +++ b/packages/drawer/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.19](https://github.com/react-navigation/react-navigation/compare/@react-navigation/drawer@6.0.0-next.17...@react-navigation/drawer@6.0.0-next.19) (2021-07-01) + +**Note:** Version bump only for package @react-navigation/drawer + + + + + # [6.0.0-next.18](https://github.com/react-navigation/react-navigation/compare/@react-navigation/drawer@6.0.0-next.17...@react-navigation/drawer@6.0.0-next.18) (2021-06-10) **Note:** Version bump only for package @react-navigation/drawer diff --git a/packages/drawer/package.json b/packages/drawer/package.json index 1cdedf39..5ce9de0b 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.18", + "version": "6.0.0-next.19", "keywords": [ "react-native-component", "react-component", @@ -41,12 +41,12 @@ "clean": "del lib" }, "dependencies": { - "@react-navigation/elements": "^1.0.0-next.18", + "@react-navigation/elements": "^1.0.0-next.19", "color": "^3.1.3", "warn-once": "^0.1.0" }, "devDependencies": { - "@react-navigation/native": "^6.0.0-next.14", + "@react-navigation/native": "^6.0.0-next.15", "@testing-library/react-native": "^7.2.0", "@types/react": "^17.0.9", "@types/react-native": "~0.64.9", diff --git a/packages/elements/CHANGELOG.md b/packages/elements/CHANGELOG.md index 2fb4df99..72752ceb 100644 --- a/packages/elements/CHANGELOG.md +++ b/packages/elements/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. +# [1.0.0-next.19](https://github.com/react-navigation/react-navigation/compare/@react-navigation/elements@1.0.0-next.17...@react-navigation/elements@1.0.0-next.19) (2021-07-01) + +**Note:** Version bump only for package @react-navigation/elements + + + + + # [1.0.0-next.18](https://github.com/react-navigation/react-navigation/compare/@react-navigation/elements@1.0.0-next.17...@react-navigation/elements@1.0.0-next.18) (2021-06-10) **Note:** Version bump only for package @react-navigation/elements diff --git a/packages/elements/package.json b/packages/elements/package.json index 6c8befe5..40e7fb26 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.18", + "version": "1.0.0-next.19", "keywords": [ "react-native", "react-navigation", @@ -38,7 +38,7 @@ }, "devDependencies": { "@react-native-masked-view/masked-view": "^0.2.4", - "@react-navigation/native": "^6.0.0-next.14", + "@react-navigation/native": "^6.0.0-next.15", "@testing-library/react-native": "^7.2.0", "@types/react": "^17.0.9", "@types/react-native": "~0.64.9", diff --git a/packages/flipper-plugin-react-navigation/CHANGELOG.md b/packages/flipper-plugin-react-navigation/CHANGELOG.md index 4649b1d5..43441a49 100644 --- a/packages/flipper-plugin-react-navigation/CHANGELOG.md +++ b/packages/flipper-plugin-react-navigation/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.3.0](https://github.com/react-navigation/react-navigation/compare/flipper-plugin-react-navigation@1.1.4...flipper-plugin-react-navigation@1.3.0) (2021-07-01) + + +### Features + +* show stack trace in the flipper plugin ([97772af](https://github.com/react-navigation/react-navigation/commit/97772affa3c8f26489f0bdbfb6872ef4377b8ed1)) + + + + + # [1.2.0](https://github.com/react-navigation/react-navigation/compare/flipper-plugin-react-navigation@1.1.4...flipper-plugin-react-navigation@1.2.0) (2021-06-10) diff --git a/packages/flipper-plugin-react-navigation/package.json b/packages/flipper-plugin-react-navigation/package.json index 24775a58..d2037d29 100644 --- a/packages/flipper-plugin-react-navigation/package.json +++ b/packages/flipper-plugin-react-navigation/package.json @@ -2,7 +2,7 @@ "$schema": "https://fbflipper.com/schemas/plugin-package/v2.json", "name": "flipper-plugin-react-navigation", "description": "Developer tools for React Navigation", - "version": "1.2.0", + "version": "1.3.0", "main": "dist/bundle.js", "license": "MIT", "keywords": [ @@ -34,7 +34,7 @@ "@ant-design/icons": "^4.6.2", "@babel/preset-react": "^7.12.13", "@babel/preset-typescript": "^7.13.0", - "@react-navigation/core": "^6.0.0-next.14", + "@react-navigation/core": "^6.0.0-next.15", "@types/react": "^17.0.9", "@types/react-dom": "^17.0.6", "antd": "^4.16.1", diff --git a/packages/material-bottom-tabs/CHANGELOG.md b/packages/material-bottom-tabs/CHANGELOG.md index 5fe925bc..ad41bad4 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.16](https://github.com/react-navigation/react-navigation/compare/@react-navigation/material-bottom-tabs@6.0.0-next.14...@react-navigation/material-bottom-tabs@6.0.0-next.16) (2021-07-01) + +**Note:** Version bump only for package @react-navigation/material-bottom-tabs + + + + + # [6.0.0-next.15](https://github.com/react-navigation/react-navigation/compare/@react-navigation/material-bottom-tabs@6.0.0-next.14...@react-navigation/material-bottom-tabs@6.0.0-next.15) (2021-06-10) **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 97345566..cb18caf2 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.15", + "version": "6.0.0-next.16", "keywords": [ "react-native-component", "react-component", @@ -41,10 +41,10 @@ "clean": "del lib" }, "dependencies": { - "@react-navigation/elements": "^1.0.0-next.18" + "@react-navigation/elements": "^1.0.0-next.19" }, "devDependencies": { - "@react-navigation/native": "^6.0.0-next.14", + "@react-navigation/native": "^6.0.0-next.15", "@testing-library/react-native": "^7.2.0", "@types/react": "^17.0.9", "@types/react-native": "~0.64.9", diff --git a/packages/material-top-tabs/CHANGELOG.md b/packages/material-top-tabs/CHANGELOG.md index a6580a2d..137653bb 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.16](https://github.com/react-navigation/react-navigation/compare/@react-navigation/material-top-tabs@6.0.0-next.14...@react-navigation/material-top-tabs@6.0.0-next.16) (2021-07-01) + +**Note:** Version bump only for package @react-navigation/material-top-tabs + + + + + # [6.0.0-next.15](https://github.com/react-navigation/react-navigation/compare/@react-navigation/material-top-tabs@6.0.0-next.14...@react-navigation/material-top-tabs@6.0.0-next.15) (2021-06-10) **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 839f4fc9..bfc7baa1 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.15", + "version": "6.0.0-next.16", "keywords": [ "react-native-component", "react-component", @@ -45,7 +45,7 @@ "warn-once": "^0.1.0" }, "devDependencies": { - "@react-navigation/native": "^6.0.0-next.14", + "@react-navigation/native": "^6.0.0-next.15", "@testing-library/react-native": "^7.2.0", "@types/react": "^17.0.9", "@types/react-native": "~0.64.9", diff --git a/packages/native-stack/CHANGELOG.md b/packages/native-stack/CHANGELOG.md index 03f59a67..86106bb6 100644 --- a/packages/native-stack/CHANGELOG.md +++ b/packages/native-stack/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.9](https://github.com/react-navigation/react-navigation/compare/@react-navigation/native-stack@6.0.0-next.7...@react-navigation/native-stack@6.0.0-next.9) (2021-07-01) + +**Note:** Version bump only for package @react-navigation/native-stack + + + + + # [6.0.0-next.8](https://github.com/react-navigation/react-navigation/compare/@react-navigation/native-stack@6.0.0-next.7...@react-navigation/native-stack@6.0.0-next.8) (2021-06-10) **Note:** Version bump only for package @react-navigation/native-stack diff --git a/packages/native-stack/package.json b/packages/native-stack/package.json index d9e71b4e..74a93d6f 100644 --- a/packages/native-stack/package.json +++ b/packages/native-stack/package.json @@ -1,7 +1,7 @@ { "name": "@react-navigation/native-stack", "description": "Native stack navigator using react-native-screens", - "version": "6.0.0-next.8", + "version": "6.0.0-next.9", "keywords": [ "react-native-component", "react-component", @@ -41,11 +41,11 @@ "clean": "del lib" }, "dependencies": { - "@react-navigation/elements": "^1.0.0-next.18", + "@react-navigation/elements": "^1.0.0-next.19", "warn-once": "^0.1.0" }, "devDependencies": { - "@react-navigation/native": "^6.0.0-next.14", + "@react-navigation/native": "^6.0.0-next.15", "@testing-library/react-native": "^7.2.0", "@types/react": "^17.0.9", "@types/react-native": "~0.64.9", diff --git a/packages/native/CHANGELOG.md b/packages/native/CHANGELOG.md index 18342ec3..d87fad91 100644 --- a/packages/native/CHANGELOG.md +++ b/packages/native/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. +# [6.0.0-next.15](https://github.com/react-navigation/react-navigation/compare/@react-navigation/native@6.0.0-next.13...@react-navigation/native@6.0.0-next.15) (2021-07-01) + + +### Bug Fixes + +* disable duplicate linking check for independent containers ([20b8ebd](https://github.com/react-navigation/react-navigation/commit/20b8ebd40547d93ccf626fcd9dad327fe1807b52)) + + + + + # [6.0.0-next.14](https://github.com/react-navigation/react-navigation/compare/@react-navigation/native@6.0.0-next.13...@react-navigation/native@6.0.0-next.14) (2021-06-10) **Note:** Version bump only for package @react-navigation/native diff --git a/packages/native/package.json b/packages/native/package.json index 784cbdf5..5f9f8a34 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.14", + "version": "6.0.0-next.15", "keywords": [ "react-native", "react-navigation", @@ -37,7 +37,7 @@ "clean": "del lib" }, "dependencies": { - "@react-navigation/core": "^6.0.0-next.14", + "@react-navigation/core": "^6.0.0-next.15", "escape-string-regexp": "^4.0.0", "nanoid": "^3.1.23" }, diff --git a/packages/routers/CHANGELOG.md b/packages/routers/CHANGELOG.md index 845a2d4a..4a6aa349 100644 --- a/packages/routers/CHANGELOG.md +++ b/packages/routers/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.6](https://github.com/react-navigation/react-navigation/compare/@react-navigation/routers@6.0.0-next.4...@react-navigation/routers@6.0.0-next.6) (2021-07-01) + +**Note:** Version bump only for package @react-navigation/routers + + + + + # [6.0.0-next.5](https://github.com/react-navigation/react-navigation/compare/@react-navigation/routers@6.0.0-next.4...@react-navigation/routers@6.0.0-next.5) (2021-06-10) **Note:** Version bump only for package @react-navigation/routers diff --git a/packages/routers/package.json b/packages/routers/package.json index dbf39e7c..8a026e6d 100644 --- a/packages/routers/package.json +++ b/packages/routers/package.json @@ -1,7 +1,7 @@ { "name": "@react-navigation/routers", "description": "Routers to help build custom navigators", - "version": "6.0.0-next.5", + "version": "6.0.0-next.6", "keywords": [ "react", "react-native", diff --git a/packages/stack/CHANGELOG.md b/packages/stack/CHANGELOG.md index c70dff75..4aab3e03 100644 --- a/packages/stack/CHANGELOG.md +++ b/packages/stack/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.27](https://github.com/react-navigation/react-navigation/compare/@react-navigation/stack@6.0.0-next.25...@react-navigation/stack@6.0.0-next.27) (2021-07-01) + +**Note:** Version bump only for package @react-navigation/stack + + + + + # [6.0.0-next.26](https://github.com/react-navigation/react-navigation/compare/@react-navigation/stack@6.0.0-next.25...@react-navigation/stack@6.0.0-next.26) (2021-06-10) **Note:** Version bump only for package @react-navigation/stack diff --git a/packages/stack/package.json b/packages/stack/package.json index b05a9365..c81564f4 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.26", + "version": "6.0.0-next.27", "keywords": [ "react-native-component", "react-component", @@ -40,13 +40,13 @@ "clean": "del lib" }, "dependencies": { - "@react-navigation/elements": "^1.0.0-next.18", + "@react-navigation/elements": "^1.0.0-next.19", "color": "^3.1.3", "react-native-iphone-x-helper": "^1.3.0", "warn-once": "^0.1.0" }, "devDependencies": { - "@react-navigation/native": "^6.0.0-next.14", + "@react-navigation/native": "^6.0.0-next.15", "@testing-library/react-native": "^7.2.0", "@types/color": "^3.0.1", "@types/react": "^17.0.9",