remix 1.7.3-pre.0 → 1.7.4-pre.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 +2 -20
- package/dist/esm/index.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,27 +1,9 @@
|
|
|
1
1
|
# `remix`
|
|
2
2
|
|
|
3
|
-
## 1.7.
|
|
3
|
+
## 1.7.4-pre.0
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
- Add resources imported only by resource routes to `assetsBuildDirectory` ([#3841](https://github.com/remix-run/remix/pull/3841))
|
|
9
|
-
- Ensure that any assets referenced in CSS files are hashed and copied to the `assetsBuildDirectory`. ([#4130](https://github.com/remix-run/remix/pull/4130))
|
|
10
|
-
|
|
11
|
-
Before this change, a CSS declaration like `background: url('./relative-path/image.png');` that references the file `./relative-path/image.png` will not copy that file to the build directory. This can be a problem if you use a custom build directory, or when dealing with third-party stylesheets in `node_modules` that reference their own relative files.
|
|
12
|
-
|
|
13
|
-
- Ensure that `<Form />` respects the `formMethod` attribute set on the submitter element ([#4053](https://github.com/remix-run/remix/pull/4053))
|
|
14
|
-
|
|
15
|
-
```tsx
|
|
16
|
-
<Form>
|
|
17
|
-
<button type="submit">GET request</button>
|
|
18
|
-
<button type="submit" formMethod="post">
|
|
19
|
-
POST request
|
|
20
|
-
</button>
|
|
21
|
-
</Form>
|
|
22
|
-
```
|
|
23
|
-
|
|
24
|
-
- Fixed a bug that affected `.wav` and `.webm` audio file imports ([#4290](https://github.com/remix-run/remix/pull/4290))
|
|
25
|
-
- Updated the `@remix-run/web-fetch` dependency. This fixes issues with `{Request | Response}.clone()` throwing when body is `null`. This update also adds additional Node.js-specific types to `fetch()` to support the use of `agent` from `http` and `https`. ([#4277](https://github.com/remix-run/remix/pull/4277))
|
|
7
|
+
- You can now infer the type of the `.data` property of `useFetcher` from the return type of your `loader` and `action` functions ([#4392](https://github.com/remix-run/remix/pull/4392))
|
|
26
8
|
|
|
27
9
|
See the `CHANGELOG.md` in individual Remix packages for all changes.
|
package/dist/esm/index.js
CHANGED
package/dist/index.js
CHANGED