1
0
mirror of https://git.cloudron.io/cloudron/syncthing-app synced 2025-09-26 14:57:28 +00:00

Compare commits

...

4 Commits

Author SHA1 Message Date
Johannes Zellner
4f5c579e4c Update test deps 2023-12-11 10:58:44 +01:00
Johannes Zellner
687d751dd9 Bump version 2023-12-11 10:58:34 +01:00
Johannes Zellner
20eefea761 Fixup tests 2023-11-15 14:34:12 +01:00
Johannes Zellner
0a81bc61d4 Bump version 2023-11-15 14:22:16 +01:00
6 changed files with 24 additions and 16 deletions

View File

@@ -422,3 +422,14 @@
* #9149: Favicon is stuck in notify state
* #4137: Use a real login screen + sessions instead of HTTP basic auth
[1.25.1]
* Update Syncthing to 1.26.1
* [Full changelog](https://github.com/syncthing/syncthing/releases/tag/v1.26.1)
[1.25.2]
* Update Syncthing to 1.27.1
* [Full changelog](https://github.com/syncthing/syncthing/releases/tag/v1.27.1)
* #9253: Permission error on folder causes "connection error" dialog when opening folder editor
* #9269: panic: nil pointer dereference in (*indexHandlerRegistry).startLocked
* #9274: Missing lock in DeviceStatistics ("fatal error: concurrent map read and map write")

View File

@@ -5,8 +5,8 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG",
"tagline": "Decentralized file synchronization",
"version": "1.25.0",
"upstreamVersion": "1.26.0",
"version": "1.25.2",
"upstreamVersion": "1.27.1",
"healthCheckPath": "/healthcheck",
"httpPort": 8000,
"addons": {

View File

@@ -3,7 +3,7 @@ FROM cloudron/base:4.2.0@sha256:46da2fffb36353ef714f97ae8e962bd2c212ca091108d768
RUN mkdir -p /app/code
WORKDIR /app/code
ARG VERSION=1.26.0
ARG VERSION=1.27.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

14
test/package-lock.json generated
View File

@@ -12,7 +12,7 @@
"chromedriver": "^119.0.1",
"expect.js": "^0.3.1",
"mocha": "^10.2.0",
"selenium-webdriver": "^4.15.0",
"selenium-webdriver": "^4.16.0",
"superagent": "^8.1.2"
}
},
@@ -1166,9 +1166,9 @@
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
},
"node_modules/selenium-webdriver": {
"version": "4.15.0",
"resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.15.0.tgz",
"integrity": "sha512-BNG1bq+KWiBGHcJ/wULi0eKY0yaDqFIbEmtbsYJmfaEghdCkXBsx1akgOorhNwjBipOr0uwpvNXqT6/nzl+zjg==",
"version": "4.16.0",
"resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.16.0.tgz",
"integrity": "sha512-IbqpRpfGE7JDGgXHJeWuCqT/tUqnLvZ14csSwt+S8o4nJo3RtQoE9VR4jB47tP/A8ArkYsh/THuMY6kyRP6kuA==",
"dependencies": {
"jszip": "^3.10.1",
"tmp": "^0.2.1",
@@ -2300,9 +2300,9 @@
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
},
"selenium-webdriver": {
"version": "4.15.0",
"resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.15.0.tgz",
"integrity": "sha512-BNG1bq+KWiBGHcJ/wULi0eKY0yaDqFIbEmtbsYJmfaEghdCkXBsx1akgOorhNwjBipOr0uwpvNXqT6/nzl+zjg==",
"version": "4.16.0",
"resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.16.0.tgz",
"integrity": "sha512-IbqpRpfGE7JDGgXHJeWuCqT/tUqnLvZ14csSwt+S8o4nJo3RtQoE9VR4jB47tP/A8ArkYsh/THuMY6kyRP6kuA==",
"requires": {
"jszip": "^3.10.1",
"tmp": "^0.2.1",

View File

@@ -12,7 +12,7 @@
"chromedriver": "^119.0.1",
"expect.js": "^0.3.1",
"mocha": "^10.2.0",
"selenium-webdriver": "^4.15.0",
"selenium-webdriver": "^4.16.0",
"superagent": "^8.1.2"
}
}

View File

@@ -87,17 +87,13 @@ describe('Application life cycle test', function () {
xit('build app', function () { execSync('cloudron build', EXEC_ARGS); });
it('install app', function () { execSync('cloudron install --port-bindings SYNC_PORT=' + SYNC_PORT + ' --location ' + LOCATION, EXEC_ARGS); });
// await timers.setTimeout(30000);
it('can get app information', getAppInfo);
it('can login', login);
it('can load page', loadPage);
it('can add folder', addFolder);
it('backup app', async function () {
execSync('cloudron backup create --app ' + app.id, EXEC_ARGS);
// await timers.setTimeout(30000);
});
it('backup app', async function () { execSync('cloudron backup create --app ' + app.id, EXEC_ARGS); });
it('restore app', async function () {
await browser.get('about:blank');
execSync('cloudron restore --app ' + app.id, EXEC_ARGS);
@@ -138,6 +134,7 @@ describe('Application life cycle test', function () {
execSync('cloudron update --app ' + LOCATION, EXEC_ARGS);
await timers.setTimeout(30000);
});
it('can login', login);
it('can check folder', checkFolder);
it('uninstall app', async function () {