remix v2.17.4
See the changelog for the release notes: https://github.com/remix-run/remix/blob/v2/CHANGELOG.md#v2174
v2.17.3
See the changelog for the release notes: https://github.com/remix-run/remix/blob/v2/CHANGELOG.md#v2173
component v0.2.1
-
Fix node replacement
Anchors were being calculated incorrectly because it removed the old node before inserting the new one, Now it correctly uses the old node as the anchor for insertion and inserts the new node before removing the old one.
component v0.2.0
-
This is the initial release of the component package.
See the README for more information.
response v0.2.1
-
createFileResponsenow includescharsetin Content-Type for text-based files.
route-pattern v0.16.0
- BREAKING CHANGE: Rename
RegExpMatchertoArrayMatcher
fetch-router v0.14.0
-
BREAKING CHANGE: Remove
BuildRequestHandlertype. UseRequestHandlertype directly instead. -
BREAKING CHANGE: Remove
Tgeneric parameter fromRequestHandlertype. Request handlers always return aResponse. -
Export the
MatchDatatype from the public API. This type is required when creating custom matchers for use with the router'smatcheroption.
node-fetch-server v0.13.0
- Use the
:authorityheader to set the URL of http/2 requests.
mime v0.2.0
-
Add
detectContentType(extension)function that returns a Content-Type header value withcharsetfor text-based types. -
Add
mimeTypeToContentType(mimeType)function that converts a MIME type to a Content-Type header value, addingcharsetfor text-based types.
session-middleware v0.1.1
- Use
response.headers.append('Set-Cookie', ...)instead ofresponse.headers.set('Set-Cookie', ...)to not overwrite cookies set by other middleware/handlers