Bump version for 1.18.5
This commit is contained in:
parent
02eacdc619
commit
f00e65442b
|
@ -256,4 +256,12 @@
|
||||||
* #8000: stdiscosrv + strelaysrv systemd services not restarting on upgrade
|
* #8000: stdiscosrv + strelaysrv systemd services not restarting on upgrade
|
||||||
* #8012: Not retrying to sync when a new connection is established
|
* #8012: Not retrying to sync when a new connection is established
|
||||||
|
|
||||||
|
[1.18.5]
|
||||||
|
* Update Syncthing to 1.18.5
|
||||||
|
* [Full changelog](https://github.com/syncthing/syncthing/releases/tag/v1.18.5)
|
||||||
|
* Update base image to 3.2.0
|
||||||
|
* #7715: Deleted encrypted files don't show up as locally changed in web UI
|
||||||
|
* #7115: Use CRLF instead of LF in config.xml and .stignore on Windows
|
||||||
|
* #8014: Send TLS SNI to relay server
|
||||||
|
* #8021: Provide a way to preset GUI credentials with password hashing
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
"description": "file://DESCRIPTION.md",
|
"description": "file://DESCRIPTION.md",
|
||||||
"changelog": "file://CHANGELOG",
|
"changelog": "file://CHANGELOG",
|
||||||
"tagline": "Decentralized file synchronization",
|
"tagline": "Decentralized file synchronization",
|
||||||
"version": "1.18.4",
|
"version": "1.18.5",
|
||||||
"healthCheckPath": "/healthcheck",
|
"healthCheckPath": "/healthcheck",
|
||||||
"httpPort": 8000,
|
"httpPort": 8000,
|
||||||
"addons": {
|
"addons": {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
This app packages Syncthing <upstream>1.18.4</upstream>.
|
This app packages Syncthing <upstream>1.18.5</upstream>.
|
||||||
|
|
||||||
Syncthing replaces proprietary sync and cloud services with something open, trustworthy and decentralized. Your data is your data alone and you deserve to choose where it is stored, if it is shared with some third party and how it's transmitted over the Internet.
|
Syncthing replaces proprietary sync and cloud services with something open, trustworthy and decentralized. Your data is your data alone and you deserve to choose where it is stored, if it is shared with some third party and how it's transmitted over the Internet.
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
FROM cloudron/base:3.0.0@sha256:455c70428723e3a823198c57472785437eb6eab082e79b3ff04ea584faf46e92
|
FROM cloudron/base:3.2.0@sha256:ba1d566164a67c266782545ea9809dc611c4152e27686fd14060332dd88263ea
|
||||||
|
|
||||||
RUN mkdir -p /app/code
|
RUN mkdir -p /app/code
|
||||||
WORKDIR /app/code
|
WORKDIR /app/code
|
||||||
|
|
||||||
ARG VERSION=1.18.4
|
ARG VERSION=1.18.5
|
||||||
|
|
||||||
RUN wget https://github.com/syncthing/syncthing/releases/download/v${VERSION}/syncthing-linux-amd64-v${VERSION}.tar.gz -O - | tar -xz -C /app/code --strip-components=1
|
RUN wget https://github.com/syncthing/syncthing/releases/download/v${VERSION}/syncthing-linux-amd64-v${VERSION}.tar.gz -O - | tar -xz -C /app/code --strip-components=1
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue