What's New With 4.3.0
Module Parent Settings
// myModule/ModuleConfig.cfc
component {
function configure() {
settings = {
someSetting = "default",
anotherSetting = "default"
};
}
}
// config/ColdBox.cfc
component {
function configure() {
moduleSettings = {
myModule = {
someSetting = "overridden"
}
};
}
}
// end result
{
someSetting = "overridden",
anotherSetting = "default"
}Global invalidHTTPMethodHandler
invalidHTTPMethodHandlerNew allowedMethods annotation for handlers
allowedMethods annotation for handlersNew convention modules_app
modules_appInterceptors get rc and prc references
rc and prc referencesString Builders
Binary HTTP Content
Models in Modules accept aliases now
HTTP Method Spoofing
Release Notes
Bugs
New Features
Improvements
Last updated
Was this helpful?