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

Commit

Permalink
Publish v2.1.0
Browse files Browse the repository at this point in the history
- Add support for [NextJS optional catch-all routes](
  https://nextjs.org/docs/api-routes/dynamic-api-routes#optional-catch-all-api-routes
  ) ([#15](#15))
- Fix: An `index.js` page with `getStaticProps` no longer causes
  `next-on-netlify` to fail
  ([#18](#18))
- Fix: Catch-all routes now correctly require that at least one URL
  parameter is present (unlike optional catch-all routes)
  ([479b7e7](479b7e7))
- Fix: Data routes now correctly work for pages with catch-all routing
  ([0412b45](0412b45))
  • Loading branch information
FinnWoelm committed Jun 14, 2020
1 parent 7d8b551 commit 5edc905
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 2.1.0 (2020-06-14)

- Add support for [NextJS optional catch-all routes](https://nextjs.org/docs/api-routes/dynamic-api-routes#optional-catch-all-api-routes) ([#15](https://github.com/FinnWoelm/next-on-netlify/pull/15))
- Fix: An `index.js` page with `getStaticProps` no longer causes `next-on-netlify` to fail ([#18](https://github.com/FinnWoelm/next-on-netlify/pull/18))
- Fix: Catch-all routes now correctly require that at least one URL parameter is present (unlike optional catch-all routes) ([479b7e7](https://github.com/FinnWoelm/next-on-netlify/commit/479b7e73f1a11778eb5ef66ded02aa1c17e38697))
- Fix: Data routes now correctly work for pages with catch-all routing ([0412b45](https://github.com/FinnWoelm/next-on-netlify/commit/0412b45fe3917a082be563c1720e85cf3affd4e1))

## 2.0.0 (2020-06-02)

- **Breaking: You must change your `netlify.toml` configuration for next-on-netlify v2.0.0.** Please [look at the README](https://github.com/FinnWoelm/next-on-netlify#3-configure-netlify) for the latest configuration.
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.0.0",
"version": "2.1.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 5edc905

Please sign in to comment.