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

Remove preview tag for config server features in Enterprise tier #8115

Merged
merged 3 commits into from
Oct 12, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
4 changes: 4 additions & 0 deletions src/spring/HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Release History
===============
1.26.0
---
* Remove `Preview` tag for config server features in Enterprise tier.

1.25.1
---
* Drop `msrestazure` dependency.
Expand Down
2 changes: 0 additions & 2 deletions src/spring/azext_spring/_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,6 @@ def load_arguments(self, _):
c.argument('enable_config_server',
action='store_true',
options_list=['--enable-config-server', '--enable-cs'],
is_preview=True,
arg_group="Config Server",
help='(Enterprise Tier Only) Enable Config Server.')
c.argument('enable_application_live_view',
Expand Down Expand Up @@ -377,7 +376,6 @@ def load_arguments(self, _):
c.argument('bind_config_server',
action='store_true',
options_list=['--bind-config-server', '--bind-cs'],
is_preview=True,
validator=validate_create_app_binding_default_config_server,
help='Bind the app to the default Config Server automatically.')
c.argument('cpu', arg_type=cpu_type)
Expand Down
8 changes: 4 additions & 4 deletions src/spring/azext_spring/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,10 +171,10 @@ def load_command_table(self, _):
g.custom_show_command('show', 'config_get')
g.custom_command('enable', 'config_enable')
g.custom_command('disable', 'config_disable')
g.custom_command('create', 'config_create', is_preview=True)
g.custom_command('delete', 'config_delete', confirmation=True, is_preview=True)
g.custom_command('bind', 'config_bind', is_preview=True)
g.custom_command('unbind', 'config_unbind', confirmation=True, is_preview=True)
g.custom_command('create', 'config_create')
g.custom_command('delete', 'config_delete', confirmation=True)
g.custom_command('bind', 'config_bind')
g.custom_command('unbind', 'config_unbind', confirmation=True)

with self.command_group('spring config-server git',
supports_local_cache=True, exception_handler=handle_asc_exception) as g:
Expand Down
2 changes: 1 addition & 1 deletion src/spring/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# TODO: Confirm this is the right version number you want and it matches your
# HISTORY.rst entry.
VERSION = '1.25.1'
VERSION = '1.26.0'

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