Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: laravel/boost
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.4.9
Choose a base ref
...
head repository: laravel/boost
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.4.10
Choose a head ref
  • 4 commits
  • 6 files changed
  • 4 contributors

Commits on Jun 4, 2026

  1. Update CHANGELOG

    pushpak1300 authored and github-actions[bot] committed Jun 4, 2026
    Configuration menu
    Copy the full SHA
    f6ae3c1 View commit details
    Browse the repository at this point in the history
  2. fix: preserve literal dollar-sign patterns when replacing guidelines …

    …block (#840)
    
    GuidelineWriter::write() used preg_replace() with user-provided guidelines
    as the replacement string. PHP's preg_replace() interprets $N and \N in
    replacement strings as backreferences — since the pattern has no capture
    groups, any $99, $1, \1, etc. in user guidelines silently evaluated to
    empty string on every boost:update run.
    
    Fix: use preg_replace_callback() so the callback return value is treated as
    a literal string with no backreference interpretation.
    
    Adds two regression tests covering $N dollar amounts and backslash patterns
    in guidelines content during the in-place replace path.
    
    Closes #800 (Bug 2)
    impruthvi authored Jun 4, 2026
    Configuration menu
    Copy the full SHA
    676b89f View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2026

  1. Configuration menu
    Copy the full SHA
    9c28875 View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2026

  1. Configuration menu
    Copy the full SHA
    080189f View commit details
    Browse the repository at this point in the history
Loading