Migrating to 2.4.0
Migration Guide
Here you can find the needed steps to upgrade your current Witboost installation to v2.4.0. Please refer to the release notes for a detailed list of changes and improvements. This guide is intended for users who are currently running Witboost version 2.3.0 or earlier and wish to upgrade to version 2.4.0.
Follow these steps to migrate from the previous version to Witboost version 2.4.0:
Backup Your Data
Before starting the migration, ensure you have a complete backup of your database and configuration files.
Update Dependencies
Ensure all the dependencies in the Helm files are updated to their compatible versions for 2.4.0. Refer to the published Helm chart for details.
Upgrade Steps
Core
Migration
-
If you're explicitly overriding config
backend.csp
(underappConfig
in theui
block of thevalues.yaml
file of the Witboost Chart):In order to correctly visualize Technology icons inside the Extension Manager, the source expression
'blob:'
should be added to theimg-src
directive of thebackend.csp
config. For example if in the current config is:csp:
connect-src: ["'self'", "http:", "https:", "wss:"]
img-src: ["*", "'self'", "data:", "https:"]
script-src: ["'self'", "'unsafe-eval'"]
script-src-elem: ["'self'", "'unsafe-eval'"]It should be changed to:
csp:
connect-src: ["'self'", "http:", "https:", "wss:"]
img-src: ["*", "'self'", "data:", "https:", "blob:"]
script-src: ["'self'", "'unsafe-eval'"]
script-src-elem: ["'self'", "'unsafe-eval'"]If the directive
img-src
is not already defined in thecsp
configuration,'blob:'
should be added along with the other source expressions.