Inboard

Latest version: v0.72.2

Safety actively analyzes 723650 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 7 of 26

0.62.0

Not secure
Changes

**Update to Uvicorn 0.24.0** (65883a9, 0d5ec23)

This release will update/upgrade to
[Uvicorn 0.24.0](https://github.com/encode/uvicorn/releases).
This is a minor release to align with Uvicorn versioning.

Uvicorn 0.24.0 adds support for Python 3.12 and for setting the app
instance with the environment variable `UVICORN_APP`. inboard already
has an environment variable for this purpose, `APP_MODULE`. Either
`APP_MODULE` or `UVICORN_APP` can be used to set the app module for
inboard, with precedence given to `APP_MODULE` for backward
compatibility.

Commits

- Bump version from 0.61.0 to 0.62.0 (2270900)
- Support `UVICORN_APP` (0d5ec23)
- Update to Uvicorn 0.24.0 (65883a9)
- Update changelog for version 0.61.0 (94) (665eaca)

Tagger: Brendon Smith <bwsbws.bio>

Date: 2023-12-30 22:54:49 -0500

text
-----BEGIN SSH SIGNATURE-----
U1NIU0lHAAAAAQAAADMAAAALc3NoLWVkMjU1MTkAAAAgwLDNmire1DHY/g9GC1rGGr+mrE
kJ3FC96XsyoFKzm6IAAAADZ2l0AAAAAAAAAAZzaGE1MTIAAABTAAAAC3NzaC1lZDI1NTE5
AAAAQIyrvP6/M9MJfPIZnj6b/mOjUqg8ccL62HkThr4Qc+mHrVU9MzUUXEjviQ79QWdgep
sdduXo2l+rS6LRTlNiKAE=
-----END SSH SIGNATURE-----

0.61.0

Not secure
Changes

**Update to FastAPI 0.108 and Starlette 0.32** (738d54a)

This release will update/upgrade to
[FastAPI 0.108](https://fastapi.tiangolo.com/release-notes/)
and
[Starlette 0.32](https://www.starlette.io/release-notes/).
This is a minor release to align with FastAPI versioning.

Changes to Starlette between 0.29 and 0.32 include dropping support for
Python 3.7, and adding support for Python 3.12 and AnyIO 4.

Commits

- Bump version from 0.60.0 to 0.61.0 (ccc7bf2)
- Update to FastAPI 0.108 and Starlette 0.32 (738d54a)
- Update changelog for version 0.60.0 (93) (b0d4a4a)

Tagger: Brendon Smith <bwsbws.bio>

Date: 2023-12-30 21:45:18 -0500

text
-----BEGIN SSH SIGNATURE-----
U1NIU0lHAAAAAQAAADMAAAALc3NoLWVkMjU1MTkAAAAgwLDNmire1DHY/g9GC1rGGr+mrE
kJ3FC96XsyoFKzm6IAAAADZ2l0AAAAAAAAAAZzaGE1MTIAAABTAAAAC3NzaC1lZDI1NTE5
AAAAQPVNYaXJu4GQ4XkLI6QdfR3Hu+cW9wCtUhMa/mx5TwTKNG/LJFa/tN70EkqjFhYChW
dvle3+y/ats0Pbx+orKQ8=
-----END SSH SIGNATURE-----

0.60.0

Not secure
Changes

**Update to FastAPI 0.107 and Starlette 0.28** (7d19e10)

This release will update/upgrade to
[FastAPI 0.107](https://fastapi.tiangolo.com/release-notes/)
and
[Starlette 0.28](https://www.starlette.io/release-notes/).
This is a minor release to align with FastAPI and Starlette versioning.

FastAPI 0.107 updates to Starlette 0.28. Starlette 0.28 moves exception
handling to the `Route` class and adds an error message if `TestClient`
runs without HTTPX installed.

Commits

- Bump version from 0.59.0 to 0.60.0 (2be52ab)
- Update to FastAPI 0.107 and Starlette 0.28 (7d19e10)
- Update changelog for version 0.59.0 (92) (92d281d)

Tagger: Brendon Smith <bwsbws.bio>

Date: 2023-12-30 20:39:34 -0500

text
-----BEGIN SSH SIGNATURE-----
U1NIU0lHAAAAAQAAADMAAAALc3NoLWVkMjU1MTkAAAAgwLDNmire1DHY/g9GC1rGGr+mrE
kJ3FC96XsyoFKzm6IAAAADZ2l0AAAAAAAAAAZzaGE1MTIAAABTAAAAC3NzaC1lZDI1NTE5
AAAAQFWl5oLrbNwp0Xp0koktWi0MZppIjuyGbW1KSKlCrKllRhVRDWQyQ/hDoxZEw+TvKZ
s69MTHJ0xnrBSHYpeoewg=
-----END SSH SIGNATURE-----

0.59.0

Not secure
Changes

**Update to FastAPI 0.106** (e3ece81)

This release will update/upgrade to
[FastAPI 0.106](https://fastapi.tiangolo.com/release-notes/).
This is a minor release to align with FastAPI versioning.

In FastAPI 0.74 (released in inboard 0.18.0 - 2022-03-05), the internal
`AsyncExitStack` was updated so that dependencies with `yield` could
catch exceptions like `HTTPException`.

FastAPI 0.106 builds on the 0.74 updates by introducing the ability to
raise exceptions after `yield`. This update includes a BREAKING CHANGE
because objects from dependencies with `yield` can no longer be used in
background tasks. The recommendation in the
[FastAPI docs](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-with-yield/)
for updating background tasks is:

> If you used to rely on this behavior, now you should create the
> resources for background tasks inside the background task itself, and
> use internally only data that doesn't depend on the resources of
> dependencies with `yield`.
>
> For example, instead of using the same database session, you would
> create a new database session inside of the background task, and you
> would obtain the objects from the database using this new session. And
> then instead of passing the object from the database as a parameter to
> the background task function, you would pass the ID of that object and
> then obtain the object again inside the background task function.

Commits

- Bump version from 0.58.0 to 0.59.0 (893fa7e)
- Update to FastAPI 0.106 (e3ece81)
- Update changelog for version 0.58.0 (91) (0997ad3)

Tagger: Brendon Smith <bwsbws.bio>

Date: 2023-12-30 20:19:49 -0500

text
-----BEGIN SSH SIGNATURE-----
U1NIU0lHAAAAAQAAADMAAAALc3NoLWVkMjU1MTkAAAAgwLDNmire1DHY/g9GC1rGGr+mrE
kJ3FC96XsyoFKzm6IAAAADZ2l0AAAAAAAAAAZzaGE1MTIAAABTAAAAC3NzaC1lZDI1NTE5
AAAAQPv4ymxbUuQV59Uuk606UuL6939xE/imK4T3T4VW5rTzgBd8ENkoG2e0wGaRVU8rH2
7Dj65ChjO8eaaJ1mu9Ags=
-----END SSH SIGNATURE-----

0.58.0

Not secure
Changes

**Update to FastAPI 0.105** (5bc3013)

This release will update/upgrade to
[FastAPI 0.105](https://fastapi.tiangolo.com/release-notes/).
This is a minor release to align with FastAPI versioning.

FastAPI 0.105 adds support for `Annotated` dependencies with multiple
type annotations.

Commits

- Bump version from 0.57.0 to 0.58.0 (e3eee4d)
- Update to FastAPI 0.105 (5bc3013)
- Update to `mypy==1.8.0` (2529780)
- Update to `hatch==1.9.1` (65e7363)
- Update to `pipx==1.4.0` (66f9560)
- Update to `pipx==1.3.3` (fb08b72)
- Update changelog for version 0.57.0 (90) (f867910)

Tagger: Brendon Smith <bwsbws.bio>

Date: 2023-12-30 19:19:38 -0500

text
-----BEGIN SSH SIGNATURE-----
U1NIU0lHAAAAAQAAADMAAAALc3NoLWVkMjU1MTkAAAAgwLDNmire1DHY/g9GC1rGGr+mrE
kJ3FC96XsyoFKzm6IAAAADZ2l0AAAAAAAAAAZzaGE1MTIAAABTAAAAC3NzaC1lZDI1NTE5
AAAAQOC/dNO7Uw4WziT5porc2n4a6QNN39T+tXWg4MNhcNNcnkmNbQDG+q4ousjb7tB/Kd
lWhXlwyzqZKqV/LsyTtQw=
-----END SSH SIGNATURE-----

0.57.0

Not secure
Changes

**Update to FastAPI 0.104** (882084c)

This release will update/upgrade to
[FastAPI 0.104](https://fastapi.tiangolo.com/release-notes/).
This is a minor release to align with FastAPI versioning.

FastAPI 0.104 drops support for Python 3.7 and adds API reference docs
available [here](https://fastapi.tiangolo.com/reference/).

**Switch from pre-commit to Hatch scripts** (89, 1a5450b)

pre-commit runs Git hooks. It can run on different Git events like
`pre-push` and can also easily run on CI (continuous integration)
platforms like GitHub Actions. These pre-commit hooks are often related
to code quality and help ensure code quality checks are continuously
enforced. While it is helpful for continuously running code quality
checks, pre-commit also has some downsides as detailed in 89.

This project was previously migrated from Poetry to Hatch in version

Page 7 of 26

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.