🎉 Release of add-on UniFi Controller 0.20.0

This commit is contained in:
Community Hass.io Add-ons Bot 2021-01-20 12:06:52 +00:00
parent 50f66b93f6
commit c11af5cebe
5 changed files with 33 additions and 29 deletions

View file

@ -1,12 +1,14 @@
[Full Changelog][changelog]
## Whats changed
### 🔨 Changes
## 🧰 Maintenance
- ⬆ Upgrade UniFi Controller v6.0.36 (#118)
- ⬆ Upgrades openjdk-8-jdk-headless to 8u275-b01-0ubuntu1~18.04
- Cleanup repository @frenck (#132)
- Happy New Year @frenck (#133)
- Upgrade Code of Conduct @frenck (#134)
- Add new repository workflow @frenck (#136)
[changelog]: https://github.com/hassio-addons/addon-unifi/compare/v0.19.2...v0.19.3
## ⬆️ Dependency updates
Questions? Join our Discord server! https://discord.me/hassioaddons
Enjoying my add-ons? Consider supporting my work:
https://github.com/sponsors/frenck or https://patreon.com/frenck
- ⬆️ Upgrade UniFi Controller v6.0.41 @lopesdasilva (#121)
- ⬆️ Upgrade UniFi Controller v6.0.43 @stocker85 (#125)
- Upgrade add-on base image to 6.0.0 @frenck (#137)

View file

@ -53,7 +53,7 @@ dealing with an unknown issue. Possible values are:
- `debug`: Shows detailed debug information.
- `info`: Normal (usually) interesting events.
- `warning`: Exceptional occurrences that are not errors.
- `error`: Runtime errors that do not require immediate action.
- `error`: Runtime errors that do not require immediate action.
- `fatal`: Something went terribly wrong. Add-on becomes unusable.
Please note that each level automatically includes log messages from a
@ -133,7 +133,7 @@ you can manually adopt a device by following these steps:
instructions carefully. You need to change some controller settings
in order for this add-on to work properly. Using the Ubiquiti Discovery
Tool, or SSH'ing into the AP and setting the INFORM after adopting
will resolve this. (see: *Manually adopting a device*)
will resolve this. (see: _Manually adopting a device_)
- This add-on does support ARM-based devices, nevertheless, they must
at least be an ARMv7 device. (Raspberry Pi 1 and Zero is not supported).
- When using SSL, the following warning is shown in the add-on logs:
@ -141,9 +141,13 @@ you can manually adopt a device by following these steps:
be safely ignored. There is nothing wrong and your add-on will function
normally.
- The following error can show up in the log, but can be safely ignored:
`INFO: I/O exception (java.net.ConnectException) caught when
processing request: Connection refused (Connection refused)`.
This is a known issue, however, the add-on functions normally.
```
INFO: I/O exception (java.net.ConnectException) caught when processing
request: Connection refused (Connection refused)`. This is a known issue,
however, the add-on functions normally.
```
- Due limitation, renewed SSL certificates are not picked up automatically.
You'd have to restart the add-on in order for UniFi to pick up the change.
- Due to security policies in the UniFi Controller software, it is currently
@ -162,12 +166,12 @@ functionality. The format of the log is based on
[Keep a Changelog][keepchangelog].
Releases are based on [Semantic Versioning][semver], and use the format
of ``MAJOR.MINOR.PATCH``. In a nutshell, the version will be incremented
of `MAJOR.MINOR.PATCH`. In a nutshell, the version will be incremented
based on the following:
- ``MAJOR``: Incompatible or major changes.
- ``MINOR``: Backwards-compatible new features and enhancements.
- ``PATCH``: Backwards-compatible bugfixes and package updates.
- `MAJOR`: Incompatible or major changes.
- `MINOR`: Backwards-compatible new features and enhancements.
- `PATCH`: Backwards-compatible bugfixes and package updates.
## Support
@ -195,7 +199,7 @@ check [the contributor's page][contributors].
MIT License
Copyright (c) 2018-2020 Franck Nijhof
Copyright (c) 2018-2021 Franck Nijhof
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View file

@ -46,10 +46,10 @@ If you are more interested in stable releases of our add-ons:
[forum]: https://community.home-assistant.io/t/home-assistant-community-add-on-unifi-controller/56297?u=frenck
[github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png
[github-sponsors]: https://github.com/sponsors/frenck
[maintenance-shield]: https://img.shields.io/maintenance/yes/2020.svg
[maintenance-shield]: https://img.shields.io/maintenance/yes/2021.svg
[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.19.3-blue.svg
[release]: https://github.com/hassio-addons/addon-unifi/tree/v0.19.3
[screenshot]: https://github.com/hassio-addons/addon-unifi/raw/master/images/screenshot.jpg
[release-shield]: https://img.shields.io/badge/version-v0.20.0-blue.svg
[release]: https://github.com/hassio-addons/addon-unifi/tree/v0.20.0
[screenshot]: https://github.com/hassio-addons/addon-unifi/raw/main/images/screenshot.jpg

View file

@ -1,6 +1,6 @@
{
"name": "UniFi Controller",
"version": "0.19.3",
"version": "0.20.0",
"slug": "unifi",
"description": "Manage your UniFi network using a web browser",
"url": "https://github.com/hassio-addons/addon-unifi",
@ -17,7 +17,6 @@
"backup:rw",
"ssl"
],
"boot": "auto",
"ports": {
"161/udp": null,
"1900/udp": null,
@ -43,7 +42,6 @@
"10001/udp": "Used for device discovery"
},
"hassio_api": true,
"hassio_role": "default",
"options": {
"ssl": true,
"certfile": "fullchain.pem",
@ -57,5 +55,5 @@
"memory_max": "int?",
"memory_init": "int?"
},
"image": "hassioaddons/unifi-{arch}"
"image": "ghcr.io/hassio-addons/unifi/{arch}"
}