🎉 Release of add-on Vaultwarden (Bitwarden) 0.14.0

This commit is contained in:
Community Hass.io Add-ons Bot 2021-11-11 12:46:19 +00:00
parent 3d2024fe00
commit bd2bed65eb
7 changed files with 52 additions and 81 deletions

View file

@ -955,10 +955,10 @@ SOFTWARE.
[unifi-armhf-shield]: https://img.shields.io/badge/armhf-no-red.svg
[unifi-armv7-shield]: https://img.shields.io/badge/armv7-no-red.svg
[unifi-i386-shield]: https://img.shields.io/badge/i386-no-red.svg
[addon-bitwarden]: https://github.com/hassio-addons/addon-bitwarden/tree/v0.13.0
[addon-doc-bitwarden]: https://github.com/hassio-addons/addon-bitwarden/blob/v0.13.0/README.md
[addon-bitwarden]: https://github.com/hassio-addons/addon-bitwarden/tree/v0.14.0
[addon-doc-bitwarden]: https://github.com/hassio-addons/addon-bitwarden/blob/v0.14.0/README.md
[bitwarden-issue]: https://github.com/hassio-addons/addon-bitwarden/issues
[bitwarden-version-shield]: https://img.shields.io/badge/version-v0.13.0-blue.svg
[bitwarden-version-shield]: https://img.shields.io/badge/version-v0.14.0-blue.svg
[bitwarden-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[bitwarden-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[bitwarden-armhf-shield]: https://img.shields.io/badge/armhf-no-red.svg

View file

@ -1,10 +1,25 @@
## Whats changed
## 🐛 Bug fixes
## 🚀 Enhancements
- 🚑 Start add-on as service to prevent timezone issues @frenck (#161)
- Migrate JSON config to YAML @frenck (#183)
## 🧰 Maintenance
- Switch to centralized GitHub Action Workflows @frenck (#179)
## ⬆️ Dependency updates
- ⬆️ Bump dessant/lock-threads from 2.1.1 to 2.1.2 @dependabot (#159)
- ⬆️ Upgrades add-on base image to v5.0.0 @frenck (#160)
- ⬆️ Bump docker/build-push-action from 2.6.1 to 2.7.0 @dependabot (#162)
- ⬆️ Bump frenck/action-addon-linter from 2.2 to 2.3 @dependabot (#163)
- ⬆️ Bump creyD/prettier_action from 3.3 to 4.0 @dependabot (#165)
- ⬆️ Bump docker/setup-buildx-action from 1.5.1 to 1.6.0 @dependabot (#164)
- ⬆️ Bump frenck/action-addon-linter from 2.3 to 2.4.1 @dependabot (#169)
- ⬆️ Upgrade lock-threads workflow to 3.0.0 @frenck (#173)
- ⬆️ Upgrades add-on base image to 5.1.1 @frenck (#172)
- ⬆️ Bump actions/checkout from 2.3.4 to 2.3.5 @dependabot (#174)
- ⬆️ Upgrades libpq5 to 13.4-0+deb11u1 @frenck (#180)
- ⬆️ Upgrades libmariadb-dev-compat to 1:10.5.12-0+deb11u1 @frenck (#181)
- ⬆️ Upgrades add-on base image to 5.2.0 @frenck (#182)
- ⬆️ Upgrades Vaultwarden to 1.23.0 @frenck (#184)
- ⬆️ Upgrades add-on base image to 5.2.2 @frenck (#185)

View file

@ -39,7 +39,7 @@ email, bank, and other important accounts. USE A PASSWORD MANAGER!
[patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png
[patreon]: https://www.patreon.com/frenck
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg
[release-shield]: https://img.shields.io/badge/version-v0.13.0-blue.svg
[release]: https://github.com/hassio-addons/addon-bitwarden/tree/v0.13.0
[release-shield]: https://img.shields.io/badge/version-v0.14.0-blue.svg
[release]: https://github.com/hassio-addons/addon-bitwarden/tree/v0.14.0
[screenshot]: https://github.com/hassio-addons/addon-bitwarden/raw/main/images/screenshot.png
[vaultwarden]: https://github.com/dani-garcia/vaultwarden

View file

@ -1,36 +0,0 @@
{
"name": "Vaultwarden (Bitwarden)",
"version": "0.13.0",
"slug": "bitwarden",
"description": "Open source password management solution",
"url": "https://github.com/hassio-addons/addon-bitwarden",
"webui": "[PROTO:ssl]://[HOST]:[PORT:7277]",
"init": false,
"arch": [
"aarch64",
"amd64",
"armv7"
],
"ports": {
"7277/tcp": 7277
},
"ports_description": {
"7277/tcp": "Vaultwarden Web interface"
},
"map": [
"ssl"
],
"options": {
"ssl": true,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem"
},
"schema": {
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
"ssl": "bool",
"certfile": "str",
"keyfile": "str",
"request_size_limit": "int?"
},
"image": "ghcr.io/hassio-addons/bitwarden/{arch}"
}

28
bitwarden/config.yaml Normal file
View file

@ -0,0 +1,28 @@
arch:
- aarch64
- amd64
- armv7
description: Open source password management solution
image: ghcr.io/hassio-addons/bitwarden/{arch}
init: false
map:
- ssl
name: Vaultwarden (Bitwarden)
options:
certfile: fullchain.pem
keyfile: privkey.pem
ssl: true
ports:
7277/tcp: 7277
ports_description:
7277/tcp: Vaultwarden Web interface
schema:
certfile: str
keyfile: str
log_level: list(trace|debug|info|notice|warning|error|fatal)?
request_size_limit: int?
ssl: bool
slug: bitwarden
url: https://github.com/hassio-addons/addon-bitwarden
version: 0.14.0
webui: '[PROTO:ssl]://[HOST]:[PORT:7277]'

View file

@ -1,18 +0,0 @@
configuration:
certfile:
description: 'The certificate file to use for SSL. Note that this file must exist in the /ssl/ folder.'
name: 'Certificate file'
keyfile:
description: 'The private key file to use for SSL. Note that this file must exist in the /ssl/ folder.'
name: 'Private key file'
log_level:
description: 'Controls the level of log details the add-on provides.'
name: 'Log level'
request_size_limit:
description: 'Optionally set the size limit of HTTP requests on the API of Bitwarden RS. This might be needed to support larger imports. The default is 10485760, which is 10MB.'
name: 'Size limit of HTTP requests'
ssl:
description: 'Enables/Disables SSL (HTTPS) on the web interface.'
name: SSL
network:
7277/tcp: 'Web interface'

View file

@ -1,18 +0,0 @@
configuration:
certfile:
description: 'The certificate file to use for SSL. Note that this file must exist in the /ssl/ folder.'
name: 'Certificate file'
keyfile:
description: 'The private key file to use for SSL. Note that this file must exist in the /ssl/ folder.'
name: 'Private key file'
log_level:
description: 'Bepaalt het niveau van de logs die de add-on toont.'
name: 'Log niveau'
request_size_limit:
description: 'Optionally set the size limit of HTTP requests on the API of Bitwarden RS. This might be needed to support larger imports. The default is 10485760, which is 10MB.'
name: 'Size limit of HTTP requests'
ssl:
description: 'Enables/Disables SSL (HTTPS) on the web interface.'
name: SSL
network:
7277/tcp: Webinterface