Skip to content

Commit ff8d7c7

Browse files
committed
commandbox 6 issues on aliases
1 parent 3ab99e3 commit ff8d7c7

9 files changed

+20
-6
lines changed

ModuleConfig.cfc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,13 @@ component {
3232
* Settings
3333
*/
3434
variables.settings = {
35+
// Internal engine flags
36+
engine : {
37+
isLucee = server.keyExists( "lucee" ),
38+
isBoxLang = server.keyExists( "boxlang" ),
39+
isAdobe = server.keyExists( "coldfusion" ) && server.coldfusion.productName.findNoCase( "ColdFusion" )
40+
},
41+
3542
// This flag enables/disables the tracking of request data to our storage facilities
3643
// To disable all tracking, turn this master key off
3744
enabled : true,

changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [Unreleased]
1111

12+
### Addded
13+
14+
- Lucee 6 Certification
15+
- BoxLang additions
16+
1217
### Fixed
1318

19+
- Alias for testing mode in CommandBox 6
1420
- JVMUtil wrong location for the temp directory for producing heap dumps
1521

1622
## [4.2.0] - 2024-01-10

readme.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ Apache License, Version 2.0.
6969
- Lucee 5+
7070
- ColdFusion 2018+
7171
- ColdBox 6+
72+
- CommandBox 6 For Development
7273

7374
## Optional Requirements
7475

[email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"webroot":"test-harness",
1515
"aliases":{
16-
"/moduleroot/cbdebugger":"../"
16+
"/moduleroot/cbdebugger":"./"
1717
}
1818
},
1919
"openBrowser":"false",

[email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"webroot":"test-harness",
1515
"aliases":{
16-
"/moduleroot/cbdebugger":"../"
16+
"/moduleroot/cbdebugger":"./"
1717
}
1818
},
1919
"openBrowser":"false",

[email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"webroot": "test-harness",
1515
"aliases":{
16-
"/moduleroot/cbdebugger":"../"
16+
"/moduleroot/cbdebugger":"./"
1717
}
1818
},
1919
"jvm":{

[email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"webroot":"test-harness",
1515
"aliases":{
16-
"/moduleroot/cbdebugger":"../"
16+
"/moduleroot/cbdebugger":"./"
1717
}
1818
},
1919
"openBrowser":"false",

[email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"webroot":"test-harness",
1515
"aliases":{
16-
"/moduleroot/cbdebugger":"../"
16+
"/moduleroot/cbdebugger":"./"
1717
}
1818
},
1919
"openBrowser":"false",

[email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"webroot":"test-harness",
1515
"aliases":{
16-
"/moduleroot/cbdebugger":"../"
16+
"/moduleroot/cbdebugger":"./"
1717
}
1818
},
1919
"openBrowser":"false",

0 commit comments

Comments
 (0)