Skip to content

Commit f265c4f

Browse files
committed
Merge branches 'development' and 'master' of github.com:coldbox-modules/cbdebugger
2 parents 20e6480 + 2f4bd24 commit f265c4f

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

box.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name":"ColdBox Debugger",
33
"author":"Ortus Solutions <[email protected]",
44
"location":"https://downloads.ortussolutions.com/ortussolutions/coldbox-modules/cbdebugger/@build.version@/[email protected]@.zip",
5-
"version":"4.0.0",
5+
"version":"4.0.1",
66
"slug":"cbdebugger",
77
"type":"modules",
88
"homepage":"https://github.com/coldbox-modules/cbdebugger",

changelog.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
----
99

10-
## [4.0.0] => 2022-SEP
10+
## [4.0.1] => 2022-NOV-22
11+
12+
### Fixed
13+
14+
* Adobe dumb array by value
15+
16+
----
17+
18+
## [4.0.0] => 2022-NOV-22
1119

1220
### Added
1321

models/DebuggerService.cfc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -425,8 +425,7 @@ component
425425
);
426426

427427
// New Profiler record to store into the singleton stack
428-
var targetStorage = getProfilerStorage();
429-
arrayPrepend( targetStorage, request.cbDebugger );
428+
var targetStorage = getProfilerStorage().prePend( request.cbDebugger );
430429

431430
// Are we using cache storage
432431
if ( variables.debuggerConfig.requestTracker.storage eq "cachebox" ) {

0 commit comments

Comments
 (0)