🎉 Release of add-on Traccar 0.7.0

This commit is contained in:
Community Hass.io Add-ons Bot 2020-02-28 16:27:22 +00:00
parent e36620340b
commit 3dce823777
4 changed files with 41 additions and 15 deletions

View file

@ -1070,10 +1070,10 @@ SOFTWARE.
[tor-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[tor-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
[tor-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-traccar]: https://github.com/hassio-addons/addon-traccar/tree/v0.6.1
[addon-doc-traccar]: https://github.com/hassio-addons/addon-traccar/blob/v0.6.1/README.md
[addon-traccar]: https://github.com/hassio-addons/addon-traccar/tree/v0.7.0
[addon-doc-traccar]: https://github.com/hassio-addons/addon-traccar/blob/v0.7.0/README.md
[traccar-issue]: https://github.com/hassio-addons/addon-traccar/issues
[traccar-version-shield]: https://img.shields.io/badge/version-v0.6.1-blue.svg
[traccar-version-shield]: https://img.shields.io/badge/version-v0.7.0-blue.svg
[traccar-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/traccar-armhf.svg
[traccar-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[traccar-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg

View file

@ -1,13 +1,36 @@
[Full Changelog][changelog]
This is a general maintenance release.
### ⚠️ This is a major release with breaking changes
This is a major release of the Traccar add-on, that contains breaking changes, to make future use (and development) easier.
#### Protocols disabled by default
All protocols and ports, besides the web API, are now disabled by default! You need to manually enable each protocol you need to use in the `/config/traccar.xml` file yourself. Please refer to the Traccar documentation on how to do that.
The reason to switch off all protocols is to free up memory and keep Traccar from claiming hundreds of ports. This excessive port claiming caused troubles for a lot of users and confused the lesser technical known users even more.
#### Now uses the official MariaDB add-on
The add-on now interconnects with the official Home Assistant MariaDB add-on automatically. Make sure you have it installed and running (version 2.0 or higher). Zero, 0, configuration needed.
If you have a custom MySQL connection configured in your configuration, that will have a higher priority, and thus will be used.
### Changed
- :arrow_up: Upgrades Traccar to 4.7 (#33)
- :arrow_up: Upgrades nginx to 1.16.1-r6
- :books: Update add-on documentation to use new YAML configuration format
- :hammer: Re-branding
- :hammer: Update add-on config with new password & list features
- :hammer: Updates for upstream Supervisor changes
- :arrow_up: Upgrades add-on base image to v7.0.2
- :arrow_up: Upgrades openjdk8-jre to 8.242.08-r0
- :arrow_up: Upgrades Traccar to v4.8
- :sparkles: Automatically use and discovery MySQL service
- :fire: Disable all ports by default, add example to custom config
- :hammer: Update community forum links
- :books: Update add-on installation instructions
[changelog]: https://github.com/hassio-addons/addon-traccar/compare/v0.6.0...v0.6.1
[changelog]: https://github.com/hassio-addons/addon-traccar/compare/v0.6.1...v0.7.0
Questions? Join our Discord server! https://discord.me/hassioaddons
Enjoying my add-ons? Consider supporting my work:

View file

@ -1,4 +1,4 @@
# Community Hass.io Add-ons: Traccar
# Home Assistant Community Add-on: Traccar
[![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield]
@ -33,16 +33,16 @@ your Home Assistant instance as well.
[discord-shield]: https://img.shields.io/discord/478094546522079232.svg
[discord]: https://discord.me/hassioaddons
[docs]: https://github.com/hassio-addons/addon-traccar/blob/v0.6.1/README.md
[docs]: https://github.com/hassio-addons/addon-traccar/blob/v0.7.0/README.md
[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg
[forum]: https://community.home-assistant.io/t/community-hass-io-add-on-traccar/81407?u=frenck
[forum]: https://community.home-assistant.io/t/home-assistant-community-add-on-traccar/81407?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
[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.6.1-blue.svg
[release]: https://github.com/hassio-addons/addon-traccar/tree/v0.6.1
[release-shield]: https://img.shields.io/badge/version-v0.7.0-blue.svg
[release]: https://github.com/hassio-addons/addon-traccar/tree/v0.7.0
[screenshot]: https://github.com/hassio-addons/addon-traccar/raw/master/images/screenshot.png
[traccar]: https://www.traccar.org

View file

@ -1,6 +1,6 @@
{
"name": "Traccar",
"version": "0.6.1",
"version": "0.7.0",
"slug": "traccar",
"description": "Modern GPS Tracking Platform",
"url": "https://github.com/hassio-addons/addon-traccar",
@ -24,19 +24,22 @@
"80/tcp": null
},
"ports_description": {
"80/tcp": "Web interface (Not required for Hass.io Ingress)"
"80/tcp": "Web interface (Not required for Ingress)"
},
"map": [
"config:rw",
"ssl"
],
"services": [
"mysql:want"
],
"options": {
"ssl": true,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem"
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)?",
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
"ssl": "bool",
"certfile": "str",
"keyfile": "str"