chore(deps): update ghcr.io/remsky/kokoro-fastapi-gpu docker tag to v0.7.1 #131

Open
renovate-bot wants to merge 1 commit from renovate/ghcr.io-remsky-kokoro-fastapi-gpu-0.x into main
Member

This PR contains the following updates:

Package Update Change
ghcr.io/remsky/kokoro-fastapi-gpu minor v0.6.0v0.7.1

Release Notes

remsky/Kokoro-FastAPI (ghcr.io/remsky/kokoro-fastapi-gpu)

v0.7.1

Compare Source

Added
  • /v1/download/{filename} takes an optional ?name= save-as name (sanitized, stored extension kept) and sets it in Content-Disposition. Omitting it keeps the previous name.
  • Web UI keyboard navigation and ARIA labeling across header, player controls, and editor.
Changed
  • Content-Disposition is now built by FileResponse rather than by hand, so the filename comes back quoted (filename="x.mp3") instead of bare. The name itself is unchanged when ?name= is omitted.
  • Web UI restyle: better use of space, responsive down to slim widths, playbar pinned to the bottom on narrow viewports.
  • Waveform slowed and softened, made framerate-independent, respects prefers-reduced-motion.
  • README: AMD GPU (ROCm) troubleshooting, clarified docker-compose comments.
Fixed
  • Downloads save as {voice}_{timestamp}.{format}, not the temp name (#​338). Covers right-click "Save audio as" too, since Content-Disposition outranks the link's download attribute.
  • Aborted streams no longer surface as playback failures; a user-initiated MEDIA_ERR_ABORTED is told apart from a real error.
  • Stream-to-file swap settles pending buffer operations instead of leaving the feeder awaiting forever.

v0.7.0

Compare Source

Added
  • AGENTS.md contributor guidelines, plus SKILL.md notes for the API, benchmarks, and web areas.
Changed / Optimizations
  • Docker images build on Python 3.12 (project floor stays 3.10 for local installs). Rust dropped from the CPU builder.
  • Runtime dependencies trimmed to remove deprecated imports
  • bumped requests,python-dotenv, capped transformers<6
  • Builds now explicitly require BuildKit (default since Docker 23, ~Jan 2023); utilizing COPY --exclude
  • Model bake reworked to ensure weights land exactly once (whether prexisting or downloaded at build)
  • ROCm image now bakes the model at build like CPU/GPU (instead of a first-run fetch)
  • GPU runtime now only uses torch shipped cuDNN/etc via pip wheels (#​482). (see table below for size changes)
  • Transcription benchmark reports split by device; RTF and first-token baselines refreshed.

Compressed image sizes + new bases:

Image v0.6.0 v0.7.0 Runtime base
cpu 1.66 GB 1.56 GB python:3.10-slim -> python:3.12-slim
gpu 6.81 GB 4.68 GB cuda:12.6.3-cudnn-runtime -> cuda:12.6.3-base
gpu (cu128) 8.11 GB 5.23 GB cuda:12.8.1-cudnn-runtime -> cuda:12.8.1-base
rocm 13.08 GB 13.36 GB unchanged; model now baked in
Fixed
  • Model validation checksums against downloaded release artifact to ensure consistency, downloads first to a temp dir to avoid clobbering pre-existing models in the case of network issues/corrupted downloads.
  • Model validation also rejects any custom files under 100MB to avoids false pass results (e.g. a 9-byte "Not found"), allowing a re-download instead of passing (#​301).
  • .dockerignore Fixed pycache ignore pattern to **/ to ensure nested .pyc/etc stay out of build contexts.
  • Removed dead pydub imports from the audio services.
  • _find_file rejects lookups that escape its search roots (../ sequences, absolute paths) to avoid unintentional exposure of files outside the voices/models/web dirs. Symlinks placed inside those dirs resolve as before.
  • Text normalizer: anchored decimal regex to prevent quadratic backtracking on digit floods, reordered range substitution so NUMBER_PATTERN no longer swallows hyphens meant as range separators, added version-number handling (2.0.1 renders as "two point zero point one" instead of being split).

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate.

This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/remsky/kokoro-fastapi-gpu](https://github.com/remsky/Kokoro-FastAPI) | minor | `v0.6.0` → `v0.7.1` | --- ### Release Notes <details> <summary>remsky/Kokoro-FastAPI (ghcr.io/remsky/kokoro-fastapi-gpu)</summary> ### [`v0.7.1`](https://github.com/remsky/Kokoro-FastAPI/blob/HEAD/CHANGELOG.md#v071---2026-08-02) [Compare Source](https://github.com/remsky/Kokoro-FastAPI/compare/v0.7.0...v0.7.1) ##### Added - `/v1/download/{filename}` takes an optional `?name=` save-as name (sanitized, stored extension kept) and sets it in `Content-Disposition`. Omitting it keeps the previous name. - Web UI keyboard navigation and ARIA labeling across header, player controls, and editor. ##### Changed - `Content-Disposition` is now built by `FileResponse` rather than by hand, so the filename comes back quoted (`filename="x.mp3"`) instead of bare. The name itself is unchanged when `?name=` is omitted. - Web UI restyle: better use of space, responsive down to slim widths, playbar pinned to the bottom on narrow viewports. - Waveform slowed and softened, made framerate-independent, respects `prefers-reduced-motion`. - README: AMD GPU (ROCm) troubleshooting, clarified docker-compose comments. ##### Fixed - Downloads save as `{voice}_{timestamp}.{format}`, not the temp name ([#&#8203;338](https://github.com/remsky/Kokoro-FastAPI/issues/338)). Covers right-click "Save audio as" too, since `Content-Disposition` outranks the link's `download` attribute. - Aborted streams no longer surface as playback failures; a user-initiated `MEDIA_ERR_ABORTED` is told apart from a real error. - Stream-to-file swap settles pending buffer operations instead of leaving the feeder awaiting forever. ### [`v0.7.0`](https://github.com/remsky/Kokoro-FastAPI/blob/HEAD/CHANGELOG.md#v070---2026-07-31) [Compare Source](https://github.com/remsky/Kokoro-FastAPI/compare/v0.6.0...v0.7.0) ##### Added - `AGENTS.md` contributor guidelines, plus `SKILL.md` notes for the API, benchmarks, and web areas. ##### Changed / Optimizations - Docker images build on Python 3.12 (project floor stays 3.10 for local installs). Rust dropped from the CPU builder. - Runtime dependencies trimmed to remove deprecated imports - bumped `requests`,`python-dotenv`, capped `transformers<6` - Builds now explicitly require BuildKit (default since Docker 23, \~Jan 2023); utilizing `COPY --exclude` - Model bake reworked to ensure weights land exactly once (whether prexisting or downloaded at build) - ROCm image now bakes the model at build like CPU/GPU (instead of a first-run fetch) - GPU runtime now only uses torch shipped cuDNN/etc via pip wheels ([#&#8203;482](https://github.com/remsky/Kokoro-FastAPI/issues/482)). (see table below for size changes) - Transcription benchmark reports split by device; RTF and first-token baselines refreshed. Compressed image sizes + new bases: <div align="center"> | Image | v0.6.0 | v0.7.0 | Runtime base | | :---------- | -------: | -------: | :------------------------------------------------ | | cpu | 1.66 GB | 1.56 GB | `python:3.10-slim` -> `python:3.12-slim` | | gpu | 6.81 GB | 4.68 GB | `cuda:12.6.3-cudnn-runtime` -> `cuda:12.6.3-base` | | gpu (cu128) | 8.11 GB | 5.23 GB | `cuda:12.8.1-cudnn-runtime` -> `cuda:12.8.1-base` | | rocm | 13.08 GB | 13.36 GB | unchanged; model now baked in | </div> ##### Fixed - Model validation checksums against downloaded release artifact to ensure consistency, downloads first to a temp dir to avoid clobbering pre-existing models in the case of network issues/corrupted downloads. - Model validation also rejects any custom files under 100MB to avoids false pass results (e.g. a 9-byte "Not found"), allowing a re-download instead of passing (#&#8203;301). - `.dockerignore` Fixed pycache ignore pattern to `**/` to ensure nested .pyc/etc stay out of build contexts. - Removed dead `pydub` imports from the audio services. - `_find_file` rejects lookups that escape its search roots (`../` sequences, absolute paths) to avoid unintentional exposure of files outside the voices/models/web dirs. Symlinks placed inside those dirs resolve as before. - Text normalizer: anchored decimal regex to prevent quadratic backtracking on digit floods, reordered range substitution so `NUMBER_PATTERN` no longer swallows hyphens meant as range separators, added version-number handling (`2.0.1` renders as "two point zero point one" instead of being split). </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNTMuMSIsInVwZGF0ZWRJblZlciI6IjQzLjI1My4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/ghcr.io-remsky-kokoro-fastapi-gpu-0.x:renovate/ghcr.io-remsky-kokoro-fastapi-gpu-0.x
git switch renovate/ghcr.io-remsky-kokoro-fastapi-gpu-0.x

Merge

Merge the changes and update on Forgejo.
git switch main
git merge --no-ff renovate/ghcr.io-remsky-kokoro-fastapi-gpu-0.x
git switch renovate/ghcr.io-remsky-kokoro-fastapi-gpu-0.x
git rebase main
git switch main
git merge --ff-only renovate/ghcr.io-remsky-kokoro-fastapi-gpu-0.x
git switch renovate/ghcr.io-remsky-kokoro-fastapi-gpu-0.x
git rebase main
git switch main
git merge --no-ff renovate/ghcr.io-remsky-kokoro-fastapi-gpu-0.x
git switch main
git merge --squash renovate/ghcr.io-remsky-kokoro-fastapi-gpu-0.x
git switch main
git merge --ff-only renovate/ghcr.io-remsky-kokoro-fastapi-gpu-0.x
git switch main
git merge renovate/ghcr.io-remsky-kokoro-fastapi-gpu-0.x
git push origin main
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
ops/homelab!131
No description provided.