summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Extra logging for verifying signatures.Hoylen Sue2017-08-012-4/+17
| | |
| * | Include function names for NotImplementedError exceptions.Hoylen Sue2017-08-011-24/+33
| | |
| * | Extra logging for verification failures.Hoylen Sue2017-08-011-0/+1
| | |
| * | Documented PyJWT dependency for RSA-SHA1 signatures.Hoylen Sue2017-08-012-8/+9
|/ /
* | Merge pull request #473 from jdufresne/assertequalOmer Katz2017-07-302-19/+18
|\ \ | | | | | | Replace all uses of assertEquals with assertEqual
| * | Replace all uses of assertEquals with assertEqualJon Dufresne2017-04-162-19/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | assertEquals is deprecated in favor of assertEqual. When running tests, fixes warnings of the form: DeprecationWarning: Please use assertEqual instead. For more information, see: https://docs.python.org/3/library/unittest.html#deprecated-aliases
* | | Merge pull request #474 from jdufresne/bytes-warningsOmer Katz2017-07-301-1/+1
|\ \ \ | | | | | | | | Fix BytesWarning issued when using a string placeholder for bytes object
| * | | Fix BytesWarning issued when using a string placeholder for bytes objectJon Dufresne2017-04-161-1/+1
| |/ / | | | | | | | | | | | | | | | When running tests, fixes warnings of the form: .../oauthlib/oauthlib/oauth1/rfc5849/utils.py:56: BytesWarning: str() on a bytes instance
* | | Merge pull request #472 from jdufresne/py36Omer Katz2017-07-302-27/+20
|\ \ \ | | | | | | | | Add Python 3.6 to Travis CI testing and trove classifiers
| * | | Add Python 3.6 to Travis CI testing and trove classifiersJon Dufresne2017-04-162-27/+20
| |/ /
* | | Merge pull request #478 from jdufresne/bdistOmer Katz2017-07-301-1/+1
|\ \ \ | | | | | | | | Rename [wheel] section to [bdist_wheel] as the former is legacy
| * | | Rename [wheel] section to [bdist_wheel] as the former is legacyJon Dufresne2017-06-021-1/+1
| |/ / | | | | | | | | | | | | | | | | | | | | | See: https://bitbucket.org/pypa/wheel/src/54ddbcc9cec25e1f4d111a142b8bfaa163130a61/wheel/bdist_wheel.py?fileviewer=file-view-default#bdist_wheel.py-119:125 http://pythonwheels.com/
* | | Merge pull request #479 from brettcannon/patch-1Omer Katz2017-07-301-2/+2
|\ \ \ | | | | | | | | Use SVG badges in README
| * | | Use SVG badges in READMEBrett Cannon2017-06-131-2/+2
| |/ / | | | | | | They look nicer than the PNG versions.
* | | Merge pull request #465 from skion/fragment-hybridsOmer Katz2017-07-303-3/+16
|\ \ \ | | | | | | | | Hybrid response types should be fragment-encoded
| * | | Fix tests for hybrid fragments.Pieter Ennes2017-07-292-3/+14
| | | |
| * | | Hybrid response types should be fragment-encoded.Pieter Ennes2017-07-291-0/+2
|/ / /
* | | Merge pull request #480 from orenmazor/wrong_url_errorOmer Katz2017-06-154-4/+4
|\ \ \ | |/ / |/| | redirect_uri mismatch
| * | adjust the test for the new exceptionOren Mazor2017-06-143-3/+3
| | |
| * | switch to sending the MismatchingRedirectURIError insteadOren Mazor2017-06-141-1/+1
| | |
| * | return a more descriptive error when a redirect url is provided and it is wrongOren Mazor2017-06-141-1/+1
|/ /
* | Merge pull request #461 from skion/rfc6750-errorsOmer Katz2017-04-032-31/+66
|\ \ | | | | | | Add two error codes from RFC 6750
| * | Add two error codes from RFC 6750.Pieter Ennes2017-04-022-31/+66
| | |
* | | Merge pull request #466 from skion/promptOmer Katz2017-04-032-11/+36
|\ \ \ | |/ / |/| | Improve prompt parameter validation
| * | Add test for prompt=none exclusiveness.Pieter Ennes2017-04-021-0/+18
| | |
| * | Improve prompt parameter validation.Pieter Ennes2017-04-021-11/+18
|/ / | | | | | | | | | | - Strip leading and trailng spaces. - Disallow prompt=none with other values as per spec. - Pass to credentials as a set.
* | Merge pull request #453 from kippandrew/fix-revocation-public-clientsOmer Katz2017-03-312-14/+28
|\ \ | | | | | | Public clients should be validated when revoking tokens
| * | Python 3 fixesAndy Kipp2016-12-061-1/+1
| | |
| * | Fix testsAndy Kipp2016-12-061-13/+23
| | |
| * | Authenticate public clients before revocationAndy Kipp2016-12-061-0/+4
| | |
* | | Merge pull request #456 from empiricalthought/masterOmer Katz2017-03-311-2/+6
|\ \ \ | | | | | | | | Add log statements to except clauses
| * | | Use a more grep-able variable nameSteven Huwig2017-01-091-4/+4
| | | |
| * | | Add log statements to except clausesSteven Huwig2017-01-051-2/+6
| | |/ | |/|
* | | Merge pull request #459 from jdufresne/uni-wheelOmer Katz2017-03-311-0/+2
|\ \ \ | | | | | | | | Add universal wheel support
| * | | Add universal wheel supportJon Dufresne2017-02-061-0/+2
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | See http://pythonwheels.com/ Python wheels provide faster installation for pure Python packages. To upload a wheel to PyPI use the command: python setup.py sdist bdist_wheel upload
* | | Merge pull request #463 from skion/fragment-errorsOmer Katz2017-03-312-2/+7
|\ \ \ | | | | | | | | Redirect errors according to OIDC's response_mode.
| * | | Redirect errors according to response_mode.Pieter Ennes2017-02-212-2/+7
| |/ /
* | | Merge pull request #464 from cknave/case-insensitive-dict-updateOmer Katz2017-03-312-0/+10
|\ \ \ | | | | | | | | Update proxy keys on CaseInsensitiveDict.update()
| * | | Update proxy keys on CaseInsensitiveDict.update()Kevin Vance2017-02-232-0/+10
| |/ /
* | | Merge pull request #462 from skion/oidc-errorsOmer Katz2017-03-311-1/+43
|\ \ \ | | | | | | | | Add remaining OIDC errors
| * | | Fix typo in account_selection_required exception name.Pieter Ennes2017-02-141-1/+1
| | | |
| * | | Add missing OpenID Connect error codes.Pieter Ennes2017-02-141-0/+42
| |/ /
* | | Merge pull request #467 from ajpaul510/masterOmer Katz2017-03-311-1/+1
|\ \ \ | | | | | | | | Fixed client.rst
| * | | Fixed client.rstAj2017-03-061-1/+1
| |/ / | | | | | | Fixed grammar on line 7.
* | | Bump version to 2.0.2.v2.0.2Omer Katz2017-03-192-1/+5
| | |
* | | Merge pull request #455 from bjmc/prompt_bugOmer Katz2017-03-192-1/+56
|\ \ \ | |/ / |/| | Fixes bug with 'prompt' parameter
| * | Do not split() request.prompt value if already a listBrendan McCollam2016-12-201-1/+6
| | |
| * | Adds failing testBrendan McCollam2016-12-201-0/+50
| |/
* | Merge pull request #449 from bjmc/improve_validator_registrationOmer Katz2016-12-2319-199/+360
|\ \ | |/ |/| Improve validator registration
| * Updated docs for custom validatorsBrendan McCollam2016-12-223-6/+47
| |