1
0
mirror of https://git.cloudron.io/cloudron/syncthing-app synced 2026-06-17 11:35:49 +00:00

Compare commits

..

3 Commits

Author SHA1 Message Date
Package Updates 7403b5ab73 Update package version to 1.34.1 2026-06-02 17:21:56 +00:00
Renovate Bot 1e3e2bbe53 chore(deps): update dependency syncthing/syncthing to v2.1.1
| datasource      | package             | from  | to    |
| --------------- | ------------------- | ----- | ----- |
| github-releases | syncthing/syncthing | 2.1.0 | 2.1.1 |
2026-06-02 16:40:37 +00:00
Girish Ramakrishnan 6bfb76fbf9 test: make test/test.js non-executable and remove shebang 2026-05-19 16:11:20 +02:00
4 changed files with 12 additions and 4 deletions
+9
View File
@@ -840,3 +840,12 @@
* feat(gui, config): support simple folder grouping (fixes [#2070](https://github.com/syncthing/syncthing/issues/2070)) by [@maen-bn](https://github.com/maen-bn) in [#10563](https://github.com/syncthing/syncthing/pull/10563)
* feat(dialer): add HTTP/HTTPS proxy support via CONNECT by [@luizluca](https://github.com/luizluca) in [#10572](https://github.com/syncthing/syncthing/pull/10572)
[1.34.1]
* Update syncthing to 2.1.1
* [Full Changelog](https://github.com/syncthing/syncthing/releases/tag/v2.1.1)
* fix(syncthing): properly upgrade via REST when Syncthing is running (fixes [#10697](https://github.com/syncthing/syncthing/issues/10697)) by [@calmh](https://github.com/calmh) in [#10699](https://github.com/syncthing/syncthing/pull/10699)
* fix(versioner): ensure user read/write/execute on archived dirs (fixes [#10532](https://github.com/syncthing/syncthing/issues/10532)) by [@calmh](https://github.com/calmh) in [#10696](https://github.com/syncthing/syncthing/pull/10696)
* fix(discover): only announce wildcard for TCP punching when listening on wildcard address (fixes [#10503](https://github.com/syncthing/syncthing/issues/10503)) by [@calmh](https://github.com/calmh) in [#10691](https://github.com/syncthing/syncthing/pull/10691)
* fix(stcrashreceiver): close source loader responses on errors by [@mattn](https://github.com/mattn) in [#10704](https://github.com/syncthing/syncthing/pull/10704)
* fix(protocol): handle zero-size requests (fixes [#10709](https://github.com/syncthing/syncthing/issues/10709)) by [@calmh](https://github.com/calmh) in [#10710](https://github.com/syncthing/syncthing/pull/10710)
+2 -2
View File
@@ -5,8 +5,8 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG",
"tagline": "Decentralized file synchronization",
"version": "1.34.0",
"upstreamVersion": "2.1.0",
"version": "1.34.1",
"upstreamVersion": "2.1.1",
"healthCheckPath": "/healthcheck",
"httpPort": 8000,
"addons": {
+1 -1
View File
@@ -4,7 +4,7 @@ RUN mkdir -p /app/code
WORKDIR /app/code
# renovate: datasource=github-releases depName=syncthing/syncthing versioning=semver extractVersion=^v(?<version>.+)$
ARG SYNCTHING_VERSION=2.1.0
ARG SYNCTHING_VERSION=2.1.1
RUN wget https://github.com/syncthing/syncthing/releases/download/v${SYNCTHING_VERSION}/syncthing-linux-amd64-v${SYNCTHING_VERSION}.tar.gz -O - | tar -xz -C /app/code --strip-components=1
-1
View File
@@ -1,4 +1,3 @@
#!/usr/bin/env node
import { app, clearCache, click, cloudronCli, goto, password, sendKeys, setupBrowser, takeScreenshot, teardownBrowser, username, waitFor } from '@cloudron/charlie';