summaryrefslogtreecommitdiffstats
path: root/lib/private/updater.php
Commit message (Collapse)AuthorAgeFilesLines
* Update license headersLukas Reschke2015-10-261-0/+1
|
* Merge pull request #19918 from owncloud/send-begin-messageThomas Müller2015-10-211-0/+6
|\ | | | | Update: state which step we are going to start and warn if it might b…
| * Update: state which step we are going to start and warn if it might be slowJoas Schilling2015-10-211-0/+6
| |
* | Install new shipped apps on upgrade -fixes #19925Thomas Müller2015-10-211-0/+3
|/
* Always pass in ILoggerThomas Müller2015-10-091-3/+1
|
* Clean codeThomas Müller2015-10-091-2/+2
|
* Catch exceptions during app upgrade - fixes #16240Thomas Müller2015-10-091-4/+8
|
* [upgrade] switch to debug logging on upgradeMorris Jobke2015-09-291-0/+16
| | | | | * resets afterwards * adds output about the previous log level
* Move certificate bundle into resources/config/Lukas Reschke2015-09-221-7/+0
|
* Improved update version detection logicVincent Petry2015-08-311-7/+1
|
* Simplify comparison algoVincent Petry2015-08-311-15/+1
|
* Restrict upgrades to explicit allowed versionVincent Petry2015-08-301-6/+34
| | | | | | version.php now contains the previous ownCloud version from which upgrades are allowed. Any other upgrades will show a message that the upgrade/downgrade is not supported.
* Add warning for not existing CA bundle when updatingLukas Reschke2015-08-191-0/+7
| | | | For newer releases we shall use an integrity check. But that's a good alternative for now.
* Merge pull request #17088 from owncloud/add-verbosity-to-upgradeMorris Jobke2015-07-011-0/+6
|\ | | | | [upgrade] add verbosity check and show repair info & steps
| * [upgrade] add verbosity check and show repair info & stepsMorris Jobke2015-06-241-0/+6
| |
* | Use new updater URL + add unit testsLukas Reschke2015-06-281-13/+22
| | | | | | | | Uses the new updater url "https://updates.owncloud.com/server/"
* | update license headers and authorsMorris Jobke2015-06-251-0/+1
|/
* Merge pull request #17095 from owncloud/proper-error-handlingMorris Jobke2015-06-231-3/+8
|\ | | | | Proper error handling
| * [updater] keep maintenance active on failure and mark failure in redMorris Jobke2015-06-231-1/+1
| |
| * [updater] propagate error case properlyMorris Jobke2015-06-231-2/+7
| | | | | | | | | | | | * add $success to the updateEnd hook * add new return code for a update failure * add exception class to failure hook message
* | [upgrade] print update message before running the update codeMorris Jobke2015-06-231-0/+1
|/ | | | * otherwise you don't know during which app update something failed
* Merge pull request #16434 from owncloud/persist-maintenance-stateThomas Müller2015-06-031-4/+14
|\ | | | | Persist the state of the maintenance after an upgrade
| * Persist the state of the maintenance after an upgradeMorris Jobke2015-05-191-4/+14
| | | | | | | | | | | | * if maintenance mode was enabled before an upgrade it will be enabled afterwards too * fixes #16429
* | Skip disable3rdParty AppsSteffen Lindner2015-05-201-4/+19
|/
* Use internally \OCP\ILogger instead of \OC\LogMorris Jobke2015-04-301-3/+4
| | | | | | * this is the preparation for some upcoming logger related changes * also fixes an issue in the public interface where we request an internal class as parameter
* Update license headersJenkins for ownCloud2015-03-261-4/+27
|
* Add spacesMorris Jobke2015-03-161-1/+1
|
* [WIP] upgrade app store apps during console upgradeThomas Müller2015-03-131-1/+21
|
* Merge pull request #14357 from owncloud/fix/1373Morris Jobke2015-03-111-7/+7
|\ | | | | Run `updateDataDirectory` after Update
| * Run `updateDataDirectory` after UpdateLukas Reschke2015-03-021-7/+7
| | | | | | | | Fixes https://github.com/owncloud/core/issues/13731
* | Properly forward repair errors and warningsVincent Petry2015-02-271-0/+16
|/ | | | | This makes repair errors and warnings visible for the user when upgrading on the command line or in the web UI.
* Revert "Updating license headers"Morris Jobke2015-02-261-26/+5
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* 3rd-party apps are only disabled in case core is upgradedThomas Müller2015-02-241-0/+14
|
* shipped and 3rd-party apps of type authentication and session will remain ↵Thomas Müller2015-02-241-3/+11
| | | | enabled during update
* 3rd-party apps are disabled on upgrade - refs #14026Thomas Müller2015-02-241-38/+55
|
* Fix namespace of OC_Setup -> \OC\SetupThomas Müller2015-02-231-1/+1
|
* Updating license headersJenkins for ownCloud2015-02-231-5/+26
|
* Port of #14041 to masterArthur Schiwon2015-02-191-3/+37
| | | | | | on ownCloud upgrade: upgrade all apps in order, load important ones Fix "other" app update stack
* Add version to .htaccessLukas Reschke2015-01-081-1/+5
| | | | | | | | | Currently if a user does not replace the .htaccess file with the new update this can lead to serious problems in case Apache is used as webserver. This commit adds the version to the .htaccess file and the update routine fails in case not the newest version is specified in there. This obviously means that every release has to update the version specified in .htaccess as well. But I see no better solution for it. Conflicts: lib/private/updater.php
* Inject configVictor Dubiniuk2014-12-101-10/+16
|
* Fix tests. Add two more test casesVictor Dubiniuk2014-12-081-6/+7
|
* Use httphelper and cache response even when it emptyVictor Dubiniuk2014-12-061-20/+20
|
* Run preupdate before an updateLukas Reschke2014-11-131-1/+17
| | | | | | | | The update routine tries to test the database migration before actually performing the update. However, this will fail hard if the schema has changed (for example an unique key has been added). App developers can convert the DB in preupdate.php, however it is not called before and therefore the update fails. This actually breaks ownCloud updates from ownCloud 6 to ownCloud 7 when the files_antivirus app is enabled.
* Remove implicit prepared statement cache and get the connection from the ↵Robin Appelman2014-10-221-1/+0
| | | | server container in \OC_DB
* remove legacy class OC_UpdaterThomas Müller2014-10-201-1/+5
|
* Merge pull request #11119 from owncloud/removeOldUpgradeRoutinesVincent Petry2014-09-191-20/+0
|\ | | | | Remove old upgrade routines
| * Remove old upgrade routinesLukas Reschke2014-09-161-20/+0
| | | | | | | | We do not support updates from 6 to 8 directly, therefore we can remove those upgrade routines.
* | Prevent updates between multiple major versionsLukas Reschke2014-09-181-1/+23
|/ | | | Ref https://github.com/owncloud/core/issues/11078
* fix undefined variableRobin Appelman2014-08-181-1/+1
|
* only set core version at the endRobin Appelman2014-08-041-2/+0
|