Skip to content

Commit ad9267c

Browse files
committedSep 17, 2015
bump version to 2.1.0
1 parent 16444fc commit ad9267c

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed
 

‎CHANGELOG.md

+14-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
1-
## 2.0.0 (2015-07-15)
1+
## 2.1.0 (2015-09-17)
22

3-
Bugfixes:
3+
New features:
44

5-
- Stop swallowing errors if the prerender service fails.
5+
- Check for Applebot user agent in order to send prerendered pages to apple for Siri on iOS9
66

7-
Before: If the prerender service errors out (e.g., not available and the request times out), the error is swallowed and `next` called with no args.
7+
## 2.0.2 (2015-07-24)
8+
9+
Bugfixes:
810

9-
After: error is passed through to `next`, and `prerender.afterRenderFn` is handed `err` as the first arg. Makes it much easier to know if you're misconfiguring something or forgot to start the prerender server locally when testing.
11+
- Make sure we pass through the error, request, and Prerender response to afterRender
12+
13+
Fixed an issue where the original request and Prerender response wasn't getting passed to afterRender after recent change to pass err through. Now works correctly: `afterRender(err, req, prerenderResponse)`
1014

1115
## 2.0.1 (2015-07-20)
1216

@@ -16,10 +20,12 @@ Bugfixes:
1620

1721
Fixed an issue where `http` was always added to the URLs sent to Prerender even if the URL was https.
1822

19-
## 2.0.2 (2015-07-24)
23+
## 2.0.0 (2015-07-15)
2024

2125
Bugfixes:
2226

23-
- Make sure we pass through the error, request, and Prerender response to afterRender
27+
- Stop swallowing errors if the prerender service fails.
28+
29+
Before: If the prerender service errors out (e.g., not available and the request times out), the error is swallowed and `next` called with no args.
2430

25-
Fixed an issue where the original request and Prerender response wasn't getting passed to afterRender after recent change to pass err through. Now works correctly: `afterRender(err, req, prerenderResponse)`
31+
After: error is passed through to `next`, and `prerender.afterRenderFn` is handed `err` as the first arg. Makes it much easier to know if you're misconfiguring something or forgot to start the prerender server locally when testing.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "prerender-node",
3-
"version": "2.0.2",
3+
"version": "2.1.0",
44
"description": "express middleware for serving prerendered javascript-rendered pages for SEO",
55
"author": "Todd Hooper",
66
"license": "MIT",

0 commit comments

Comments
 (0)
Please sign in to comment.