Skip to content
This repository was archived by the owner on May 12, 2022. It is now read-only.

Releases: brokencube/automatorm

Documentation update

27 Jun 09:55
Compare
Choose a tag to compare
3.1.0.1

(minor) Added docblock comments to QueryBuilder to try and improve co…

Performance enhancement

01 Jun 15:44
Compare
Choose a tag to compare

Refactors some of the main Model::factory code so that it uses the internal object store where possible to try and ensure that only one object exists for each row in the database.

Previously findAll:: would have returned a new object for each row, meaning that properties set directly on the object retrieved via get:: would not be accessible (as they would be on the previous version of the object that was in the instance cache)

Exceptions are now jsonable

01 Jun 10:14
Compare
Choose a tag to compare

Added jsonSerialize method to Automatorm exceptions to allow json APIs to easily output debug information for exceptions

Minor bug fix release

31 May 15:31
Compare
Choose a tag to compare

Various small bugs squashed

Improved namespace binding

30 May 11:31
Compare
Choose a tag to compare

Schemas now properly bind connection names to namespaces.

Major Bug: SqlStrings handled incorrectly in column data

25 May 14:26
Compare
Choose a tag to compare
3.0.0.6

QueryBuilder: SqlStrings handled incorrectly in column data for inser…

Minor bugfix

25 May 13:49
Compare
Choose a tag to compare
3.0.0.5

QueryBuilder: Fixing error when sorting by multiple columns

Major Bug: Schema cache still relied on HodgePodge

25 May 10:15
Compare
Choose a tag to compare

Caching for schemas has now been modularised out. Still uses HodgePodge\Core\Cache by default, but new Cache can be registered with Schema::registerCache()

QueryBuilder bugfix

24 May 15:59
Compare
Choose a tag to compare
3.0.0.3

Sort + Limit wrong way round in query builder

3.0.0.2: Improving passing of sort options

24 May 15:44
Compare
Choose a tag to compare
Replacing instances of array() with [] for improved legibility