diff --git a/CHANGELOG.md b/CHANGELOG.md index d602a59..277bc0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ Dates are in UTC. +## 2.6.0 (2020-12-29) + +- Add `router.basePath` config option for non-webroot deployments +- Configure Vue to not assume it's on the web root ([#47](https://github.com/owntracks/frontend/pull/47), [@growse](https://github.com/growse)) +- Update Docker NGINX config to listen on IPv6 as well ([#46](https://github.com/owntracks/frontend/pull/46), [@growse](https://github.com/growse)) +- Upgrade dependencies + ## 2.5.1 (2020-10-27) - Fix incorrect handling of `api.baseUrl` with trailing slash ([#44](https://github.com/owntracks/frontend/pull/44), [@karmanyaahm](https://github.com/karmanyaahm)) diff --git a/docker/Dockerfile b/docker/Dockerfile index a89a3b3..f09f306 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -6,7 +6,7 @@ COPY . ./ RUN yarn build FROM nginx:1.17-alpine -LABEL version="2.5.1" +LABEL version="2.6.0" LABEL description="OwnTracks UI" LABEL maintainer="Linus Groh " ENV LISTEN_PORT=80 \ diff --git a/package.json b/package.json index 246d789..aa55088 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "owntracks-ui", - "version": "2.5.1", + "version": "2.6.0", "author": { "name": "Linus Groh", "email": "mail@linusgroh.de"