Skip to content

Commit dc386ec

Browse files
authored
[Containerapp] Release version 1.1.0b4 (#8566)
1 parent f19d449 commit dc386ec

10 files changed

+32219
-36939
lines changed

src/containerapp/HISTORY.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ Release History
44
===============
55
upcoming
66
++++++
7-
* 'az containerapp create': support --kind {functionapp}
7+
8+
1.1.0b4
9+
++++++
10+
* 'az containerapp create': Support --kind {functionapp}
11+
* Removed preview tag for command groups 'az containerapp sessionpool' and 'az containerapp session code-interpreter'
812

913
1.1.0b3
1014
++++++

src/containerapp/azext_containerapp/commands.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,14 +255,14 @@ def load_command_table(self, args):
255255
g.custom_command('create', 'create_dotnet_component', supports_no_wait=True)
256256
g.custom_command('delete', 'delete_dotnet_component', confirmation=True, supports_no_wait=True)
257257

258-
with self.command_group('containerapp sessionpool', is_preview=True) as g:
258+
with self.command_group('containerapp sessionpool') as g:
259259
g.custom_show_command('show', 'show_session_pool')
260260
g.custom_show_command('list', 'list_session_pool')
261261
g.custom_command('create', 'create_session_pool', supports_no_wait=True)
262262
g.custom_command('update', 'update_session_pool', supports_no_wait=True)
263263
g.custom_command('delete', 'delete_session_pool', confirmation=True, supports_no_wait=True)
264264

265-
with self.command_group('containerapp session code-interpreter', is_preview=True) as g:
265+
with self.command_group('containerapp session code-interpreter') as g:
266266
g.custom_command('execute', 'execute_session_code_interpreter', supports_no_wait=True)
267267
g.custom_command('upload-file', 'upload_session_code_interpreter', supports_no_wait=True)
268268
g.custom_show_command('show-file-content', 'show_file_content_session_code_interpreter')

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

Lines changed: 4943 additions & 4103 deletions
Large diffs are not rendered by default.

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

Lines changed: 5153 additions & 13545 deletions
Large diffs are not rendered by default.

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

Lines changed: 6421 additions & 6755 deletions
Large diffs are not rendered by default.

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

Lines changed: 9494 additions & 7098 deletions
Large diffs are not rendered by default.

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

Lines changed: 8 additions & 8 deletions
Large diffs are not rendered by default.

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

Lines changed: 6188 additions & 5422 deletions
Large diffs are not rendered by default.

src/containerapp/azext_containerapp/tests/latest/test_containerapp_env_http_route_config.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def test_containerapp_env_http_route_config_crudoperations_e2e(self, resource_gr
9494

9595
route_name = "route1"
9696

97-
self.cmd(f"az containerapp env http-route-config create -g {resource_group} -n {env_name} -r {route_name} --yaml {http_route_config1_file_name}", checks=[
97+
self.cmd(f"az containerapp env http-route-config create -g {resource_group} -n {env_name} -r {route_name} --yaml '{http_route_config1_file_name}'", checks=[
9898
JMESPathCheck('properties.provisioningState', "SucceededWithErrors"),
9999
JMESPathCheck('properties.provisioningErrors[0].message', f"error when trying to get containerapp {app1} from cluster. error ContainerApp.k8se.microsoft.com \"{app1}\" not found"),
100100
# Not deployed yet
@@ -124,12 +124,12 @@ def test_containerapp_env_http_route_config_crudoperations_e2e(self, resource_gr
124124
JMESPathCheck('[0].properties.rules[0].targets[0].containerApp', app1),
125125
])
126126

127-
self.cmd(f'containerapp create -n {app1} -g {resource_group} --environment {env_name} --yaml {containerapp_file_name}')
127+
self.cmd(f'containerapp create -n {app1} -g {resource_group} --environment {env_name} --yaml "{containerapp_file_name}"')
128128
self.cmd(f'containerapp show -g {resource_group} -n {app1}', checks=[
129129
JMESPathCheck("properties.provisioningState", "Succeeded"),
130130
])
131131

132-
self.cmd(f'containerapp create -n {app2} -g {resource_group} --environment {env_name} --yaml {containerapp_file_name}')
132+
self.cmd(f'containerapp create -n {app2} -g {resource_group} --environment {env_name} --yaml "{containerapp_file_name}"')
133133
self.cmd(f'containerapp show -g {resource_group} -n {app2}', checks=[
134134
JMESPathCheck("properties.provisioningState", "Succeeded"),
135135
])
@@ -143,7 +143,7 @@ def test_containerapp_env_http_route_config_crudoperations_e2e(self, resource_gr
143143
JMESPathCheck('properties.rules[0].targets[0].containerApp', app1),
144144
])
145145

146-
self.cmd(f"az containerapp env http-route-config update -g {resource_group} -n {env_name} -r {route_name} --yaml {http_route_config2_file_name}", checks=[
146+
self.cmd(f"az containerapp env http-route-config update -g {resource_group} -n {env_name} -r {route_name} --yaml '{http_route_config2_file_name}'", checks=[
147147
JMESPathCheck('properties.provisioningState', "Succeeded"),
148148
# Not deployed yet
149149
# JMESPathCheck('properties.rules[0].description', "rule 2"),

src/containerapp/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
# TODO: Confirm this is the right version number you want and it matches your
2929
# HISTORY.rst entry.
3030

31-
VERSION = '1.1.0b3'
31+
VERSION = '1.1.0b4'
3232

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

0 commit comments

Comments
 (0)