Bump version for 1.10.0
This commit is contained in:
parent
d0a965f323
commit
c4f75bc16d
14
CHANGELOG
14
CHANGELOG
|
@ -177,3 +177,17 @@
|
||||||
* certs now supports multiple domains for TLS termination, refer #10207
|
* certs now supports multiple domains for TLS termination, refer #10207
|
||||||
* Context now passed around at storage layer for future context support, refer #10321
|
* Context now passed around at storage layer for future context support, refer #10321
|
||||||
|
|
||||||
|
[1.12.0]
|
||||||
|
* Update Syncthing to 1.10.0
|
||||||
|
* #6880: fatal error: concurrent map iteration and map write
|
||||||
|
* #6917: Reconsider db check on upgrade
|
||||||
|
* #6930: Can't add new folder with versioning enabled, Cleanup Interval field lacks default value
|
||||||
|
* #6940: TypeError: Object doesn't support property or method 'startsWith' in IE 11 / Windows 7
|
||||||
|
* #6943: Missing strings for translation
|
||||||
|
* #6961: Accounting issue with receive-only deleted files causing spurious 95% completion for remote devices
|
||||||
|
* #6968: Very slow scans on Windows in 1.9.0
|
||||||
|
* #6972: Deleting a folder containing a symlink results in a permanently out of sync on windows
|
||||||
|
* #6973: given name "syncthingxxx.tmp" differs from name in filesystem "syncthingXXX.tmp"
|
||||||
|
* #4277: Announce internal and external address to the global discovery service, encrypted
|
||||||
|
* #6734: Consider moving configuration to a proto contract
|
||||||
|
* #6928: Announce LAN addresses to global discovery
|
||||||
|
|
|
@ -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.11.0",
|
"version": "1.12.0",
|
||||||
"healthCheckPath": "/healthcheck",
|
"healthCheckPath": "/healthcheck",
|
||||||
"httpPort": 8000,
|
"httpPort": 8000,
|
||||||
"addons": {
|
"addons": {
|
||||||
|
@ -29,7 +29,7 @@
|
||||||
],
|
],
|
||||||
"minBoxVersion": "5.3.0",
|
"minBoxVersion": "5.3.0",
|
||||||
"forumUrl": "https://forum.cloudron.io/category/56/syncthing",
|
"forumUrl": "https://forum.cloudron.io/category/56/syncthing",
|
||||||
"documentationUrl": "https://cloudron.io/documentation/apps/syncthing/",
|
"documentationUrl": "https://docs.cloudron.io/apps/syncthing/",
|
||||||
"mediaLinks": [
|
"mediaLinks": [
|
||||||
"https://screenshots.cloudron.io/net.syncthing.cloudronapp2/1.png",
|
"https://screenshots.cloudron.io/net.syncthing.cloudronapp2/1.png",
|
||||||
"https://screenshots.cloudron.io/net.syncthing.cloudronapp2/2.png",
|
"https://screenshots.cloudron.io/net.syncthing.cloudronapp2/2.png",
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
This app packages Syncthing <upstream>1.9.0</upstream>.
|
This app packages Syncthing <upstream>1.10.0</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,6 +1,6 @@
|
||||||
FROM cloudron/base:2.0.0@sha256:f9fea80513aa7c92fe2e7bf3978b54c8ac5222f47a9a32a7f8833edf0eb5a4f4
|
FROM cloudron/base:2.0.0@sha256:f9fea80513aa7c92fe2e7bf3978b54c8ac5222f47a9a32a7f8833edf0eb5a4f4
|
||||||
|
|
||||||
ARG VERSION=1.9.0
|
ARG VERSION=1.10.0
|
||||||
|
|
||||||
RUN mkdir -p /app/code
|
RUN mkdir -p /app/code
|
||||||
WORKDIR /app/code
|
WORKDIR /app/code
|
||||||
|
|
Loading…
Reference in New Issue