diff --git a/README.md b/README.md index d3807b64e..1227f3c29 100644 --- a/README.md +++ b/README.md @@ -746,10 +746,10 @@ SOFTWARE. [appdaemon-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg [appdaemon-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg [appdaemon-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg -[addon-bookstack]: https://github.com/hassio-addons/addon-bookstack/tree/d6270f2 -[addon-doc-bookstack]: https://github.com/hassio-addons/addon-bookstack/blob/d6270f2/README.md +[addon-bookstack]: https://github.com/hassio-addons/addon-bookstack/tree/dd65d6b +[addon-doc-bookstack]: https://github.com/hassio-addons/addon-bookstack/blob/dd65d6b/README.md [bookstack-issue]: https://github.com/hassio-addons/addon-bookstack/issues -[bookstack-version-shield]: https://img.shields.io/badge/version-d6270f2-blue.svg +[bookstack-version-shield]: https://img.shields.io/badge/version-dd65d6b-blue.svg [bookstack-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg [bookstack-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg [bookstack-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg diff --git a/bookstack/CHANGELOG.md b/bookstack/CHANGELOG.md index f3c322573..caa428858 100644 --- a/bookstack/CHANGELOG.md +++ b/bookstack/CHANGELOG.md @@ -1,12 +1,6 @@ -# Changelog since v1.0.3 -- ⬆️ Update Bookstack to v22.04.1 (#180) -- 🚑 Add php-xmlwriter for QR Code generation (#179) -- ⬆️ Update image, PHP and dependencies (#178) +# Changelog since v1.1.0 +- 🔒 Sign add-on with Codenotary Community Attestation Service (CAS) (#181) -* ⬆️ Update image to v11.1.2 +* 🔒 Sign add-on with Codenotary Community Attestation Service (CAS) -* ⬆️ Update PHP to 8.0.18-r0 - -* ⬆️ Update Composer to 2.2.12-r0 - -* ⬆️ Update mariadb/nginx +* :shirt: Fix yamllint warning diff --git a/bookstack/README.md b/bookstack/README.md index 65aa9429e..72aa2f128 100644 --- a/bookstack/README.md +++ b/bookstack/README.md @@ -42,6 +42,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-d6270f2-blue.svg -[release]: https://github.com/hassio-addons/addon-bookstack/tree/d6270f2 +[release-shield]: https://img.shields.io/badge/version-dd65d6b-blue.svg +[release]: https://github.com/hassio-addons/addon-bookstack/tree/dd65d6b [screenshot]: https://github.com/hassio-addons/addon-bookstack/raw/main/images/screenshot.png \ No newline at end of file diff --git a/bookstack/config.json b/bookstack/config.json deleted file mode 100644 index 9cf29fff2..000000000 --- a/bookstack/config.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "name": "Bookstack", - "version": "d6270f2", - "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}" -} \ No newline at end of file diff --git a/bookstack/config.yaml b/bookstack/config.yaml new file mode 100644 index 000000000..88f3413ee --- /dev/null +++ b/bookstack/config.yaml @@ -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: dd65d6b +webui: '[PROTO:ssl]://[HOST]:[PORT:80]'