> ## Documentation Index
> Fetch the complete documentation index at: https://docs.qlty.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# Changelog - August 2025

## Workspace pausing

**August 4, 2025**

You can now pause a Workspace from its settings page. While paused, Qlty stops running analysis and coverage reporting — useful while a repository is dormant or when you need to temporarily halt billable usage without deleting the Workspace.

## Workspace Manager permissions

**August 18, 2025**

A new Workspace Manager role lets you delegate workspace-level administration to specific users without granting them GitHub Organization Owner permissions. See [User Permissions](/cloud/permissions) for the full permissions matrix.

## Delegated billing

**August 21, 2025**

Delegated billing lets a single Workspace manage payment and subscription for one or more other Workspaces. This is useful for agencies, consultancies, and parent organizations that pay for multiple Workspaces.

## Workspace Activation page

**August 29, 2025**

A new Activation page in Workspace Settings shows which Projects are activated, with sorting, filtering, and pagination — making it easier to manage Qlty across large organizations.

## Analysis Minutes progress bar

**August 5, 2025**

Workspace billing pages now show an Analysis Minutes progress bar and a usage breakdown table so you can see at a glance how your build minutes are being consumed.

## Default coverage validation

**August 4, 2025**

`qlty coverage publish` now validates coverage reports by default, catching path mismatches and malformed reports before they corrupt your metrics. If you need to temporarily disable validation while fixing a report, use `--no-validate`:

```bash lines theme={"system"}
qlty coverage publish --no-validate coverage.lcov
```

See [Path Fixing](/coverage/path-fixing) for details.

## GitHub Merge Queue support

**August 11, 2025**

The Qlty CLI now has initial support for GitHub Merge Queues. We also detect merge groups across any CI provider that listens to GitHub push events (#2320).

## ktlint plugin

**August 27, 2025**

We've added a plugin for [ktlint](https://github.com/pinterest/ktlint), an anti-bikeshedding Kotlin linter and formatter.

```bash lines theme={"system"}
qlty plugins enable ktlint
```

## zizmor plugin

**August 4, 2025**

We've added a plugin for [zizmor](https://github.com/woodruffw/zizmor), a security analyzer for GitHub Actions workflows.

```bash lines theme={"system"}
qlty plugins enable zizmor
```

## JaCoCo source path override

**August 20, 2025**

Java and Kotlin projects with non-standard source layouts can now point JaCoCo coverage uploads at the right directories by setting the `JACOCO_SOURCE_PATH` environment variable before running `qlty coverage publish`.
