Skip to content

Commit e267ef1

Browse files
committed
bump version 1.1.0b4 and remove preview flag for �z containerapp session/sessionpool
1 parent fa34ed2 commit e267ef1

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
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/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)