Skip to content

Commit 855ee34

Browse files
committed
fix CI
1 parent edf4d02 commit 855ee34

9 files changed

+16573
-16893
lines changed

src/containerapp/HISTORY.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Release History
55
upcoming
66
++++++
77
* 'az containerapp add-on' : support for add-on milvus create and delete commands
8-
* [Breaking Change] 'az containerapp service': deprecate command from Azure CLI version 2.56.1
8+
* [Breaking Change] 'az containerapp service': deprecate command from Azure CLI version 2.59.0
99
* 'az containerapp add-on' : support for add-on weaviate create and delete commands
1010
* Upgrade api-version to 2023-11-02-preview
1111
* 'az containerapp create/update/up': support --build-env-vars to set environment variables for build

src/containerapp/azext_containerapp/commands.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -50,45 +50,45 @@ def load_command_table(self, _):
5050
with self.command_group('containerapp env dapr-component') as g:
5151
g.custom_command('init', 'init_dapr_components', is_preview=True)
5252

53-
with self.command_group('containerapp service', deprecate_info=self.deprecate(redirect='containerapp add-on', expiration='2.56.1', hide=True), is_preview=True) as g:
53+
with self.command_group('containerapp service', deprecate_info=self.deprecate(redirect='containerapp add-on', expiration='2.58.1', hide=True), is_preview=True) as g:
5454
g.custom_command('list', 'list_all_services')
5555

5656
with self.command_group('containerapp add-on', is_preview=True) as g:
5757
g.custom_command('list', 'list_all_services')
5858

59-
with self.command_group('containerapp service redis', deprecate_info=self.deprecate(redirect='containerapp add-on redis', expiration='2.56.1', hide=True)) as g:
59+
with self.command_group('containerapp service redis', deprecate_info=self.deprecate(redirect='containerapp add-on redis', expiration='2.58.1', hide=True)) as g:
6060
g.custom_command('create', 'create_redis_service', supports_no_wait=True)
6161
g.custom_command('delete', 'delete_redis_service', confirmation=True, supports_no_wait=True)
6262

6363
with self.command_group('containerapp add-on redis') as g:
6464
g.custom_command('create', 'create_redis_service', supports_no_wait=True)
6565
g.custom_command('delete', 'delete_redis_service', confirmation=True, supports_no_wait=True)
6666

67-
with self.command_group('containerapp service postgres', deprecate_info=self.deprecate(redirect='containerapp add-on postgres', expiration='2.56.1', hide=True)) as g:
67+
with self.command_group('containerapp service postgres', deprecate_info=self.deprecate(redirect='containerapp add-on postgres', expiration='2.58.1', hide=True)) as g:
6868
g.custom_command('create', 'create_postgres_service', supports_no_wait=True)
6969
g.custom_command('delete', 'delete_postgres_service', confirmation=True, supports_no_wait=True)
7070

7171
with self.command_group('containerapp add-on postgres') as g:
7272
g.custom_command('create', 'create_postgres_service', supports_no_wait=True)
7373
g.custom_command('delete', 'delete_postgres_service', confirmation=True, supports_no_wait=True)
7474

75-
with self.command_group('containerapp service kafka', deprecate_info=self.deprecate(redirect='containerapp add-on kafka', expiration='2.56.1', hide=True)) as g:
75+
with self.command_group('containerapp service kafka', deprecate_info=self.deprecate(redirect='containerapp add-on kafka', expiration='2.59.0', hide=True)) as g:
7676
g.custom_command('create', 'create_kafka_service', supports_no_wait=True)
7777
g.custom_command('delete', 'delete_kafka_service', confirmation=True, supports_no_wait=True)
7878

7979
with self.command_group('containerapp add-on kafka') as g:
8080
g.custom_command('create', 'create_kafka_service', supports_no_wait=True)
8181
g.custom_command('delete', 'delete_kafka_service', confirmation=True, supports_no_wait=True)
8282

83-
with self.command_group('containerapp service mariadb', deprecate_info=self.deprecate(redirect='containerapp add-on mariadb', expiration='2.56.1', hide=True)) as g:
83+
with self.command_group('containerapp service mariadb', deprecate_info=self.deprecate(redirect='containerapp add-on mariadb', expiration='2.59.0', hide=True)) as g:
8484
g.custom_command('create', 'create_mariadb_service', supports_no_wait=True)
8585
g.custom_command('delete', 'delete_mariadb_service', confirmation=True, supports_no_wait=True)
8686

8787
with self.command_group('containerapp add-on mariadb') as g:
8888
g.custom_command('create', 'create_mariadb_service', supports_no_wait=True)
8989
g.custom_command('delete', 'delete_mariadb_service', confirmation=True, supports_no_wait=True)
9090

91-
with self.command_group('containerapp service qdrant', deprecate_info=self.deprecate(redirect='containerapp add-on qdrant', expiration='2.56.1', hide=True)) as g:
91+
with self.command_group('containerapp service qdrant', deprecate_info=self.deprecate(redirect='containerapp add-on qdrant', expiration='2.59.0', hide=True)) as g:
9292
g.custom_command('create', 'create_qdrant_service', supports_no_wait=True)
9393
g.custom_command('delete', 'delete_qdrant_service', confirmation=True, supports_no_wait=True)
9494

src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_addon_binding_e2e.yaml

+5,495-6,915
Large diffs are not rendered by default.

src/containerapp/azext_containerapp/tests/latest/recordings/test_containerapp_dev_service_binding_customized_keys_e2e.yaml

+712-851
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)