Releases: remix-run/remix
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.
route-pattern v0.16.0
- BREAKING CHANGE: Rename
RegExpMatchertoArrayMatcher
response v0.2.1
createFileResponsenow includescharsetin Content-Type for text-based files.
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.
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.
component v0.2.0
-
This is the initial release of the component package.
See the README for more information.
session v0.4.1
- Always delete the original session ID when it is regenerated with the
deleteOldSessionoption. Intermediate IDs are never saved to storage, so they can't be deleted.
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
form-data-middleware v0.1.1
- Explicitly set
context.formDatain allPOSTcases, even when the request body is invalid