Skip to content
This repository has been archived by the owner on May 10, 2021. It is now read-only.

Commit

Permalink
Publish v2.4.0
Browse files Browse the repository at this point in the history
- Add support for base64 encoding in responses returned from SSR pages
  and API endpoints
- Reduce the number of rewrites generated by skipping SSG & HTML pages
  with static routing. These pages are routed automatically by Netlify
  ([#26](#26))
- Limit the default number of lines of build output to 50. More or fewer
  lines can be shown by running `next-on-netlify` with the option
  `--max-log-lines XX`. See `next-on-netlify --help` and [this
  comment](#26 (comment)).
- Remove workaround for making `404.html` work with `netlify dev`. The
  workaround is no longer required because [`netlify dev` has been
  patched](netlify/cli#1159).
  • Loading branch information
FinnWoelm committed Sep 5, 2020
1 parent 565180e commit 759ad7e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 2.4.0 (2020-09-05)

- Add support for base64 encoding in responses returned from SSR pages and API
endpoints
- Reduce the number of rewrites generated by skipping SSG & HTML pages with
static routing. These pages are routed automatically by Netlify ([#26](https://github.com/netlify/next-on-netlify/issues/26))
- Limit the default number of lines of build output to 50. More or fewer lines can be shown by running `next-on-netlify` with the option `--max-log-lines XX`. See `next-on-netlify --help` and [this comment](https://github.com/netlify/next-on-netlify/issues/26#issuecomment-660684261).
- Remove workaround for making `404.html` work with `netlify dev`. The
workaround is no longer required because [`netlify dev` has been patched](https://github.com/netlify/cli/pull/1159).

## 2.3.2 (2020-08-04)

- Fix: Bump elliptic to v6.5.3 to fix [CVE-2020-13822](https://github.com/advisories/GHSA-vh7m-p724-62c2)
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "next-on-netlify",
"version": "2.3.2",
"version": "2.4.0",
"description": "Wrapper for hosting NextJS applications with Server-Side Rendering on Netlify",
"bin": "./next-on-netlify.js",
"keywords": [
Expand Down

0 comments on commit 759ad7e

Please sign in to comment.