App upgrade guide
Once you’ve created and published the first version of your app, you will want to keep it up to date with the latest Nextcloud features.
This document will cover the most important changes in Nextcloud, as well as some guides on how to upgrade existing apps.
Upgrading to Nextcloud 23
Note
Critical changes were collected on GitHub. See the original ticket for links to the pull requests and tickets.
Back-end changes
Changed APIs
\OCP\User\Events\UserLoggedInEvent::getPasswordis now nullable because logins are possible without a password in SSO setups
Deprecated APIs
\OCP\Calendar\IManager::search: use the new calendar search API\OCP\Calendar\IManager::isEnabled: there is no replacement\OCP\Calendar\IManager::registerCalendar: use calendar providers\OCP\Calendar\IManager::unregisterCalendarthere is no replacement\OCP\Calendar\IManager::register: use calendar providers\OCP\Calendar\IManager::getCalendars: use the new calendar API\OCP\Calendar\IManager::clear: there is no replacement
Updated core libraries
doctrine/dbal
The Doctrine Database Abstraction Layer (dbal) powers Nextcloud’s database connection and query builder. In Nextcloud 23 this dependency was updated from 3.0 to 3.1. As a consequence the \OC\DB\QueryBuilder\QueryBuilder::getFirstResult method now returns 0 instead of null if \OC\DB\QueryBuilder\QueryBuilder::setFirstResult wasn’t called.
Upgrading to Nextcloud 22
Note
Critical changes were collected on GitHub. See the original ticket for links to the pull requests and tickets.
General
Migration commands
The occ commands in the migration:* namespace are now only available in debug mode.
See the pull request on GitHub for more information. If you thought you needed them, feel free to ping the author or a reviewer of the PR to solve the problem correctly. Running migrations directly mostly breaks the database status and is therefore only meant for debugging faulty migrations.
Log format
The JSON log format no longer contains full exception in the message field, but a separate exception entry is added and the existing message will only contain the exception message text. This might need adjustments by administrators when logs are extracted to external sources.
Front-end changes
Scss variable and compilation deprecation
Nextcloud is slowly phasing out scss variables and the compilation of app style sheets. It’s recommended that apps use their own compilation (e.g. through Webpack) to transform scss and similar to plain css. The ability of Nextcloud compiling scss for apps will be removed in the future. Subscribe to GitHub ticket 9940 to get updates on how to best approach this. Right now some scss variables can be replaced with css variables. Other mechanisms like the icon generation still depend on the scss compilation by Nextcloud.
Node.js upgrade
Most Nextcloud apps and Nextcloud itself is now built with Node v14 LTS instead of v12. We recommend updating the configuration of your app accordingly.
IE11 removal
Internet Explorer 11 was phased out over the past few releases and starting with Nextcloud 22 the front-end code isn’t transpiled for IE11 any longer. You may also drop IE11 from your app as core components will possibly fail with this browser anyway.
Deprecated global variables
DOMPurify: ship your own.
Back-end changes
Removed support for database.xml
The support for an app’s appinfo/database.xml has been removed.
PSR events
In order to bring Nextcloud APIs closer to PSR the base event class no longer extends the old Symfony event class but only \Psr\EventDispatcher\StoppableEventInterface. From an app’s perspective this change is transparent.
PSR container
The PSR 11 container interface was updated from version 1.0 to 1.1.
LDAP factory availability
\OCP\LDAP\ILDAPProviderFactory received a new method isAvailable so apps can check if LDAP is configured and used before any attributes are fetched or similar.
Boolean database columns
Since Oracle can not store booleans in a non-nullable boolean column Nextcloud doesn’t support non-null boolean columns anymore. Apps have to migrate their schema to nullable boolean columns.
HTTP 401 for invalid username/password
When invalid username/password is sent to a Nextcloud API, Nextcloud will now respond with a HTTP 401 status instead of 403.
Removed APIs
\OC\Memcache\Factory::create\OCP\User\OCP\Util::isIe
Deprecated APIs
\OCP\Log\ILogFactory::getCustomLogger: use\OCP\Log\ILogFactory::getCustomPsrLoggerto get a customized PSR3 loggerEvent
\OCP\IDBConnection::ADD_MISSING_INDEXESand the corresponding constant\OCP\IDBConnection::ADD_MISSING_INDEXES_EVENT: internal eventEvent
\OCP\IDBConnection::CHECK_MISSING_INDEXESand the corresponding constant\OCP\IDBConnection::CHECK_MISSING_INDEXES_EVENT: internal eventEvent
\OCP\IDBConnection::ADD_MISSING_PRIMARY_KEYSand the corresponding constant\OCP\IDBConnection::ADD_MISSING_PRIMARY_KEYS_EVENT: internal eventEvent
\OCP\IDBConnection::CHECK_MISSING_PRIMARY_KEYSand the corresponding constant\OCP\IDBConnection::CHECK_MISSING_PRIMARY_KEYS_EVENT: internal eventEvent
\OCP\IDBConnection::ADD_MISSING_COLUMNS_EVENTand the corresponding constant\OCP\IDBConnection::ADD_MISSING_COLUMNS: internal eventEvent
\OCP\IDBConnection::CHECK_MISSING_COLUMNSand the corresponding constant\OCP\IDBConnection::CHECK_MISSING_COLUMNS: internal event
Upgrading to Nextcloud 21
Note
Critical changes were collected on GitHub. See the original ticket for links to the pull requests and tickets.
General
The biggest change in Nextcloud 21 is the initial support for PHP 8 and the corresponding updates of many core dependencies, which could have direct and indirect consequences for apps.
PHP 8 support
Nextcloud 21 is the first major release that is compatible with the new PHP 8.0. As a consequence, some previously working syntax can cause problems when an app is deployed with PHP newer than 7.4. The full changelog can be found on the php.net website. There is also a document for all breaking changes on GitHub.
To check compatibility automatically we recommend adding or updating the Continuous Integration of your app so that linters, tests and static analysis can warn you about any problems before the app is shipped to users.
Updated core libraries
If apps use only official public APIs of Nextcloud, the update of core libraries should have little to no effect on apps. However, there are some edge cases where an app still has a code dependency to a library shipped with Nextcloud, e.g. when those 3rdparty classes or functions are used, and therefore app developers are recommended to check their code for any incompatibility. Moreover it’s recommended to check compatibility with sophisticated tools, as documented at the static analysis section.
doctrine/dbal
The Doctrine Database Abstraction Layer powers Nextcloud’s database connection and query builder. In Nextcloud 21, this dependency was updated from 2.x to 3.0. As a consequence, some types that were previously exported through the Nextcloud OCP API are removed or changed by this update. For backwards-compatibility, there is now a tiny compatibility layer between the original Doctrine API and what apps use via the Nextcloud API.
Optimistically speaking, the database connection and the query builder should mostly work like in Nextcloud 20 or older. The main differences are that prepared statements and query results are not handled by the removed Doctrine Statement but two new Nextcloud types IPreparedStatement and IResult. You don’t have to worry about these types unless you pass around the result of a query to class/method/function with type hints. In this rare case, please adjust the type hints accordingly for the new type if you only support Nextcloud 21 in your apps or remove the type hint temporarily for multi-version Nextcloud support.
Some (minor) breaking changes were inevitable. Here’s the summary
Many of the database connection methods have now a documented exception that can be thrown:
\OCP\DB\Exception. This also acts as a replacement for the removed\Doctrine\DBAL\DBALException.$queryBuilder->execute()->fetch()only has one argument now (there were three previously)$queryBuilder->execute()->fetchColumn()has no more arguments and got also deprecated. UsefetchOneinstead$queryBuilder->execute()->bindParam()was removed because conceptually it does not make sense to bind a parameter after executing a query. UsebindParamon theIPeparedStatementinstead.$queryBuilder->execute()->bindValue()was removed because conceptually it does not make sense to bind a value after executing a query. UsebindValueon theIPeparedStatementinstead.$queryBuilder->execute()->columnCount()was removed$queryBuilder->execute()->errorCode()was removed from Doctrine$queryBuilder->execute()->errorInfo()was removed from Doctrine$queryBuilder->execute()->setFetchMode()was removed from Doctrine$connection->prepare()->execute()previously returnedfalseunder some error conditions, it now always gives you anIResultor throws a\OCP\DB\Exception.\Doctrine\DBAL\Types\Type::*type constants were moved, which some apps used for column type constants in apps. Use the new\OCP\DB\Types::*as a replacement.
The details of this change can also be seen in the pull request on GitHub and in the upstream dbal 3.0.xx upgrade document.
guzzlehttp/guzzle
The HTTP client library behind the Nextcloud HTTP client was updated for PHP 8 compatibility. The Nextcloud abstraction remained untouched and will work like before. If you used Guzzle directly, make sure you don’t use the fluent API on requests or responses.
psr/log
The PSR-3: Logger Interface package was updated to v1.1. The log method can now theoretically throw an \Psr\Log\InvalidArgumentException, though Nextcloud does not make use of this at the moment. It’s recommended to check any usage of the method nevertheless and add error handling if appropriate.
sabre/*
The Sabre packages received a minor update. Only apps that provide DAV functionality should be effected, if any.
App code checker deprecation
The app code checker (occ app:check-code myapp) is obsolete due to static analysis. For Nextcloud 21 it will act as NOOP, meaning that you can still call the command but it will never fail. This allows you to still use it on CI if you test against 21, 20 and older releases. But prepare the switch to static analysis if you haven’t already. Please also note that the app code checker hadn’t received many updates recently, hence the number of issues it can detect is low.
PSR-0 deprecation
The original PSR-0 standard was deprecated in 2014 and therefore the support for it in Nextcloud will also end soon. Hence we recommend migrating your class file names to PSR-4.
Last version with database.xml support and migration
Nextcloud 21 is the last major release that supports an app’s appinfo/database.xml to define the database schema. This is your last chance to automatically convert this deprecated file into the new migration classes using occ migrations:generate-from-schema.
Replaced well-known handler API
There was an old, unused and inofficial mechanism to hook into well-known discovery via config settings. This includes host-meta, host-meta.json, nodeinfo and webfinger. A new public API replaces this mechanism in Nextcloud 21.
Upgrading to Nextcloud 20
Note
Critical changes were collected on GitHub. See the original ticket for links to the pull requests and tickets.
Front-end changes
Body theme
The body theme classes are now theme--highcontrast, theme--dark and/or theme--light.
jQuery update
jQuery was updated to v2.2. The most notable change is that $(document).ready(...) or $(...) for short fires sooner than before. Use the DOMContentLoaded event instead.
Search
The unified search replaces the traditional search input, hence OCA.Search became a noop. For backwards compatibility, the code will not raise any errors now, but it does not have any functionality.
Removed globals
escape-html: use the escape-html package <https://www.npmjs.com/package/escape-html> or similar
Deprecated global variables
humanFileSize: useformatfilesizefrom https://www.npmjs.com/package/@nextcloud/filesOC.getCanonicalLocale: usegetCanonicalLocalefrom https://www.npmjs.com/package/@nextcloud/l10n
Removed jQuery plugins
$.tipsy
Back-end changes
App bootstrap logic
The code that initializes an app or anything that should run for every request and command is now moved to a dedicated and typed API. The appinfo/app.php is therefore obsolete and deprecated. See bootstrapping for details.
PSR-3 integration
Nextcloud 20 is the first major release of Nextcloud that brings full compatibility with PSR-3: Logger Interface. From this point on it is highly recommended to use this interface mainly as the old \OCP\ILogger got deprecated with the last remaining changes. The majority of methods are identical between the Nextcloud-specific interface and the PSR one. Pay attention to usages of \OCP\ILogger::logException as that method does not exist on the PSR logger. However, you can specifcy an exception key in the $context argument of any \Psr\Log\LoggerInterface method and Nextcloud will format it like it did with the old logException.
PSR-11 integration
Nextcloud 20 is the first major release of Nextcloud that brings full compatibility with PSR-11: Container Interface. From this point on it is highly recommended to use this interface mainly as the old \OCP\IContainer got deprecated with this change.
The interfaces \OCP\AppFramework\IAppContainer and \OCP\IServerContainer will remain, but they won’t extend the IContainer anymore once that interface gets removed. As a result, IAppContainer and IServerContainer will eventually become tagging interfaces with the sole purpose of making it possible to have either the app or server container injected explicitly.
If your app requires Nextcloud 20 or later, you can replace any of the old type hints with one of \Psr\Container\ContainerInterface and replace calls of query with get, e.g. on the closures used when registering services:
// old
$container->registerService('DecryptAll', function (IAppContainer $c) {
return new DecryptAll(
$c->query('Util'),
$c->query(KeyManager::class),
$c->query('Crypt'),
$c->query(ISession::class)
)
})
becomes
// new
$container->registerService('DecryptAll', function (ContainerInterface $c) {
return new DecryptAll(
$c->get('Util'),
$c->get(KeyManager::class'),
$c->get('Crypt'),
$c->get(ISession::class)
)
})
Note
For a smoother transition, the old interfaces were changed so they are based on ContainerInterface, hence you can use has and get on IContainer and sub types.
Deprecated APIs
\OCP\IContainer: see PSR-11 integration\OCP\ILogger: see PSR-3 integration\OCP\IServerContainer::getEventDispatcher\OCP\IServerContainer::getCalendarManager: have the interface injected instead\OCP\IServerContainer::getCalendarResourceBackendManager: have the interface injected instead\OCP\IServerContainer::getCalendarRoomBackendManager: have the interface injected instead\OCP\IServerContainer::getContactsManager: have the interface injected instead\OCP\IServerContainer::getEncryptionManager: have the interface injected instead\OCP\IServerContainer::getEncryptionFilesHelper: have the interface injected instead\OCP\IServerContainer::getEncryptionKeyStorage: have the interface injected instead\OCP\IServerContainer::getRequest: have the interface injected instead\OCP\IServerContainer::getPreviewManager: have the interface injected instead\OCP\IServerContainer::getTagManager: have the interface injected instead\OCP\IServerContainer::getSystemTagManager: have the interface injected instead\OCP\IServerContainer::getSystemTagObjectMapper: have the interface injected instead\OCP\IServerContainer::getAvatarManager: have the interface injected instead\OCP\IServerContainer::getRootFolder\OCP\IServerContainer::getUserManager: have the interface injected instead\OCP\IServerContainer::getGroupManager: have the interface injected instead\OCP\IServerContainer::getUserSession: have the interface injected instead\OCP\IServerContainer::getSession: have the interface injected instead\OCP\IServerContainer::getTwoFactorAuthManager: have the interface injected instead\OCP\IServerContainer::getNavigationManager: have the interface injected instead\OCP\IServerContainer::getConfig: have the interface injected instead\OCP\IServerContainer::getSystemConfig: have the interface injected instead\OCP\IServerContainer::getAppConfig: have the interface injected instead\OCP\IServerContainer::getL10NFactory: have the interface injected instead\OCP\IServerContainer::getL10N: have the interface injected instead\OCP\IServerContainer::getURLGenerator: have the interface injected instead\OCP\IServerContainer::getAppFetcher: have the interface injected instead\OCP\IServerContainer::getMemCacheFactory: have the interface injected instead\OCP\IServerContainer::getGetRedisFactory: have the interface injected instead\OCP\IServerContainer::getDatabaseConnection: have the interface injected instead\OCP\IServerContainer::getActivityManager: have the interface injected instead\OCP\IServerContainer::getJobList: have the interface injected instead\OCP\IServerContainer::getLogger: have the interface injected instead\OCP\IServerContainer::getLogFactory: have the interface injected instead\OCP\IServerContainer::getRouter: have the interface injected instead\OCP\IServerContainer::getSearch: have the interface injected instead\OCP\IServerContainer::getSecureRandom: have the interface injected instead\OCP\IServerContainer::getCrypto: have the interface injected instead\OCP\IServerContainer::getHasher: have the interface injected instead\OCP\IServerContainer::getCredentialsManager: have the interface injected instead\OCP\IServerContainer::getCertificateManager: have the interface injected instead\OCP\IServerContainer::getHTTPClientService: have the interface injected instead\OCP\IServerContainer::createEventSource\OCP\IServerContainer::getEventLogger: have the interface injected instead\OCP\IServerContainer::getQueryLogger: have the interface injected instead\OCP\IServerContainer::getTempManager: have the interface injected instead\OCP\IServerContainer::getAppManager: have the interface injected instead\OCP\IServerContainer::getMailer: have the interface injected instead\OCP\IServerContainer::getWebRoot: have the interface injected instead\OCP\IServerContainer::getOcsClient: have the interface injected instead\OCP\IServerContainer::getDateTimeZone: have the interface injected instead\OCP\IServerContainer::getDateTimeFormatter: have the interface injected instead\OCP\IServerContainer::getMountProviderCollection: have the interface injected instead\OCP\IServerContainer::getIniWrapper: have the interface injected instead\OCP\IServerContainer::getCommandBus: have the interface injected instead\OCP\IServerContainer::getTrustedDomainHelper: have the interface injected instead\OCP\IServerContainer::getLockingProvider: have the interface injected instead\OCP\IServerContainer::getMountManager: have the interface injected instead\OCP\IServerContainer::getUserMountCache: have the interface injected instead\OCP\IServerContainer::getMimeTypeDetector: have the interface injected instead\OCP\IServerContainer::getMimeTypeLoader: have the interface injected instead\OCP\IServerContainer::getCapabilitiesManager: have the interface injected instead\OCP\IServerContainer::getNotificationManager: have the interface injected instead\OCP\IServerContainer::getCommentsManager: have the interface injected instead\OCP\IServerContainer::getThemingDefaults: have the interface injected instead\OCP\IServerContainer::getIntegrityCodeChecker: have the interface injected instead\OCP\IServerContainer::getSessionCryptoWrapper: have the interface injected instead\OCP\IServerContainer::getCsrfTokenManager: have the interface injected instead\OCP\IServerContainer::getBruteForceThrottler: have the interface injected instead\OCP\IServerContainer::getContentSecurityPolicyManager: have the interface injected instead\OCP\IServerContainer::getContentSecurityPolicyNonceManager: have the interface injected instead\OCP\IServerContainer::getStoragesBackendService: have the interface injected instead\OCP\IServerContainer::getGlobalStoragesService: have the interface injected instead\OCP\IServerContainer::getUserGlobalStoragesService: have the interface injected instead\OCP\IServerContainer::getUserStoragesService: have the interface injected instead\OCP\IServerContainer::getShareManager: have the interface injected instead\OCP\IServerContainer::getCollaboratorSearch: have the interface injected instead\OCP\IServerContainer::getAutoCompleteManager: have the interface injected instead\OCP\IServerContainer::getLDAPProvider: have the interface injected instead\OCP\IServerContainer::getSettingsManager: have the interface injected instead\OCP\IServerContainer::getAppDataDir\OCP\IServerContainer::getCloudIdManager: have the interface injected instead\OCP\IServerContainer::getGlobalScaleConfig: have the interface injected instead\OCP\IServerContainer::getCloudFederationProviderManager: have the interface injected instead\OCP\IServerContainer::getRemoteApiFactory: have the interface injected instead\OCP\IServerContainer::getCloudFederationFactory: have the interface injected instead\OCP\IServerContainer::getRemoteInstanceFactory: have the interface injected instead\OCP\IServerContainer::getStorageFactory: have the interface injected instead\OCP\IServerContainer::getGeneratorHelper: have the interface injected instead\OC_App::registerLogIn(): use bootstrapping and\OCP\AppFramework\Bootstrap\IRegistrationContext::registerAlternativeLoginEvent
\OCA\DAV\CalDAV\CalDavBackend::createCachedCalendarObject: listen to\OCA\DAV\Events\CachedCalendarObjectCreatedEventEvent
\OCA\DAV\CalDAV\CalDavBackend::createCalendar: listen to\OCA\DAV\Events\CalendarCreatedEventEvent
\OCA\DAV\CalDAV\CalDavBackend::createCalendarObject: listen to\OCA\DAV\Events\CalendarObjectCreatedEventEvent
\OCA\DAV\CalDAV\CalDavBackend::createSubscription: listen to\OCA\DAV\Events\SubscriptionCreatedEventEvent
\OCA\DAV\CalDAV\CalDavBackend::deleteCachedCalendarObject: listen to\OCA\DAV\Events\CachedCalendarObjectDeletedEventEvent
\OCA\DAV\CalDAV\CalDavBackend::deleteCalendar: listen to\OCA\DAV\Events\CalendarDeletedEventEvent
\OCA\DAV\CalDAV\CalDavBackend::deleteCalendarObject: listen to\OCA\DAV\Events\CalendarObjectDeletedEventEvent
\OCA\DAV\CalDAV\CalDavBackend::deleteSubscription: listen to\OCA\DAV\Events\SubscriptionDeletedEventEvent
\OCA\DAV\CalDAV\CalDavBackend::publishCalendar: listen to\OCA\DAV\Events\CalendarPublishedEventEvent
\OCA\DAV\CalDAV\CalDavBackend::publishCalendar: listen to\OCA\DAV\Events\CalendarUnpublishedEventEvent
\OCA\DAV\CalDAV\CalDavBackend::updateCachedCalendarObject: listen to\OCA\DAV\Events\CachedCalendarObjectUpdatedEventEvent
\OCA\DAV\CalDAV\CalDavBackend::updateCalendar: listen to\OCA\DAV\Events\CalendarUpdatedEventEvent
\OCA\DAV\CalDAV\CalDavBackend::updateCalendarObject: listen to\OCA\DAV\Events\CalendarObjectUpdatedEventEvent
\OCA\DAV\CalDAV\CalDavBackend::updateShares: listen to\OCA\DAV\Events\CalendarShareUpdatedEventEvent
\OCA\DAV\CalDAV\CalDavBackend::updateSubscription: listen to\OCA\DAV\Events\SubscriptionUpdatedEventEvent
\\OCA\DAV\CardDAV\CardDavBackend::createCard: listen to\OCA\DAV\Events\CardCreatedEventEvent
\OCA\DAV\CardDAV\CardDavBackend::deleteCard: listen to\OCA\DAV\Events\CardDeletedEventEvent
\OCA\DAV\CardDAV\CardDavBackend::updateCard: listen to\OCA\DAV\Events\CardUpdatedEventEvent
\OCA\Files_Sharing::loadAdditionalScripts:: publicShareAuth: listen to\OCA\Files_Sharing\Event\BeforeTemplateRenderedEventEvent
\OCA\Files_Sharing::loadAdditionalScripts: listen to\OCA\Files_Sharing\Event\BeforeTemplateRenderedEventEvent
\OCA\User_LDAP\User\User::postLDAPBackendAdded: listen to\OCA\User_LDAP\Events\UserBackendRegisteredEvent
\OCA\User_LDAP\User\User::postLDAPBackendAdded: listen to\OCA\User_LDAP\Events\GroupBackendRegisteredEvent
\OCP\AppFramework\Http\StandaloneTemplateResponse::EVENT_LOAD_ADDITIONAL_SCRIPT: listen to\OCP\AppFramework\Http\Events\BeforeTemplateRenderedEventEvent
\OCP\AppFramework\Http\StandaloneTemplateResponse::EVENT_LOAD_ADDITIONAL_SCRIPTS_LOGGEDIN: listen to\OCP\AppFramework\Http\Events\BeforeTemplateRenderedEventEvent
\OCP\WorkflowEngine::loadAdditionalSettingScripts: listen to\OCP\WorkflowEngine\Events\LoadSettingsScriptsEvent
Removed from public namespace
\OCP\IServerContainer::getAppFolderHook
\OCA\DAV\Connector\Sabre::authInit: use the\OCA\DAV\Events\SabrePluginAuthInitEventevent insteadEvent
\OC_User::post_removeFromGroup: listen to\OCP\Group\Events\UserRemovedEventEvent
\OCA\DAV\Connector\Sabre::authInit: listen to\OCA\DAV\Events\SabrePluginAuthInitEvent
Upgrading to Nextcloud 19
Note
Critical changes were collected on GitHub. See the original ticket for links to the pull requests and tickets.
Front-end changes
jQuery deprecation
As of Nextcloud 19, the global jquery and $ are deprecated for apps. While the library won’t be removed immediately to give developers time to adapt, we encourage you to either replace it with another library or simply use a bundling tool like webpack to scope it to your own. The library will be upgraded in Nextcloud in future versions of Nextcloud and there are breaking changes in the newer versions of jQuery.
Deprecated global variables
OC.currentUser: usegetCurrentUserfrom https://www.npmjs.com/package/@nextcloud/authOC.filePath: usegenerateFilePathfrom https://www.npmjs.com/package/@nextcloud/routerOC.generateUrl: usegenerateUrlfrom https://www.npmjs.com/package/@nextcloud/routerOC.get: use https://lodash.com/docs#getOC.getCurrentUser: usegetCurrentUserfrom https://www.npmjs.com/package/@nextcloud/authOC.getRootPath: usegetRootUrlfrom https://www.npmjs.com/package/@nextcloud/routerOC.imagePath: useimagePathfrom https://www.npmjs.com/package/@nextcloud/routerOC.linkTo: uselinkTofrom https://www.npmjs.com/package/@nextcloud/routerOC.linkToOCS: usegenerateOcsUrlfrom https://www.npmjs.com/package/@nextcloud/routerOC.linkToRemote: usegenerateRemoteUrlfrom https://www.npmjs.com/package/@nextcloud/routerOC.set: use https://lodash.com/docs#setOC.webroot: usegetRootUrlfrom https://www.npmjs.com/package/@nextcloud/routerOCP.Toast.*: use https://www.npmjs.com/package/@nextcloud/dialogs
Removed globals
getURLParameterformatDatehumanFileSizerelative_modified_date
Removed libraries
marked
Back-end changes
Symfony update
Symfony was updated to v4.4. The most important change for apps is to return an int value from CLI commands. Returning null (explicitly or implicitly) won’t be allowed in future versions of Symfony.
Deprecation of injection of named services
Apps had been able to query core services like the implementation of the interface \OCP\ITagManager as TagManager. To unify the service resolution with type hints for the constructor injection, the named resolution is deprecated, logs warnings and will be removed in the future. Use the fully-qualifier class name (with the ::class constant) instead:
If you had
$tagManager = \OC::$server->query('TagManager');
change your code to
$tagManager = \OC::$server->query(\OCP\ITagManager::class);
On constructor arguments you should always type-hint the service by its interface. If you do so already, nothing changes for you.
New APIs
\OCP\Authentication\Events\LoginFailedEventclass added\OCP\Comments\IComment::getReferenceIdmethod added\OCP\Comments\IComment::setReferenceIdmethod added\OCP\Contacts\Events\ContactInteractedWithEventclass added\OCP\EventDispatcher\IEventDispatcher::removeListenermethod added\OCP\ITags::TAG_FAVORITEconstant added\OCP\Mail\Events\BeforeMessageSentclass added\OCP\Lock\LockedException::getExistingLockmethod added\OCP\Share\Events\VerifyMountPointEventclass added\OCP\Share\IManager::allowEnumerationmethod added\OCP\Share\IManager::limitEnumerationToGroupsmethod added
Changed APIs
\OCP\User\Events\BeforeUserLoggedInEvent::getUsernamenow correctly returns a string and not an\OCP\IUser
Upgrading to Nextcloud 18
Note
Critical changes were collected on GitHub. See the original ticket for links to the pull requests and tickets.
Front-end changes
CSS
Overall font-size was increased. Please make sure you use relative units like rem instead of pixels.
Deprecated global variables
Backbone: ship your own.Clipboard: ship your own.ClipboardJs: ship your own.DOMPurify: ship your own.Handlebars: ship your own.jstimezonedetect: ship your own.jstz: ship your own.md5: ship your own.moment: ship your own.OC.basename: usebasenamefrom https://www.npmjs.com/package/@nextcloud/pathsOC.dirname: usedirnamefrom https://www.npmjs.com/package/@nextcloud/pathsOC.encodePath: useencodePathfrom https://www.npmjs.com/package/@nextcloud/pathsOC.isSamePath: useisSamePathfrom https://www.npmjs.com/package/@nextcloud/pathsOC.joinPaths: usejoinPathsfrom https://www.npmjs.com/package/@nextcloud/paths
Back-end changes
New APIs
\OCP\WorkflowEnginenamespace
Deprecations
\OCP\Collaboration\Resources\IManager::registerResourceProvider: use\OCP\Collaboration\Resources\IProviderManager::registerResourceProviderinstead.
Behavioral changes
Email shares and link shares now share the same config. You cannot create mail shares if the share links are disabled by your administrator
Please register new sidebar tabs scripts with the
OCA\Files\Event\LoadSidebar\EventscriptViewer binds the full file object to the views now. Variables names changed!
Upgrading to Nextcloud 17
Note
Critical changes were collected on GitHub. See the original ticket for links to the pull requests and tickets.
Front-end changes
Deprecated global variables
initCore: don’t use this internal function.oc_appconfig: useOC.appConfiginstead.oc_appswebroots: useOC.appswebrootsinstead.oc_capabilities: useOC.getCapabilities()instead.oc_config: useOC.configinstead.oc_current_user: useOC.getCurrentUser().uidinstead.oc_debug: useOC.debuginstead.oc_isadmin: useOC.isUserAdmin()instead.oc_requesttoken: useOC.requestTokeninstead.oc_webroot: useOC.getRootPath()instead.OCDialogs: useOC.dialogsinstead.OC._capabilities: useOC.getCapabilities()instead.OC.addTranslations: use OC.L10N.load instead.OC.coreApps: internal use only, no replacement.OC.getHost: use the usewindow.location.hostdirectly.OC.getHostName: use the usewindow.location.hostnamedirectly.OC.getPort: use the usewindow.location.portdirectly.OC.getProtocol: use the usewindow.location.protocol.split(':')[0]directly.OC.fileIsBlacklisted: use the regexOC.config.blacklist_files_regexdirectly.OC.redirect: usewindow.locationdirectly.OC.reload: usewindow.location.reload()directly.
Removed jQuery plugins
singleselect: ship your own if you really need it.
Back-end changes
Removed from public namespace
\OCP\App::checkAppEnabled\OCP\Security\StringUtils\OCP\Util::callCheck
Deprecations
\OCP\AppFramework\Http\EmptyContentSecurityPolicy::allowEvalScript: This means apps should no longer use eval in their JavaScript. We aim to forbid this in general in a future version of Nextcloud.\OCP\AppFramework\Utility\IControllerMethodReflector::reflec: Will be removed in 18.
Behavioral changes
LDAP: default value for
ldapGroupMemberAssocAttrchanged fromuniqueMemberto unset. On scripted setups, it has to be set if LDAP groups should be used within Nextcloud.Provisioning API: creating users will return the assigned user ID as dataset, as in
['id' => $userid].
Upgrading to Nextcloud 16
Note
Critical changes were collected on GitHub. See the original ticket for links to the pull requests and tickets.
Front-end changes
CSP:
frame-anchestorset toselfby default.
Deprecation of shipped JavaScript libraries
The following libraries are considered as deprecated from Nextcloud 16 on. If you use one of those in your app, make sure to ship your own version that is properly bundled with your app.
markedClipboard-> now exported asClipboardJSto resolve naming conflicts in Chrome.Apps should ship their own javascript dependencies and not depend on server shipping for example jquery etc. Depending on the server dist package is deprecated starting NC16.
escapeHTMLformatDategetURLParameterhumanFileSizerelative_modified_dateselect2
Back-end changes
Php7.0 support removed. Php7.1 or higher required.
PostgreSQL 9.5+ required.
Autoloading: In the past it was also possible to autoload PHP classes in apps by specify a list of classes and filenames in appinfo/classpath.php. This should not be used anymore and also isn’t used by any app that is publicly available.
Removed APIs
\OCP\Activity\IManager::getNotificationTypes\OCP\Activity\IManager::getDefaultTypes\OCP\Activity\IManager::getTypeIcon\OCP\Activity\IManager::translate\OCP\Activity\IManager::getSpecialParameterList\OCP\Activity\IManager::getGroupParameter\OCP\Activity\IManager::getNavigation\OCP\Activity\IManager::isFilterValid\OCP\Activity\IManager::filterNotificationTypes\OCP\Activity\IManager::getQueryForFilter\OCP\Security\ISecureRandom::getLowStrengthGenerator\OCP\Security\ISecureRandom::getMediumStrengthGenerator
Upgrading to Nextcloud 15
Note
Critical changes were collected on GitHub. See the original ticket for links to the pull requests and tickets.
Front-end changes
unsafe-evalnot allowed anymore by default.
Removed APIs
fileDownloadPath()getScrollBarWidth()OC.AppConfig.hasKey()OC.AppConfig.deleteApp()OC.Share.ShareConfigModel.areAvatarsEnabled()OC.Util.hasSVGSupport()OC.Util.replaceSVGIcon()OC.Util.replaceSVG()OC.Util.scaleFixForIE8()OC.Util.isIE8()
Back-end changes
Removed php7.0 support
Deprecated APIs
\OCP\Util::linkToPublic\OCP\Util::recursiveArraySearch
Removed APIs
\OCP\Activity\IManager::publishActivity\OCP\Util::logException\OCP\Util::mb_substr_replace\OCP\Util::mb_str_replace
Upgrading to Nextcloud 14
Note
Critical changes were collected on GitHub. See the original ticket for links to the pull requests and tickets.
General
php7.0 and php7.1 support added.
Introduction of type hints for scalar types in public APIs according to existing PHPDoc.
Front-end changes
OCA.Searchis nowOCA.Search.Core.Overall structure changed.
.with-app-sidebarnot required anymore to open the sidebar only use disappear on the sidebar.svgnot required anymore.with-settingsnot required anymore.with-iconnot required anymore
Back-end changes
Changed APIs
AppFramework\Http\Request::getHeaderalways returns a string (and not null).Security\ICrypto::decryptonly accepts strings.\OCP\AppFramework\Utility\ITimeFactoryis strictly typed.\OCP\IL10Nis strictly typed.\OCP\Mailand the email templates got type hints.\OCP\Authentication\TwoFactorAuthgot typehints and return type hints.\OCP\Migration\IMigrationStephas two new methods.EMailTemplatechild classes should use the %$1s notation for replacements to be future compatible and be able to reuse parameters.
Deprecated APIs
OCP\FilesSetting custom client URLs in a custom
\OC_Themeclass. Settings in config.php should be used.Log levels in
OCP\Util. Moved to the\OCP\ILoggerinterfaceOCP\AppFramework\Db\Mapper. Move to\OCP\AppFramework\Db\QBMapper
Removed APIs
several deprecated functions from
\OCP\AppFramework/IAppContainer\OCP\BackgroundJob::registerJob\OCP\Config\OCP\Contacts\OCP\DB\OCP\Files::tmpFile\OCP\Files::tmpFolder\OCP\IHelper\OCP\ISearch\search\OCP\JSON\OCP\Response\OCP\Share::resolveReshare\OCP\User::getDisplayNames\OCP\Util\formatDate\OCP\Util::generateRandomBytes\OCP\Util::sendMail\OCP\Util::encryptedFiles\OCP\Util::getServerProtocol\OCP\Util::getServerHost\OCP\Util::getServerProtocol\OCP\Util::getRequestUri\OCP\Util::getScriptName\OCP\Util::urlgeneratorDeprecated OCP constants
Deprecated template functions from OCP
Some deprecated methods of
\OCP\ResponseHTTPHelper
Behavioral changes
Removed
--no-app-disablefromocc upgradecommand.$fromMailAddresswon’t be injected anymore by the DI container.Apps that are enabled for groups can now provide public pages, that are available even if a user is not logged in.
OCS API method AddUser POST:/users now allow empty password iff email is set and valid.
Email texts are not automatically escaped anymore in all cases.
Configuration changes
When using Swift Objectstore as home storage make sure that to set the
bucket/containerparameter.mail_smtpmodecan no longer be set tophp. As this option is lost with the upgrade of phpmailer.
OCS changes
Added APIs
Details endpoint for the user list
Details endpoint for the groups list
Changed APIs
OCS API getGroup method replaced by getGroupUsers #8904
Internal changes
Note
Only relevant if you used non-public APIs. Don’t use them.
cleanup of
OC_*namespace - we removed quite some classes, methods and constants from our internal namespace.Removed
OC_Group_BackendRemoved
OC_Response::setStatusand the constants for status codes