Releases: waveaccounting/dj-inmemorystorage
Releases · waveaccounting/dj-inmemorystorage
2.1.0
- Adds support for Django class serialization by adding a
@deconstructdecorator toInMemoryStorage - Adds an
__eq__method toInMemoryStoragefor Django migrations. - Adds the
pathargument whenPathDoesNotExistis raised, which helps with stack traces.
PyPI: https://pypi.org/project/dj-inmemorystorage/2.1.0/
PRs: #18, #20
2.0.0
Updates for new Python and Django versions. Removal of support for old Python and Django versions.
BREAKING:
- Stop testing Python 2.6, 3.2, 3.3, 3.4.
- Stop testing Django < 1.11
NEW:
- Start testing Python 3.7, 3.8
- Start testing Django 2.2, 3.0
PyPI: https://pypi.org/project/dj-inmemorystorage/2.0.0/
Pull Request: #17
UPCOMING:
There will likely be another update in April 2020 when Django 1.11 is not supported as an LTS release anymore. We will likely drop Python 2.7 entirely and Django 1.11 support. This will be released as version 3.0.0.
1.4.0
- Adds Windows support! Special thanks to Brian Grohe
1.3.0
- Added
INMEMORYSTORAGE_PERSISToption, which will allow writes to be persisted in memory during testing.
Set INMEMORYSTORAGE_PERSIST = True to enable this option (off by default).
1.2.0
- Support for the
bytestype in Python 3+
1.1.0
- Added support for
url,modified_time,created_time, andaccessed_time
1.0.4
- Fixes for TravisCI and Django 1.7+
1.0.3
- Require
six>=1.4.1
1.0.2
- Adding more setup.py classifiers.