Skip to content

Commit 7e42027

Browse files
committed
* Feature : We now include the cbcsrf module to allow for protections of cross site request forgery vectors. Please see all the features included in this module here: https://github.com/coldbox-modules/cbcsrf
1 parent b1e00f9 commit 7e42027

File tree

3 files changed

+16
-9
lines changed

3 files changed

+16
-9
lines changed

box.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
"name":"ColdBox Security",
33
"version":"2.4.0",
44
"location":"https://downloads.ortussolutions.com/ortussolutions/coldbox-modules/cbsecurity/@build.version@/[email protected]@.zip",
5-
"author":"Ortus Solutions.com <[email protected]",
5+
"author":"Ortus Solutions.com <[email protected]>",
66
"slug":"cbsecurity",
77
"type":"modules",
8-
"homepage":"https://github.com/ColdBox/cbsecurity",
8+
"homepage":"https://github.com/coldbox-modules/cbsecurity",
99
"documentation":"https://coldbox-security.ortusbooks.com/",
1010
"repository":{
1111
"type":"git",
12-
"url":"https://github.com/ColdBox/cbsecurity"
12+
"url":"https://github.com/coldbox-modules/cbsecurity"
1313
},
1414
"shortDescription":"This module provides a robust security engine for ColdBox applications.",
1515
"license":[
@@ -29,12 +29,13 @@
2929
],
3030
"dependencies":{
3131
"jwt-cfml":"^1.0.0",
32-
"cbauth":"^4.0.0"
32+
"cbauth":"^4.0.0",
33+
"cbcsrf":"^2.0.0"
3334
},
3435
"scripts":{
3536
"toMaster":"recipe build/toMaster.boxr",
36-
"format":"cfformat run handlers/**.cfc,interceptors/**.cfc,models/**.cfc --overwrite",
37-
"format:watch":"cfformat run handlers/**.cfc,interceptors/**.cfc,models/**.cfc --watch",
38-
"format:check":"cfformat run handlers/**.cfc,interceptors/**.cfc,models/**.cfc --check"
37+
"format":"cfformat run handlers/,interceptors/,models/,test-harness/tests/specs",
38+
"format:watch":"cfformat watch handlers/,interceptors/,models/,test-harness/tests/specs",
39+
"format:check":"cfformat check handlers/,interceptors/,models/,test-harness/tests/specs"
3940
}
4041
}

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 2.4.0
4+
5+
* `Feature` : We now include the `cbcsrf` module to allow for protections of cross site request forgery vectors. Please see all the features included in this module here: https://github.com/coldbox-modules/cbcsrf
6+
37
## 2.3.0
48

59
* `Feature` Introduction of the cbSecurity model: https://coldbox-security.ortusbooks.com/intro/release-history/whats-new-with-2.3.0

test-harness/box.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"testbox":"be",
1010
"cbauth":"^4.0.0",
1111
"BCrypt":"^2.5.0-snapshot",
12-
"jwt-cfml":"^1.0.0"
12+
"jwt-cfml":"^1.0.0",
13+
"cbcsrf":"^2.0.0+21"
1314
},
1415
"devDependencies":{
1516
"route-visualizer":"^1.2.0+4"
@@ -20,7 +21,8 @@
2021
"cbauth":"modules/cbauth/",
2122
"BCrypt":"modules/BCrypt/",
2223
"route-visualizer":"modules/route-visualizer/",
23-
"jwt-cfml":"modules/jwtcfml/"
24+
"jwt-cfml":"modules/jwtcfml/",
25+
"cbcsrf":"modules/cbcsrf/"
2426
},
2527
"testbox":{
2628
"runner":"http://localhost:60299/tests/runner.cfm"

0 commit comments

Comments
 (0)