This repository has been archived by the owner on Jun 2, 2024. It is now read-only.
Releases: tmarois/Filebase
Releases · tmarois/Filebase
Version 1.0.24
- Merged Pull Request – Fixed a bug returning unexpected results.
Version 1.0.23
- Merged Pull Request Added support for order by multiple columns
- Merged Pull Request Added ability to query document ids (internal id)
- Added ability to use query
delete()
on all items that match the query (making the custom filter optional)
Version 1.0.22
- Merged Pull Request for deleting items with a custom filter. (this adds the
delete()
method on queries.) - Merged Pull Request for calling to the Query methods directly on the database class.
- Merged Pull Request for sorting by update/created at times (ability to fetch
__created_at
and__updated_at
)
Version 1.0.21 (YAML Format)
- Merged Pull Request for YAML format.
Version 1.0.20 (Query Cache Fix)
- Fixed #23 – Caching is cleared when deleting/saving documents to prevent the cache from being out of sync with document data.
NOTE: database::VERSION
does say 1.0.19
in the class, this will be resolved in the next release.
Version 1.0.19 (Feature Release)
- Added #21 for checking database record exists, added
has()
method on database.
NOTE: database::VERSION
does say 1.0.18
in the class, this will be resolved in the next release.
Version 1.0.18 (PHP 5.6)
- Fixed #17 for PHP 5.6
- Replaced the spaceship operators with a php 5.6 alternative.
- Removed the php 7 type hinting.
- Added php >= 5.6 as the new requirement for install.
Version 1.0.17 (Patch Update)
- Fixed #19 the
AND
query logic. (previously thewhere()
query would only used the last one in the chain).
Version 1.0.16 (Patch Release)
- Fixed #15 - the scope resolution operator
::
for php 5.6 which throws theT_PAAMAYIM_NEKUDOTAYIM
exception error.
Version 1.0.15 (Patch Release)
- Quick patch on composer.json file for dev dependency with satooshi/php-coveralls issues on dev-master. (this would have only affected new users from trying to install via composer.)