What's New With 6.4.0
ColdBox 6.4.0 is more of a major than a minor release due to the amount of work we have done to bring you one of the most revolutionary features of this framework: Scheduled Tasks.
Scheduled tasks have always been a point of soreness for many developers in ANY language. Especially choosing where to place them for execution: should it be cron? windows task scheduler? ColdFusion engine? Jenkins, Gitlab? and the list goes on and on.

ColdBox Scheduled Tasks
The ColdBox Scheduled Tasks offers a fresh, programmatic and human approach to scheduling tasks on your server and multi-server application. It allows you to define your tasks in a portable Scheduler we lovingly call the
Scheduler.cfc
which not only can be used to define your tasks, but also monitor all of their life-cycles and metrics of tasks. Since ColdBox is also hierarchical, it allows for every single ColdBox Module to also define a Scheduler
and register their own tasks as well. This is a revolutionary approach to scheduling tasks in an HMVC application.You can learn all about them in our two sections:
ColdBox HMVC
WireBox
Bugs
- COLDBOX-991 Fixes issues with Adobe losing App Context in Scheduled Tasks. You can now run scheduled tasks in Adobe with full app support.
- COLDBOX-988 When running scheduled tasks in ACF loading of contexts produce a null pointer exception
Improvements
- COLDBOX-971 Implement caching strategy for application helper lookups into the
default
cache instead of thetemplate
cache.
New Features
- COLDBOX-999 New
SchedulerService
that mointors and registers application scheduled tasks in an HMVC fashion - COLDBOX-992 Added CFML Duration and Periods to async manager so task executions can be nicer and pin point accuracy
- COLDBOX-987 Encapsulate any type of exception in the REST Handler in a
onAnyOtherException
() action which can also be overidden by concrete handlers - COLDBOX-986 Add registration and activation timestamps to the a module configuration object for active profiling.
- WIREBOX-112 virtual inheritance causes double
inits
on objects that do not have a constructor and their parent does.
Last modified 1yr ago