🎉 Release of add-on Bookstack 1.2.0

This commit is contained in:
Community Hass.io Add-ons Bot 2022-06-10 21:22:54 +00:00
parent 7337935f9e
commit 72e2c30c2c
5 changed files with 52 additions and 67 deletions

View file

@ -1,14 +1,10 @@
## Whats changed
Updates PHP to v8, along with base image updates. Please ensure to backup the addon and the database prior to upgrade.
Fixes issue with QR Code generation allowing MFA setup to work correctly.
## 🚀 Enhancements
## 🐛 Bug fixes
- 🚑 Add php-xmlwriter for QR Code generation @sinclairpaul (#179)
- 🔒 Sign add-on with Codenotary Community Attestation Service (CAS) @frenck (#181)
## ⬆️ Dependency updates
- ⬆️ Update image, PHP and dependencies @sinclairpaul (#178)
- 🚑 Add php-xmlwriter for QR Code generation @sinclairpaul (#179)
- ⬆️ Update Bookstack to v22.04.1 @sinclairpaul (#180)
- ⬆️ Upgrades add-on base image to 12.0.0 @frenck (#184)
- ⬆️ Update Bookstack to v22.04.2 @sinclairpaul (#185)

View file

@ -39,6 +39,6 @@ If you are more interested in stable releases of our add-ons:
[forum]: https://community.home-assistant.io/?u=frenck
[maintenance-shield]: https://img.shields.io/maintenance/yes/2022.svg
[project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg
[release-shield]: https://img.shields.io/badge/version-v1.1.0-blue.svg
[release]: https://github.com/hassio-addons/addon-bookstack/tree/v1.1.0
[release-shield]: https://img.shields.io/badge/version-v1.2.0-blue.svg
[release]: https://github.com/hassio-addons/addon-bookstack/tree/v1.2.0
[screenshot]: https://github.com/hassio-addons/addon-bookstack/raw/main/images/screenshot.png

View file

@ -1,54 +0,0 @@
{
"name": "Bookstack",
"version": "1.1.0",
"slug": "bookstack",
"description": "Simple & Free Wiki Software",
"url": "https://github.com/hassio-addons/addon-bookstack",
"webui": "[PROTO:ssl]://[HOST]:[PORT:80]",
"init": false,
"arch": [
"aarch64",
"amd64",
"armhf",
"armv7",
"i386"
],
"services": [
"mysql:want"
],
"map": [
"ssl"
],
"ports": {
"80/tcp": 2665
},
"ports_description": {
"80/tcp": "Web interface"
},
"options": {
"envvars": [],
"ssl": false,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem"
},
"schema": {
"remote_mysql_host": "str?",
"remote_mysql_database": "str?",
"remote_mysql_username": "str?",
"remote_mysql_password": "password?",
"remote_mysql_port": "int?",
"show_appkey": "bool?",
"appkey": "str?",
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
"certfile": "str",
"keyfile": "str",
"ssl": "bool",
"envvars": [
{
"name": "str",
"value": "str"
}
]
},
"image": "ghcr.io/hassio-addons/bookstack/{arch}"
}

43
bookstack/config.yaml Normal file
View file

@ -0,0 +1,43 @@
arch:
- aarch64
- amd64
- armhf
- armv7
- i386
codenotary: codenotary@frenck.dev
description: Simple & Free Wiki Software
image: ghcr.io/hassio-addons/bookstack/{arch}
init: false
map:
- ssl
name: Bookstack
options:
certfile: fullchain.pem
envvars: []
keyfile: privkey.pem
ssl: false
ports:
80/tcp: 2665
ports_description:
80/tcp: Web interface
schema:
appkey: str?
certfile: str
envvars:
- name: str
value: str
keyfile: str
log_level: list(trace|debug|info|notice|warning|error|fatal)?
remote_mysql_database: str?
remote_mysql_host: str?
remote_mysql_password: password?
remote_mysql_port: int?
remote_mysql_username: str?
show_appkey: bool?
ssl: bool
services:
- mysql:want
slug: bookstack
url: https://github.com/hassio-addons/addon-bookstack
version: 1.2.0
webui: '[PROTO:ssl]://[HOST]:[PORT:80]'