1.3.0
June 23, 2025
🎉 New Features
Compression & Serialization Enhancements
// Zip Component
bx:zip compressionLevel="9"
// Compress BIF
compress( compressionLevel: 9 )Pretty JSON Serialization (BL-1542)
data = {
name: "John Doe",
age: 30,
address: {
street: "123 Main St",
city: "Anytown",
country: "USA"
},
hobbies: ["reading", "cycling", "photography"]
};
// Standard compact JSON (default behavior)
compactJson = jsonSerialize( data );
// Output: {"name":"John Doe","age":30,"address":{"street":"123 Main St","city":"Anytown","country":"USA"},"hobbies":["reading","cycling","photography"]}
// Pretty formatted JSON (new feature)
prettyJson = jsonSerialize( data, pretty=true );
/* Output:
{
"name" : "John Doe",
"age" : 30,
"address" : {
"street" : "123 Main St",
"city" : "Anytown",
"country" : "USA"
},
"hobbies" : [ "reading", "cycling", "photography" ]
}
*/
// Useful for debugging and configuration files
writeFile( "config.json", jsonSerialize( appConfig, pretty=true ) );Array, List, Query & Struct Operations
Build & Security Improvements
🚀 Improvements
Documentation & Developer Experience
Performance & Architecture
Error Handling & Type Safety
Dependency Updates
CFML Compatibility
🐛 Bug Fixes
Image Processing
Database & Transactions
Mathematical Operations
Parallel Processing
File Handling & HTTP
Exception Handling
Caching System
Class & Component System
Path Handling
📋 Summary
Raw Release Notes
New Feature
Improvement
Bugs
Last updated
Was this helpful?
