Releases: crocodile2u/tinyorm
Releases · crocodile2u/tinyorm
Improvement release
Within transaction, support execution of statements that were prepared outside of the transaction:
$stmt = $db->prepare("...");
$db->multiAtomic(function() use ($stmt) {
return $stmt->execute();
});
Bugfixes & refactoring
v1.1.0 Fixed handling of nested transactions; refactored code - all nested t…
Bugfix release
Fixes a bug in DbDriver::findAllByColumn()
Bugfix release
- Fixed a bug handling nested transactions & rollbacks in TxManager
- Entity now implements JsonSerializable
Bugfix release
Refactored code and fixed a possible bug in DbDriver
Correct version management in composer.json
v1.0.2 removed version field
Minor improvements
v1.0.1 Added findByColumn; minor improvement to findAllByColumn; minor impro…
Stable release
After using tinyORM for several months now, it proved to be stable.
First beta
v0.5 added static Entity::find(); Entity->save(), Entity->delete(); added …