-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BREAKING CHANGE: Changed names of NewRelic metric names and values. Has potential to break NewRelic dashboards or alerts, but should not have an affect on deployed code. - Renamed 'request_auth_type' to 'request_auth_type_guess'. This makes it more clear that this metric could be wrong in certain cases. - Renamed value `session-or-unknown` to `session-or-other`. This name makes it more clear that it is the method of authentication that is in question, not whether or not the user is authenticated. - Added 'jwt-cookie' as new value for 'request_auth_type_guess'. - Added new 'request_authenticated_user_found_in_middleware' metric. Helps identify for what middleware step the request user was set, if it was set. Example values: 'process_request', 'process_view', 'process_response', or 'process_exception'. - Fixed/Added setting of authentication metrics for exceptions as well. - Fixed values of 'unauthenticated' and 'no-user' for 'request_auth_type_guess' to be more accurate. ARCHBOM-128
- Loading branch information
Showing
3 changed files
with
132 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
""" edx Django REST Framework extensions. """ | ||
|
||
__version__ = '5.1.0' # pragma: no cover | ||
__version__ = '6.0.0' # pragma: no cover |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters