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

Releases: brokencube/automatorm

Minor Bug

15 Feb 16:30
Compare
Choose a tag to compare

Minor bug fix for Internal Cache clearing: Cannot unset static variables -> set to blank array instead!

Moved to PSR-4

01 Feb 15:05
Compare
Choose a tag to compare

Main version bump, just in case

3.12.0.0

01 Feb 13:13
Compare
Choose a tag to compare
Adding support for Unix Sockets in Database connection

3.11.1.0

01 Feb 11:56
Compare
Choose a tag to compare
Disallowing __set() on collections

M-M Fix for duplicate entries

06 Jan 11:35
Compare
Choose a tag to compare
Adding "INSERT IGNORE" into Query Builder.

Fixing bug where M-M joins which get pushed duplicate items cause SQL Contraint errors

Improvements to PartialResults and Dump

07 Dec 11:47
Compare
Choose a tag to compare

PartialResults now no longer have to resolve model objects to resolve column data.

Dump output improved to limit number of Model objects created.

Bugfix

21 Nov 11:33
Compare
Choose a tag to compare
3.9.0.1

Fixing error with detecting incorrect Models passed to __set where co…

Additional Checking when setting foreign key columns

18 Nov 11:21
Compare
Choose a tag to compare

If you use the shorthand foreign key assignment:

$db = Table::newData();
$db->account = Account::get(1);
$db->commit;

Automatorm will now check that the passed object (Account::get(1)) refers to the same table as the foreign key ($db->account). If there is a mismatch, an exception will be thrown.

Bugfix release

07 Nov 16:06
Compare
Choose a tag to compare
3.8.0.1

Incorrect variable name from last commit :(

3.8.0.0: Fixing Collection to have $affix'es instead of $prefix'es.

07 Nov 13:38
Compare
Choose a tag to compare
- Also handling $affixes that are currently not implemented outside of SQL (# and %)