From 0ddfee089c12b2bd897f9675f20a29c2f3d4f85d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 20:00:35 -0700 Subject: [PATCH 1/3] chore: update restic version to 0.19.0 (#1251) Co-authored-by: garethgeorge <7906572+garethgeorge@users.noreply.github.com> --- internal/resticinstaller/resticinstaller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/resticinstaller/resticinstaller.go b/internal/resticinstaller/resticinstaller.go index 0f1bba2f3..c04c35219 100644 --- a/internal/resticinstaller/resticinstaller.go +++ b/internal/resticinstaller/resticinstaller.go @@ -10,7 +10,7 @@ var ( ) var ( - RequiredResticVersion = "0.18.1" + RequiredResticVersion = "0.19.0" requiredVersionSemver = mustParseSemVer(RequiredResticVersion) From 0d9bf41ce320931b9b6b88cc7166dcdb3169bbdb Mon Sep 17 00:00:00 2001 From: Alejandro Nieto Date: Tue, 30 Jun 2026 05:01:10 +0200 Subject: [PATCH 2/3] Support for --insecure-no-password flag (#1250) --- webui/src/features/repositories/AddRepoModal.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/webui/src/features/repositories/AddRepoModal.tsx b/webui/src/features/repositories/AddRepoModal.tsx index 994f1c0bc..3d70cf6ee 100644 --- a/webui/src/features/repositories/AddRepoModal.tsx +++ b/webui/src/features/repositories/AddRepoModal.tsx @@ -1152,6 +1152,7 @@ const expectedEnvVars: { [scheme: string]: string[][] } = { const envVarSetValidator = async (formData: any) => { const envVars = formData.env || []; + const flags = formData.flags || []; const uri = formData.uri; if (!uri) { @@ -1170,7 +1171,8 @@ const envVarSetValidator = async (formData: any) => { (!password || password.length === 0) && !envVarNames.includes("RESTIC_PASSWORD") && !envVarNames.includes("RESTIC_PASSWORD_COMMAND") && - !envVarNames.includes("RESTIC_PASSWORD_FILE") + !envVarNames.includes("RESTIC_PASSWORD_FILE") && + !flags.includes("--insecure-no-password") ) { throw new Error(m.add_repo_modal_error_missing_password()); } From 53e16bf92e5a8610872ee685cbfc85ff3f356953 Mon Sep 17 00:00:00 2001 From: Ted Robertson <10043369+tredondo@users.noreply.github.com> Date: Mon, 29 Jun 2026 20:09:30 -0700 Subject: [PATCH 3/3] Replace cp and chmod with install command (#1236) --- install.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 213172549..ca5195690 100755 --- a/install.sh +++ b/install.sh @@ -375,8 +375,7 @@ install_binary() { fi echo "Installing backrest to /usr/local/bin" sudo mkdir -p /usr/local/bin - sudo cp "$src" /usr/local/bin/backrest - sudo chmod +x /usr/local/bin/backrest + sudo install -m 755 "$src" /usr/local/bin/backrest } # =============================================================================