File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
21
21
22
22
- Updated to the latest Ubuntu images for the GitHub actions
23
23
24
+ ### Fixed
25
+
26
+ - Fixed resource handler creation.
27
+
24
28
## [ 7.5.0] - 2024-10-16
25
29
26
30
### Fixed
Original file line number Diff line number Diff line change @@ -324,7 +324,7 @@ component extends="coldbox-cli.models.BaseCommand" {
324
324
// Add Resource routes
325
325
var routerContent = fileRead ( routerPath ).replaceNoCase (
326
326
" // @app_routes@" ,
327
- routerCode & variables . break
327
+ routerCode & chr ( 13 )
328
328
);
329
329
fileWrite ( routerPath , routerContent );
330
330
openPath ( routerPath );
Original file line number Diff line number Diff line change 4
4
component accessors = " true" {
5
5
6
6
// DI
7
- property name = " utility" inject = " utility@coldbox-cli" ;
8
- property name = " settings" inject = " box:modulesettings:coldbox-cli" ;
9
- property name = " config" inject = " box:moduleconfig:coldbox-cli" ;
7
+ property name = " utility" inject = " utility@coldbox-cli" ;
8
+ property name = " settings" inject = " box:modulesettings:coldbox-cli" ;
9
+ property name = " config" inject = " box:moduleconfig:coldbox-cli" ;
10
10
property name = " serverService" inject = " serverService" ;
11
11
property name = " packageService" inject = " PackageService" ;
12
12
You can’t perform that action at this time.
0 commit comments