Inboard

Latest version: v0.72.2

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

Scan your dependencies

Page 2 of 26

0.115.3

those two version specifiers are incompatible.

It would be simpler if FastAPI released a minor version each time it
updated the minor version of Starlette. As a stopgap, this release will
pin the FastAPI version exactly (`"fastapi==0.115.5"`) so the versions
of FastAPI and Starlette do not become unexpectedly incompatible. This
of course means inboard will need to provide updates to FastAPI more
frequently (for patch releases instead of for minor releases). As
usual, the lack of attention to release practices in the open source
community means more maintenance work for the inboard maintainer.

Commits

- Bump version from 0.71.0 to 0.71.1 (1a123f7)
- Align Prettier versions (461ca62)
- Update to `pypa/gh-action-pypi-publish` 1.11 (eaa41e3)
- Update to Hatch 1.13.0 and Hatchling 1.26 (d846eba)
- Update to Ruff 0.7 (317e7f9)
- Update to `mypy==1.13.0` (49181da)
- Update to FastAPI 0.115.5 and Starlette 0.41 (1bde85a)
- Update changelog for version 0.71.0 (112) (351f19c)

Tagger: Brendon Smith <bwsbws.bio>

Date: 2024-11-13 15:53:36 -0500

text
-----BEGIN SSH SIGNATURE-----
U1NIU0lHAAAAAQAAADMAAAALc3NoLWVkMjU1MTkAAAAgwLDNmire1DHY/g9GC1rGGr+mrE
kJ3FC96XsyoFKzm6IAAAADZ2l0AAAAAAAAAAZzaGE1MTIAAABTAAAAC3NzaC1lZDI1NTE5
AAAAQJYs2xmbdQQ22veajFiiCII+zt76+NGjV8S7pAXM4KD+72JV7zESl8edCsSh6khQ6Q
7cDNK2Lb/Ko7YynY88rAY=
-----END SSH SIGNATURE-----

0.111

to an optional extra, `fastapi[standard]`. Although the FastAPI release
notes consider this a breaking change, the FastAPI CLI was not used by
inboard, so FastAPI 0.112 will likely not be breaking for inboard users.

Starlette 0.38 makes various small changes, including removal of support
for an ASGI extension called
[path send](https://asgi.readthedocs.io/en/latest/extensions.html#path-send)
(aka "path-send" or `pathsend`) that was introduced in Starlette 0.36.
Support was removed because of issues with `BaseHTTPMiddleware`, though
note that `BaseHTTPMiddleware` may eventually be deprecated
([encode/starlette2160](https://github.com/encode/starlette/discussions/2160),
[encode/starlette2654](https://github.com/encode/starlette/discussions/2654)).
The Starlette release notes do not list this as a breaking change, but
it could be breaking for users who have started working with path send.
Note that FastAPI updated the Starlette minor version to allow 0.38 in
the 0.112.1 patch release.

**Use dedicated GitHub Actions job for PyPI**
(08044c6034346b745f4a210cef928c7114497e78,
180d353a9487afd003aa630ed14a24f4065b451f)

This project uses pypa/gh-action-pypi-publish to publish Python packages
to PyPI with an
[OIDC trusted publisher](https://docs.pypi.org/trusted-publishers/)
(59ec546cb39ea05cf8ac37c5f7fdbf8ac6bb289d).

pypa/gh-action-pypi-publish is set up as a
[Docker action](https://docs.github.com/en/actions/creating-actions/creating-a-docker-container-action)
referencing its Dockerfile. The downside to using the Dockerfile for
the action is that the Docker image must be built every time the action
is used. This will hopefully change in the near future if Docker images
are built and pushed to a registry (pypa/gh-action-pypi-publish230).
In the meantime, PyPI steps steps will be moved to a dedicated GitHub
Actions job so that the Docker image is not built every time GitHub
Actions jobs run.

Commits

- Bump version from 0.69.0 to 0.70.0 (01835ec)
- Update to FastAPI 0.112 and Starlette 0.38 (b4cf65d)
- Don't hard-code repo name in GitHub Actions jobs (180d353)
- Use dedicated GitHub Actions job for PyPI (08044c6)
- Update to `hatch==1.12.0` (f950d28)
- Update to `pipx==1.6.0` (8066be3)
- Update to `mypy==1.10.1` (08ba81a)
- Update to Ruff 0.5 (101fdb3)
- Update to Prettier 3 (67ee89d)
- Add `--platform` to Docker CLI examples in docs (dd3a53c)
- Fix Docker `FromAsCasing` warning (49914dd)
- Update changelog for version 0.69.0 (110) (294e8c8)

Tagger: Brendon Smith <bwsbws.bio>

Date: 2024-08-26 18:33:23 -0400

text
-----BEGIN SSH SIGNATURE-----
U1NIU0lHAAAAAQAAADMAAAALc3NoLWVkMjU1MTkAAAAgwLDNmire1DHY/g9GC1rGGr+mrE
kJ3FC96XsyoFKzm6IAAAADZ2l0AAAAAAAAAAZzaGE1MTIAAABTAAAAC3NzaC1lZDI1NTE5
AAAAQPqh0hb15zIfbXTdfFeM+AvzAeSakCjVg5z4IuCJN7kk1iViRXO3quKYJlmQNZJbGC
gvCeG2qt49XexAso2TOQE=
-----END SSH SIGNATURE-----

0.109.0

- Hatch ([1.8.0 - 2023-12-11](https://github.com/pypa/hatch/releases/tag/hatch-v1.8.0))

0.102

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

FastAPI 0.101 added support for
[Pydantic computed fields](https://docs.pydantic.dev/latest/usage/computed_fields/)
and altered responses to use
[Pydantic serialization](https://docs.pydantic.dev/latest/usage/serialization/).
The change to Pydantic serialization in FastAPI 0.101 separated input
and output schemas, altering responses and OpenAPI schema generation.
Due to the lack of backwards compatibility and the associated issues
([tiangolo/fastapi10011 (comment)](https://github.com/tiangolo/fastapi/pull/10011#issuecomment-1676624793),
[tiangolo/fastapi10019](https://github.com/tiangolo/fastapi/discussions/10019),
[tiangolo/fastapi10041](https://github.com/tiangolo/fastapi/discussions/10041)),
the update to FastAPI 0.101 may be a **BREAKING CHANGE** for some users.

FastAPI 0.102 builds on the serialization changes introduced in 0.101 by
adding docs explaining the serialization behavior and by adding a new
optional keyword argument for disabling the new behavior.

If the Pydantic serialization behavior affects your project adversely,
disable it with `separate_input_output_schemas=False` on the FastAPI app
(`app = FastAPI(separate_input_output_schemas=False)`) as shown in the
[FastAPI docs](https://fastapi.tiangolo.com/how-to/separate-openapi-schemas/).

Commits

- Bump version from 0.53.0 to 0.54.0 (59a3dd0)
- Update changelog for version 0.53.0 (83) (04dfec9)
- Update to FastAPI 0.102 (05abd20)

Tagger: Brendon Smith <bwsbws.bio>

Date: 2023-09-09 01:38:29 -0400

text
-----BEGIN SSH SIGNATURE-----
U1NIU0lHAAAAAQAAADMAAAALc3NoLWVkMjU1MTkAAAAgwLDNmire1DHY/g9GC1rGGr+mrE
kJ3FC96XsyoFKzm6IAAAADZ2l0AAAAAAAAAAZzaGE1MTIAAABTAAAAC3NzaC1lZDI1NTE5
AAAAQNuHAVn5dYf9p58K567zJ9JKb+tGY5i7rBDBvRv4Wg95dzyQem2FJw86AAIKVeWbdI
+RTrFee2U+ob95nufGCAc=
-----END SSH SIGNATURE-----

0.93.0

the [FastAPI docs](https://fastapi.tiangolo.com/advanced/events/), and
[encode/starlette2067](https://github.com/encode/starlette/discussions/2067)
for more info.

Commits

`0.43.0..0.44.0`

- Bump version from 0.43.0 to 0.44.0 (c289f24)
- Update to FastAPI 0.94 and Starlette 0.26 (f32d492)
- Update changelog for version 0.43.0 (71) (133926c)

Tagger: Brendon Smith <bwsbws.bio>

Date: 2023-03-11 17:52:04 -0500

text
-----BEGIN SSH SIGNATURE-----
U1NIU0lHAAAAAQAAADMAAAALc3NoLWVkMjU1MTkAAAAgwLDNmire1DHY/g9GC1rGGr+mrE
kJ3FC96XsyoFKzm6IAAAADZ2l0AAAAAAAAAAZzaGE1MTIAAABTAAAAC3NzaC1lZDI1NTE5
AAAAQKB4LPEz/W9pdK3fNXhqWAkrA1C+hbAx1WmfyZxGveNKrtOQyGRSZRku5iwQ6mkufK
udwOlmNG6uL4vGvNyY/QE=
-----END SSH SIGNATURE-----

0.92.0

provide some additional explanation.

Commits

`0.41.0..0.42.0`

- Bump version from 0.41.0 to 0.42.0 (b36b277)
- Update to FastAPI 0.92 and Starlette 0.25 (e8330ea)
- Update changelog for version 0.41.0 (69) (b370982)

Tagger: Brendon Smith <bwsbws.bio>

Date: 2023-03-05 13:38:53 -0500

text
-----BEGIN SSH SIGNATURE-----
U1NIU0lHAAAAAQAAADMAAAALc3NoLWVkMjU1MTkAAAAgwLDNmire1DHY/g9GC1rGGr+mrE
kJ3FC96XsyoFKzm6IAAAADZ2l0AAAAAAAAAAZzaGE1MTIAAABTAAAAC3NzaC1lZDI1NTE5
AAAAQEyP2r0uHUQrMctSAE0wMZzS3ZiTa4rRgfYfzhV4wyRA1EkW2n6Cmn50kYsdYwFigr
jc2aDef4dHviQTMp2V7QQ=
-----END SSH SIGNATURE-----

Page 2 of 26

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.