Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Before you upgrade make sure to read the General Upgrade instructions as well as the Upgrade instructions for previous versions.

Info

The changes are color coded. Orange elements have been changed, Green elements have been added and Red elements have been removed compared to the 17.x 6 release.

Panel

Table of contents

Table of Contents
maxLevel2

Document Renderer Service - Improvements/changes

  • We changed the default font from Arial to Roboto and included the TrueType font files needed for that to work out of the box. Although Arial and Roboto are quite similar, your generated PDF documents might be different if you use the defaults.
  • In order to improve the performance (RAM usage) of the Document Renderer Service we added a font allowList to the service configuration. If you don't rely on the default configuration you must add one or more entries to the font allowList, depending on the actual fonts you use in your documents.

Material Theme - @blueriq/dashboard

In order to connect to the new API of the DCM Dashboard Service we have introduced a new Module in the @blueriq/dashboard package which is release in version 0.18.8. The main changes for the Material Theme, for version 1.4.0, can be found in this commit on github.com. With the introduction of the new `BlueriqDashboardModule` we have moved a lot of the implementation from Material Theme to the @blueriq/dashboard package. Refer to the getting started documentation, on how to use the new Module in comparison to the Legacy `DashboardBackendModule`.

In version 1.4.2 of Material Theme we have made a small change regarding the routes of the Dashboard Application, these changes can be found in this commit.

DCM Dashboard Service

Context path

In version 1.2.1 of the DCM Dashboard Service we have added a new default context path: /dcm-dashboard. This could have impact on your current services which connect to the DCM Dashboard Service. 

Gateway Service configuration

In the Gateway Service configuration a route is configured to connect to the DCM Dashboard Service. This route configuration needs to be updated to the following, for the legacy API of the Dashboard Service to still work.

Code Block
languageyml
titleRoute configuration
collapsetrue
spring:
  cloud:
    gateway:
      routes:
        - id: dashboard
          uri: http://<host>:<port>
          predicates:
            - Path=/dcm-dashboard/**
        - id: legacy-dashboard
          uri: http://<host>:<port>
          predicates:
            - Path=/dashboards/**
          filters:
            - PrefixPath=/dcm-dashboard

The legacy endpoint will still use '/dashboards' route but it will send a context path prefix of /dcm-dashboard so the DCM Dashboard Service understands what is happening.

Dashboard project data source properties

In DCM Dashboard Service 2.2, we introduced properties for enabling Dashboard project data sources and we renamed the blueriq.dcm.dashboard.definitions.location property. Please review the new and renamed properties below and update your configuration accordingly.

Old propertyNew propertyDescription
n/ablueriq.exports.enabled

Enable the dashboard project data source that retrieves Dashboard exports from the file system.

Default: false

blueriq.dcm.dashboard.definitions.location blueriq.exports.location

Folder that contains the Dashboard project exports.

n/ablueriq.studio.enabled

Enable the dashboard project data source that retrieves Dashboard exports from Encore. Please note that this data source is only available when the development-tools profile is active.

Default: false

SDK Changes

Added classes

Modified classes


Known issues

For an overview of known issue please refer to: Known issues.