IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
8.8.1 release notes
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
8.8.1 release notes
editUpgrading to Enterprise Search 8.8.1? See Upgrading and migrating.
Bug fixes
edit- Addressed a change to Zendesk’s OAuth API which prevented new Workplace Search connections to Zendesk, and eventually broke existing connections.
-
Fixed a MongoDB connector issue preventing it from running on ARM architecture when using
mongodb+srvprotocol.
Known issues
edit-
Users are not able to complete the configuration of the Postgres connector client because the UI throws a
Connector has missing configuration fields: usernameerror even when a username is specified. To workaround this issue, backup the.elastic-connectorsindex and execute the following request from Kibana’s Dev Tools:
POST .elastic-connectors/_update_by_query
{
"script" : """
def value = ctx._source.configuration.user;
ctx._source.configuration.remove('user');
ctx._source.configuration.username = value;
""",
"query" : {
"term": { "service_type": "postgresql" }
}
}