Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions RELEASE.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
Release Notes
=============

Version 0.136.1
---------------

- Remove social auth (#3127)
- REmoved banner and footer (#3120)
- Handle blank signatories in migrate_edx_data (#3125)
- add a management command backfill_certificate_page_revision (#3115)
- fix: Fix LTI based duplicate email users (#3098)
- fix: sync keycloak users to hubspot on create (#3119)
- fix(deps): update dependency social-auth-app-django to v5.6.0 [security] (#3005)
- Add multiple items to cart (#3117)
- Upgrade django to 5.1.15 (#3108)
- Removed option related to unused pgbouncer (#3118)
- Fix close button on add to cart confirm modal (#3114)
- Update retrieve user api to be versioned (#3102)
- Fix a 500 error when previewing CertificatePage from CMS (#3116)
- Hubspot course name fix (#3100)
- Fix b2b management commands (#3113)

Version 0.135.6 (Released December 01, 2025)
---------------

Expand Down
9 changes: 9 additions & 0 deletions authentication/backends/apisix_remote_user_org.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from mitol.apigateway.backends import ApisixRemoteUserBackend

from b2b.api import reconcile_user_orgs
from hubspot_sync.task_helpers import sync_hubspot_user

log = logging.getLogger(__name__)

Expand Down Expand Up @@ -42,4 +43,12 @@ def configure_user(self, request, user, *args, created=True):
# Task should check to see if it needs to run or not
reconcile_user_orgs(user, org_uuids)

if created:
log.info(
"New user created via APISIX/Keycloak, syncing to HubSpot: user_id=%s, email=%s",
user.id,
user.email,
)
sync_hubspot_user(user)

return user
37 changes: 0 additions & 37 deletions authentication/backends/ol_open_id_connect.py

This file was deleted.

98 changes: 0 additions & 98 deletions authentication/exceptions.py

This file was deleted.

36 changes: 0 additions & 36 deletions authentication/middleware.py

This file was deleted.

61 changes: 0 additions & 61 deletions authentication/middleware_test.py

This file was deleted.

Empty file.
Loading