You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+61-32
Original file line number
Diff line number
Diff line change
@@ -13,126 +13,128 @@ We manage release notes in this file instead of the paginated Github Releases Pa
13
13
<summary>Table of Contents</summary>
14
14
15
15
-[Remix Releases](#remix-releases)
16
+
-[v2.15.0](#v2150)
17
+
-[Patch Changes](#patch-changes)
16
18
-[v2.14.0](#v2140)
17
19
-[Minor Changes](#minor-changes)
18
-
-[Patch Changes](#patch-changes)
20
+
-[Patch Changes](#patch-changes-1)
19
21
-[Updated Dependencies](#updated-dependencies)
20
22
-[Changes by Package](#changes-by-package)
21
23
-[v2.13.1](#v2131)
22
-
-[Patch Changes](#patch-changes-1)
24
+
-[Patch Changes](#patch-changes-2)
23
25
-[v2.13.0](#v2130)
24
26
-[What's Changed](#whats-changed)
25
27
-[Stabilized APIs](#stabilized-apis)
26
28
-[Minor Changes](#minor-changes-1)
27
-
-[Patch Changes](#patch-changes-2)
29
+
-[Patch Changes](#patch-changes-3)
28
30
-[Updated Dependencies](#updated-dependencies-1)
29
31
-[Changes by Package](#changes-by-package-1)
30
32
-[v2.12.1](#v2121)
31
-
-[Patch Changes](#patch-changes-3)
33
+
-[Patch Changes](#patch-changes-4)
32
34
-[Changes by Package](#changes-by-package-2)
33
35
-[v2.12.0](#v2120)
34
36
-[What's Changed](#whats-changed-1)
35
37
-[Future Flag for Automatic Dependency Optimization (unstable)](#future-flag-for-automatic-dependency-optimization-unstable)
36
38
-[Improved Single Fetch Type Safety (unstable)](#improved-single-fetch-type-safety-unstable)
37
39
-[Updates to Single Fetch Revalidation Behavior (unstable)](#updates-to-single-fetch-revalidation-behavior-unstable)
38
40
-[Minor Changes](#minor-changes-2)
39
-
-[Patch Changes](#patch-changes-4)
41
+
-[Patch Changes](#patch-changes-5)
40
42
-[Updated Dependencies](#updated-dependencies-2)
41
43
-[Changes by Package](#changes-by-package-3)
42
44
-[v2.11.2](#v2112)
43
-
-[Patch Changes](#patch-changes-5)
45
+
-[Patch Changes](#patch-changes-6)
44
46
-[Updated Dependencies](#updated-dependencies-3)
45
47
-[Changes by Package](#changes-by-package-4)
46
48
-[v2.11.1](#v2111)
47
-
-[Patch Changes](#patch-changes-6)
49
+
-[Patch Changes](#patch-changes-7)
48
50
-[Changes by Package](#changes-by-package-5)
49
51
-[v2.11.0](#v2110)
50
52
-[What's Changed](#whats-changed-2)
51
53
-[Renamed `unstable_fogOfWar` future flag to `unstable_lazyRouteDiscovery` (unstable)](#renamed-unstable_fogofwar-future-flag-to-unstable_lazyroutediscovery-unstable)
52
54
-[Removed `response` stub in Single Fetch (unstable)](#removed-response-stub-in-single-fetch-unstable)
53
55
-[Minor Changes](#minor-changes-3)
54
-
-[Patch Changes](#patch-changes-7)
56
+
-[Patch Changes](#patch-changes-8)
55
57
-[Updated Dependencies](#updated-dependencies-4)
56
58
-[Changes by Package](#changes-by-package-6)
57
59
-[v2.10.3](#v2103)
58
-
-[Patch Changes](#patch-changes-8)
60
+
-[Patch Changes](#patch-changes-9)
59
61
-[Updated Dependencies](#updated-dependencies-5)
60
62
-[Changes by Package](#changes-by-package-7)
61
63
-[v2.10.2](#v2102)
62
-
-[Patch Changes](#patch-changes-9)
64
+
-[Patch Changes](#patch-changes-10)
63
65
-[Changes by Package](#changes-by-package-8)
64
66
-[v2.10.1](#v2101)
65
-
-[Patch Changes](#patch-changes-10)
67
+
-[Patch Changes](#patch-changes-11)
66
68
-[Updated Dependencies](#updated-dependencies-6)
67
69
-[Changes by Package](#changes-by-package-9)
68
70
-[v2.10.0](#v2100)
69
71
-[What's Changed](#whats-changed-3)
70
72
-[Lazy Route Discovery (a.k.a. "Fog of War")](#lazy-route-discovery-aka-fog-of-war)
71
73
-[Minor Changes](#minor-changes-4)
72
-
-[Patch Changes](#patch-changes-11)
74
+
-[Patch Changes](#patch-changes-12)
73
75
-[Updated Dependencies](#updated-dependencies-7)
74
76
-[Changes by Package](#changes-by-package-10)
75
77
-[v2.9.2](#v292)
76
78
-[What's Changed](#whats-changed-4)
77
79
-[Updated Type-Safety for Single Fetch](#updated-type-safety-for-single-fetch)
- Stabilize the `future.v3_routeConfig` future flag, replacing `future.unstable_routeConfig`. This enables support for `routes.ts` to assist with the migration to React Router v7. ([#10236](https://github.com/remix-run/remix/pull/10236))
260
+
261
+
Note that if you had already enabled the `future.unstable_routeConfig` flag, your route config in `app/routes.ts` is no longer defined via the `routes` export and must now be defined via the default export.
262
+
263
+
```diff
264
+
import { type RouteConfig } from "@remix-run/route-config";
265
+
266
+
-export const routes: RouteConfig = [];
267
+
+export default [] satisfies RouteConfig;
268
+
```
269
+
241
270
## v2.14.0
242
271
243
272
Date: 2024-11-08
@@ -277,8 +306,8 @@ Date: 2024-11-08
277
306
278
307
### Patch Changes
279
308
280
-
- Fix `defaultShouldRevalidate` value when using single fetch ([#10139](https://github.com/remix-run/remix/pull/10139))
281
-
- Update externally-accessed resource routes warning to cover null usage as well ([#10145](https://github.com/remix-run/remix/pull/10145))
309
+
-`@remix-run/react` - Fix `defaultShouldRevalidate` value when using Single Fetch ([#10139](https://github.com/remix-run/remix/pull/10139))
310
+
-`@remix-run/server-runtime` - Update externally-accessed resource routes warning to cover `null` usage as well ([#10145](https://github.com/remix-run/remix/pull/10145))
0 commit comments