is this gone now?
also when I inject my dsn from coldboxconfig (e.g. property name=“dsn” inject=“coldbox:datasource:mydsn”) you could access it via: #dsn.getName()#
It now appears to be just a struct, rather than an obj, so I assume the new change is to just refer to it as #dsn.name#
I also noticed that the way to access the ExceptionBean now needs to be:
exceptionBean = event.getValue(name=“Exception”, private=true);
wheras it used to be:
exceptionBean = event.getValue(“ExceptionBean”);