Skip to content

Commit 8b1ee67

Browse files
chore: Update version for release (#11080)
* chore: Update version for release * Update changelogs * Update to new markdown alert syntax * Fix missing close paren * Add note on versions the fix was included in --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Matt Brophy <[email protected]>
1 parent a18ca5a commit 8b1ee67

File tree

14 files changed

+31
-51
lines changed

14 files changed

+31
-51
lines changed

.changeset/pre.json

-14
This file was deleted.

.changeset/revert-resolve-to-fix.md

-7
This file was deleted.

CHANGELOG.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -158,13 +158,14 @@ To add a new release, copy from this template:
158158

159159
- Revert the `useResolvedPath` fix for splat routes due to a large number of applications that were relying on the buggy behavior (see [#11052](https://github.com/remix-run/react-router/issues/11052#issuecomment-1836589329)) ([#11078](https://github.com/remix-run/react-router/pull/11078))
160160
- We plan to re-introduce this fix behind a future flag in the next minor version (see [this comment](https://github.com/remix-run/react-router/issues/11052#issuecomment-1836589329))
161+
- This fix was included in versions `6.19.0` and `6.20.0`. If you are upgrading from `6.18.0` or earlier, you would not have been impacted by this fix.
161162

162163
**Full Changelog**: [`v6.20.0...v6.20.1`](https://github.com/remix-run/react-router/compare/[email protected]@6.20.1)
163164

164165
## v6.20.0
165166

166-
> **Warning**
167-
> Please use version `6.20.1` or later instead of `6.20.0`. We discovered that a large number of apps were relying on buggy behavior that was fixed in this release ([#11045](https://github.com/remix-run/react-router/pull/11045). We reverted the fix in `6.20.1` and will be re-introducing it behind a future flag in a subsequent release. See [#11052](https://github.com/remix-run/react-router/issues/11052#issuecomment-1836589329) for more details.
167+
> [!WARNING]
168+
> Please use version `6.20.1` or later instead of `6.20.0`. We discovered that a large number of apps were relying on buggy behavior that was fixed in this release ([#11045](https://github.com/remix-run/react-router/pull/11045)). We reverted the fix in `6.20.1` and will be re-introducing it behind a future flag in a subsequent release. See [#11052](https://github.com/remix-run/react-router/issues/11052#issuecomment-1836589329) for more details.
168169
169170
### Minor Changes
170171

@@ -181,8 +182,8 @@ To add a new release, copy from this template:
181182

182183
## v6.19.0
183184

184-
> **Warning**
185-
> Please use version `6.20.1` or later instead of `6.19.0`. We discovered that a large number of apps were relying on buggy behavior that was fixed in this release ([#10983](https://github.com/remix-run/react-router/pull/10983). We reverted the fix in `6.20.1` and will be re-introducing it behind a future flag in a subsequent release. See [#11052](https://github.com/remix-run/react-router/issues/11052#issuecomment-1836589329) for more details.
185+
> [!WARNING]
186+
> Please use version `6.20.1` or later instead of `6.19.0`. We discovered that a large number of apps were relying on buggy behavior that was fixed in this release ([#10983](https://github.com/remix-run/react-router/pull/10983)). We reverted the fix in `6.20.1` and will be re-introducing it behind a future flag in a subsequent release. See [#11052](https://github.com/remix-run/react-router/issues/11052#issuecomment-1836589329) for more details.
186187
187188
### What's Changed
188189

@@ -526,7 +527,7 @@ We recommend folks adopt this flag sooner rather than later to be better compati
526527

527528
## v6.12.1
528529

529-
> **Warning**
530+
> [!WARNING]
530531
> Please use version `6.13.0` or later instead of `6.12.0`/`6.12.1`. These versions suffered from some Webpack build/minification issues resulting failed builds or invalid minified code in your production bundles. See [#10569](https://github.com/remix-run/react-router/pull/10569) and [#10579](https://github.com/remix-run/react-router/issues/10579) for more details.
531532
532533
### Patch Changes
@@ -537,7 +538,7 @@ We recommend folks adopt this flag sooner rather than later to be better compati
537538

538539
## v6.12.0
539540

540-
> **Warning**
541+
> [!WARNING]
541542
> Please use version `6.13.0` or later instead of `6.12.0`/`6.12.1`. These versions suffered from some Webpack build/minification issues resulting failed builds or invalid minified code in your production bundles. See [#10569](https://github.com/remix-run/react-router/pull/10569) and [#10579](https://github.com/remix-run/react-router/issues/10579) for more details.
542543
543544
### What's Changed

packages/react-router-dom-v5-compat/CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# `react-router-dom-v5-compat`
22

3-
## 6.20.1-pre.0
3+
## 6.20.1
44

55
### Patch Changes
66

77
- Updated dependencies:
8-
9-
8+
9+
1010

1111
## 6.20.0
1212

packages/react-router-dom-v5-compat/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router-dom-v5-compat",
3-
"version": "6.20.1-pre.0",
3+
"version": "6.20.1",
44
"description": "Migration path to React Router v6 from v4/5",
55
"keywords": [
66
"react",
@@ -24,7 +24,7 @@
2424
"types": "./dist/index.d.ts",
2525
"dependencies": {
2626
"history": "^5.3.0",
27-
"react-router": "6.20.1-pre.0"
27+
"react-router": "6.20.1"
2828
},
2929
"peerDependencies": {
3030
"react": ">=16.8",

packages/react-router-dom/CHANGELOG.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# `react-router-dom`
22

3-
## 6.20.1-pre.0
3+
## 6.20.1
44

55
### Patch Changes
66

77
- Revert the `useResolvedPath` fix for splat routes due to a large number of applications that were relying on the buggy behavior (see https://github.com/remix-run/react-router/issues/11052#issuecomment-1836589329). We plan to re-introduce this fix behind a future flag in the next minor version. ([#11078](https://github.com/remix-run/react-router/pull/11078))
88
- Updated dependencies:
9-
10-
- `@remix-run/[email protected]-pre.0`
9+
10+
- `@remix-run/[email protected]`
1111

1212
## 6.20.0
1313

@@ -259,7 +259,7 @@
259259

260260
## 6.12.1
261261

262-
> **Warning**
262+
> [!WARNING]
263263
> Please use version `6.13.0` or later instead of `6.12.1`. This version suffers from a `webpack`/`terser` minification issue resulting in invalid minified code in your resulting production bundles which can cause issues in your application. See [#10579](https://github.com/remix-run/react-router/issues/10579) for more details.
264264
265265
### Patch Changes

packages/react-router-dom/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router-dom",
3-
"version": "6.20.1-pre.0",
3+
"version": "6.20.1",
44
"description": "Declarative routing for React web applications",
55
"keywords": [
66
"react",
@@ -23,8 +23,8 @@
2323
"module": "./dist/index.js",
2424
"types": "./dist/index.d.ts",
2525
"dependencies": {
26-
"@remix-run/router": "1.13.1-pre.0",
27-
"react-router": "6.20.1-pre.0"
26+
"@remix-run/router": "1.13.1",
27+
"react-router": "6.20.1"
2828
},
2929
"devDependencies": {
3030
"react": "^18.2.0",

packages/react-router-native/CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# `react-router-native`
22

3-
## 6.20.1-pre.0
3+
## 6.20.1
44

55
### Patch Changes
66

77
- Updated dependencies:
8-
8+
99

1010
## 6.20.0
1111

packages/react-router-native/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router-native",
3-
"version": "6.20.1-pre.0",
3+
"version": "6.20.1",
44
"description": "Declarative routing for React Native applications",
55
"keywords": [
66
"react",
@@ -22,7 +22,7 @@
2222
"types": "./dist/index.d.ts",
2323
"dependencies": {
2424
"@ungap/url-search-params": "^0.2.2",
25-
"react-router": "6.20.1-pre.0"
25+
"react-router": "6.20.1"
2626
},
2727
"devDependencies": {
2828
"react": "^18.2.0",

packages/react-router/CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# `react-router`
22

3-
## 6.20.1-pre.0
3+
## 6.20.1
44

55
### Patch Changes
66

77
- Revert the `useResolvedPath` fix for splat routes due to a large number of applications that were relying on the buggy behavior (see https://github.com/remix-run/react-router/issues/11052#issuecomment-1836589329). We plan to re-introduce this fix behind a future flag in the next minor version. ([#11078](https://github.com/remix-run/react-router/pull/11078))
88
- Updated dependencies:
9-
- `@remix-run/[email protected]-pre.0`
9+
- `@remix-run/[email protected]`
1010

1111
## 6.20.0
1212

@@ -144,7 +144,7 @@
144144

145145
## 6.12.1
146146

147-
> **Warning**
147+
> [!WARNING]
148148
> Please use version `6.13.0` or later instead of `6.12.1`. This version suffers from a `webpack`/`terser` minification issue resulting in invalid minified code in your resulting production bundles which can cause issues in your application. See [#10579](https://github.com/remix-run/react-router/issues/10579) for more details.
149149
150150
### Patch Changes

packages/react-router/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-router",
3-
"version": "6.20.1-pre.0",
3+
"version": "6.20.1",
44
"description": "Declarative routing for React",
55
"keywords": [
66
"react",
@@ -23,7 +23,7 @@
2323
"module": "./dist/index.js",
2424
"types": "./dist/index.d.ts",
2525
"dependencies": {
26-
"@remix-run/router": "1.13.1-pre.0"
26+
"@remix-run/router": "1.13.1"
2727
},
2828
"devDependencies": {
2929
"react": "^18.2.0"

packages/router/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `@remix-run/router`
22

3-
## 1.13.1-pre.0
3+
## 1.13.1
44

55
### Patch Changes
66

packages/router/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The `@remix-run/router` package is a framework-agnostic routing package (sometim
44

55
If you're using React Router, you should never `import` anything directly from the `@remix-run/router` - you should have everything you need in `react-router-dom` (or `react-router`/`react-router-native` if you're not rendering in the browser). All of those packages should re-export everything you would otherwise need from `@remix-run/router`.
66

7-
> **Warning**
7+
> [!WARNING]
88
>
99
> This router is a low-level package intended to be consumed by UI layer routing libraries. You should very likely not be using this package directly unless you are authoring a routing library such as [`react-router-dom`][react-router-repo] or one of it's other [UI ports][remix-routers-repo].
1010

packages/router/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@remix-run/router",
3-
"version": "1.13.1-pre.0",
3+
"version": "1.13.1",
44
"description": "Nested/Data-driven/Framework-agnostic Routing",
55
"keywords": [
66
"remix",

0 commit comments

Comments
 (0)