https://github.com/owncloud/owncloud-updater-server
Server component that responds to ownCloud Server update requests
https://github.com/owncloud/owncloud-updater-server
Last synced: 4 months ago
JSON representation
Server component that responds to ownCloud Server update requests
- Host: GitHub
- URL: https://github.com/owncloud/owncloud-updater-server
- Owner: owncloud
- License: mit
- Created: 2020-11-05T10:10:15.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2022-06-20T17:05:58.000Z (almost 4 years ago)
- Last Synced: 2025-06-28T18:13:15.270Z (12 months ago)
- Language: Gherkin
- Size: 1.57 MB
- Stars: 2
- Watchers: 18
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
This is the server that is called from ownCloud to check if a new version of the server is available.
## How to release a new update
1. Adjust config/config.php for the update
2. Adjust tests/integration/features/update.feature for the integration tests
If the tests are not passing the TravisCI test execution will fail.
## Example calls
Deployed URL: http://updates.owncloud.com/server/
Example call: update-server/?version=8x2x0x12x1448709225.0768x1448709281xstablexx2015-10-19T18:44:30+00:00%208ee2009de36e01a9866404f07722892f84c16e3e
```xml
8.2.1.4
ownCloud 8.2.1
https://download.owncloud.org/community/owncloud-8.2.1.zip
https://doc.owncloud.org/server/8.1/admin_manual/maintenance/upgrade.html
```
## Testing against a production updater server instance
`make test-production`
## Testing against any updater server instance
```bash
cd tests/integration
SERVER_PROTO="http" SERVER_HOST="example.org:8080/whatever" ../../vendor/bin/behat
```