Skip to content

Releases: openedx/edx-organizations

v7.0.0

23 Sep 16:22
02ae699
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v6.13.0...v7.0.0

v6.13.0

02 Apr 19:51
39f1d43
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 6.12.1...v6.13.0

6.12.1

08 Aug 08:06
9002887
Compare
Choose a tag to compare

What's Changed

  • build: update django-simple-history package version by @UsamaSadiq in #324

Full Changelog: 6.12.0...6.12.1

6.12.0

20 Jul 07:37
494b9c0
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v6.11.1...6.12.0

v6.11.1

16 Mar 06:43
2830ae6
Compare
Choose a tag to compare

What's Changed

fix: period inside short name returns 404 #244

Full Changelog: v6.11.0...v6.11.1

v6.11.0

18 Feb 07:09
c107c06
Compare
Choose a tag to compare

What's Changed

Full Changelog: 6.10.1...v6.11.0

Test Move from edx org to openedx org.

15 Dec 16:55
abcb854
Compare
Choose a tag to compare

Test that we can properly publish to PyPI from the new location in the openedx org.

Added support for Django 3.2

28 Jul 13:26
4e1ae2c
Compare
Choose a tag to compare

Added support for Django 3.2

Add history table & activate/deactivate admin actions for OrganizationCourse

08 Feb 17:55
Compare
Choose a tag to compare

We needed an interface to bulk activate/deactivate organization-course linkages. This version implements one in the Django Admin panel, based on the existing admin action for activating/deactivating organizations.

Also, we add history tracking to the OrganizationCourse model. Unfortunately, changes made via bulk edit will not be reflected in the history table due to limitations in Django ORM's bulk-write API.

For screenshots, see #169

Allow inactive orgs to be updated through HTTP API

25 Jan 20:30
24d4ec4
Compare
Choose a tag to compare

Fixed a bug where Course Discovery could not push organization updates to LMS/Studio if the organization already existed there but was inactive.

Specific changes to the v0/organizations API:

  1. Any organization may be updated via the PUT method, regardless of whether or not it is active.
  2. Upon being updated, the organization is marked as active, whether it was previously active, inactive, or non-existent.
  3. The 'active' field may not be set or updated via the HTTP API, because that would be in conflict with change 2.

See #165 for details.