Skip to content

Commit d2fc79f

Browse files
author
Github Actions
committed
Version bump
1 parent c09395e commit d2fc79f

File tree

2 files changed

+22
-19
lines changed

2 files changed

+22
-19
lines changed

box.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"ColdBox Security",
3-
"version":"3.4.0",
3+
"version":"3.5.0",
44
"location":"https://downloads.ortussolutions.com/ortussolutions/coldbox-modules/cbsecurity/@build.version@/[email protected]@.zip",
55
"author":"Ortus Solutions.com <[email protected]>",
66
"slug":"cbsecurity",
@@ -49,15 +49,15 @@
4949
"format:watch":"cfformat watch handlers/,interceptors/,models/,test-harness/tests/specs,ModuleConfig.cfc ./.cfformat.json",
5050
"format:check":"cfformat check handlers/,interceptors/,models/,test-harness/tests/specs,ModuleConfig.cfc",
5151
"install:dependencies":"install && cd test-harness && install",
52-
"start:lucee" : "server start [email protected]",
53-
"start:2018" : "server start [email protected]",
54-
"start:2021" : "server start [email protected]",
55-
"stop:lucee" : "server stop [email protected]",
56-
"stop:2018" : "server stop [email protected]",
57-
"stop:2021" : "server stop [email protected]",
58-
"logs:lucee" : "server log [email protected] --follow",
59-
"logs:2018" : "server log [email protected] --follow",
60-
"logs:2021" : "server log [email protected] --follow"
52+
"start:lucee":"server start [email protected]",
53+
"start:2018":"server start [email protected]",
54+
"start:2021":"server start [email protected]",
55+
"stop:lucee":"server stop [email protected]",
56+
"stop:2018":"server stop [email protected]",
57+
"stop:2021":"server stop [email protected]",
58+
"logs:lucee":"server log [email protected] --follow",
59+
"logs:2018":"server log [email protected] --follow",
60+
"logs:2021":"server log [email protected] --follow"
6161
},
6262
"installPaths":{
6363
"jwt-cfml":"modules/jwtcfml/",

changelog.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
----
8+
* * *
99

1010
## [Unreleased]
1111

12+
## [3.4.0] - 2023-06-14
13+
1214
### Added
1315

1416
- Official Adobe 2023 Support
@@ -145,7 +147,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
145147

146148
### Added
147149

148-
- Add a `secureSameUser` method to throw when passed a different user #29 (https://github.com/coldbox-modules/cbsecurity/pull/29)
150+
- Add a `secureSameUser` method to throw when passed a different user #29 (<https://github.com/coldbox-modules/cbsecurity/pull/29>)
149151

150152
## [2.10.0] => 2021-FEB-12
151153

@@ -188,15 +190,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
188190

189191
- Contributed module rules are now pre-pended instead of appended. (@wpdebruin)
190192

191-
192193
### Fixed
193194

194195
- Not loading rules by source file detection due to invalid setting check
195196
- Don't trigger ColdBox's invalid event looping protection. It also auto-senses between ColdBox 6 and 5 (@homestar9)
196197
- Fixed token scopes according to JWT spec, it is called `scope` and it is a space separated list. This doesn't change the User interface for it. (@wpdebruin)
197198
- Update token storages so no token rejection anymore when storage is not enabled. (@wpdebruin)
198199

199-
200200
## [2.6.0] => 2020-JUL-22
201201

202202
### Added
@@ -210,18 +210,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
210210
- JWT Validator now passing `permissions` instead of `roles`
211211
- Token Storage checking was being done even if disabled
212212

213-
214213
## [2.5.0] => 2020-APR-03
215214

216215
- `Feature` : Upgraded to `cbAuth` @ 5.x
217216

218217
## [2.4.0] => 2020-APR-02
219218

220-
- `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
219+
- `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>
221220

222221
## [2.3.0] => 2020-MAR-30
223222

224-
- `Feature` Introduction of the cbSecurity model: https://coldbox-security.ortusbooks.com/intro/release-history/whats-new-with-2.3.0
223+
- `Feature` Introduction of the cbSecurity model: <https://coldbox-security.ortusbooks.com/intro/release-history/whats-new-with-2.3.0>
225224
- `Task` : Cfformatting everywhere
226225

227226
## [2.2.1] => 2020-FEB-26
@@ -230,7 +229,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
230229

231230
## [2.2.0] => 2020-FEB-12
232231

233-
- `Feature` : Migrated from the jwt to the `jwtcfml` (https://forgebox.io/view/jwt-cfml) library to expand encoding/decoding capabilities to support `RS` and `ES` algorithms:
232+
- `Feature` : Migrated from the jwt to the `jwtcfml` (<https://forgebox.io/view/jwt-cfml>) library to expand encoding/decoding capabilities to support `RS` and `ES` algorithms:
234233
- HS256
235234
- HS384
236235
- HS512
@@ -350,7 +349,7 @@ settings = {
350349
## [1.0.2]
351350

352351
- Removed `getPlugin()` deprecated calls to new approach.
353-
- https://ortussolutions.atlassian.net/browse/CCM-26 cbsecurity ocm rules not ColdBox 4 compat
352+
- <https://ortussolutions.atlassian.net/browse/CCM-26> cbsecurity ocm rules not ColdBox 4 compat
354353

355354
## [1.0.1]
356355

@@ -359,3 +358,7 @@ settings = {
359358
## [1.0.0]
360359

361360
- Created first module version
361+
362+
[Unreleased]: https://github.com/coldbox-modules/cbsecurity/compare/v3.4.0...HEAD
363+
364+
[3.4.0]: https://github.com/coldbox-modules/cbsecurity/compare/849bafc487dc666f22a1ae7bba2408849bc78ae8...v3.4.0

0 commit comments

Comments
 (0)