Skip to content

Releases: remix-run/remix

component v0.2.1

19 Dec 01:57

Choose a tag to compare

  • 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

18 Dec 22:05

Choose a tag to compare

  • BREAKING CHANGE: Rename RegExpMatcher to ArrayMatcher

response v0.2.1

18 Dec 22:05

Choose a tag to compare

  • createFileResponse now includes charset in Content-Type for text-based files.

node-fetch-server v0.13.0

18 Dec 22:04

Choose a tag to compare

  • Use the :authority header to set the URL of http/2 requests.

mime v0.2.0

18 Dec 22:04

Choose a tag to compare

  • Add detectContentType(extension) function that returns a Content-Type header value with charset for text-based types.

  • Add mimeTypeToContentType(mimeType) function that converts a MIME type to a Content-Type header value, adding charset for text-based types.

fetch-router v0.14.0

18 Dec 22:03

Choose a tag to compare

  • BREAKING CHANGE: Remove BuildRequestHandler type. Use RequestHandler type directly instead.

  • BREAKING CHANGE: Remove T generic parameter from RequestHandler type. Request handlers always return a Response.

  • Export the MatchData type from the public API. This type is required when creating custom matchers for use with the router's matcher option.

component v0.2.0

18 Dec 22:02

Choose a tag to compare

  • This is the initial release of the component package.

    See the README for more information.

session v0.4.1

06 Dec 20:36

Choose a tag to compare

  • Always delete the original session ID when it is regenerated with the deleteOldSession option. Intermediate IDs are never saved to storage, so they can't be deleted.

session-middleware v0.1.1

06 Dec 20:37

Choose a tag to compare

  • Use response.headers.append('Set-Cookie', ...) instead of response.headers.set('Set-Cookie', ...) to not overwrite cookies set by other middleware/handlers

form-data-middleware v0.1.1

06 Dec 20:36

Choose a tag to compare

  • Explicitly set context.formData in all POST cases, even when the request body is invalid