From cf328ded80308f78ca9a5d1e636fd548f88e6f19 Mon Sep 17 00:00:00 2001 From: Jakub Sojka Date: Wed, 19 Nov 2025 14:39:55 +0100 Subject: [PATCH 1/2] chore: update yq from 4.33.3 to 4.48.2 --- docker/main/install_deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/main/install_deps.sh b/docker/main/install_deps.sh index f8bb5a51a..330caff9f 100755 --- a/docker/main/install_deps.sh +++ b/docker/main/install_deps.sh @@ -145,6 +145,6 @@ rm -rf /var/lib/apt/lists/* # Install yq, for frigate-prepare and go2rtc echo source curl -fsSL \ - "https://github.com/mikefarah/yq/releases/download/v4.33.3/yq_linux_$(dpkg --print-architecture)" \ + "https://github.com/mikefarah/yq/releases/download/v4.48.2/yq_linux_$(dpkg --print-architecture)" \ --output /usr/local/bin/yq chmod +x /usr/local/bin/yq From a3c94b15b1832f20c2552bca29d12e5b43b70b6e Mon Sep 17 00:00:00 2001 From: Jakub Sojka Date: Wed, 19 Nov 2025 14:41:43 +0100 Subject: [PATCH 2/2] fix: update yq v4 syntax for Frigate config upload command --- docs/docs/configuration/advanced.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/configuration/advanced.md b/docs/docs/configuration/advanced.md index 02482e792..06fe53537 100644 --- a/docs/docs/configuration/advanced.md +++ b/docs/docs/configuration/advanced.md @@ -247,7 +247,7 @@ curl -X POST http://frigate_host:5000/api/config/save -d @config.json if you'd like you can use your yaml config directly by using [`yq`](https://github.com/mikefarah/yq) to convert it to json: ```bash -yq r -j config.yml | curl -X POST http://frigate_host:5000/api/config/save -d @- +yq -o=json '.' config.yaml | curl -X POST 'http://frigate_host:5000/api/config/save?save_option=saveonly' --data-binary @- ``` ### Via Command Line