Versions Compared

Key

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

ContentRelease 17.0
Download

UI Button
colorpurple
icondownload
titleDownload Blueriq
urlhttps://my.blueriq.com/display/CUS/Customers+Home

Panel

On this page:

Table of Contents
maxLevel1
stylenone
Numbered Headings
start-numbering-with1

Highlights

Our goal is to swiftly introduce new features, prioritizing speed over waiting for major releases unless absolutely necessary. This approach ensures a gradual impact and shortens time to market. Unlike minor updates, major releases may involve breaking changes like removing outdated features or upgrading technology.

Highlights of release 17.0:

  • Technology upgrades (JDK 21, OpenAPI 3.1, KeyCloak Keycloak 24.0, .NET core 8) keeping Blueriq secure and stable.
  • Removal of deprecated features, toggles, and properties marking the end of a transition period.
  • Improved flexibility for secured REST connections using OAuth2
  • Improved readability of logging

Enhancements

It is now possible to add any parameter to an OAuth2 token request that is being executed during a REST service call. This allows you to send extra data in the OAuth2 token request that you configured, if needed.

blueriq: connection: my-connection: http:        url: https://some.domain.com/resource        authentication: oauth2        oauth2-request-parameters param1: some-value param2: some_other_value123
EnhancementDetailsREST service call OAuth2 custom parameters
Expand
titleExpand to see how to add your parameters to a REST connection...
Code Block
languageyml
OAuth2 clients ala Spring Security

We changed the way you configure an OAuth2 client on REST connections. Now you can define OAuth2 clients separately and reference them from multiple connection if you so wish.

Expand
titleExpand to see what has changed...
In the old situation you would need to do something like this.
Code Block
languageyml
blueriq:
  connection:
    my-connection:
      http:
        url: https://some.domain.com/resource
        authentication: oauth2
        oauth2-client-id: my-client-id
        oauth2-client-secret: secret-password-text
        oauth2-grant-type: client_credentials
        oauth2-token-endpoint: https://identity.provider.com/token

Now you can define OAuth2 clients separately and reference them from multiple connection if you so wish:

Code Block
languageyml
spring:
  security:
    oauth2:
      client:
        registration:
          my-oauth2-client:
            provider: my-auth-server
            client-id: my-client-id
            client-secret: secret-password-text
            authorization-grant-type: client_credentials
        provider:
          my-auth-server:
            token-uri: https://identity.provider.com/token
blueriq:
  connection:
    my-connection1:
      http:
        url: https://some.domain.com/resource1
        authentication: oauth2
        oauth2-client-registration: my-oauth2-client
    my-connection2:
      http:
        url: https://some.domain.com/resource2
        authentication: oauth2
        oauth2-client-registration: my-oauth2-client
Default HTTP timeouts

The default read timeout for AQ_RestServiceCall and AQ_SoapServiceCall has been changed to 5 seconds (was 15 seconds). The advantage is that a request will now fail faster if it takes long, so that the user doesn't have to wait so long. If you have service calls that take longer than 5 seconds, you can override the timeout per connection. See Connections Properties for more information.

Timeouts for CMIS

We introduced properties to set the connection timeout and the read timeout for CMIS. Both default to 5 seconds. See CMIS Properties on how to change them.

Improved readability of logging

Logging for flows, processes, and certain service calls thoughout Blueriq applications has been improved by improving the consistency of log levels and actual log statements.

Documentation

Documentation on the new features and improvements of this release is linked in the respective topics.

Changes Platform Support

Our Platform support is updated.

Changes are:

  • Blueriq Java components now requires Java 21 to run.
  • Blueriq 17 introduces support for OpenAPI v3.1, in addition to v3.0 for the OpenAPI specification feed. 

 Discontinued

  •  Java x support is stopped, from Blueriq 17 on Java 21 or higher is mandatory.

Upgrade Instructions

Info
titleOAuth2 token support on REST connections

In order to use your REST connections that use a OAuth2 token to authenticate correctly after the upgrade you will need to migrate all the properties to the new structure as described in the "OAuth2 clients ala Spring Security" enhancement.

Please review the Release 17.0 Upgrade Instructions.

UI Text Box
typetip

As a best practice

  • backup your repository
  • backup your database before running scripts
  • backup your 
    Include Page
    _HomeFolder
    _HomeFolder
     directory ([Blueriq installation directory]\Runtime)
  • backup any config files you have altered under [Blueriq installation directory]\Services

before you start the upgrade.

Artifacts

 The Blueriq artifacts are available under name: 17.0.0.xxxx

This release includes these versions of Blueriq components with a separate life cycle:

Component

Version

Customer Data Service4.2.x
DCM Lists Service3.0.x
Material Theme1.1.x
Development tools frontend1.5.x
DCM Maintenance App3.0.x
Audit Consumer0.2.x
DCM Dashboard Service0.2.x
Gateway Service0.1.x
Document Renderer2.1.x

Blueriq Libraries

There are no specific Library updates for this release.

Libraries

In this release, the set of third party libraries that is used by Blueriq was updated. When your installation of Blueriq includes custom components (artifacts that do not ship with Blueriq, such as proprietary plugins), those components should be tested for compatibility with these changes.

UI Expand
titleThird-party libraries Java Runtime
ArtifactIdGroupIdLicenseVersion in 17.x.xVersion in 17.x.x
UI Expand
titleThird-party libraries Persistence API for customer data
ArtifactIdGroupIdLicenseVersion in 4.2.x (Blueriq 17.x.x)

Version in 4.2.x (Blueriq 17.x.x)

Retirement announcement

For a full list of deprecated features, go to Deprecated features.

Removed legacy properties can be found in the Release 17.0 Upgrade Instructions.

Bug fixes

Include Page
Blueriq 17.x Bug Fixes
Blueriq 17.x Bug Fixes

Known issues

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

Security notification