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

Commit 5edc905

Browse files
committed
Publish v2.1.0
- 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))
1 parent 7d8b551 commit 5edc905

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

Diff for: CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 2.1.0 (2020-06-14)
4+
5+
- 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))
6+
- 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))
7+
- 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))
8+
- Fix: Data routes now correctly work for pages with catch-all routing ([0412b45](https://github.com/FinnWoelm/next-on-netlify/commit/0412b45fe3917a082be563c1720e85cf3affd4e1))
9+
310
## 2.0.0 (2020-06-02)
411

512
- **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.

Diff for: package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "next-on-netlify",
3-
"version": "2.0.0",
3+
"version": "2.1.0",
44
"description": "Wrapper for hosting NextJS applications with Server-Side Rendering on Netlify",
55
"bin": "./next-on-netlify.js",
66
"keywords": [

0 commit comments

Comments
 (0)