8000 Comparing 0.29.6...0.29.7 · infection/infection · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
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: infection/infection
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.29.6
Choose a base ref
...
head repository: infection/infection
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.29.7
Choose a head ref
  • 7 commits
  • 97 files changed
  • 2 contributors

Commits on Jun 29, 2024

  1. Run e2e tests in parallel (#1990)

    * Run e2e tests in parallel
    
    * Change function name
    
    * Install composer dependencies in parallel
    
    * Fix syntax issue
    
    * Run composer in parallel for e2e tests
    
    * Temp change to fail e2e tests
    
    * Revert "Temp change to fail e2e tests"
    
    This reverts commit 61f0642.
    
    * Simplify initialization of error.log
    
    * Initialize infection executable variable in function
    maks-rafalko authored Jun 29, 2024
    Configuration menu
    Copy the full SHA
    29902ca View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2679f01 View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2024

  1. Configuration menu
    Copy the full SHA
    027ea64 View commit details
    Browse the repository at this point in the history
  2. Un-prophecyze in favor of phpunit mock (#1993)

    * Un-prophecyze in favor of phpunit mock
    
    * update phpstan
    sidz authored Jul 14, 2024
    Configuration menu
    Copy the full SHA
    35d0f98 View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2024

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

Commits on Sep 8, 2024

  1. Add PHP 8.4 to the pipeline (#1992)

    * Add PHP 8.4 to the pipeline
    
    * Update symfony/phpunit-bridge to minimum supported version (5.4)
    
    * Install latest 9.6 to avoid deprecations
    
    * Use new phpunit config structure
    sidz authored Sep 8, 2024
    Configuration menu
    Copy the full SHA
    92384c3 View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2024

  1. Fallback to the simple diff colorizer (previous implementation) for m…

    …ultiline diffs. (#2000)
    
    We introduced inline highlighter for diffs in #1974 (thanks to @Slamdunk). However, there was an incorrect assumption that we only have one-line diffs. This is not true.
    
    The case which is currently fails is the following:
    
    ```diff
    @@ @@
          */
         protected function name()
         {
    -        return strtolower(get_class($this));
    +        strtolower(get_class($this));
    +        return null;
         }
     }
    ```
    
    I check how `diff-so-fancy` works with multiline diffs, and it turned out that it just skips inline diffs, using simple algorithm, see images below.
    
    So, for the cases when we have multiline diffs, I just added fallback - our old algorithm of colorizing diffs.
    maks-rafalko authored Oct 6, 2024
    Configuration menu
    Copy the full SHA
    243d501 View commit details
    Browse the repository at this point in the history
Loading
0