*Oct 15, 2025*
Helm Chart version: [1.11.5](https://github.com/HumanSignal/charts/blob/master/heartex/label-studio/Chart.yaml)
### New features
#### Connect your Databricks files to Label Studio
There is a new cloud storage option to connect your Databricks Unity Catalog to Label Studio.
For more information, see [**Databricks Files (UC Volumes)**](https://docs.humansignal.com/guide/storage#Databricks-Files-UC-Volumes).
Note that PDF import is not currently supported for Databricks source storage.

### Enhancements
#### Reviewer metrics
The [Annotator Performance Dashboard](dashboard_annotator) now includes two new graphs for Reviewer metrics:

You can also now find a **Review Time** column in the Data Manager:

!!! note
Data collection for review time began on September 25, 2025. You cannot view time for reviewing activity that happened before data collection began.
Review time is measured in seconds.
#### Improved project Annotation settings
The **Annotation** section of the project settings has been improved.
- Clearer text and setting names
- When Manual distribution is selected, settings that only apply to Automatic distribution are hidden
- You can now preview instruction text and styling
For more information, see [Project settings - Annotation](https://docs.humansignal.com/guide/project_settings_lse#Annotation).


#### Ground truth visibility in the agreement pop-up
When you click the **Agreement** column in the Data Manager, you can see a pop-up with an inter-annotator agreement matrix. This pop-up will now also identify annotations with ground truths.
For more information about adding ground truths, see [Ground truth annotations](ground_truths).

#### Sort video and audio regions by start time
You can now sort regions by media start time.
Previously you could sort by time, but this would reflect the time that the region was created. The new option reflects the start time in relation to the media.
#### Support for latest Gemini models
When you add Gemini or Vertex AI models to Prompts or to the organization model provider list, you will now see the latest Gemini models.
**gemini-2.5-pro**
**gemini-2.5-flash**
**gemini-2.5-flash-lite**
#### JSON array input for the Table tag
Previously, the [Table tag](/tags/table) only accepted key/value pairs, for example:
```json
{
"data": {
"table_data": {
"user": "123456",
"nick_name": "Max Attack",
"first": "Max",
"last": "Opossom"
}
}
}
```
It will now accept an array of objects as well as arrays of primitives/mixed values. For example:
```json
{
"data": {
"table_data": [
{ "id": 1, "name": "Alice", "score": 87.5, "active": "true" },
{ "id": 2, "name": "Bob", "score": 92.0, "active": "false" },
{ "id": 3, "name": "Cara", "score": null, "active": "true" }
]
}
}
```
#### Template search
You can now search the template gallery. You can search by template title, keywords, tag names, and more.
Note that template searches can only be performed if your organization has AI features enabled.

#### New parameters for the Video tag
The [Video tag](/tags/video) now has the following optional parameters:
- `defaultPlaybackSpeed` - The default playback speed when the video is loaded.
- `minPlaybackSpeed` - The minimum allowed playback speed.
The default value for both parameters is `1`.
### Miscellaneous UX improvements
- Owners and Admins will now see a shortcut from the Home page to the Annotator Performance Dashboard.
- On [images](/tags/image), the `smoothing` parameter is now automatically set to `false` by default when using with the [BitmaskLabels tag](/tags/bitmasklabels).
#### Multiple SDK enhancements
We have continued to add new endpoints to our SDK. See our [**SDK releases**](https://github.com/HumanSignal/label-studio-sdk/releases).
#### Performance improvements and optimizations
Multiple performance optimizations for pages and actions.
### Breaking changes
Starting with this release, we will be using an [Alpine Docker image](https://hub.docker.com/_/alpine). Previously we used Debian Trixie.
If you build on top of our image, update your `FROM` line and replace `apt-get` with `apk`.
### Bug fixes
- Fixed an issue where long taxonomy labels would not wrap.
- Fixed an issue where the /version page was not working.
- Fixed an issue where when duplicating older projects tab order was not preserved.
- Fixed several issues related to manual pausing.
- Fixed an issue where the **Updated by** field was not displaying the most recent user to modify the task.
- Fixed an issue where deleted users remained listed in the organization members list.
- Fixed an issue where clicking a user ID on the **Members** page redirected to the Data Manager instead of copying the ID.
- Fixed an issue where buttons on the **Organization** page were barely visible in Dark Mode.
- Fixed an issue where the **Members** modal would sometimes crash when scrolling.
- Fixed an issue where the Data Manager appeared empty when using the browser back button to navigate there from the **Settings** page.
- Fixed an issue where navigating back to the Data Manager from the project **Settings** page using the browser back button would sometimes lead to the Import button not opening as expected.
- Fixed an issue where clicking the **Label All Tasks** drop-down would display the menu options in the wrong spot.
- Fixed an issue where deleted users were appearing in project member lists.
- Fixed an issue where the default value in the TTL field in the organization-level API token settings exceeded the max allowed value in the field.
- Fixed several validation issues with the **Desired ground truth score threshold** field.
- Fixed an issue where Reviewers who were in multiple organizations and had Annotator roles elsewhere could not be assigned to review tasks.
- Fixed an issue where users who belong to more than one organization would not be assigned project roles correctly.
- Fixed an issue where export conversions would not run if a previous attempt had failed.
- Fixed an issue when selecting project members where the search functionality would sometimes display unexpected behavior.
- Fixed an issue where, when opening statistic links from the Members dashboard, closing the subsequent tab in the Data Manager would cause the page to break.
- Fixed an issue with LDAP logins.
- Fixed an issue where videos could not be displayed inside collapsible panels within the labeling config.
- Fixed an issue where taxonomies were not properly displayed in the labeling config edtiro preview.
- Fixed an issue with displaying audio channels when `splitchannels="true"`.
- Fixed an issue preventing annotations from being exported to target storage when using Azure blob storage with Service Principal authentication.
- Fixed an issue with the **Scan all sub-folders** option when using Azure blob storage with Service Principal authentication.
- Fixed an issue where video files would not open using Azure blob storage with Service Principal authentication when pre-signed URLs were disabled.
- Fixed an issue that was sometimes causing export conversions to fail.
- Fixed an issue where users assigned to tasks were not removed from the list of available users to assign.
- Fixed an issue with color definitions getting unexpectedly updated in whitelabeled environments.
- Fixed an issue where API taxonomies were not loading correctly.
- Fixed an issue where the **Scan all subfolders** toggle was appearing for all cloud storage types, even though it is only applicable for a subset.
- Fixed and issue where the **Low agreement strategy** project setting was not updating on save when using a custom matching function.
- Fixed an issue where the Data Manager was not loading for certain projects.
- Fixed an issue where the **Show Log** button was disappearing after deploying a custom matching function.
- Fixed an issue where the **Start Reviewing** button was broken for some users.