Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ jobs:
needs: detect-changes
if: needs.detect-changes.outputs.run-full-ci == 'true'
runs-on: ubuntu-latest
timeout-minutes: 10
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
Expand All @@ -548,9 +548,12 @@ jobs:
- uses: Swatinem/rust-cache@e18b497796c12c097a38f9edb9d0641fb99eee32 # v2
with:
shared-key: "ci"
# --all-targets compiles test/bench/example targets too, so per-bundle
# test-cfg-gate mismatches (e.g. #6607) are caught here, not just by the
# broader combined-feature jobs above (lint-clippy, msrv, release-build).
- name: Check bundle
continue-on-error: ${{ matrix.allow_failure == true }}
run: cargo check --features ${{ matrix.bundle }}
run: cargo check --all-targets --features ${{ matrix.bundle }}

release-build:
name: Release Build Check
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
restores it into the session on `Drop`, covering every exit path; `drain_agent_events` borrows
the receiver instead of consuming it so the guard never loses ownership across the drain loop's
await points.
- `ci`: the per-bundle `bundle-check` job in `ci.yml` now runs `cargo check --all-targets`
instead of a lib/bin-only check (issue #6609, follow-up to #6607/#6608). Every other
`--all-targets` job in CI (`lint-clippy`, `msrv`, `release-build`) always combines feature
strings that enable both `session` and `acp-http` together, so a narrower single bundle like
`ide` was never checked with `--all-targets` anywhere, letting test-only `#[cfg(...)]` gates
narrower than the production code they exercise ship and pass CI indefinitely.

## [0.22.3] - 2026-07-22
### Fixed
Expand Down
Loading