-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow to specify the type of remote authentication #5438
base: main
Are you sure you want to change the base?
Conversation
1200841
to
d29d56e
Compare
5cd00a0
to
1f3b4df
Compare
f3025d2
to
2e03ece
Compare
When configuring remote authentication (by the reverse proxy), one should be able to augment the openAPI security specification accordingly. fixes pulp#5437
2e03ece
to
d2fe1e9
Compare
@@ -15,7 +15,7 @@ djangorestframework>=3.14.0,<=3.15.1 | |||
djangorestframework-queryfields>=1.0,<=1.1.0 | |||
drf-access-policy>=1.1.2,<1.5.1 | |||
drf-nested-routers>=0.93.4,<=0.94.1 | |||
drf-spectacular==0.26.5 # We monkeypatch this so we need a very narrow requirement string | |||
drf-spectacular==0.27.2 # We monkeypatch this so we need a very narrow requirement string |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this PR need 0.26.5 specifically? or is this an incidental change? If the latter - including in this PR makes the PR way harder to backport.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's worse than that. Seems like we need openapi 3.1 instead of 3.0.3 and now we need to coordinate a lot of other things including the openapi-generator.
But on the one hand we'll probably not backport this feature, and otoh i split this version bump into another PR already.
This pull request has been marked 'stale' due to lack of recent activity. If there is no further activity, the PR will be closed in another 30 days. Thank you for your contribution! |
When configuring remote authentication (by the reverse proxy), one should be able to augment the openapi security specification accordingly.
fixes #5437