Skip to content

Conversation

Copy link
Contributor

Copilot AI commented Jan 13, 2026

Updated all dependencies to their latest compatible minor and patch versions within semver constraints.

Changes

Dependency bumps:

  • env_logger: 0.9 → 0.11
  • dialoguer: 0.10.4 → 0.11
  • handlebars: 4.3 → 4.5
  • syntect: 5.0 → 5.3
  • regex: 1.8.1 → 1.10
  • built: 0.5 → 0.6
  • ureq: 2.5 → 2.10

Breaking changes:

  1. env_logger 0.11 - Styling API removed, replaced with ANSI escape codes:
// Before: buf.style().set_color(Color::Yellow)
// After: direct ANSI codes
writeln!(buf, "\x1b[33m{}: {}\x1b[0m", record.level(), record.args())
  1. dialoguer 0.11 - Input instances no longer reusable, now created per interaction:
// Before: reused mut input in loop
// After: fresh instance per prompt
let value: String = if use_colors {
    dialoguer::Input::with_theme(&theme)
        .with_prompt(key.clone())
        .interact_text()
        .unwrap()
} else { /* ... */ };
  1. httpx - Added edition = "2021" to suppress compiler warning

Ran cargo update to pull latest transitive dependencies (78 packages updated).

Original prompt

Please update the minor and/or patch version of all dependencies, and handle any breaking changes if they occure.


✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

…g changes

Co-authored-by: mantono <7093365+mantono@users.noreply.github.com>
Copilot AI changed the title [WIP] Update minor and patch versions of all dependencies Update dependencies to latest minor/patch versions Jan 13, 2026
@mantono mantono marked this pull request as ready for review January 13, 2026 22:16
Copilot AI requested a review from mantono January 13, 2026 22:16
@mantono mantono merged commit e8beb17 into master Jan 14, 2026
4 checks passed
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.

2 participants