Skip to content

Commit 594c69b

Browse files
Merge branch 'main' into add-get-app-name-from-pyproject
2 parents cdfa98b + 24fa8e6 commit 594c69b

35 files changed

Lines changed: 93 additions & 277 deletions

File tree

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
@@ -334,6 +334,7 @@ def _configure_app(toolkit: RichToolkit, path_to_deploy: Path) -> AppConfig:
334334
"Select the team you want to deploy to:",
335335
tag="team",
336336
options=[Option({"name": team.name, "value": team}) for team in teams],
337+
allow_filtering=True,
337338
)
338339

339340
toolkit.print_line()
@@ -365,6 +366,7 @@ def _configure_app(toolkit: RichToolkit, path_to_deploy: Path) -> AppConfig:
365366
selected_app = toolkit.ask(
366367
"Select the app you want to deploy to:",
367368
options=[Option({"name": app.slug, "value": app}) for app in apps],
369+
allow_filtering=True,
368370
)
369371

370372
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)