SHA256
1
0
forked from pool/bitwarden

Accepting request 1112886 from devel:languages:nodejs

OBS-URL: https://build.opensuse.org/request/show/1112886
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/bitwarden?expand=0&rev=13
This commit is contained in:
Ana Guerrero 2023-09-22 19:47:26 +00:00 committed by Git OBS Bridge
commit 15404df60a
11 changed files with 90 additions and 80 deletions

View File

@ -2,8 +2,8 @@
<service name="obs_scm" mode="disabled"> <service name="obs_scm" mode="disabled">
<param name="scm">git</param> <param name="scm">git</param>
<param name="url">https://github.com/bitwarden/clients.git</param> <param name="url">https://github.com/bitwarden/clients.git</param>
<param name="revision">desktop-v2023.8.3</param> <param name="revision">desktop-v2023.9.0</param>
<param name="version">2023.8.3</param> <param name="version">2023.9.0</param>
<param name="filename">bitwarden</param> <param name="filename">bitwarden</param>
<param name="exclude">bitwarden_license/*</param> <param name="exclude">bitwarden_license/*</param>
<!-- The code in bitwarden_license MUST NOT be included in published tarballs as it is non-redistributable! --> <!-- The code in bitwarden_license MUST NOT be included in published tarballs as it is non-redistributable! -->

View File

@ -19,7 +19,7 @@ Remove dependency on node-pre-gyp which brings a lot of garbage
}, },
"homepage": "https://github.com/ranisalt/node-argon2#readme", "homepage": "https://github.com/ranisalt/node-argon2#readme",
"dependencies": { "dependencies": {
- "@mapbox/node-pre-gyp": "^1.0.10", - "@mapbox/node-pre-gyp": "^1.0.11",
"@phc/format": "^1.0.0", "@phc/format": "^1.0.0",
"node-addon-api": "^5.0.0" "node-addon-api": "^7.0.0"
}, },

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6cf4051590b255be186d4d38bfa35daee6ff4a5206f3a2b46fa70ce94dc1f6d1
size 19160589

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:66e37308c999acc96b792643178a7e31f795f7d0a9bd12674dceea0947bc4053
size 19666957

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Thu Sep 21 16:53:45 UTC 2023 - Bruno Pitrus <brunopitrus@hotmail.com>
- New upstream release 2023.9.0
* Added password history to Bitwarden export
* Accessibility improvement for fingerprint-phrases
* Update dark theme to match web app
* Update AnonAddy to addy.io
* Remove flags from environment selector
* Security fixes
* Bug-fix for password re-prompt
* Bug-fix for Duo prompt
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Sep 6 20:08:50 UTC 2023 - Bruno Pitrus <brunopitrus@hotmail.com> Wed Sep 6 20:08:50 UTC 2023 - Bruno Pitrus <brunopitrus@hotmail.com>

View File

@ -1,4 +1,4 @@
name: bitwarden name: bitwarden
version: 2023.8.3 version: 2023.9.0
mtime: 1693933474 mtime: 1695234891
commit: 3508b98376ffeae5dd0850b68c6f727cceefa263 commit: e5baa413709beca277b8e4873d4720c76e5f5d71

View File

@ -18,7 +18,7 @@
# #
Name: bitwarden Name: bitwarden
Version: 2023.8.3 Version: 2023.9.0
Release: 0 Release: 0
Summary: A secure and free password manager for all of your devices Summary: A secure and free password manager for all of your devices
Group: Productivity/Security Group: Productivity/Security
@ -202,7 +202,7 @@ export CXXFLAGS="%{optflags} -fpic -fno-semantic-interposition -fvisibility=hidd
export LDFLAGS="%{?build_ldflags}" export LDFLAGS="%{?build_ldflags}"
%if 0%{?suse_version} %if 0%{?suse_version}
auditable=auditable auditable='auditable -vv'
%endif %endif

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:dbd9e1a88a23435a1d205dcc599f8a1633ef4bd704998fab08ca1cabcebeb4ad oid sha256:3f2b7d8669ea87f051ace0f60340df23ddace78f1b8c9cd295d6a8badcc7beea
size 37624979 size 37217869

View File

@ -1,4 +1,4 @@
#!/bin/sh #!/bin/sh -eu
# dnf install curl gzip jq npm patch tar wget # dnf install curl gzip jq npm patch tar wget
@ -46,8 +46,4 @@ find . -type d -empty -print -delete
echo ">>>>>> Create tarball" echo ">>>>>> Create tarball"
ZSTD_CLEVEL=19 ZSTD_NBTHREADS=$(nproc) tar --zstd --sort=name -vvScf "${PKGDIR}/node-vendor.tar.zst" node_modules ZSTD_CLEVEL=19 ZSTD_NBTHREADS=$(nproc) tar --zstd --sort=name -vvScf "${PKGDIR}/node-vendor.tar.zst" node_modules
if [ $? -ne 0 ]; then
echo "ERROR: tar cf failed"
cleanup_and_exit 1
fi

View File

@ -17,94 +17,96 @@
}, },
"workspaces": [ "workspaces": [
"apps/*", "apps/*",
@@ -32,52 +31,19 @@ @@ -32,53 +31,19 @@
], ],
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "15.2.8", "@angular-devkit/build-angular": "15.2.9",
- "@angular-eslint/eslint-plugin": "15.2.1", - "@angular-eslint/eslint-plugin": "15.2.1",
- "@angular-eslint/eslint-plugin-template": "15.2.1", - "@angular-eslint/eslint-plugin-template": "15.2.1",
- "@angular-eslint/template-parser": "15.2.1", - "@angular-eslint/template-parser": "15.2.1",
- "@angular/cli": "15.2.8", - "@angular/cli": "15.2.9",
"@angular/compiler-cli": "15.2.9", "@angular/compiler-cli": "15.2.9",
- "@angular/elements": "15.2.9", - "@angular/elements": "15.2.9",
- "@compodoc/compodoc": "1.1.21", - "@compodoc/compodoc": "1.1.21",
- "@electron/notarize": "1.2.3", - "@electron/notarize": "1.2.4",
- "@electron/rebuild": "3.2.13", - "@electron/rebuild": "3.2.13",
"@fluffy-spoon/substitute": "1.208.0", "@fluffy-spoon/substitute": "1.208.0",
"@ngtools/webpack": "15.2.8", "@ngtools/webpack": "15.2.9",
- "@storybook/addon-a11y": "7.0.18", - "@storybook/addon-a11y": "7.3.0",
- "@storybook/addon-actions": "7.0.18", - "@storybook/addon-actions": "7.3.0",
- "@storybook/addon-essentials": "7.0.18", - "@storybook/addon-designs": "7.0.4",
- "@storybook/addon-links": "7.0.18", - "@storybook/addon-essentials": "7.3.0",
- "@storybook/angular": "7.0.18", - "@storybook/addon-links": "7.3.0",
- "@storybook/angular": "7.3.0",
- "@types/argon2-browser": "1.18.1", - "@types/argon2-browser": "1.18.1",
- "@types/chrome": "0.0.237", - "@types/chrome": "0.0.243",
"@types/duo_web_sdk": "2.7.1", "@types/duo_web_sdk": "2.7.1",
- "@types/firefox-webext-browser": "111.0.1", - "@types/firefox-webext-browser": "111.0.1",
- "@types/inquirer": "8.2.6", - "@types/inquirer": "8.2.6",
"@types/jest": "29.5.2", "@types/jest": "29.5.3",
- "@types/jquery": "3.5.16", - "@types/jquery": "3.5.16",
- "@types/jsdom": "21.1.1", - "@types/jsdom": "21.1.1",
- "@types/koa": "2.13.6", - "@types/koa": "2.13.8",
- "@types/koa__multer": "2.0.4", - "@types/koa__multer": "2.0.4",
- "@types/koa__router": "12.0.0", - "@types/koa__router": "12.0.0",
- "@types/koa-bodyparser": "4.3.7", - "@types/koa-bodyparser": "4.3.7",
- "@types/koa-json": "2.0.20", - "@types/koa-json": "2.0.20",
- "@types/lowdb": "1.0.11", - "@types/lowdb": "1.0.11",
"@types/lunr": "2.3.4", "@types/lunr": "2.3.4",
"@types/node": "18.16.16", "@types/node": "18.17.5",
- "@types/node-fetch": "2.6.4", - "@types/node-fetch": "2.6.4",
"@types/node-forge": "1.3.2", "@types/node-forge": "1.3.4",
"@types/node-ipc": "9.2.0", "@types/node-ipc": "9.2.0",
"@types/papaparse": "5.3.7", "@types/papaparse": "5.3.7",
- "@types/proper-lockfile": "4.1.2", - "@types/proper-lockfile": "4.1.2",
- "@types/react": "16.14.42", - "@types/react": "16.14.45",
- "@types/retry": "0.12.2", - "@types/retry": "0.12.2",
"@types/zxcvbn": "4.4.1", "@types/zxcvbn": "4.4.1",
- "@typescript-eslint/eslint-plugin": "5.59.8", - "@typescript-eslint/eslint-plugin": "5.62.0",
- "@typescript-eslint/parser": "5.59.8", - "@typescript-eslint/parser": "5.62.0",
"autoprefixer": "10.4.14", "autoprefixer": "10.4.15",
- "base64-loader": "1.0.0", - "base64-loader": "1.0.0",
"buffer": "6.0.3", "buffer": "6.0.3",
- "chromatic": "6.18.0", - "chromatic": "6.22.0",
"clean-webpack-plugin": "4.0.0", "clean-webpack-plugin": "4.0.0",
"concurrently": "8.1.0", "concurrently": "8.2.0",
"copy-webpack-plugin": "11.0.0", "copy-webpack-plugin": "11.0.0",
@@ -83,62 +47,25 @@ @@ -83,63 +47,25 @@
"css-loader": "6.8.1", "css-loader": "6.8.1",
"del": "6.1.1", "del": "6.1.1",
"electron": "24.1.1", "electron": "24.8.3",
- "electron-builder": "^23.6.0", - "electron-builder": "^23.6.0",
"electron-log": "4.4.8", "electron-log": "4.4.8",
- "electron-reload": "2.0.0-alpha.1", - "electron-reload": "2.0.0-alpha.1",
"electron-store": "8.1.0", "electron-store": "8.1.0",
"electron-updater": "5.3.0", "electron-updater": "5.3.0",
- "eslint": "8.42.0", - "eslint": "8.47.0",
- "eslint-config-prettier": "8.8.0", - "eslint-config-prettier": "8.10.0",
- "eslint-import-resolver-typescript": "3.5.5", - "eslint-import-resolver-typescript": "3.6.0",
- "eslint-plugin-import": "2.27.5", - "eslint-plugin-import": "2.28.0",
- "eslint-plugin-rxjs": "5.0.3", - "eslint-plugin-rxjs": "5.0.3",
- "eslint-plugin-rxjs-angular": "2.0.1", - "eslint-plugin-rxjs-angular": "2.0.1",
- "eslint-plugin-tailwindcss": "3.12.1", - "eslint-plugin-storybook": "0.6.13",
- "eslint-plugin-tailwindcss": "3.13.0",
- "gulp": "4.0.2", - "gulp": "4.0.2",
- "gulp-filter": "7.0.0", - "gulp-filter": "7.0.0",
- "gulp-if": "3.0.0", - "gulp-if": "3.0.0",
- "gulp-json-editor": "2.5.6", - "gulp-json-editor": "2.5.7",
- "gulp-replace": "1.1.4", - "gulp-replace": "1.1.4",
- "gulp-zip": "5.1.0", - "gulp-zip": "5.1.0",
"html-loader": "4.2.0", "html-loader": "4.2.0",
- "html-webpack-injector": "1.1.4", - "html-webpack-injector": "1.1.4",
"html-webpack-plugin": "5.5.1", "html-webpack-plugin": "5.5.3",
- "husky": "8.0.3", - "husky": "8.0.3",
- "jest-junit": "16.0.0", - "jest-junit": "16.0.0",
"jest-mock-extended": "3.0.4", "jest-mock-extended": "3.0.5",
- "jest-preset-angular": "13.1.1", - "jest-preset-angular": "13.1.1",
- "lint-staged": "13.2.2", - "lint-staged": "13.3.0",
"mini-css-extract-plugin": "2.7.6", "mini-css-extract-plugin": "2.7.6",
"node-ipc": "9.2.1", "node-ipc": "9.2.1",
- "pkg": "5.8.1", - "pkg": "5.8.1",
"postcss": "8.4.24", "postcss": "8.4.27",
"postcss-loader": "7.3.2", "postcss-loader": "7.3.3",
- "prettier": "2.8.8", - "prettier": "2.8.8",
- "prettier-plugin-tailwindcss": "0.3.0", - "prettier-plugin-tailwindcss": "0.3.0",
- "process": "0.11.10", - "process": "0.11.10",
@ -113,62 +115,62 @@
"regedit": "^3.0.3", "regedit": "^3.0.3",
- "remark-gfm": "3.0.1", - "remark-gfm": "3.0.1",
"rimraf": "5.0.1", "rimraf": "5.0.1",
"sass": "1.62.1", "sass": "1.65.1",
"sass-loader": "13.3.1", "sass-loader": "13.3.2",
- "storybook": "7.0.18", - "storybook": "7.3.0",
- "style-loader": "3.3.3", - "style-loader": "3.3.3",
- "tailwindcss": "3.3.2", - "tailwindcss": "3.3.3",
- "ts-jest": "29.1.0", - "ts-jest": "29.1.1",
"ts-loader": "9.4.3", "ts-loader": "9.4.4",
"tsconfig-paths-webpack-plugin": "4.0.1", "tsconfig-paths-webpack-plugin": "4.1.0",
- "type-fest": "2.19.0", - "type-fest": "2.19.0",
"typescript": "4.9.5", "typescript": "4.9.5",
- "url": "0.11.0", - "url": "0.11.1",
- "util": "0.12.5", - "util": "0.12.5",
- "wait-on": "7.0.1", - "wait-on": "7.0.1",
"webpack": "5.85.0", "webpack": "5.88.2",
- "webpack-cli": "5.1.3", - "webpack-cli": "5.1.4",
- "webpack-dev-server": "4.15.0", - "webpack-dev-server": "4.15.1",
- "webpack-node-externals": "3.0.0" - "webpack-node-externals": "3.0.0"
+ "webpack-cli": "5.1.3" + "webpack-cli": "5.1.4"
}, },
"dependencies": { "dependencies": {
"@angular/animations": "15.2.9", "@angular/animations": "15.2.9",
@@ -148,54 +76,25 @@ @@ -148,53 +76,25 @@
"@angular/platform-browser": "15.2.9", "@angular/platform-browser": "15.2.9",
"@angular/platform-browser-dynamic": "15.2.9", "@angular/platform-browser-dynamic": "15.2.9",
"@angular/router": "15.2.9", "@angular/router": "15.2.9",
- "@koa/multer": "3.0.2", - "@koa/multer": "3.0.2",
- "@koa/router": "12.0.0", - "@koa/router": "12.0.0",
"@microsoft/signalr": "6.0.16", "@microsoft/signalr": "6.0.21",
"@microsoft/signalr-protocol-msgpack": "6.0.16", "@microsoft/signalr-protocol-msgpack": "6.0.21",
- "@ng-select/ng-select": "10.0.4", "@ng-select/ng-select": "10.0.4",
"argon2": "0.30.3", "argon2": "0.31.0",
- "argon2-browser": "1.18.0", - "argon2-browser": "1.18.0",
"big-integer": "1.6.51", "big-integer": "1.6.51",
- "bootstrap": "4.6.0", - "bootstrap": "4.6.0",
- "braintree-web-drop-in": "1.38.0", - "braintree-web-drop-in": "1.40.0",
- "bufferutil": "4.0.7", - "bufferutil": "4.0.7",
- "chalk": "4.1.2", - "chalk": "4.1.2",
"commander": "7.2.0", "commander": "7.2.0",
- "core-js": "3.30.2", - "core-js": "3.32.0",
- "date-input-polyfill": "2.14.0", - "date-input-polyfill": "2.14.0",
"duo_web_sdk": "github:duosecurity/duo_web_sdk", "duo_web_sdk": "github:duosecurity/duo_web_sdk",
- "form-data": "4.0.0", - "form-data": "4.0.0",
- "https-proxy-agent": "5.0.1", - "https-proxy-agent": "5.0.1",
- "inquirer": "8.2.5", - "inquirer": "8.2.6",
- "jquery": "3.7.0", - "jquery": "3.7.0",
- "jsdom": "22.1.0", - "jsdom": "22.1.0",
- "jszip": "3.10.1", - "jszip": "3.10.1",
- "koa": "2.14.2", - "koa": "2.14.2",
- "koa-bodyparser": "4.4.0", - "koa-bodyparser": "4.4.1",
- "koa-json": "2.0.2", - "koa-json": "2.0.2",
- "lowdb": "1.0.0", - "lowdb": "1.0.0",
"lunr": "2.3.9", "lunr": "2.3.9",
- "multer": "1.4.5-lts.1", - "multer": "1.4.5-lts.1",
- "ngx-infinite-scroll": "15.0.0", - "ngx-infinite-scroll": "15.0.0",
"ngx-toastr": "16.2.0", "ngx-toastr": "16.2.0",
"node-fetch": "2.6.11", "node-fetch": "2.6.12",
"node-forge": "1.3.1", "node-forge": "1.3.1",
"nord": "0.2.1", "nord": "0.2.1",
- "open": "8.4.2", - "open": "8.4.2",
@ -178,8 +180,7 @@
- "proper-lockfile": "4.1.2", - "proper-lockfile": "4.1.2",
- "qrious": "4.0.2", - "qrious": "4.0.2",
"rxjs": "7.8.1", "rxjs": "7.8.1",
"sweetalert2": "10.16.11", "tldts": "6.0.14",
"tldts": "6.0.5",
- "utf-8-validate": "5.0.10", - "utf-8-validate": "5.0.10",
"zone.js": "0.12.0", "zone.js": "0.12.0",
"zxcvbn": "4.4.2" "zxcvbn": "4.4.2"
@ -196,7 +197,7 @@
"author": "", "author": "",
"license": "GPL-3.0", "license": "GPL-3.0",
- "devDependencies": { - "devDependencies": {
- "@napi-rs/cli": "2.16.1" - "@napi-rs/cli": "2.16.2"
- }, - },
"napi": { "napi": {
"name": "desktop_native", "name": "desktop_native",

View File

@ -51,8 +51,8 @@
"configurations": { "configurations": {
"Debug": { "Debug": {
"conditions": [ "conditions": [
--- bitwarden/node_modules/argon2/argon2.cpp.old 2023-02-18 10:39:00.524876063 +0100 --- bitwarden/node_modules/argon2/argon2_node.cpp.old 2023-02-18 10:39:00.524876063 +0100
+++ bitwarden/node_modules/argon2/argon2.cpp 2023-02-18 10:58:23.321982987 +0100 +++ bitwarden/node_modules/argon2/argon2_node.cpp 2023-02-18 10:58:23.321982987 +0100
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
-#include "argon2/include/argon2.h" -#include "argon2/include/argon2.h"