create-react-router 8.0.0-pre.1 → 8.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/dist/cli.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# `create-react-router`
|
|
2
2
|
|
|
3
|
+
## v8.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- Switch from `@remix-run/web-fetch` to native `fetch` internally. ([#14929](https://github.com/remix-run/react-router/pull/14929))
|
|
8
|
+
- This removes the underlying `HTTPS_PROXY` support that `node-fetch` and subsequently `@remix-run/web-fetch` supported
|
|
9
|
+
- Update minimum Node version to 22.22.0 ([#15143](https://github.com/remix-run/react-router/pull/15143))
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- Bump dependencies ([#15080](https://github.com/remix-run/react-router/pull/15080))
|
|
14
|
+
- Bumped `execa` from `5.1.1` to `9.6.1`
|
|
15
|
+
- Bumped `log-update` from `^5.0.1` to `^8.0.0`
|
|
16
|
+
- Bumped `semver` from `^7.3.7` to `^7.8.1`
|
|
17
|
+
- Bumped `sort-package-json` from `^1.55.0` to `^3.6.1`
|
|
18
|
+
- Bumped `strip-ansi` from `^6.0.1` to `^7.2.0`
|
|
19
|
+
- Bumped `tar-fs` from `^2.1.3` to `^3.1.2`
|
|
20
|
+
|
|
3
21
|
## v7.18.0
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/cli.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/**
|
|
3
|
-
* create-react-router v8.0.0
|
|
3
|
+
* create-react-router v8.0.0
|
|
4
4
|
*
|
|
5
5
|
* Copyright (c) Remix Software Inc.
|
|
6
6
|
*
|
|
@@ -1239,7 +1239,7 @@ var CopyTemplateError = class extends Error {
|
|
|
1239
1239
|
};
|
|
1240
1240
|
//#endregion
|
|
1241
1241
|
//#region package.json
|
|
1242
|
-
var version = "8.0.0
|
|
1242
|
+
var version = "8.0.0";
|
|
1243
1243
|
//#endregion
|
|
1244
1244
|
//#region index.ts
|
|
1245
1245
|
async function createReactRouter(argv) {
|