Skip to content

Commit 07f6f76

Browse files
committed
Fix for ColdBox 8 and Non-SES Routing
1 parent f15e49e commit 07f6f76

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

.github/workflows/cron.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
cfengine: ["lucee@5", "lucee@6", "lucee@7", "adobe@2021", "adobe@2023", "adobe@2025", "boxlang-cfml@1"]
14+
cfengine: ["lucee@5", "lucee@6", "adobe@2021", "adobe@2023", "adobe@2025", "boxlang-cfml@1"]
1515
coldbox: ["^6.0.0", "^7.0.0", "^8.0.0"]
1616
experimental: [ false ]
1717
include:

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
cfengine: ["lucee@5", "lucee@6", "lucee@7", "adobe@2021", "adobe@2023", "adobe@2025", "boxlang-cfml@1"]
22+
cfengine: ["lucee@5", "lucee@6", "adobe@2021", "adobe@2023", "adobe@2025", "boxlang-cfml@1"]
2323
coldbox: ["^6.0.0", "^7.0.0", "^8.0.0"]
2424
experimental: [ false ]
2525
include:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
cfengine: ["lucee@5", "lucee@6", "lucee@7", "adobe@2021", "adobe@2023", "adobe@2025", "boxlang-cfml@1"]
17+
cfengine: ["lucee@5", "lucee@6", "adobe@2021", "adobe@2023", "adobe@2025", "boxlang-cfml@1"]
1818
coldbox: ["^6.0.0", "^7.0.0", "^8.0.0"]
1919
experimental: [ false ]
2020
include:

box.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
},
2626
"devDependencies":{
2727
"testbox":"^6.0.0",
28-
"coldbox":"^7.0.0"
28+
"coldbox":"^8"
2929
},
3030
"installPaths":{
3131
"testbox":"testbox/",
@@ -36,7 +36,7 @@
3636
"format":"cfformat run ModuleConfig.cfc,models/**/*.cfc,tests/specs/**/*.cfc,tests/resources/app/handlers/**/*.cfc,tests/resources/app/config/**/*.cfc --overwrite",
3737
"format:check":"cfformat check ModuleConfig.cfc,models/**/*.cfc,tests/specs/**/*.cfc,tests/resources/app/handlers/**/*.cfc,tests/resources/app/config/**/*.cfc --verbose",
3838
"format:watch":"cfformat watch ModuleConfig.cfc,models/**/*.cfc,tests/specs/**/*.cfc,tests/resources/app/handlers/**/*.cfc,tests/resources/app/config/**/*.cfc",
39-
"bx-modules:install": "install bx-compat-cfml@be,bx-esapi"
39+
"bx-modules:install":"install bx-compat-cfml@be,bx-esapi"
4040
},
4141
"ignore":[
4242
"**/.*",

tests/resources/app/config/Router.cfc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
component {
22

33
function configure() {
4+
setMultiDomainDiscovery( false );
5+
setBaseUrl( composeRoutingUrl() & "index.cfm/" );
6+
// Conventions based routing
47
route( ":handler/:action?" ).end();
58
}
69

0 commit comments

Comments
 (0)