From a2963182a3efbf9289955bbf22d811583a2e0c69 Mon Sep 17 00:00:00 2001 From: Giuseppe Lo Presti Date: Sat, 20 May 2023 16:59:12 +0200 Subject: [PATCH 1/2] Fixed option in wopiserver.conf --- wopiserver/Chart.yaml | 4 ++-- wopiserver/templates/configmap.yaml | 16 +++++++--------- 2 files changed, 9 insertions(+), 11 deletions(-) diff --git a/wopiserver/Chart.yaml b/wopiserver/Chart.yaml index 6aaec2a..b88e74f 100644 --- a/wopiserver/Chart.yaml +++ b/wopiserver/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: wopiserver description: A Vendor-neutral Web-application Open Platform Interface (WOPI) gateway for EFSS systems type: application -version: 0.9.0 +version: 0.9.1 appVersion: v9.5.3 kubeVersion: '>= 1.19.0-0' home: https://github.com/cs3org/wopiserver @@ -19,7 +19,7 @@ keywords: - apps annotations: artifacthub.io/changes: | - - "Config refresh + update to latest wopiserver tag" + - "Reverted some options in wopiserver.conf" artifacthub.io/images: | - name: wopiserver image: cs3org/wopiserver:v9.5.3 diff --git a/wopiserver/templates/configmap.yaml b/wopiserver/templates/configmap.yaml index f61a742..5b74fb2 100644 --- a/wopiserver/templates/configmap.yaml +++ b/wopiserver/templates/configmap.yaml @@ -58,15 +58,13 @@ data: # WOPI lock expiration time [seconds]. Microsoft requires this to be 30 minutes. wopilockexpiration = 1800 - # WOPI lock strict check: if True, WOPI locks will be compared according to specs, - # that is their representation must match. False (default) allows for a more relaxed - # comparison, which compensates incorrect lock requests from Microsoft Office Online - # on-premise setups. - wopilockstrictcheck = False - - # Enable support of rename operations from WOPI apps. This is currently - # disabled by default as it has been observed that both MS Office and Collabora - # Online do not play well with this feature. + # WOPI lock strict check. Must be set to True (default). False allows for a more relaxed + # comparison, which compensates incorrect lock requests from early versions of Microsoft + # Office Online on-premise setups. + wopilockstrictcheck = True + + # Enable support of rename operations from WOPI apps (experimental). Must be set + # to False (default). enablerename = False # Detection of external Microsoft Office or LibreOffice locks. By default, lock files From 4f43eeaea5f39d96040ec0e5646eb61e0b819b0a Mon Sep 17 00:00:00 2001 From: Giuseppe Lo Presti Date: Wed, 31 May 2023 10:21:52 +0200 Subject: [PATCH 2/2] Bump version --- wopiserver/Chart.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/wopiserver/Chart.yaml b/wopiserver/Chart.yaml index b88e74f..761b966 100644 --- a/wopiserver/Chart.yaml +++ b/wopiserver/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: wopiserver description: A Vendor-neutral Web-application Open Platform Interface (WOPI) gateway for EFSS systems type: application -version: 0.9.1 -appVersion: v9.5.3 +version: 0.9.2 +appVersion: v10.0.0 kubeVersion: '>= 1.19.0-0' home: https://github.com/cs3org/wopiserver sources: @@ -20,7 +20,8 @@ keywords: annotations: artifacthub.io/changes: | - "Reverted some options in wopiserver.conf" + - "Updated to latest wopiserver tag" artifacthub.io/images: | - name: wopiserver - image: cs3org/wopiserver:v9.5.3 + image: cs3org/wopiserver:v10.0.0 artifacthub.io/containsSecurityUpdates: 'false'