Caution
This release contains potentially breaking changes. Previous versions had optional support for Redis, if its address wasn't provided through a flag – the service would use in-memory structures for storing cache and task queue. Starting from this version, Redis is required. If you don't provide the URL to Redis when upgrading and the service can't connect to the default address (redis://localhost:6379/0) – it won't function. The decision to remove support for non-Redis in-memory cache and queue was taken to simplify development and increase the reliability of the service.
What's Changed
- Implement Redis queue by @man90es in #68
- Remove in-memory cache option by @man90es in #69
- Implement adding extra metadata to Redis cache entries by @man90es in #71
Full Changelog: v1.18.4...v1.19.0