Skip to content

Releases: dwgebler/doclite

1.1.9 Release

22 Apr 14:29
Compare
Choose a tag to compare
  • Bumped Symfony dependencies

1.1.8 Release

28 Aug 14:34
4b48fc5
Compare
Choose a tag to compare
  • Fixes #32 by checking SQLite version before check for JSON extension.

1.1.7 Release

20 Mar 00:00
44f8eb0
Compare
Choose a tag to compare
  • Resolves issue #26

1.1.6 Release

29 Oct 17:58
a60b60c
Compare
Choose a tag to compare
  • Adds support for query and error logging via a PSR compatible LoggerInterface.
  • Adds ability to create unique indexes on collections via $collection->addUniqueIndex(....$fields)

1.1.5 Release

16 Apr 10:00
c856311
Compare
Choose a tag to compare
  • Bumps dependencies to support Symfony 6 components

1.1.4 Release

01 Jan 13:42
97a9bf7
Compare
Choose a tag to compare
  • Fixes bug with QueryBuilder queries on floats in PHP 8. (issue #14)

1.1.3 Release

13 Nov 00:08
d5fa985
Compare
Choose a tag to compare
  • Fixed bug where documents mapped to custom classes do not encode internal ID field correctly if the ID contains escapable characters.

1.1.2 Release

30 Oct 16:03
6100d62
Compare
Choose a tag to compare
  • Added BETWEEN query operator, equivalent to field >= {value1} AND field <= {value2}.
  • Added native DateTimeInterface handler for query values.

1.1.1 Release

17 Oct 18:52
732d4fa
Compare
Choose a tag to compare
  • Fixed bug where invalid joins (for example, join on empty collection) could cause TypeError.
  • Fixed incorrect version number in Database::getVersion().

1.1.0 Release

20 Sep 16:06
94bc15a
Compare
Choose a tag to compare
  • Added support for full text searches (see README docs).
  • Added support for joining collections (see README docs).
  • Added timeout option to FileDatabase and MemoryDatabase constructors to indicate
    the SQLite busy timeout in seconds (how long to wait to acquire if DB is locked on connection).