Skip to content

Commit 4b72aee

Browse files
authored
Merge branch 'main' into show-upload-details
2 parents bebb415 + 24fa8e6 commit 4b72aee

File tree

35 files changed

+93
-277
lines changed

35 files changed

+93
-277
lines changed

release-notes.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## Latest Changes
44

5+
## 0.15.1 (2026-03-26)
6+
7+
### Features
8+
9+
* 💄 Allow filtering for teams and apps. PR [#169](https://github.com/fastapilabs/fastapi-cloud-cli/pull/169) by [@YuriiMotov](https://github.com/YuriiMotov).
10+
11+
### Internal
12+
13+
* 🔥 Remove unused `tests/assets`. PR [#170](https://github.com/fastapilabs/fastapi-cloud-cli/pull/170) by [@YuriiMotov](https://github.com/YuriiMotov).
14+
515
## 0.15.0 (2026-03-11)
616

717
### Features

src/fastapi_cloud_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.15.0"
1+
__version__ = "0.15.1"

src/fastapi_cloud_cli/commands/deploy.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -325,6 +325,7 @@ def _configure_app(toolkit: RichToolkit, path_to_deploy: Path) -> AppConfig:
325325
"Select the team you want to deploy to:",
326326
tag="team",
327327
options=[Option({"name": team.name, "value": team}) for team in teams],
328+
allow_filtering=True,
328329
)
329330

330331
toolkit.print_line()
@@ -356,6 +357,7 @@ def _configure_app(toolkit: RichToolkit, path_to_deploy: Path) -> AppConfig:
356357
selected_app = toolkit.ask(
357358
"Select the app you want to deploy to:",
358359
options=[Option({"name": app.slug, "value": app}) for app in apps],
360+
allow_filtering=True,
359361
)
360362

361363
app_name = (

tests/assets/broken_package/mod/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

tests/assets/broken_package/mod/app.py

Lines changed: 0 additions & 10 deletions
This file was deleted.

tests/assets/broken_package/utils.py

Lines changed: 0 additions & 2 deletions
This file was deleted.

tests/assets/default_files/default_api/api.py

Lines changed: 0 additions & 8 deletions
This file was deleted.

tests/assets/default_files/default_app/api.py

Lines changed: 0 additions & 8 deletions
This file was deleted.

tests/assets/default_files/default_app/app.py

Lines changed: 0 additions & 8 deletions
This file was deleted.

tests/assets/default_files/default_app_dir_api/app/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)