From d3d8062e6215898794a3d924fd2defaf6f1d1b62 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Oct 2024 12:28:45 +0000 Subject: [PATCH 1/2] chore(deps): Bump gradio (#11) Bumps the pip group with 1 update in the /backend/python/openvoice directory: [gradio](https://github.com/gradio-app/gradio). Updates `gradio` from 4.44.1 to 5.0.0 - [Release notes](https://github.com/gradio-app/gradio/releases) - [Changelog](https://github.com/gradio-app/gradio/blob/main/CHANGELOG.md) - [Commits](https://github.com/gradio-app/gradio/compare/gradio@4.44.1...gradio@5.0.0) --- updated-dependencies: - dependency-name: gradio dependency-type: direct:production dependency-group: pip ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- backend/python/openvoice/requirements-intel.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/python/openvoice/requirements-intel.txt b/backend/python/openvoice/requirements-intel.txt index 687efe78b52b..0aee72cbf628 100644 --- a/backend/python/openvoice/requirements-intel.txt +++ b/backend/python/openvoice/requirements-intel.txt @@ -18,6 +18,6 @@ python-dotenv pypinyin==0.50.0 cn2an==0.5.22 jieba==0.42.1 -gradio==4.44.1 +gradio==5.0.0 langid==1.1.6 git+https://github.com/myshell-ai/MeloTTS.git From 791443cd405a2c9d216a0be730fe51977d407357 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sat, 19 Oct 2024 19:09:59 +0000 Subject: [PATCH 2/2] fix: examples/chainlit/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-ZLIB-6008963 - https://snyk.io/vuln/SNYK-DEBIAN12-GLIBC-1547196 - https://snyk.io/vuln/SNYK-DEBIAN12-GLIBC-1547196 - https://snyk.io/vuln/SNYK-DEBIAN12-TAR-1560620 - https://snyk.io/vuln/SNYK-DEBIAN12-PERL-5489184 --- examples/chainlit/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/chainlit/Dockerfile b/examples/chainlit/Dockerfile index 5cf7a67d6076..138058e35ae4 100644 --- a/examples/chainlit/Dockerfile +++ b/examples/chainlit/Dockerfile @@ -1,5 +1,5 @@ # Use an official Python runtime as a parent image -FROM python:3.12-slim +FROM python:3.13-slim # Set the working directory in the container WORKDIR /app