NewEnhancementsEnhancement | Details |
---|
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 |
---|
| 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 |
---|
| 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 |
---|
| 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 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. |
DocumentationDocumentation on the new features and improvements of this release is linked in the respective topics. Our Platform support is updated. Changes are: - Blueriq Java components now require Java 21 to run.
Upgrade Instructions Info |
---|
title | OAuth2 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 |
---|
| As a best practice - backup your repository
- backup your database before running scripts
- backup your 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 Service | 4.2.x | DCM Lists Service | 3.0.x | Material Theme | 1.1.x | Development tools frontend | 1.5.x | DCM Maintenance App | 3.0.x | Audit Consumer | 0.2.x | DCM Dashboard Service | 0.2.x | Gateway Service | 0.1.x | Document Renderer | 2.1.x |
Blueriq LibrariesThere are no specific Library updates for this release. LibrariesIn 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 |
---|
title | Third-party libraries Java Runtime |
---|
| ArtifactId | GroupId | License | Version in 17.x.x | Version in 17.x.x |
---|
|
UI Expand |
---|
title | Third-party libraries Persistence API for customer data |
---|
| ArtifactId | GroupId | License | Version in 4.2.x (Blueriq 17.x.x) | Version in 4.2.x (Blueriq 17.x.x) |
---|
|
Retirement announcementThere 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 issuesFor an overview of known issue please refer to: Known issues Security notification
|