Skip to content

Commit 2e77924

Browse files
authored
docs(*): fix GitHub links to point to main branch (#10731)
1 parent 3973880 commit 2e77924

File tree

26 files changed

+39
-39
lines changed

26 files changed

+39
-39
lines changed

packages/fetch-proxy/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `fetch-proxy` CHANGELOG
22

3-
This is the changelog for [`fetch-proxy`](https://github.com/remix-run/remix/tree/v3/packages/fetch-proxy). It follows [semantic versioning](https://semver.org/).
3+
This is the changelog for [`fetch-proxy`](https://github.com/remix-run/remix/tree/main/packages/fetch-proxy). It follows [semantic versioning](https://semver.org/).
44

55
## v0.5.0 (2025-07-24)
66

packages/fetch-proxy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ assert(title.includes('Remix'))
4444

4545
## Related Packages
4646

47-
- [`node-fetch-server`](https://github.com/remix-run/remix/tree/v3/packages/node-fetch-server) - Build HTTP servers for Node.js using the web fetch API
47+
- [`node-fetch-server`](https://github.com/remix-run/remix/tree/main/packages/node-fetch-server) - Build HTTP servers for Node.js using the web fetch API
4848

4949
## License
5050

packages/fetch-proxy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"url": "git+https://github.com/remix-run/remix.git",
1010
"directory": "packages/fetch-proxy"
1111
},
12-
"homepage": "https://github.com/remix-run/remix/tree/v3/packages/fetch-proxy#readme",
12+
"homepage": "https://github.com/remix-run/remix/tree/main/packages/fetch-proxy#readme",
1313
"files": [
1414
"LICENSE",
1515
"README.md",

packages/file-storage/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `file-storage` CHANGELOG
22

3-
This is the changelog for [`file-storage`](https://github.com/remix-run/remix/tree/v3/packages/file-storage). It follows [semantic versioning](https://semver.org/).
3+
This is the changelog for [`file-storage`](https://github.com/remix-run/remix/tree/main/packages/file-storage). It follows [semantic versioning](https://semver.org/).
44

55
## v0.9.0 (2025-07-25)
66

packages/file-storage/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ class CustomFileStorage implements FileStorage {
7575

7676
## Related Packages
7777

78-
- [`form-data-parser`](https://github.com/remix-run/remix/tree/v3/packages/form-data-parser) - Pairs well with this library for storing `FileUpload` objects received in `multipart/form-data` requests
79-
- [`lazy-file`](https://github.com/remix-run/remix/tree/v3/packages/lazy-file) - The streaming `File` implementation used internally to stream files from storage
78+
- [`form-data-parser`](https://github.com/remix-run/remix/tree/main/packages/form-data-parser) - Pairs well with this library for storing `FileUpload` objects received in `multipart/form-data` requests
79+
- [`lazy-file`](https://github.com/remix-run/remix/tree/main/packages/lazy-file) - The streaming `File` implementation used internally to stream files from storage
8080

8181
## License
8282

packages/file-storage/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"url": "git+https://github.com/remix-run/remix.git",
99
"directory": "packages/file-storage"
1010
},
11-
"homepage": "https://github.com/remix-run/remix/tree/v3/packages/file-storage#readme",
11+
"homepage": "https://github.com/remix-run/remix/tree/main/packages/file-storage#readme",
1212
"license": "MIT",
1313
"files": [
1414
"LICENSE",

packages/form-data-parser/CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `form-data-parser` CHANGELOG
22

3-
This is the changelog for [`form-data-parser`](https://github.com/remix-run/remix/tree/v3/packages/form-data-parser). It follows [semantic versioning](https://semver.org/).
3+
This is the changelog for [`form-data-parser`](https://github.com/remix-run/remix/tree/main/packages/form-data-parser). It follows [semantic versioning](https://semver.org/).
44

55
## v0.10.1 (2025-07-24)
66

@@ -56,8 +56,8 @@ await parseFormData(request, { maxFileSize }, (fileUpload) => {
5656
})
5757
```
5858

59-
- Upgrade [`multipart-parser`](https://github.com/remix-run/remix/tree/v3/packages/multipart-parser) to v0.8 to fix an issue where errors would crash the process when `maxFileSize` was exceeded (see #28)
60-
- Add an [example of how to use `form-data-parser`](https://github.com/remix-run/remix/tree/v3/packages/form-data-parser/examples/node) together with [`file-storage`](https://github.com/remix-run/remix/tree/v3/packages/file-storage) to handle multipart uploads on Node.js
59+
- Upgrade [`multipart-parser`](https://github.com/remix-run/remix/tree/main/packages/multipart-parser) to v0.8 to fix an issue where errors would crash the process when `maxFileSize` was exceeded (see #28)
60+
- Add an [example of how to use `form-data-parser`](https://github.com/remix-run/remix/tree/main/packages/form-data-parser/examples/node) together with [`file-storage`](https://github.com/remix-run/remix/tree/main/packages/file-storage) to handle multipart uploads on Node.js
6161
- Expand `FileUploadHandler` interface to support returning `Blob` from the upload handler, which is the superclass of `File`
6262

6363
## v0.6.0 (2025-01-15)

packages/form-data-parser/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ try {
9898
}
9999
```
100100

101-
If you're looking for a more flexible storage solution for `File` objects that are uploaded, this library pairs really well with [the `file-storage` library](https://github.com/remix-run/remix/tree/v3/packages/file-storage) for keeping files in various storage backends.
101+
If you're looking for a more flexible storage solution for `File` objects that are uploaded, this library pairs really well with [the `file-storage` library](https://github.com/remix-run/remix/tree/main/packages/file-storage) for keeping files in various storage backends.
102102

103103
```ts
104104
import { LocalFileStorage } from '@remix-run/file-storage/local'
@@ -127,8 +127,8 @@ async function uploadHandler(fileUpload: FileUpload) {
127127

128128
## Related Packages
129129

130-
- [`file-storage`](https://github.com/remix-run/remix/tree/v3/packages/file-storage) - A simple key/value interface for storing `FileUpload` objects you get from the parser
131-
- [`multipart-parser`](https://github.com/remix-run/remix/tree/v3/packages/multipart-parser) - The parser used internally for parsing `multipart/form-data` HTTP messages
130+
- [`file-storage`](https://github.com/remix-run/remix/tree/main/packages/file-storage) - A simple key/value interface for storing `FileUpload` objects you get from the parser
131+
- [`multipart-parser`](https://github.com/remix-run/remix/tree/main/packages/multipart-parser) - The parser used internally for parsing `multipart/form-data` HTTP messages
132132

133133
## License
134134

packages/form-data-parser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"url": "git+https://github.com/remix-run/remix.git",
99
"directory": "packages/form-data-parser"
1010
},
11-
"homepage": "https://github.com/remix-run/remix/tree/v3/packages/form-data-parser#readme",
11+
"homepage": "https://github.com/remix-run/remix/tree/main/packages/form-data-parser#readme",
1212
"license": "MIT",
1313
"files": [
1414
"LICENSE",

packages/headers/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `headers` CHANGELOG
22

3-
This is the changelog for [`headers`](https://github.com/remix-run/remix/tree/v3/packages/headers). It follows [semantic versioning](https://semver.org/).
3+
This is the changelog for [`headers`](https://github.com/remix-run/remix/tree/main/packages/headers). It follows [semantic versioning](https://semver.org/).
44

55
## v0.12.0 (2025-07-18)
66

0 commit comments

Comments
 (0)