Falcon LogScale 1.211.0 GA (2025-10-21)
Version? | Type? | Release Date? | Availability? | End of Support | Security Updates | Upgrades From? | Downgrades To? | Config. Changes? |
---|---|---|---|---|---|---|---|---|
1.211.0 | GA | 2025-10-21 | Cloud | Next LTS | No | 1.150.0 | 1.177.0 | No |
Available for download two days after release.
Hide file download links
Download
Use docker pull humio/humio-core:1.211.0 to download the latest version
Bug fixes and updates
Deprecation
Items that have been deprecated and may be removed in a future release.
The
EXTRA_KAFKA_CONFIGS_FILE
configuration variable has been deprecated and planned to be removed no earlier than version 1.225.0. For more information, see RN Issue.
rdns()
has been deprecated and will be removed in version 1.249. UsereverseDns()
as an alternative function.
New features and improvements
Security
Added new environment variable
SAML_METADATA_ENDPOINT_URL
, allowing users to specify where LogScale will fetch the IdP signing certificate. This provides an alternative to usingSAML_IDP_CERTIFICATE
andSAML_ALTERNATIVE_IDP_CERTIFICATE
, and enables easier certificate management without having to restart LogScale with a new set of variables.The existing certificate configuration options remain available, and when both methods are specified, certificates from both sources will be used.
Storage
Added support for archiving ingested logs to Azure Storage. Logs that are archived using Azure Storage are available for further processing in any external system that integrates with Azure.
Users can configure Azure Storage archiving options using the following optional settings in the Egress repository:
Bucket (required): Destination bucket for archived logs
Format: Choose between NDJSON or Raw formatting for the stored file (default: NDJSON)
Archiving start: Select between archiving all segments or only those starting after a specified UTC timestamp
API
Extended a user's ability to control lookup file management with the creation of two REST API endpoints,
filefromquery
andfileoperation
. Also extended the existing REST API endpointfile
to support PATCH operations, and provide the ability for users to update existing files. Previously, users could only replace them in their entirety.The endpoint
filefromquery
will provide the following functionality:The endpoint
fileoperation
will provide the following functionality:Allows users to view the progress of operations started on other endpoints.
Updates the state of PATCH operations on the
files
endpoint.
For more information, see Lookup API.
Functions
Added two new functions for calculating edit (Levenshtein) distances:
text:editDistance()
: Returns the edit distance between target and reference strings, capped at maxDistancetext:editDistanceAsArray()
: Returns an object array containing edit distances between a target string and multiple reference strings
Fixed in this release
Other
Fixed an issue where the process to delete messages from the ingest queue would sometimes trigger the error Skipping Kafka event deletion for this round since stripping topOffsets failed during the calculation phase without cause.