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

New

Enhancements

EnhancementDetails
REST service call OAuth2 custom parameters

It is now possible to add any parameter to an OAuth2 token request that is being executed during a REST service call.

Just add your parameters to a REST connection as follows:

Code Block
languageyml
blueriq:
  connection:
    my-connection:
      http:
        url: https://some.domain.com/resource
        authentication: oauth2
        oauth2-request-parameters
          param1: some-value
          param2: some_other_value123

This allows you to send extra data in the OAuth2 token request that you configured, if needed.

OAuth2 clients ala Spring Security

We changed the way you configure an OAuth2 client on REST connections.

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 such 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 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.

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 require Java 21 to run.

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.


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.x.x.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

There are no specific retirement announcements.

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

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