Skip to content
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

[App Service] Fix #30707: az webapp auth openid-connect add: "scopes" parameter description #8445

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/authV2/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Release History
===============

1.0.0
++++++
* Update az webapp auth openid-connect add "scopes" parameter description to include how to add multiple scopes. Bump major version as requested.

0.1.3
++++++
* BREAKING CHANGE: remove output for `az webapp auth-classic update`.
Expand All @@ -13,4 +17,4 @@ Release History

0.1.0
++++++
* Initial release.
* Initial release.
2 changes: 1 addition & 1 deletion src/authV2/azext_authV2/_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def load_arguments(self, _):
c.argument('openid_configuration', options_list=['--openid-configuration'],
help='The endpoint that contains all the configuration endpoints for the provider.')
c.argument('scopes', options_list=['--scopes'],
help='A list of the scopes that should be requested while authenticating.')
help='A space separated list of the scopes that should be requested while authenticating.')
c.argument('client_secret', options_list=['--client-secret'],
help='The application secret of the app used for login.')
c.argument('yes', options_list=['--yes', '-y'], help='Do not prompt for confirmation.', action='store_true')
Expand Down
2 changes: 1 addition & 1 deletion src/authV2/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from distutils import log as logger
logger.warn("Wheel is not available, disabling bdist_wheel hook")

VERSION = '0.1.3'
VERSION = '1.0.0'

# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down
Loading