Skip to content

Commit 12a6719

Browse files
chore: Update version for release (#14395)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 62aed9e commit 12a6719

File tree

26 files changed

+69
-93
lines changed

26 files changed

+69
-93
lines changed

.changeset/happy-hornets-judge.md

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

.changeset/pre.json

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

.changeset/twelve-dogs-pump.md

Lines changed: 0 additions & 5 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `create-react-router`
22

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

55
## 7.9.2
66

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.3-pre.0",
3+
"version": "7.9.3",
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.3-pre.0
3+
## 7.9.3
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.2
1212

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

3333
We have removed the `unstable_` prefix from the following APIs and they are now considered stable and ready for production use:
34+
3435
- [`RouterContextProvider`](https://reactrouter.com/api/utils/RouterContextProvider)
3536
- [`createContext`](https://reactrouter.com/api/utils/createContext)
3637
- `createBrowserRouter` [`getContext`](https://reactrouter.com/api/data-routers/createBrowserRouter#optsgetcontext) option
@@ -254,6 +255,7 @@
254255
### Major Changes
255256

256257
- 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))
258+
257259
- `createCookie`
258260
- `createCookieSessionStorage`
259261
- `createMemorySessionStorage`
@@ -262,6 +264,7 @@
262264
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)
263265

264266
Since platform-specific packages no longer need to implement this API, the following low-level APIs have been removed:
267+
265268
- `createCookieFactory`
266269
- `createSessionStorageFactory`
267270
- `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.3-pre.0",
3+
"version": "7.9.3",
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.3-pre.0
3+
## 7.9.3
44

55
### Patch Changes
66

77
- Updated dependencies:
8-
8+
99

1010
## 7.9.2
1111

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

3030
We have removed the `unstable_` prefix from the following APIs and they are now considered stable and ready for production use:
31+
3132
- [`RouterContextProvider`](https://reactrouter.com/api/utils/RouterContextProvider)
3233
- [`createContext`](https://reactrouter.com/api/utils/createContext)
3334
- `createBrowserRouter` [`getContext`](https://reactrouter.com/api/data-routers/createBrowserRouter#optsgetcontext) option
@@ -226,6 +227,7 @@
226227

227228
- 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))
228229
- 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))
230+
229231
- `createCookie`
230232
- `createCookieSessionStorage`
231233
- `createMemorySessionStorage`
@@ -234,6 +236,7 @@
234236
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)
235237

236238
Since platform-specific packages no longer need to implement this API, the following low-level APIs have been removed:
239+
237240
- `createCookieFactory`
238241
- `createSessionStorageFactory`
239242
- `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.3-pre.0",
3+
"version": "7.9.3",
44
"description": "Cloudflare platform abstractions for React Router",
55
"bugs": {
66
"url": "https://github.com/remix-run/react-router/issues"

0 commit comments

Comments
 (0)