Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/updater_server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2021-08-03 17:42:55 +0300
committerGitHub <noreply@github.com>2021-08-03 17:42:55 +0300
commitbb9ee09a6aaaa29bf2ffc4eb8950fb6fe6f7b4d3 (patch)
tree549e888c6f0adbc1ad77deb1184e48e98759b343
parent015ae74bf05b1ec0b70036a52061342ed60a7b5c (diff)
parente5aaa9b2cba043aa454fbe65fc1358915a673be3 (diff)
Merge pull request #625 from nextcloud/fix/daily
Update daily builds
-rwxr-xr-xconfig/config.php24
-rw-r--r--tests/integration/features/daily.feature22
2 files changed, 32 insertions, 14 deletions
diff --git a/config/config.php b/config/config.php
index 8fe9be8..c92af53 100755
--- a/config/config.php
+++ b/config/config.php
@@ -861,21 +861,27 @@ ZH1PxQilL7ihAvnOb2oU1Q==',
],
],
'daily' => [
- '20' => [
+ '23' => [
'downloadUrl' => 'https://download.nextcloud.com/server/daily/latest-master.zip',
'web' => 'https://docs.nextcloud.com/server/latest/admin_manual/maintenance/upgrade.html',
'eol' => false,
- 'minPHPVersion' => '7.2',
+ 'minPHPVersion' => '7.3',
],
- '19' => [
- 'downloadUrl' => 'https://download.nextcloud.com/server/daily/latest-stable19.zip',
- 'web' => 'https://docs.nextcloud.com/server/19/admin_manual/maintenance/upgrade.html',
+ '22' => [
+ 'downloadUrl' => 'https://download.nextcloud.com/server/daily/latest-stable22.zip',
+ 'web' => 'https://docs.nextcloud.com/server/stable/admin_manual/maintenance/upgrade.html',
'eol' => false,
- 'minPHPVersion' => '7.2',
+ 'minPHPVersion' => '7.3',
],
- '18' => [
- 'downloadUrl' => 'https://download.nextcloud.com/server/daily/latest-stable18.zip',
- 'web' => 'https://docs.nextcloud.com/server/18/admin_manual/maintenance/upgrade.html',
+ '21' => [
+ 'downloadUrl' => 'https://download.nextcloud.com/server/daily/latest-stable21.zip',
+ 'web' => 'https://docs.nextcloud.com/server/21/admin_manual/maintenance/upgrade.html',
+ 'eol' => false,
+ 'minPHPVersion' => '7.3',
+ ],
+ '20' => [
+ 'downloadUrl' => 'https://download.nextcloud.com/server/daily/latest-stable20.zip',
+ 'web' => 'https://docs.nextcloud.com/server/20/admin_manual/maintenance/upgrade.html',
'eol' => false,
'minPHPVersion' => '7.2',
],
diff --git a/tests/integration/features/daily.feature b/tests/integration/features/daily.feature
index 76bf36a..7eb6c73 100644
--- a/tests/integration/features/daily.feature
+++ b/tests/integration/features/daily.feature
@@ -1,14 +1,26 @@
Feature: Testing the update scenario of daily releases
- Scenario: Updating an outdated Nextcloud 19.0 daily
+ Scenario: Updating an outdated Nextcloud 22 daily
Given There is a release with channel "daily"
- And The received version is "19.0.100"
- And the received build is "2012-10-19T18:44:30+00:00%208ee2009de36e01a9866404f07722892f84c16e3e"
+ And The received version is "22.1.0"
+ And the received build is "2012-10-19T18:44:30+00:00"
+ When The request is sent
+ Then The response is non-empty
+ And Update to version "100.0.0.0" is available
+ And URL to download is "https://download.nextcloud.com/server/daily/latest-stable22.zip"
+ And URL to documentation is "https://docs.nextcloud.com/server/stable/admin_manual/maintenance/upgrade.html"
+ And EOL is set to "0"
+ And No signature is set
+
+ Scenario: Updating an outdated Nextcloud 21 daily
+ Given There is a release with channel "daily"
+ And The received version is "21.0.4"
+ And the received build is "2012-10-19T18:44:30+00:00"
When The request is sent
Then The response is non-empty
And Update to version "100.0.0.0" is available
- And URL to download is "https://download.nextcloud.com/server/daily/latest-stable19.zip"
- And URL to documentation is "https://docs.nextcloud.com/server/19/admin_manual/maintenance/upgrade.html"
+ And URL to download is "https://download.nextcloud.com/server/daily/latest-stable21.zip"
+ And URL to documentation is "https://docs.nextcloud.com/server/21/admin_manual/maintenance/upgrade.html"
And EOL is set to "0"
And No signature is set