- Fix: Correctly update query cache when search results have changed (see `issue 560 <https://github.com/msiemens/tinydb/issues/560>`_).
4.8.1
^^^^^^^^^^^^^^^^^^^
- Feature: Allow persisting empty tables (see `pull request 518 <https://github.com/msiemens/tinydb/pull/518>`_). - Fix: Make replacing ``doc_id`` type work properly (see `issue 545 <https://github.com/msiemens/tinydb/issues/545>`_).
4.8.0
^^^^^^^^^^^^^^^^^^^
- Feature: Allow retrieve multiple documents by document ID using ``Table.get(doc_ids=[...])`` (see `pull request 504 <https://github.com/msiemens/tinydb/pull/504>`_).
4.7.1
^^^^^^^^^^^^^^^^^^^
- Improvement: Improve typing annotations (see `pull request 477 <https://github.com/msiemens/tinydb/pull/477>`_). - Improvement: Fix some typos in the documentation (see `pull request 479 <https://github.com/msiemens/tinydb/pull/479>`_ and `pull request 498 <https://github.com/msiemens/tinydb/pull/498>`_).
4.7.0
^^^^^^^^^^^^^^^^^^^
- Feature: Allow inserting ``Document`` instances using ``Table.insert_multiple`` (see `pull request 455 <https://github.com/msiemens/tinydb/pull/455>`_). - Performance: Only convert document IDs of a table when returning documents. This improves performance the ``Table.count`` and ``Table.get`` operations and also for ``Table.search`` when only returning a few documents (see `pull request 460 <https://github.com/msiemens/tinydb/pull/460>`_). - Internal change: Run all ``Table`` tests ``JSONStorage`` in addition to ``MemoryStorage``.
4.6.1
^^^^^^^^^^^^^^^^^^^
- Fix: Make using callables as queries work again (see `issue 454 <https://github.com/msiemens/tinydb/issues/454>`__)