vaultwarden.webvault: 2025.5.0.0 -> 2025.7.0.0

Diff: https://github.com/vaultwarden/vw_web_builds/compare/refs/tags/v2025.5.0.0...refs/tags/v2025.7.0.0
This commit is contained in:
Robert Schütz 2025-06-14 17:03:49 -07:00 committed by Sandro Jäckel
parent e58d1953a4
commit dbe7d38516
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 5 additions and 5 deletions

View File

@ -69,7 +69,7 @@ let
driver.find_element(By.CSS_SELECTOR, 'input#input-password-form_new-password').send_keys(
'${userPassword}'
)
driver.find_element(By.CSS_SELECTOR, 'input#input-password-form_confirm-new-password').send_keys(
driver.find_element(By.CSS_SELECTOR, 'input#input-password-form_new-password-confirm').send_keys(
'${userPassword}'
)
if driver.find_element(By.XPATH, '//input[@formcontrolname="checkForBreaches"]').is_selected():

View File

@ -9,16 +9,16 @@
buildNpmPackage rec {
pname = "vaultwarden-webvault";
version = "2025.5.0.0";
version = "2025.7.0.0";
src = fetchFromGitHub {
owner = "vaultwarden";
repo = "vw_web_builds";
tag = "v${version}";
hash = "sha256-Z3QPKeo7+QV3XnECvLXz2Upv41h579WoVH0Vev0fixk=";
hash = "sha256-CnVOi4xE0+VFTm0yI4++MBv8w0vgtsRE5E2RwsLojMI=";
};
npmDepsHash = "sha256-FC3x7H0MQDVGajtaMA2PUK5+soG6kD9AaDbq/s1pOnY=";
npmDepsHash = "sha256-QoZtiZpS8jVIaGKHcfKbtBrrn+RcMRvm1/oF23nPPQw=";
nativeBuildInputs = [
python3
@ -59,7 +59,7 @@ buildNpmPackage rec {
meta = {
description = "Integrates the web vault into vaultwarden";
homepage = "https://github.com/dani-garcia/bw_web_builds";
changelog = "https://github.com/dani-garcia/bw_web_builds/releases/tag/v${version}";
changelog = "https://github.com/dani-garcia/bw_web_builds/releases/tag/v${lib.concatStringsSep "." (lib.take 3 (lib.versions.splitVersion version))}";
platforms = lib.platforms.all;
license = lib.licenses.gpl3Plus;
inherit (vaultwarden.meta) maintainers;