From 403b47f3b2fe81d2881404fc7ce81727d4dd1a69 Mon Sep 17 00:00:00 2001 From: Ruben van der Linde Date: Wed, 27 May 2026 19:30:53 +0200 Subject: [PATCH] fix(deps): point @conduction/nextcloud-vue to pre-built beta.108 (git-SHA fallback) nc-vue v1.0.0-beta.108 contains the CnDataTable string-array column fix (cols.map(c => typeof c === 'string' ? { key: c, label: c } : c)) but GitHub Actions OIDC is 500-ing so the npm release never published. This pins to the dist-committed branch SHA 14572a471fa908e5e7b8070246bb089a7569f36a on ConductionNL/nextcloud-vue which carries the pre-built dist/ files. When beta.108 eventually publishes to npm via Actions, swap back to: "@conduction/nextcloud-vue": "^1.0.0-beta.108" --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index bf49c435..988e806a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "version": "0.1.0", "license": "EUPL-1.2", "dependencies": { - "@conduction/nextcloud-vue": "^1.0.0-beta.101", + "@conduction/nextcloud-vue": "github:ConductionNL/nextcloud-vue#14572a471fa908e5e7b8070246bb089a7569f36a", "@nextcloud/auth": "^2.6.0", "@nextcloud/axios": "~2.5.2", "@nextcloud/dialogs": "^3.2.0", @@ -492,9 +492,9 @@ } }, "node_modules/@conduction/nextcloud-vue": { - "version": "1.0.0-beta.101", - "resolved": "https://registry.npmjs.org/@conduction/nextcloud-vue/-/nextcloud-vue-1.0.0-beta.101.tgz", - "integrity": "sha512-UVxKWUU7pf6oHr7Oly5HWPC1e8OK3z2lmdS5xgs28+sYZPNj53co9+xs3tb0mqCGXZ8Oqit9NMapI8ir0fy2iA==", + "version": "1.0.0-beta.108", + "resolved": "git+ssh://git@github.com/ConductionNL/nextcloud-vue.git#14572a471fa908e5e7b8070246bb089a7569f36a", + "integrity": "sha512-tVqgxPVNQZ8q9uHSygl3WeDgHT1ppYBDHkoXsYc+2OFsv/rIQaBF+N1xYEC4UzyRJi8AFleNDfOITWXUr1+OpQ==", "license": "EUPL-1.2", "dependencies": { "@codemirror/autocomplete": "^6.0.0", diff --git a/package.json b/package.json index eebf4829..9cca9f7c 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "extends @nextcloud/browserslist-config" ], "dependencies": { - "@conduction/nextcloud-vue": "^1.0.0-beta.101", + "@conduction/nextcloud-vue": "github:ConductionNL/nextcloud-vue#14572a471fa908e5e7b8070246bb089a7569f36a", "@nextcloud/auth": "^2.6.0", "@nextcloud/axios": "~2.5.2", "@nextcloud/dialogs": "^3.2.0",