Skip to content

Tags: thecodingmachine/tdbm

Tags

v5.3.15

Toggle v5.3.15's commit message
⚡ Hydrate not-loaded objects on retrieval Previously there were a bug (reproduced in tests) where retrieving an already not-loaded object would not hydrate it and hence trigger a new query on access.

v6.0.9

Toggle v6.0.9's commit message
⚡ Hydrate not-loaded objects on retrieval Previously there were a bug (reproduced in tests) where retrieving an already not-loaded object would not hydrate it and hence trigger a new query on access.

v6.0.8

Toggle v6.0.8's commit message
⬆️ Upgrade beberlei/porpaginas to ^2.0 to avoid php compatibility issues 

v6.0.7

Toggle v6.0.7's commit message
fix issue in result iteratornow that total_count is not been initialized 

v6.0.6

Toggle v6.0.6's commit message
Revert "Replace Porpaginas with self-owned code" This reverts commit 45fe740. This is required to keep compatibility with GraphQLite. While this is technically a breaking change, the 6.0 version has low pulls and this interface is mostly internal. The original commit was there to remove a deprecation warning. We still have no feedback from porpaginas project. I believe that porpaginas will be updated once PHP effectively introduces the breaking change on the interface.

v6.0.5

Toggle v6.0.5's commit message
🐛 Fix optional declared before required parameter in findOneBy with U… …NIQUE Given UNIQUE(a INT, ?b INT, c INT) this fixes the collowing case: ```diff -findOneByAAndBAndC(int $a, ?int $b = null, int $c) +findOneByAAndBAndC(int $a, ?int $b, int $c) ``` Cleanup dead code This as-well fix deprecation: - `createSchema` becomes `introspectSchema` - `${var}` becomes `{$var}`

v6.0.4

Toggle v6.0.4's commit message
✨ Support default_table_options to lock file (from SchemaConfig) 

v6.0.3

Toggle v6.0.3's commit message
📄 Add LICENSE file with MIT License Fixes #293

v6.0.2

Toggle v6.0.2's commit message
✨ Add `TDBMService::clearBeanCache` method This method can be used to cleanup every bean so long-running process won't keep old data.

v6.0.1

Toggle v6.0.1's commit message
✨ Add boolean type hinting to avoid warnings Port of 1e18204 Remove deprecated usage of `Connection::PARAM_STR_ARRAY` and `Connection::PARAM_INT_ARRAY`