Update notes (3.10 to 8.3/3.11)
To update Optimize to version 8.3/3.11, perform the steps in the migration and update instructions.
The update to 8.3/3.11 can be performed from any 3.10.x release.
Here you will find information about:
- Limitations
- Known issues
- Changes in supported environments
- Changes in behavior (for example, due to a new feature)
- Changes in translation resources
Changes in supported environments
Elasticsearch
With 8.3/3.11, Optimize now supports Elasticsearch 8.8
. Elasticsearch 8.5
, 8.6
and 8.7
are no longer supported.
Additionally, please note there are temporary changes in Optimize's Elasticsearch support as detailed below:
Optimize version | Elasticsearch version |
---|---|
Optimize 3.10.0 - Optimize 3.10.3 | 7.16.2+, 7.17.0+, 8.5.0+, 8.6.0+ |
Optimize 3.10.4 | 7.16.2+, 7.17.0+, 8.7.0+, 8.8.0+ |
Optimize 3.10.5 - Optimize 8.3.x/3.11.x | 7.16.2+, 7.17.0+, 8.5.0+, 8.6.0+ |
Optimize 8.3.x/3.11.x | 8.8.0+ |
See the supported environments section for the full range of supported versions.
If you need to update your Elasticsearch cluster, refer to the general Elasticsearch update guide. Usually, the only thing you need to do is perform a rolling update.
Java
With this release, the minimum version of Java that Optimize supports is now Java 17. See the Supported Environments sections for more information on supported versions.
Logging
With the change to Spring Boot 3, Optimize's logging configuration format has also been updated. If you are updating from version 3.10.3 or earlier, please review the updated environment-logback.xml
to make sure your configuration is valid.
Changes in behavior
API behavior
Before the 7.20/8.3 release, the Optimize API would accept requests when the URI contained a trailing slash (/
). This is no longer the case, and requests containing a trailing slash will no longer be matched to the corresponding API path.
Raw Data Report API
These changes require you to adjust any integrations using the data mentioned below.
The data structure of raw data reports has changed. For the data export API, the properties named numberOfIncidents
, numberOfOpenIncidents
, and numberOfUserTasks
is now renamed to incidents
, openIncidents
, and userTasks
respectively, and grouped together in a single property named counts
.
Before:
{
...
results: {
...
measures: [
{
processDefinitionKey: 'someKey',
numberOfIncidents: 1,
numberOfOpenIncidents: 0,
numberOfUserTasks: 1,
...
},
...
]
}
}
After:
{
...
results: {
...
measures: [
{
processDefinitionKey: 'someKey',
counts: {
incidents: 1,
openIncidents: 0,
userTasks: 1
},
...
},
...
]
}
}
For CSV export the properties are renamed to count:incidents
, count:openIncidents
, and count:userTasks
.
Localization file
The following terms have been added to or removed from the localization file en.json
since the last release:
- Lines with a
+
in the beginning mark the addition/update of a term; lines with a-
mark the removal of a term.