Skip to content

Commit e601c90

Browse files
author
Adam Baldwin
authored
Merge pull request #19 from pdehaan/add-changelog
Add basic CHANGELOG.md file
2 parents 976401f + d2f6621 commit e601c90

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

CHANGELOG.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
1.3.0 / 2017-02-09
2+
==================
3+
4+
* README.md - document detect-disable-mustache-escape rule
5+
* README.md - documentation detect-new-buffer rule
6+
* Fixed crash with `detect-no-csrf-before-method-override` rule.
7+
* Style guide applied to all the code involving the tests
8+
* Removing a repeated test and style changes
9+
* ESLint added to the workflow
10+
* Removed not needed variables
11+
* Fix to a problem with a rule detected implementing the tests
12+
* Test engine with tests for all the rules
13+
* Add additional information to README for each rule
14+
15+
1.2.0 / 2016-01-21
16+
==================
17+
18+
* updated to check for new RegExp too
19+
20+
1.1.0 / 2016-01-06
21+
==================
22+
23+
* adding eslint rule to detect new buffer hotspot
24+
25+
1.0.0 / 2015-11-15
26+
==================
27+
28+
* rules disabled by default

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"description": "Security rules for eslint",
55
"main": "index.js",
66
"scripts": {
7+
"changelog": "changelog eslint-plugin-security all > CHANGELOG.md",
78
"test": "./node_modules/.bin/mocha test/**/*",
89
"lint": "./node_modules/.bin/eslint .",
910
"cont-int": "npm test && npm run-script lint"
@@ -27,6 +28,7 @@
2728
"safe-regex": "^1.1.0"
2829
},
2930
"devDependencies": {
31+
"changelog": "1.3.0",
3032
"eslint": "^2.10.1",
3133
"eslint-config-nodesecurity": "^1.3.1",
3234
"mocha": "^2.4.5"

0 commit comments

Comments
 (0)