Skip to content

Commit a1f9085

Browse files
authored
Merge pull request #44 from coldbox-modules/development
v3.4.1
2 parents 4ff5975 + 121bfc8 commit a1f9085

File tree

3 files changed

+15
-11
lines changed

3 files changed

+15
-11
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.4.1",
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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [Unreleased]
1111

12+
### Fixed
13+
14+
- Parenthesis on `top` statements for MSSQL Server on the `DBLogger` thanks to @irvirv
15+
1216
## [3.4.0] - 2023-06-14
1317

1418
### Added

models/util/DBLogger.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ component accessors="true" singleton threadsafe {
245245
private function getLimitStart(){
246246
switch ( getDatabaseVendor() ) {
247247
case "Microsoft SQL Server": {
248-
return " TOP :top ";
248+
return " TOP (:top) ";
249249
}
250250
}
251251
return "";

0 commit comments

Comments
 (0)