- Reduce schedule queries by using a request cache for get_schedule_for_user.
- Add support for Python 3.11. Dropped django32 support.
- Switch from
edx-sphinx-theme
tosphinx-book-theme
since the former is deprecated
- Support added for Django 4.2
- Added Django40 support
- Dropped Django22, 30 and 31 support
- Bug fix to bust cache when Personalized Learner Schedules are updated.
- Bug fix for optimization in 2.2.0, to account for missing block_type data.
- Added optimization when requesting course block dates for an outline, where block dates below subsections are unneeded.
- Use current version of the course to improve the cache key, along with using the TieredCache to cache date data.
Added Django 3.2 Support
Dropped python3.5 support.
Don't warn about missing schedules for relative dates. It happens for legitimate reasons, and the layer above can check instead.
Updated travis badge in README.rst to point to travis-ci.com instead of travis-ci.org
Django 3.x deprecation warnings are fixed
Don't return due dates for enrollments originally created too close to the course end to allow for finishing the course in time.
Don't return due dates for enrollments created after course end
Updates function in API for finding learners with a specific Schedule that has an assignment on a given day, to also be inclusive of absolute date schedules (everyone active in the course without an override).
- Dropped support for Django versions below 2.2
- Added support for python 3.8
- Drop the active index from ContentDate. It has low cardinality and Aurora was doing a lot of extra work to try to do an intersect query with that and the course_id index, when using the latter by itself would be far more efficient.
- Use memcache to cache ContentDate information in get_dates_for_course
- First release on PyPI.