8000 Comparing v13.0.2...v13.0.3 · ruby/rake · 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: ruby/rake
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v13.0.2
Choose a base ref
...
head repository: ruby/rake
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v13.0.3
Choose a head ref
  • 3 commits
  • 4 files changed
  • 2 contributors

Commits on Dec 20, 2020

  1. Fix breaking change of execution order on TestTask

    Due to #357, execution order on Rake 13.0.2 changes from Rake 13.0.1.
    
    Example:
    ```
    Rake::TestTask do |t|
      t.test_files = [
        "test/a.rb",
        "test/b.rb",
      ]
    end
    ```
    
    On 13.0.2, Rake executes test/b.rb before test/a.rb because test/a.rb are loaded before rake_test_loader.rb.
    rake_test_loader.rb executes the Ruby code in ARGV using Kernel.#require, but does not execute test/a.rb which is already loaded.
    
    In addition, Rake 13.0.1 allows specifying test_files without .rb but 13.0.2 doesn't allows.
    This commit also fixes this problem.
    ```
    Rake::TestTask do |t|
      t.test_files = [
        "test/setup",
        "test/a.rb",
      ]
    end
    ```
    ysakasin committed Dec 20, 2020
    Configuration menu
    Copy the full SHA
    37635e6 View commit details
    Browse the repository at this point in the history

Commits on Dec 21, 2020

  1. Merge pull request #368 from ysakasin/fix_test_execution_order

    Fix breaking change of execution order on TestTask
    hsbt authored Dec 21, 2020
    Configuration menu
    Copy the full SHA
    b6bf56c View commit details
    Browse the repository at this point in the history
  2. Bump version to 13.0.3

    hsbt committed Dec 21, 2020
    Configuration menu
    Copy the full SHA
    c2eeae2 View commit details
    Browse the repository at this point in the history
Loading
0