What's New?

5.0.0

In 5.0.0, we stepped up the performance of Quick in a major way. Entity creation is now over twice as fast as before.

Performance Improvements

Average duration to create one entity:

While the times may seem small, this is compounded for each entity you create. So, if you are retrieving 1000 entities, multiply each of these numbers by 1000 and you'll start to see why this matters.

This did introduce one breaking change from v4. See the Upgrade Guide for more information.

New Features

  • Added a new RowIDKeyType that will correctly set your primary key if your database only returns ROWID in the queryExecute response.

Bug Fixes

  • Fixed a null check in isNullValue.

  • Fixed nulls coming back as strings in JsonCast.

4.2.0

  • Add a simplePaginate pagination method for quicker performance when total records or total pages are not needed or too slow.

4.1.6

  • Configure columns are no longer cleared when setting up a BelongsToMany relationship.

4.1.5

  • Provide initialThroughConstraints for hasOne relationships (used in *Through relationships).

4.1.4

  • Ignore orders when retrieving a relationship count.

4.1.1, 4.1.2

  • Preserve casted value after saving an entity.

4.1.0

4.0.2

  • Skip eager loading database call when no keys are found.

  • Only apply CONCAT when needed in *Through relationships.

4.0.1

  • Use WHERE EXISTS over DISTINCT when fetching relationships. DISTINCT restricts some of the queries that can be run.

4.0.0

BREAKING CHANGES

Other Changes

  • Dynamically add relationship counts to a parent entity without loading all of the relationship.

  • Give a helpful error message when trying to set relationship values before saving an entity, where applicable.

  • Multiple bug fixes related to subselects and querying relationships when using belongsToThrough, hasOneThrough, or hasManyThrough.

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

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

3.0.2

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 extending quick.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 if accessors="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 become MSSQLGrammar@qb.

    • This will allow for other grammars to be more easily contributed via third party modules.

  • HasManyThrough relationships now only accept a relationships parameter of relationship methods to walk to get to the intended entity.

  • Attributes using casts="boolean" need to be updated to casts="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

2.5.0

2.4.0

  • Apply custom setters when hydrating from the database. (Reverted in 2.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

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