9.0.0-alpha.1
Pre-releaseChangelog for ownCloud Web 9.0.0 (2024-02-26)
Summary
- Change - Remove deprecated code: #7338
- Change - Remove skeleton app: #9892
- Change - Remove deprecated extension point for adding quick actions: #10102
- Change - Remove homeFolder option: #10122
- Change - Vuex store removed: #10210
- Change - Remove ocs user: #10240
Details
-
Change - Remove deprecated code: #7338
We have removed the
getToken
getter from our vuex store and support for the
deprecateduser-management
name for theadmin-settings
app. See linked
"Deprecations" issue for more information. -
Change - Remove skeleton app: #9892
Due to improvements in the extension system in general, we have removed the
skeleton app. Documentation regarding the extension API and guides/examples can
be found in the dev docs. -
Change - Remove deprecated extension point for adding quick actions: #10102
BREAKING CHANGE for developers: The old way of registering quick actions via the
quickaction
property of an app has been removed. Quick actions should be
registered as extension via our extension registry. They need to be of type
action
and have thefiles.quick-action
scope. -
Change - Remove homeFolder option: #10122
We have removed the
homeFolder
option as it was originally implemented and
used by CERN but isn't needed anymore. -
Change - Vuex store removed: #10210
BREAKING CHANGE for developers: The vuex store has been removed in favor of
pinia.All store modules have been migrated to a pinia store module. Please see the
linked issue down below for a list of all migrated stores and how to use them
now.There are a number of things that have been removed and/or moved into pinia
composables instead:Globals:
store
and$store
variables have been removed. -ConfigurationManager
has
been removed. The config now sits inside the configuration store.
App framework:
announceStore
has been removed. There is no need for apps to announce stores
to the runtime. If you need to use a store in your app, simply create a pinia
store module and use it. -announceExtensions
has been removed. The proper way
for an app to register file extensions is via theextensions
property inside
theappInfo
object. -requestStore
has been removed. There is no need to
request specific stores. All stores thatweb-pkg
provides can be imported and
accessed via their composables. -enabled
callback as well as thename
callback of theAppNavigationItem
no longer have thecapabilities
parameter.store
param of theClassicApplicationScript
has been removed.
Composables:
useStore
has been removed. Use the pinia for the store you want to use
instead. -useAccessToken
has been removed. It now sits inside the auth store.usePublicLinkContext
has been removed. It now sits inside the auth store. -
usePublicLinkPassword
has been removed. It now sits inside the auth store. -
usePublicLinkToken
has been removed. It now sits inside the auth store. -
useUserContext
has been removed. It now sits inside the auth store. -
useConfigurationManager
has been removed. The config now sits inside the
configuration store. -use...Capability
composables have been removed.
Capablities now sit inside the capability store.
For store specific changes please see the linked issue and PRs down below.
#10210
#10212
#10240
#10307
#10309
#10316
#10323
#10326
#10329
#10331
#10336
#10338
#10341
#10346
#10349
#10362
#10363
#10368
#10372 -
Change - Remove ocs user: #10240
BREAKING CHANGE for developers: The user from the ocs api has been removed in
favor of the graph user. That means the user that can be retrieved from the
store looks slightly different than the OCS user (though it still holds the same
information).For more details please see the linked PR down below.