Skip to content

Commit

Permalink
chore: Update version for release (#11080)
Browse files Browse the repository at this point in the history
* 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 <matt@brophy.org>
  • Loading branch information
3 people committed Dec 1, 2023
1 parent a18ca5a commit 8b1ee67
Show file tree
Hide file tree
Showing 14 changed files with 31 additions and 51 deletions.
14 changes: 0 additions & 14 deletions .changeset/pre.json

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/revert-resolve-to-fix.md

This file was deleted.

13 changes: 7 additions & 6 deletions CHANGELOG.md
Expand Up @@ -158,13 +158,14 @@ To add a new release, copy from this template:

- 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))
- 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))
- 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.

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

## v6.20.0

> **Warning**
> 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.
> [!WARNING]
> 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.
### Minor Changes

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

## v6.19.0

> **Warning**
> 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.
> [!WARNING]
> 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.
### What's Changed

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

## v6.12.1

> **Warning**
> [!WARNING]
> 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.
### Patch Changes
Expand All @@ -537,7 +538,7 @@ We recommend folks adopt this flag sooner rather than later to be better compati

## v6.12.0

> **Warning**
> [!WARNING]
> 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.
### What's Changed
Expand Down
6 changes: 3 additions & 3 deletions packages/react-router-dom-v5-compat/CHANGELOG.md
@@ -1,12 +1,12 @@
# `react-router-dom-v5-compat`

## 6.20.1-pre.0
## 6.20.1

### Patch Changes

- Updated dependencies:
- `react-router-dom@6.20.1-pre.0`
- `react-router@6.20.1-pre.0`
- `react-router-dom@6.20.1`
- `react-router@6.20.1`

## 6.20.0

Expand Down
4 changes: 2 additions & 2 deletions packages/react-router-dom-v5-compat/package.json
@@ -1,6 +1,6 @@
{
"name": "react-router-dom-v5-compat",
"version": "6.20.1-pre.0",
"version": "6.20.1",
"description": "Migration path to React Router v6 from v4/5",
"keywords": [
"react",
Expand All @@ -24,7 +24,7 @@
"types": "./dist/index.d.ts",
"dependencies": {
"history": "^5.3.0",
"react-router": "6.20.1-pre.0"
"react-router": "6.20.1"
},
"peerDependencies": {
"react": ">=16.8",
Expand Down
8 changes: 4 additions & 4 deletions packages/react-router-dom/CHANGELOG.md
@@ -1,13 +1,13 @@
# `react-router-dom`

## 6.20.1-pre.0
## 6.20.1

### Patch Changes

- 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))
- Updated dependencies:
- `react-router@6.20.1-pre.0`
- `@remix-run/router@1.13.1-pre.0`
- `react-router@6.20.1`
- `@remix-run/router@1.13.1`

## 6.20.0

Expand Down Expand Up @@ -259,7 +259,7 @@

## 6.12.1

> **Warning**
> [!WARNING]
> 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.
### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/react-router-dom/package.json
@@ -1,6 +1,6 @@
{
"name": "react-router-dom",
"version": "6.20.1-pre.0",
"version": "6.20.1",
"description": "Declarative routing for React web applications",
"keywords": [
"react",
Expand All @@ -23,8 +23,8 @@
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"@remix-run/router": "1.13.1-pre.0",
"react-router": "6.20.1-pre.0"
"@remix-run/router": "1.13.1",
"react-router": "6.20.1"
},
"devDependencies": {
"react": "^18.2.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/react-router-native/CHANGELOG.md
@@ -1,11 +1,11 @@
# `react-router-native`

## 6.20.1-pre.0
## 6.20.1

### Patch Changes

- Updated dependencies:
- `react-router@6.20.1-pre.0`
- `react-router@6.20.1`

## 6.20.0

Expand Down
4 changes: 2 additions & 2 deletions packages/react-router-native/package.json
@@ -1,6 +1,6 @@
{
"name": "react-router-native",
"version": "6.20.1-pre.0",
"version": "6.20.1",
"description": "Declarative routing for React Native applications",
"keywords": [
"react",
Expand All @@ -22,7 +22,7 @@
"types": "./dist/index.d.ts",
"dependencies": {
"@ungap/url-search-params": "^0.2.2",
"react-router": "6.20.1-pre.0"
"react-router": "6.20.1"
},
"devDependencies": {
"react": "^18.2.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/react-router/CHANGELOG.md
@@ -1,12 +1,12 @@
# `react-router`

## 6.20.1-pre.0
## 6.20.1

### Patch Changes

- 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))
- Updated dependencies:
- `@remix-run/router@1.13.1-pre.0`
- `@remix-run/router@1.13.1`

## 6.20.0

Expand Down Expand Up @@ -144,7 +144,7 @@

## 6.12.1

> **Warning**
> [!WARNING]
> 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.
### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/react-router/package.json
@@ -1,6 +1,6 @@
{
"name": "react-router",
"version": "6.20.1-pre.0",
"version": "6.20.1",
"description": "Declarative routing for React",
"keywords": [
"react",
Expand All @@ -23,7 +23,7 @@
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"@remix-run/router": "1.13.1-pre.0"
"@remix-run/router": "1.13.1"
},
"devDependencies": {
"react": "^18.2.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/router/CHANGELOG.md
@@ -1,6 +1,6 @@
# `@remix-run/router`

## 1.13.1-pre.0
## 1.13.1

### Patch Changes

Expand Down
2 changes: 1 addition & 1 deletion packages/router/README.md
Expand Up @@ -4,7 +4,7 @@ The `@remix-run/router` package is a framework-agnostic routing package (sometim

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`.

> **Warning**
> [!WARNING]
>
> 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].
Expand Down
2 changes: 1 addition & 1 deletion packages/router/package.json
@@ -1,6 +1,6 @@
{
"name": "@remix-run/router",
"version": "1.13.1-pre.0",
"version": "1.13.1",
"description": "Nested/Data-driven/Framework-agnostic Routing",
"keywords": [
"remix",
Expand Down

0 comments on commit 8b1ee67

Please sign in to comment.