Skip to content

Commit 4a9a2a3

Browse files
chore: Update version for release (#14330)
* chore: Update version for release * Update changelogs --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Matt Brophy <[email protected]>
1 parent 85b3ef9 commit 4a9a2a3

File tree

25 files changed

+71
-86
lines changed

25 files changed

+71
-86
lines changed

.changeset/kind-tools-suffer.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/pre.json

Lines changed: 0 additions & 42 deletions
This file was deleted.

integration/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Minor Changes
66

77
- Unstable Vite support for Node-based Remix apps ([#7590](https://github.com/remix-run/remix/pull/7590))
8+
89
- `remix build` 👉 `vite build && vite build --ssr`
910
- `remix dev` 👉 `vite dev`
1011

packages/create-react-router/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# `create-react-router`
22

3-
## 7.9.1-pre.0
3+
## 7.9.1
4+
5+
_No changes_
46

57
## 7.9.0
68

packages/create-react-router/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-react-router",
3-
"version": "7.9.1-pre.0",
3+
"version": "7.9.1",
44
"description": "Create a new React Router app",
55
"homepage": "https://reactrouter.com",
66
"bugs": {

packages/react-router-architect/CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# `@react-router/architect`
22

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

55
### Patch Changes
66

77
- Updated dependencies:
8-
9-
- `@react-router/[email protected]-pre.0`
8+
9+
- `@react-router/[email protected]`
1010

1111
## 7.9.0
1212

@@ -15,6 +15,7 @@
1515
- Stabilize middleware and context APIs. ([#14215](https://github.com/remix-run/react-router/pull/14215))
1616

1717
We have removed the `unstable_` prefix from the following APIs and they are now considered stable and ready for production use:
18+
1819
- [`RouterContextProvider`](https://reactrouter.com/api/utils/RouterContextProvider)
1920
- [`createContext`](https://reactrouter.com/api/utils/createContext)
2021
- `createBrowserRouter` [`getContext`](https://reactrouter.com/api/data-routers/createBrowserRouter#optsgetcontext) option
@@ -238,6 +239,7 @@
238239
### Major Changes
239240

240241
- For Remix consumers migrating to React Router, the `crypto` global from the [Web Crypto API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API) is now required when using cookie and session APIs. This means that the following APIs are provided from `react-router` rather than platform-specific packages: ([#11837](https://github.com/remix-run/react-router/pull/11837))
242+
241243
- `createCookie`
242244
- `createCookieSessionStorage`
243245
- `createMemorySessionStorage`
@@ -246,6 +248,7 @@
246248
For consumers running older versions of Node, the `installGlobals` function from `@remix-run/node` has been updated to define `globalThis.crypto`, using [Node's `require('node:crypto').webcrypto` implementation.](https://nodejs.org/api/webcrypto.html)
247249

248250
Since platform-specific packages no longer need to implement this API, the following low-level APIs have been removed:
251+
249252
- `createCookieFactory`
250253
- `createSessionStorageFactory`
251254
- `createCookieSessionStorageFactory`

packages/react-router-architect/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-router/architect",
3-
"version": "7.9.1-pre.0",
3+
"version": "7.9.1",
44
"description": "Architect server request handler for React Router",
55
"bugs": {
66
"url": "https://github.com/remix-run/react-router/issues"

packages/react-router-cloudflare/CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# `@react-router/cloudflare`
22

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

55
### Patch Changes
66

77
- Updated dependencies:
8-
8+
99

1010
## 7.9.0
1111

@@ -14,6 +14,7 @@
1414
- Stabilize middleware and context APIs. ([#14215](https://github.com/remix-run/react-router/pull/14215))
1515

1616
We have removed the `unstable_` prefix from the following APIs and they are now considered stable and ready for production use:
17+
1718
- [`RouterContextProvider`](https://reactrouter.com/api/utils/RouterContextProvider)
1819
- [`createContext`](https://reactrouter.com/api/utils/createContext)
1920
- `createBrowserRouter` [`getContext`](https://reactrouter.com/api/data-routers/createBrowserRouter#optsgetcontext) option
@@ -212,6 +213,7 @@
212213

213214
- For Remix consumers migrating to React Router, all exports from `@remix-run/cloudflare-pages` are now provided for React Router consumers in the `@react-router/cloudflare` package. There is no longer a separate package for Cloudflare Pages. ([#11801](https://github.com/remix-run/react-router/pull/11801))
214215
- For Remix consumers migrating to React Router, the `crypto` global from the [Web Crypto API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API) is now required when using cookie and session APIs. This means that the following APIs are provided from `react-router` rather than platform-specific packages: ([#11837](https://github.com/remix-run/react-router/pull/11837))
216+
215217
- `createCookie`
216218
- `createCookieSessionStorage`
217219
- `createMemorySessionStorage`
@@ -220,6 +222,7 @@
220222
For consumers running older versions of Node, the `installGlobals` function from `@remix-run/node` has been updated to define `globalThis.crypto`, using [Node's `require('node:crypto').webcrypto` implementation.](https://nodejs.org/api/webcrypto.html)
221223

222224
Since platform-specific packages no longer need to implement this API, the following low-level APIs have been removed:
225+
223226
- `createCookieFactory`
224227
- `createSessionStorageFactory`
225228
- `createCookieSessionStorageFactory`

packages/react-router-cloudflare/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-router/cloudflare",
3-
"version": "7.9.1-pre.0",
3+
"version": "7.9.1",
44
"description": "Cloudflare platform abstractions for React Router",
55
"bugs": {
66
"url": "https://github.com/remix-run/react-router/issues"

packages/react-router-dev/CHANGELOG.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# `@react-router/dev`
22

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

55
### Patch Changes
66

77
- Fix internal `Future` interface naming from `middleware` -> `v8_middleware` ([#14327](https://github.com/remix-run/react-router/pull/14327))
88
- Updated dependencies:
9-
10-
- `@react-router/[email protected]-pre.0`
11-
- `@react-router/[email protected]-pre.0`
9+
10+
- `@react-router/[email protected]`
11+
- `@react-router/[email protected]`
1212

1313
## 7.9.0
1414

@@ -17,6 +17,7 @@
1717
- Stabilize middleware and context APIs. ([#14215](https://github.com/remix-run/react-router/pull/14215))
1818

1919
We have removed the `unstable_` prefix from the following APIs and they are now considered stable and ready for production use:
20+
2021
- [`RouterContextProvider`](https://reactrouter.com/api/utils/RouterContextProvider)
2122
- [`createContext`](https://reactrouter.com/api/utils/createContext)
2223
- `createBrowserRouter` [`getContext`](https://reactrouter.com/api/data-routers/createBrowserRouter#optsgetcontext) option
@@ -759,6 +760,7 @@
759760
```
760761
761762
This initial implementation targets type inference for:
763+
762764
- `Params` : Path parameters from your routing config in `routes.ts` including file-based routing
763765
- `LoaderData` : Loader data from `loader` and/or `clientLoader` within your route module
764766
- `ActionData` : Action data from `action` and/or `clientAction` within your route module
@@ -773,6 +775,7 @@
773775
```
774776
775777
Check out our docs for more:
778+
776779
- [_Explanations > Type Safety_](https://reactrouter.com/dev/guides/explanation/type-safety)
777780
- [_How-To > Setting up type safety_](https://reactrouter.com/dev/guides/how-to/setting-up-type-safety)
778781
@@ -972,6 +975,7 @@
972975
- Vite: Provide `Unstable_ServerBundlesFunction` and `Unstable_VitePluginConfig` types ([#8654](https://github.com/remix-run/remix/pull/8654))
973976
974977
- Vite: add `--sourcemapClient` and `--sourcemapServer` flags to `remix vite:build` ([#8613](https://github.com/remix-run/remix/pull/8613))
978+
975979
- `--sourcemapClient`
976980
977981
- `--sourcemapClient=inline`
@@ -1308,6 +1312,7 @@
13081312
- Add support for `clientLoader`/`clientAction`/`HydrateFallback` route exports ([RFC](https://github.com/remix-run/remix/discussions/7634)) ([#8173](https://github.com/remix-run/remix/pull/8173))
13091313
13101314
Remix now supports loaders/actions that run on the client (in addition to, or instead of the loader/action that runs on the server). While we still recommend server loaders/actions for the majority of your data needs in a Remix app - these provide some levers you can pull for more advanced use-cases such as:
1315+
13111316
- Leveraging a data source local to the browser (i.e., `localStorage`)
13121317
- Managing a client-side cache of server data (like `IndexedDB`)
13131318
- Bypassing the Remix server in a BFF setup and hitting your API directly from the browser
@@ -1711,6 +1716,7 @@
17111716
- Output esbuild metafiles for bundle analysis ([#6772](https://github.com/remix-run/remix/pull/6772))
17121717
17131718
Written to server build directory (`build/` by default):
1719+
17141720
- `metafile.css.json`
17151721
- `metafile.js.json` (browser JS)
17161722
- `metafile.server.json` (server JS)
@@ -1808,6 +1814,7 @@
18081814
- built-in tls support ([#6483](https://github.com/remix-run/remix/pull/6483))
18091815
18101816
New options:
1817+
18111818
- `--tls-key` / `tlsKey`: TLS key
18121819
- `--tls-cert` / `tlsCert`: TLS Certificate
18131820
@@ -2078,6 +2085,7 @@
20782085
```
20792086
20802087
The dev server will:
2088+
20812089
- force `NODE_ENV=development` and warn you if it was previously set to something else
20822090
- rebuild your app whenever your Remix app code changes
20832091
- restart your app server whenever rebuilds succeed

0 commit comments

Comments
 (0)