VERSION 3.4b - Apr 29, 2014 - Officially supported on ColdFusion 9 or later - Removed Scriptaculous javascript library - see jQuery plugin http://yourapp/admin/plugins - Other minor fixes and additions can be found in the documentation http://yourapp/docs/index.cfm?netaction=about/version VERSION 3.3b - Oct 11, 2009 - Added CacheBox integration - used as default storage for built-in IoC containers - used as only storage for and tags - Removed Java SoftReference functionality from factory in favor of CacheBox - Removed most references to reuqest.tap and request.tapi from the code - switch to getTap() and getLib() - Removed server.tap.fileMan and server.tap.calendarMan objects - switch to getIoC().getBean("filemanager") and getIoC().getBean("calendarmanager") - fileManager now uses CacheBox VERSION 3.2b - Aug 3, 2008 - Added Java SoftReference functionality to factory.cfc - Finalized the IoC Manager - Finalized the Plugin Manager and revisions of all plugins - Set versions of all plugins to 3.2 - except the WYSIWYG (tapMCE) - Updated all installers to test for framework version 3.2 VERSION 3.1b - July 2008 - Renamed /_components/ directory to /_tap/ - Replaced /_components/_appsettings.cfm with /config.cfc - to convert from previous versions, copy the code from your _appsettings.cfm and replace any references to "request.tap" with "this" or internal methods, BEFORE: request.tap.development = false AFTER: this.development = false BEFORE: request.tap.cf.app.mappings["/mymapping"] = somepath AFTER: addMapping("mymapping",somepath) - Removed database / SQL / ORM tools in favor of a separate project - DataFaucet can be found at http://www.datafaucet.com - The framework retains the XHTML integration for ORM tools - Added /_config/mappings/ directory with CFCs - for adding application-specific server mappings - Added /_config/ioc/ directory for configuring IoC containers - added IoC Manager to request.tap object - added default IoC Container - application.tap.MailMan is now request.tap.getIoC().getBean("MailMan") - Moved /_pathsettings to /_config/pathsettings and converted to CFCs - Moved /_appstart, /_append, /_sessionstart and /_sessionend - to /_config/events/[eventname] - converted application events to CFCs - Added lazylib.cfc for lazy-loading function libraries on ColdFusion 8 (or other versions of CF that support onMissingMethod) - removed dependency information from library function documentation (when using the lazy libraries, dependency information only serves as a performance enhancement, not a requirement) VERSION 3.0b - Dec 2007 - Removed JavaScript features from library loader - Removed features for support of older CF versions - Removed Application.cfm - Merged cf_ and mx_ libraries and removed library prefixes - Created Application.tap.MailMan object to replace request.tap.mail structure - converted request.tap and several sub-structures to objects - removed request.tap.path.cfc variable - obscured tag, process, cfc, href and path aliases - removed error handling features - added onMissingTemplate method to Application.cfc