Skip to content

Releases: crocodile2u/tinyorm

Improvement release

22 Jun 11:27
Compare
Choose a tag to compare

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

13 Jun 08:55
Compare
Choose a tag to compare
v1.1.0

Fixed handling of nested transactions; refactored code - all nested t…

Bugfix release

29 May 10:23
Compare
Choose a tag to compare

Fixes a bug in DbDriver::findAllByColumn()

Bugfix release

06 May 08:42
Compare
Choose a tag to compare
  • Fixed a bug handling nested transactions & rollbacks in TxManager
  • Entity now implements JsonSerializable

Bugfix release

08 Jan 13:24
Compare
Choose a tag to compare

Refactored code and fixed a possible bug in DbDriver

Correct version management in composer.json

28 Dec 14:41
Compare
Choose a tag to compare
v1.0.2

removed version field

Minor improvements

28 Dec 14:04
Compare
Choose a tag to compare
v1.0.1

Added findByColumn; minor improvement to findAllByColumn; minor impro…

Stable release

22 Dec 09:51
Compare
Choose a tag to compare

After using tinyORM for several months now, it proved to be stable.

First beta

01 Apr 21:02
Compare
Choose a tag to compare
First beta Pre-release
Pre-release
v0.5

added static Entity::find(); Entity->save(), Entity->delete(); added …