You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All methods starting with list_ have been deprecated. Each has been replaced with a corresponding method starting with get_. For example, Course.list_groups() is now Course.get_groups(). The list_ methods will be removed in a future release. (Thanks @qwertynerd97 for doing the bulk of the grunt work.)
Course.update_tab() is now deprecated. Use Tab.update() instead.
Bugfixes
Fixed a bug where taking a slice of a PaginatedList where the start was larger than the list caused an infinite loop.
Fixed a typo that prevented Assignment.submit() from working properly. (Thanks, @Tobiaqs)