You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
⚡ 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.
⚡ 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.
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.
🐛 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}`
✨ Add boolean type hinting to avoid warnings Port of 1e18204 Remove deprecated usage of `Connection::PARAM_STR_ARRAY` and `Connection::PARAM_INT_ARRAY`