Skip to content

chore(deps): split dependabot grouping + safe bumps from closed #115#118

Merged
runonthespot merged 1 commit into
mainfrom
chore/dependabot-config-and-safe-bumps
May 24, 2026
Merged

chore(deps): split dependabot grouping + safe bumps from closed #115#118
runonthespot merged 1 commit into
mainfrom
chore/dependabot-config-and-safe-bumps

Conversation

@runonthespot
Copy link
Copy Markdown
Contributor

Summary

Two related pieces of cleanup after closing #115 (which mixed safe patch bumps with an rmcp 0.x→1.x major-version break that doesn't compile).

1. Add `.github/dependabot.yml`

Repo had no dependabot config — bumps were running on whatever defaults dependabot chose. That meant rmcp's major-version PR got grouped with 7 safe patch bumps; the major-version compile break poisoned the whole group and we had to close it.

New config splits cargo bumps into two groups:

  • `cargo-safe` — patch + minor for everything except rmcp and ort. Auto-mergeable in spirit (CI still gates).
  • `cargo-flagged` — rmcp(-macros) and ort(-sys) only. Each gets its own PR; a major bump there is a hand migration.

Also configures the existing npm groupings (ck-vscode, docs-site) and a github-actions group.

2. Cherry-pick the 7 safe bumps from #115

Cargo.lock-only update via `cargo update -p ...`. None of these need a Cargo.toml change — all version constraints in `[workspace.dependencies]` were already permissive enough.

crate before after
openssl 0.10.75 0.10.80 (fixes `cipher_update_inplace` buffer overflow)
openssl-sys 0.9.111 0.9.116
bytes 1.11.0 1.11.1
lz4_flex 0.11.5 0.11.6
quinn-proto 0.11.13 0.11.14
rand 0.8.5 0.8.6
rustls-webpki 0.103.9 0.103.13
time 0.3.46 0.3.47
time-macros 0.2.26 0.2.27

The openssl bump is the only one with anything beyond a routine patch — it includes a buffer-overflow fix in AES key-wrap-with-padding.

What this prevents going forward

Once the dependabot.yml lands, the next scheduled cargo run produces:

  • One `cargo-safe` PR with whatever patch/minor bumps are pending
  • A separate PR per rmcp/ort major bump

So #115's pattern (safe bumps held hostage by a hand-migration) doesn't recur.

Test plan

  • `cargo check --workspace` passes against bumped lockfile
  • `cargo fmt --all --check` clean
  • CI green on this PR

🤖 Generated with Claude Code

Two pieces:

**Add .github/dependabot.yml** with explicit grouping:
- \`cargo-safe\`: patch+minor for all crates EXCEPT rmcp(-macros) and
  ort(-sys). This is the group that should auto-mergeable.
- \`cargo-flagged\`: rmcp and ort only, in their own PRs so a major
  rmcp bump can't block a batch of safe patches like #115 did.
- Also configures the npm groupings (ck-vscode, docs-site) and a
  github-actions group.

**Cherry-pick the 7 safe bumps** that were in #115 before it was
closed for the rmcp 0.x→1.x compile break:
- bytes 1.11.0 → 1.11.1
- lz4_flex 0.11.5 → 0.11.6
- openssl 0.10.75 → 0.10.80 (+ openssl-sys 0.9.111 → 0.9.116) —
  picks up the cipher_update_inplace buffer-overflow fix
- quinn-proto 0.11.13 → 0.11.14
- rand 0.8.5 → 0.8.6
- rustls-webpki 0.103.9 → 0.103.13
- time 0.3.46 → 0.3.47 (+ time-macros 0.2.26 → 0.2.27)

Cargo.lock-only. All version constraints in workspace Cargo.toml
were already permissive enough; no Cargo.toml change needed.

Once this lands, future dependabot runs should produce small clean
PRs in the cargo-safe group, with rmcp/ort upgrades arriving
separately for human review.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
@runonthespot runonthespot merged commit 03f3606 into main May 24, 2026
14 checks passed
@runonthespot runonthespot deleted the chore/dependabot-config-and-safe-bumps branch May 24, 2026 12:57
runonthespot added a commit that referenced this pull request May 24, 2026
Ships everything merged today on top of 0.7.7:

- #117 npm distribution as @beaconbay/ck-search
- #118 dependabot config + safe cargo bumps (incl. openssl CVE fix)
- #119 tar 6 → 7 + engines.node >= 18
- #120 GitHub Actions: checkout v6, codeql v4
- #121 @types/vscode patch
- #122 vue patch (docs-site)
- #125 cargo-safe 20-pack (anyhow, tokio, clap, fastembed 5.13, uuid, etc.)
- #127 shlex 1.3 → 2.0

First release that also publishes to npm. See CHANGELOG.md.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant