diff --git a/.drone.env b/.drone.env
index a3c4e868e2d..11667c0290c 100644
--- a/.drone.env
+++ b/.drone.env
@@ -1,3 +1,3 @@
# The version of OCIS to use in pipelines that test against OCIS
-OCIS_COMMITID=f99a2072d33debc7fda43f9b27ba48c01014a83b
-OCIS_BRANCH=experimental
+OCIS_COMMITID=8bb2ebcf4bcecd0ddfb3ce8f2cb4ba3d51be19b5
+OCIS_BRANCH=master
diff --git a/changelog/unreleased/enhancement-tags-support b/changelog/unreleased/enhancement-tags-support
deleted file mode 100644
index 971cbdc959f..00000000000
--- a/changelog/unreleased/enhancement-tags-support
+++ /dev/null
@@ -1,10 +0,0 @@
-Enhancement: Add Tag support
-
-Managing files via tags is now possible in web, the feature is experimental and will be only available through a dedicated experimental web build.
-Beside that the web version is experimental, it also needs a special experimental ocis version.
-
-Creating Tags, tagging resources and search for tags now is possible and can be used as an alternative way of working and organizing resources.
-
-https://github.com/owncloud/web/pull/7388
-https://github.com/owncloud/web/pull/7385
-https://github.com/owncloud/web/pull/7442
diff --git a/packages/web-app-files/src/components/FilesList/ContextActions.vue b/packages/web-app-files/src/components/FilesList/ContextActions.vue
index d7c2d1f0971..0fd0b2f09ea 100644
--- a/packages/web-app-files/src/components/FilesList/ContextActions.vue
+++ b/packages/web-app-files/src/components/FilesList/ContextActions.vue
@@ -22,7 +22,6 @@ import Rename from '../../mixins/actions/rename'
import Restore from '../../mixins/actions/restore'
import ShowActions from '../../mixins/actions/showActions'
import ShowDetails from '../../mixins/actions/showDetails'
-import ShowEditTags from '../../mixins/actions/showEditTags'
import ShowShares from '../../mixins/actions/showShares'
import SetSpaceImage from '../../mixins/spaces/actions/setImage'
import SetSpaceReadme from '../../mixins/spaces/actions/setReadme'
@@ -51,7 +50,6 @@ export default {
Restore,
ShowActions,
ShowDetails,
- ShowEditTags,
ShowShares,
SetSpaceImage,
SetSpaceReadme,
@@ -154,7 +152,6 @@ export default {
...this.$_copy_items,
...this.$_paste_items,
...this.$_rename_items,
- ...this.$_showEditTags_items,
...this.$_restore_items,
...this.$_acceptShare_items,
...this.$_declineShare_items,
diff --git a/packages/web-app-files/src/components/FilesList/ResourceTable.vue b/packages/web-app-files/src/components/FilesList/ResourceTable.vue
index e203bbe3c58..f4a97d70194 100644
--- a/packages/web-app-files/src/components/FilesList/ResourceTable.vue
+++ b/packages/web-app-files/src/components/FilesList/ResourceTable.vue
@@ -81,22 +81,6 @@
-
-
-
-
- {{ tag }}
-
-
-
- + {{ item.tags.length - 2 }}
-
-
{
@@ -417,7 +401,7 @@ export default defineComponent({
}
},
computed: {
- ...mapGetters(['configuration', 'capabilities']),
+ ...mapGetters(['configuration']),
...mapState('Files', [
'areFileExtensionsShown',
'latestSelectedId',
@@ -489,15 +473,6 @@ export default defineComponent({
alignH: 'right',
wrap: 'nowrap'
},
- this.capabilities?.files?.tags
- ? {
- name: 'tags',
- title: this.$gettext('Tags'),
- type: 'slot',
- alignH: 'right',
- wrap: 'nowrap'
- }
- : {},
{
name: 'owner',
title: this.$gettext('Shared by'),
@@ -589,15 +564,9 @@ export default defineComponent({
},
methods: {
...mapActions('Files/sidebar', ['openWithPanel']),
- ...mapActions('Files/sidebar', { openSidebar: 'open' }),
isResourceSelected(item) {
return this.selectedIds.includes(item.id)
},
- getTagLink(tag) {
- return createLocationCommon('files-common-search', {
- query: { term: `Tags:${tag}`, provider: 'files.sdk' }
- })
- },
isResourceCut(resource) {
if (this.clipboardAction !== ClipboardActions.Cut) return false
return this.clipboardResources.some((r) => r.id === resource.id)
@@ -612,9 +581,6 @@ export default defineComponent({
openRenameDialog(item) {
this.$_rename_trigger({ resources: [item] })
},
- openTagsSidebar() {
- this.openSidebar()
- },
openSharingSidebar(file) {
if (file.share?.shareType === ShareTypes.link.value) {
this.openWithPanel('sharing-item#linkShares')
@@ -855,13 +821,6 @@ export default defineComponent({
}
}
}
- &-tag {
- max-width: 80px;
- }
- &-tag-more {
- cursor: pointer;
- border: 0 !important;
- }
&-edit-name {
display: inline-flex;
vertical-align: super;
diff --git a/packages/web-app-files/src/components/SideBar/Details/FileDetails.vue b/packages/web-app-files/src/components/SideBar/Details/FileDetails.vue
index 643083eea00..8712af7de1e 100644
--- a/packages/web-app-files/src/components/SideBar/Details/FileDetails.vue
+++ b/packages/web-app-files/src/components/SideBar/Details/FileDetails.vue
@@ -140,17 +140,6 @@
-
- |
-
-
-
- {{ tag }},
-
-
-
- |
-
@@ -163,9 +152,8 @@ import { ImageDimension } from '../../../constants'
import { loadPreview } from 'web-pkg/src/helpers/preview'
import upperFirst from 'lodash-es/upperFirst'
import path from 'path'
-import { createLocationSpaces, isLocationSpacesActive, createLocationCommon } from '../../../router'
+import { createLocationSpaces, isLocationSpacesActive } from '../../../router'
import { ShareTypes } from 'web-client/src/helpers/share'
-
import {
useAccessToken,
usePublicLinkContext,
@@ -221,7 +209,7 @@ export default defineComponent({
}),
computed: {
...mapGetters('Files', ['versions', 'sharesTree', 'sharesTreeLoading']),
- ...mapGetters(['user', 'configuration', 'capabilities']),
+ ...mapGetters(['user', 'configuration']),
file() {
return this.displayedItem.value
@@ -346,12 +334,6 @@ export default defineComponent({
const displayDate = formatDateFromHTTP(this.file.mdate, this.$language.current)
return upperFirst(displayDate)
},
- showTags() {
- return this.capabilities?.files.tags && this.file.tags?.length
- },
- tagsLabel() {
- return this.$gettext('Tags')
- },
hasAnyShares() {
return (
this.file.shareTypes?.length > 0 ||
@@ -480,11 +462,6 @@ export default defineComponent({
this.copiedDirect = false
this.copiedEos = false
}, 550)
- },
- getTagLink(tag) {
- return createLocationCommon('files-common-search', {
- query: { term: `Tags:${tag}`, provider: 'files.sdk' }
- })
}
}
})
@@ -499,7 +476,6 @@ export default defineComponent({
td {
max-width: 0;
width: 100%;
- overflow-wrap: break-word;
div {
min-width: 0;
diff --git a/packages/web-app-files/src/components/SideBar/TagsPanel.vue b/packages/web-app-files/src/components/SideBar/TagsPanel.vue
deleted file mode 100644
index 745662aa4a6..00000000000
--- a/packages/web-app-files/src/components/SideBar/TagsPanel.vue
+++ /dev/null
@@ -1,146 +0,0 @@
-
-
-
-
-
-
-
-
- {{ label }}
-
-
-
-
-
New
-
-
- {{ label }}
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/packages/web-app-files/src/fileSideBars.ts b/packages/web-app-files/src/fileSideBars.ts
index de5d748bced..1f6e4668e53 100644
--- a/packages/web-app-files/src/fileSideBars.ts
+++ b/packages/web-app-files/src/fileSideBars.ts
@@ -3,7 +3,6 @@ import FileDetailsMultiple from './components/SideBar/Details/FileDetailsMultipl
import FileActions from './components/SideBar/Actions/FileActions.vue'
import FileVersions from './components/SideBar/Versions/FileVersions.vue'
import SharesPanel from './components/SideBar/Shares/SharesPanel.vue'
-import TagsPanel from './components/SideBar/TagsPanel.vue'
import NoSelection from './components/SideBar/NoSelection.vue'
import SpaceActions from './components/SideBar/Actions/SpaceActions.vue'
import SpaceDetails from './components/SideBar/Details/SpaceDetails.vue'
@@ -141,24 +140,6 @@ const panelGenerators: (({
return false
}
}),
- ({ capabilities, highlightedFile, router, multipleSelection, rootFolder }) => ({
- app: 'tags-item',
- icon: 'price-tag-3',
- iconFillType: 'line',
- title: $gettext('Tags'),
- component: TagsPanel,
- componentAttrs: {},
- get enabled() {
- if (!capabilities?.files?.tags || multipleSelection || rootFolder) return false
- if (typeof highlightedFile.canEditTags !== 'function' || !highlightedFile.canEditTags())
- return false
- return !(
- isLocationTrashActive(router, 'files-trash-personal') ||
- isLocationTrashActive(router, 'files-trash-spaces-project') ||
- isLocationPublicActive(router, 'files-public-files')
- )
- }
- }),
({ highlightedFile, capabilities }) => ({
app: 'space-share-item',
icon: 'group',
diff --git a/packages/web-app-files/src/helpers/resource/filter.ts b/packages/web-app-files/src/helpers/resource/filter.ts
index 57608f053b5..83cb8752490 100644
--- a/packages/web-app-files/src/helpers/resource/filter.ts
+++ b/packages/web-app-files/src/helpers/resource/filter.ts
@@ -5,7 +5,7 @@ export const filterResources = (resources: unknown[], term: string, limit?: numb
includeScore: true,
useExtendedSearch: true,
threshold: 0.3,
- keys: ['name', 'type', 'icon', 'extension', 'tags']
+ keys: ['name', 'type', 'icon', 'extension']
})
return (engine.search(term, { limit }) as any[]).map((result: any) => result.item)
diff --git a/packages/web-app-files/src/helpers/resources.ts b/packages/web-app-files/src/helpers/resources.ts
index 12eb7869e34..8a092c7f5c4 100644
--- a/packages/web-app-files/src/helpers/resources.ts
+++ b/packages/web-app-files/src/helpers/resources.ts
@@ -80,7 +80,6 @@ export function buildResource(resource): Resource {
downloadURL: resource.fileInfo[DavProperty.DownloadURL],
ownerDisplayName: resource.fileInfo[DavProperty.OwnerDisplayName],
ownerId: resource.fileInfo[DavProperty.OwnerId],
- tags: (resource.fileInfo[DavProperty.Tags] || '').split(',').filter(Boolean),
canUpload: function () {
return this.permissions.indexOf(DavPermission.FolderCreateable) >= 0
},
@@ -99,12 +98,6 @@ export function buildResource(resource): Resource {
canCreate: function () {
return this.permissions.indexOf(DavPermission.FolderCreateable) >= 0
},
- canEditTags: function () {
- return (
- this.permissions.indexOf(DavPermission.Updateable) >= 0 ||
- this.permissions.indexOf(DavPermission.FileUpdateable) >= 0
- )
- },
isMounted: function () {
return this.permissions.indexOf(DavPermission.Mounted) >= 0
},
@@ -260,9 +253,6 @@ export function buildSharedResource(
resource.canShare = () => SharePermissions.share.enabled(share.permissions)
resource.canRename = () => SharePermissions.update.enabled(share.permissions)
resource.canBeDeleted = () => SharePermissions.delete.enabled(share.permissions)
- resource.canEditTags = () =>
- parseInt(share.state) === ShareStatus.accepted &&
- SharePermissions.update.enabled(share.permissions)
} else {
resource.sharedWith = share.sharedWith || []
resource.shareOwner = share.uid_owner
@@ -276,7 +266,6 @@ export function buildSharedResource(
resource.canShare = () => true
resource.canRename = () => true
resource.canBeDeleted = () => true
- resource.canEditTags = () => true
}
resource.extension = extractExtensionFromFile(resource)
diff --git a/packages/web-app-files/src/mixins/actions/showEditTags.js b/packages/web-app-files/src/mixins/actions/showEditTags.js
deleted file mode 100644
index 8fefbb4baa9..00000000000
--- a/packages/web-app-files/src/mixins/actions/showEditTags.js
+++ /dev/null
@@ -1,47 +0,0 @@
-import { mapActions, mapGetters } from 'vuex'
-import { isLocationTrashActive, isLocationPublicActive } from '../../router'
-import isFilesAppActive from './helpers/isFilesAppActive'
-
-export default {
- mixins: [isFilesAppActive],
- computed: {
- ...mapGetters(['capabilities']),
-
- $_showEditTags_items() {
- return [
- {
- name: 'show-edit-tags',
- icon: 'price-tag-3',
- label: () => this.$gettext('Add or edit tags'),
- handler: this.$_showEditTags_trigger,
- // we don't have details in the trashbin, yet.
- // remove trashbin route rule once we have them.
- isEnabled: ({ resources }) => {
- // sidebar is currently only available inside files app
- if (!this.$_isFilesAppActive || !this.capabilities?.files?.tags) {
- return false
- }
-
- if (
- isLocationTrashActive(this.$router, 'files-trash-personal') ||
- isLocationTrashActive(this.$router, 'files-trash-spaces-project') ||
- isLocationPublicActive(this.$router, 'files-public-files')
- ) {
- return false
- }
- return resources.length === 1 && resources[0].canEditTags()
- },
- componentType: 'oc-button',
- class: 'oc-files-actions-show-edit-tags-trigger'
- }
- ]
- }
- },
- methods: {
- ...mapActions('Files/sidebar', { openSidebarWithPanel: 'openWithPanel' }),
-
- async $_showEditTags_trigger() {
- await this.openSidebarWithPanel('tags-item')
- }
- }
-}
diff --git a/packages/web-app-files/src/mixins/fileActions.ts b/packages/web-app-files/src/mixins/fileActions.ts
index 89a742dad42..721885d718b 100644
--- a/packages/web-app-files/src/mixins/fileActions.ts
+++ b/packages/web-app-files/src/mixins/fileActions.ts
@@ -11,7 +11,6 @@ import DownloadArchive from './actions/downloadArchive'
import DownloadFile from './actions/downloadFile'
import Favorite from './actions/favorite'
import Move from './actions/move'
-import ShowEditTags from './actions/showEditTags'
import Navigate from './actions/navigate'
import Rename from './actions/rename'
import Restore from './actions/restore'
@@ -26,7 +25,6 @@ const actionsMixins = [
'copy',
'move',
'rename',
- 'showEditTags',
'restore',
'delete',
'acceptShare',
@@ -48,8 +46,7 @@ export default {
Move,
Navigate,
Rename,
- Restore,
- ShowEditTags
+ Restore
],
computed: {
...mapState(['apps']),
diff --git a/packages/web-app-files/tests/unit/components/SideBar/Details/__snapshots__/FileDetails.spec.js.snap b/packages/web-app-files/tests/unit/components/SideBar/Details/__snapshots__/FileDetails.spec.js.snap
index 0d15c4c5c0b..e86fa4884d7 100644
--- a/packages/web-app-files/tests/unit/components/SideBar/Details/__snapshots__/FileDetails.spec.js.snap
+++ b/packages/web-app-files/tests/unit/components/SideBar/Details/__snapshots__/FileDetails.spec.js.snap
@@ -39,7 +39,6 @@ exports[`Details SideBar Panel displays a resource of type file on a private pag
-
@@ -87,7 +86,6 @@ exports[`Details SideBar Panel displays a resource of type file on a private pag
-
@@ -124,7 +122,6 @@ exports[`Details SideBar Panel displays a resource of type file on a private pag
-
@@ -166,7 +163,6 @@ exports[`Details SideBar Panel displays a resource of type file on a private pag
-
@@ -228,7 +224,6 @@ exports[`Details SideBar Panel displays a resource of type file on a private pag
-
@@ -265,7 +260,6 @@ exports[`Details SideBar Panel displays a resource of type file on a public page
-
@@ -322,7 +316,6 @@ exports[`Details SideBar Panel displays a resource of type file on a public page
-
@@ -359,7 +352,6 @@ exports[`Details SideBar Panel displays a resource of type folder on a private p
-
@@ -396,7 +388,6 @@ exports[`Details SideBar Panel displays a resource of type folder on a private p
-
@@ -453,7 +444,6 @@ exports[`Details SideBar Panel displays a resource of type folder on a private p
-
@@ -490,7 +480,6 @@ exports[`Details SideBar Panel displays a resource of type folder on a public pa
-
@@ -547,7 +536,6 @@ exports[`Details SideBar Panel displays a resource of type folder on a public pa
-
diff --git a/packages/web-app-search/src/portals/SearchBar.vue b/packages/web-app-search/src/portals/SearchBar.vue
index 34e4555d5b1..00af1cc5c6a 100644
--- a/packages/web-app-search/src/portals/SearchBar.vue
+++ b/packages/web-app-search/src/portals/SearchBar.vue
@@ -88,29 +88,27 @@ export default {
},
watch: {
- $route: {
- handler(r, o) {
- if (!!o && this.activeProvider && !this.activeProvider.available) {
- this.activeProvider = undefined
- }
+ $route() {
+ if (this.activeProvider && !this.activeProvider.available) {
+ this.activeProvider = undefined
+ }
+ }
+ },
- this.$nextTick(() => {
- if (!this.availableProviders.length) {
- return
- }
+ mounted() {
+ if (!this.availableProviders.length) {
+ return
+ }
- const routeTerm = get(r, 'query.term')
- const input = this.$el.getElementsByTagName('input')[0]
- if (!input || !routeTerm) {
- return
- }
+ const input = this.$el.getElementsByTagName('input')[0]
+ const routeTerm = get(this, '$route.query.term')
- this.term = routeTerm
- input.value = routeTerm
- })
- },
- immediate: true
+ if (!input || !routeTerm) {
+ return
}
+
+ this.term = routeTerm
+ input.value = routeTerm
},
asyncComputed: {
diff --git a/packages/web-app-search/tests/unit/portals/SearchBar.spec.ts b/packages/web-app-search/tests/unit/portals/SearchBar.spec.ts
index 6c3c86248ad..ebd33231393 100644
--- a/packages/web-app-search/tests/unit/portals/SearchBar.spec.ts
+++ b/packages/web-app-search/tests/unit/portals/SearchBar.spec.ts
@@ -89,7 +89,7 @@ describe('Search Bar portal component', () => {
})
expect(wrapper.vm.$data.activeProvider).toBeTruthy()
- ;(wrapper.vm.$options.watch.$route.handler as any).call(wrapper.vm, undefined, true)
+ ;(wrapper.vm.$options.watch.$route as any).call(wrapper.vm)
expect(wrapper.vm.$data.activeProvider).toBeFalsy()
})
test('notifies active provider to update term on input', async () => {
@@ -376,7 +376,7 @@ describe('Search Bar portal component', () => {
data: 'dummyProviderOne - 2'
})
})
- test('sets the search term and input term to the route value on mount', async () => {
+ test('sets the search term and input term to the route value on mount', () => {
wrapper = mount(SearchBar, {
localVue,
data() {
@@ -397,8 +397,6 @@ describe('Search Bar portal component', () => {
}
})
- await wrapper.vm.$nextTick()
-
expect(wrapper.vm.$data.term).toBe('routeTerm')
expect((wrapper.get('input').element as HTMLInputElement).value).toBe('routeTerm')
})
diff --git a/packages/web-client/src/helpers/resource/types.ts b/packages/web-client/src/helpers/resource/types.ts
index 7b39a5f8818..e11b4499dc6 100644
--- a/packages/web-client/src/helpers/resource/types.ts
+++ b/packages/web-client/src/helpers/resource/types.ts
@@ -24,7 +24,6 @@ export interface Resource {
sharePermissions?: number
shareTypes?: number[]
privateLink?: string
- tags?: string[]
canCreate?(): boolean
canUpload?(): boolean
@@ -33,7 +32,6 @@ export interface Resource {
canRename?(): boolean
canBeDeleted?(): boolean
canBeRestored?(): boolean
- canEditTags?(): boolean
isReceivedShare?(): boolean
isMounted?(): boolean
diff --git a/packages/web-pkg/src/constants/dav.ts b/packages/web-pkg/src/constants/dav.ts
index f995850e815..197382fdfd5 100644
--- a/packages/web-pkg/src/constants/dav.ts
+++ b/packages/web-pkg/src/constants/dav.ts
@@ -20,7 +20,6 @@ export abstract class DavProperty {
static readonly ContentLength: string = '{DAV:}getcontentlength'
static readonly ContentSize: string = '{http://owncloud.org/ns}size'
static readonly LastModifiedDate: string = '{DAV:}getlastmodified'
- static readonly Tags: string = '{http://owncloud.org/ns}tags'
static readonly ETag: string = '{DAV:}getetag'
static readonly MimeType: string = '{DAV:}getcontenttype'
static readonly ResourceType: string = '{DAV:}resourcetype'
@@ -60,8 +59,7 @@ export abstract class DavProperties {
DavProperty.ETag,
DavProperty.MimeType,
DavProperty.ResourceType,
- DavProperty.DownloadURL,
- DavProperty.Tags
+ DavProperty.DownloadURL
]
static readonly PublicLink: DavProperty[] = DavProperties.Default.concat([
diff --git a/packages/web-runtime/package.json b/packages/web-runtime/package.json
index d87d00d6a95..f0e36195c47 100644
--- a/packages/web-runtime/package.json
+++ b/packages/web-runtime/package.json
@@ -25,7 +25,7 @@
"marked": "^4.0.12",
"oidc-client-ts": "^2.0.5",
"owncloud-design-system": "14.0.0-alpha.14",
- "owncloud-sdk": "owncloud/owncloud-sdk.git#experimental",
+ "owncloud-sdk": "~3.0.0-alpha.15",
"p-queue": "^6.6.2",
"popper-max-size-modifier": "^0.2.0",
"portal-vue": "^2.1.7",
diff --git a/tests/acceptance/features/webUIFilesActionMenu/fileFolderActionMenu.feature b/tests/acceptance/features/webUIFilesActionMenu/fileFolderActionMenu.feature
index 49eb0fbcaea..a99efc04848 100644
--- a/tests/acceptance/features/webUIFilesActionMenu/fileFolderActionMenu.feature
+++ b/tests/acceptance/features/webUIFilesActionMenu/fileFolderActionMenu.feature
@@ -11,7 +11,6 @@ Feature: User can see the file or folder actions menu options
And user "Alice" has logged in using the webUI
And the user has browsed to the personal page
- @skipOnOCIS
Scenario: observe different actions menu options on selecting different file types
Given user "Alice" has uploaded file with content "pdf file" to "lorem.pdf" in the server
And the user has reloaded the current page of the webUI
@@ -34,7 +33,7 @@ Feature: User can see the file or folder actions menu options
| preview |
| download |
- @skipOnOCIS
+
Scenario: observe different actions menu options on selecting a folder
When the user opens the actions sidebar panel of folder "simple-folder" on the webUI
Then the app-sidebar for folder "simple-folder" should be visible on the webUI
@@ -42,40 +41,3 @@ Feature: User can see the file or folder actions menu options
| items |
| open folder |
| download |
-
- @skipOnOC10
- Scenario: observe different actions menu options on selecting different file types
- Given user "Alice" has uploaded file with content "pdf file" to "lorem.pdf" in the server
- And the user has reloaded the current page of the webUI
- When the user opens the actions sidebar panel of file "lorem.txt" on the webUI
- Then the app-sidebar for file "lorem.txt" should be visible on the webUI
- And only the following items with default items should be visible in the actions menu on the webUI
- | items |
- | open in text editor |
- | download |
- | add or edit tags |
- When the user opens the actions sidebar panel of file "lorem.pdf" on the webUI
- Then the app-sidebar for file "lorem.pdf" should be visible on the webUI
- And only the following items with default items should be visible in the actions menu on the webUI
- | items |
- | open in pdf viewer |
- | download |
- | add or edit tags |
- When the user opens the actions sidebar panel of file "testavatar.png" on the webUI
- Then the app-sidebar for file "testavatar.png" should be visible on the webUI
- And only the following items with default items should be visible in the actions menu on the webUI
- | items |
- | preview |
- | download |
- | add or edit tags |
-
- @skipOnOC10
- Scenario: observe different actions menu options on selecting a folder
- When the user opens the actions sidebar panel of folder "simple-folder" on the webUI
- Then the app-sidebar for folder "simple-folder" should be visible on the webUI
- And only the following items with default items should be visible in the actions menu on the webUI
- | items |
- | open folder |
- | download |
- | add or edit tags |
-
diff --git a/yarn.lock b/yarn.lock
index 40a4bba9bf3..015c1838817 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -9753,9 +9753,9 @@ __metadata:
languageName: node
linkType: hard
-"owncloud-sdk@owncloud/owncloud-sdk.git#experimental":
- version: 2.0.1
- resolution: "owncloud-sdk@https://github.com/owncloud/owncloud-sdk.git#commit=4341933e1456ceeb806b65897517854297536bc1"
+"owncloud-sdk@npm:~3.0.0-alpha.15":
+ version: 3.0.0-alpha.15
+ resolution: "owncloud-sdk@npm:3.0.0-alpha.15"
peerDependencies:
axios: ^0.27.2
cross-fetch: ^3.0.6
@@ -9768,7 +9768,7 @@ __metadata:
dependenciesMeta:
"@pact-foundation/pact":
built: true
- checksum: aefe1b9059f850703520b68c5e1808b203db6e7e426bd7454261e0a839c7c3c46e186b3f1f66a0d421fcc595f8a9c55244e4954f92a99f89aa5e535abf32a3d6
+ checksum: 3892508b42965f5602fb985173185ee9799d41d0e719895ad574d4b8b2b15326d69bc14300c1d84b14422e4acb3f4de101fdce2f36fc52658c0fa8b17b76c614
languageName: node
linkType: hard
@@ -13794,7 +13794,7 @@ __metadata:
marked: ^4.0.12
oidc-client-ts: ^2.0.5
owncloud-design-system: 14.0.0-alpha.14
- owncloud-sdk: "owncloud/owncloud-sdk.git#experimental"
+ owncloud-sdk: ~3.0.0-alpha.15
p-queue: ^6.6.2
popper-max-size-modifier: ^0.2.0
portal-vue: ^2.1.7