Relax bun version check to allow patch differences #5799

Open
opened 2026-02-16 17:56:57 -05:00 by yindo · 0 comments
Owner

Originally created by @RandyMcMillan on GitHub (Jan 14, 2026).

Originally assigned to: @thdxr on GitHub.

The current bun version check fails when the patch version differs (e.g., 1.3.5 vs 1.3.6), but patch versions should be backward compatible.

Problem:

  • Developers cannot use slightly newer patch versions of bun
  • Blocks development workflow for minor version updates

Solution:

  • Error only when major/minor versions differ (breaking changes)
  • Warn when patch versions differ (compatible changes)
  • Updated both the build script and pre-push hook
    Impact:
  • Improves developer experience
  • Allows minor bun version updates without code changes
Originally created by @RandyMcMillan on GitHub (Jan 14, 2026). Originally assigned to: @thdxr on GitHub. The current bun version check fails when the patch version differs (e.g., 1.3.5 vs 1.3.6), but patch versions should be backward compatible. **Problem:** - Developers cannot use slightly newer patch versions of bun - Blocks development workflow for minor version updates **Solution:** - Error only when major/minor versions differ (breaking changes) - Warn when patch versions differ (compatible changes) - Updated both the build script and pre-push hook **Impact:** - Improves developer experience - Allows minor bun version updates without code changes
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: anomalyco/opencode#5799