What's New?
3.1.7
Correct jQuery link in test runner.
3.1.6
Allow expressions in basic where clauses.
Fix
delete
naming collision.
3.1.5
Add an alias to
with
to QuickBuilder.
3.1.4
Fix a stack overflow on nested relationship checks.
3.1.3
Configured tables (
.from
) are now used for qualifying columns.
3.1.2
Remove unnecessary nesting in compare queries.
3.1.1
Fix querying relationship methods when using "OR" combinators.
3.1.0
Add support for JSON casting using a new
JsonCast@quick
component.
3.0.4
Compatibility updates for ColdBox 6
3.0.3
Optimize cast caching
3.0.2
Apply custom sqltypes during eager loading.
3.0.1
Account for null values in
fill
.Swap structAppend order for a Lucee bug in mementifier integration.
3.0.0
BREAKING CHANGES
Please see the Upgrade Guide for more information on these changes.
Drop support for Lucee 4.5 and Adobe ColdFusion 11.
Virtual Inheritance (using a
quick
annotation instead of extendingquick.models.BaseEntity
) has been removed. It was hardly used, and removing it allows us to simplify some of the code paths.accessors="true"
is now required on every entity. This is similar to above where requiring it allows us to simplify the codebase immensely. A helpful error message will be thrown ifaccessors="true"
is not present on your entity.The
defaultGrammar
mapping needs to be the full WireBox mapping, including the@qb
, if needed.For instance,
MSSQLGrammar
would becomeMSSQLGrammar@qb
.This will allow for other grammars to be more easily contributed via third party modules.
HasManyThrough
relationships now only accept arelationships
parameter of relationship methods to walk to get to the intended entity.Attributes using
casts="boolean"
need to be updated tocasts="BooleanCast@quick"
.Some method and parameter names have been changed to support composite keys. The majority of changes will only affect you if you have extended base Quick components. The full list can be found in the Upgrade Guide.
Other Changes
Bundle Mementifier for memento transformations.
Use asMemento to automatically convert queries to mementos.
Automatically-generated API docs.
Add error message for defaulting key values.
Update to qb 7.0.0.
Add a HasOneThrough relationship.
Custom Casts - using custom components to represent one or more attributes.
Add a new QuickBuilder to better handle interop with qb.
Ensure
loadRelationship
doesn't reload existing relationships.Add multiple retrieve or new/create methods -
firstWhere
,firstOrNew
,firstOrCreate
,findOrNew
, andfindOrCreate
.Add
paginate
to Quick.Add
is
andisNot
to compare entities.Allow hydrating entities from serialized data.
Allow returning default entities for null relations on
HasOne
,BelongsTo
,HasOneThrough
, andBelongsToThrough
relationships.Query relations using
has
,doesntHave
,whereHas
, andwhereDoesntHave
.Split
reset
intoreset
andresetToNew
methods.Store the original attributes for later resetting.
Use
parameterLimits
to eager load.Use a new entity each time on BaseService.
Apply sql types for columns to
wheres
.Apply global scopes more consistently
Correctly ignore key column when updating.
Fix
hasRelationship
method to only return true for exact matches.Better handling of constrained relationships when eager loading.
Convert aliases when qualifying columns.
Add a better error message if
onMissingMethod
fails.Only retrieve columns for defined attributes.
Cache entity metadata in CacheBox.
Use attribute hash for checking
isDirty
.
2.5.0
Define custom collections per entity.
2.4.0
Apply custom setters when hydrating from the database.(Reverted in2.5.3
for unintended consequences with things like password hashing.)Query scopes can return any value. This allows you to use scopes to perform query functions and return values. (If you do not want to return a custom value, return the
QueryBuilder
instance or nothing.)Improve error messages for not loaded entities.
Return the correct memento with accessors on.
2.3.0
2.2.0
Relationship Fetch Methods (
first
andfind
methods)
2.1.0
Mapping foreign keys for relationships is now optional
Either entities or primary key values can be passed to relationship persistance methods
Relationships can also be saved by calling
"set" & relationshipName
Virtual Inheritance works on ColdBox 5.2+
Last updated