Skip to content

Commit 7afd3e6

Browse files
committed
npm release 3.0.0
1 parent 41f02ec commit 7afd3e6

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

app/controller/home.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ var error404 = function (req, res) {
8888

8989
var catch404 = function (req, res) {
9090
var err = new Error('Page not found');
91-
res.status(404)
91+
res.status(404);
9292
// next(err);
9393

9494
CoreController.handleDocumentQueryErrorResponse({

releases/3.0.0.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
## Version 3.0.0
2+
3+
### Periodic 3.0.0, Production release.
4+
* Security Fixes and updated Express to V 4.10.2
5+
* More security fixes, updated all dependencies
6+
* Added Core Caching
7+
8+
### Notes
9+
* Periodic
10+
* Added support Caching
11+
* Extension: Core Cache (3.0.0)
12+
* Extension: Core Controller (3.0.0)
13+
* Extension: Core Extensions (3.0.0)
14+
* Extension: Core Mailer (3.0.0)
15+
* updated nodemailer, added support for Amazon SES, SendGrid & MailGun
16+
* Extension: Core Utilities (3.0.0)
17+
* preview theme support
18+
* Extension: Admin (3.0.0)
19+
* Extension: DBSeed (3.0.0)
20+
* Extension: Default Routes (3.0.1)
21+
* Extension: Install (3.0.1)
22+
* Extension: Login (3.0.0)
23+
* Extension: Mailer (3.0.0)
24+
* Extension: Scheduled Content (3.0.0)
25+
* Extension: User Access Control (3.0.2)

scripts/npmhelper.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ var fs = require('fs-extra'),
2424
originallocation,
2525
newlocation = path.resolve(process.cwd(),'../../periodicjs'),
2626
standardExtensions = [
27-
'periodicjs.ext.admin@3.0.0',
27+
'periodicjs.ext.cache@3.0.0',
2828
2929
3030

0 commit comments

Comments
 (0)