aliev / aioauth

Asynchronous OAuth 2.0 provider for Python 3
https://aliev.me/aioauth
MIT License
213 stars 19 forks source link

Implement token revocation endpoint #84

Closed mgorven closed 1 year ago

mgorven commented 1 year ago

RFC 7009: OAuth 2.0 Token Revocation https://datatracker.ietf.org/doc/html/rfc7009

codecov-commenter commented 1 year ago

Codecov Report

Merging #84 (aa72462) into master (c1f3a87) will decrease coverage by 0.68%. The diff coverage is 70.58%.

:mega: This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more

@@            Coverage Diff             @@
##           master      #84      +/-   ##
==========================================
- Coverage   98.55%   97.87%   -0.68%     
==========================================
  Files          15       15              
  Lines         691      707      +16     
  Branches      106      110       +4     
==========================================
+ Hits          681      692      +11     
- Misses          4        6       +2     
- Partials        6        9       +3     
Impacted Files Coverage Δ
aioauth/types.py 100.00% <ø> (ø)
aioauth/server.py 95.30% <64.28%> (-3.22%) :arrow_down:
aioauth/errors.py 100.00% <100.00%> (ø)
aioauth/storage.py 100.00% <100.00%> (ø)

:mega: We’re building smart automated test selection to slash your CI/CD build times. Learn more

shawn-monadical commented 3 months ago

Hi there @aliev, it seems like this didn't get included in the most recent release v1.5.4, was that intentional? Do you know when this feature might get released? Thanks, Shawn

aliev commented 3 months ago

Hi, @shawn-monadical

Sorry for the late reply; I had a tough week. Give me some time after the weekend, and I will review all possible options regarding the release. I’ll also try to answer your questions in Discussions.

shawn-monadical commented 3 months ago

No worries @aliev, hope you're feeling better and of course thank you for your work on this excellent project. It's been a big help for me.

aliev commented 3 months ago

@shawn-monadical I released v1.6.0. Could you check, please?

shawn-monadical commented 3 months ago

Thanks @aliev, it seems the token revocation endpoint and the new OIDC classes are included in the latest release, exactly what I needed!