Skip to content

Commit

Permalink
Bump major version (3.0.0 -> 4.0.0)
Browse files Browse the repository at this point in the history
Rationale: Breaking changes in scope handling

* Request handling is sped up by processing API config once, at
  application start, rather than on every request. Additionally, we
  now avoid an unnecessary Python->JSON->Python roundtrip.
* Dead code from the JSON-RPC support has been removed.
* The api_backend and api_backend_service modules have been removed;
  nearly all of that code was dead anyway.
* The OAuth scope support now properly supports situations where
  multiple scopes must be present for a request to proceed.
* Added a deprecation warning when auth_level is used.
  • Loading branch information
inklesspen committed Apr 13, 2018
1 parent 78dc6b5 commit b4c93f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion endpoints/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
from .users_id_token import InvalidGetUserCall
from .users_id_token import SKIP_CLIENT_ID_CHECK

__version__ = '3.0.0'
__version__ = '4.0.0'

0 comments on commit b4c93f7

Please sign in to comment.