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-git/ruby-git
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.0.3
Choose a base ref
...
head repository: ruby-git/ruby-git
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 17 commits
  • 25 files changed
  • 2 contributors

Commits on Jul 8, 2025

  1. fix: remove deprecation from Git::Path

    This class is internal only as well as the classes that inherit
    from it (Git::Index and Git::WorkingTree). Remove the
    deprecation warning and just remove the deprecated code.
    jcouball committed Jul 8, 2025
    Configuration menu
    Copy the full SHA
    ab1e207 View commit details
    Browse the repository at this point in the history
  2. fix: remove deprecation from Git::Stash

    Since Git::Stash#initialize is an internal only method, remove
    the deprecation warning and removed the deprecated code.
    jcouball committed Jul 8, 2025
    Configuration menu
    Copy the full SHA
    9da1e91 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    abb0efb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ab17621 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e6ccb11 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ee11137 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2025

  1. chore: release v4.0.4

    jcouball committed Jul 9, 2025
    Configuration menu
    Copy the full SHA
    df3ea35 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e27255a View commit details
    Browse the repository at this point in the history
  3. docs: minor change to the architecture redesign document

    Was originally meant to be entered as an issue, but now a document in the repository so changed "issue" to "document".
    jcouball committed Jul 9, 2025
    Configuration menu
    Copy the full SHA
    b4634b5 View commit details
    Browse the repository at this point in the history
  4. docs: rearrange README so that Summary is at the top

    This change moves all the project announcement to a new
    section at the end of the document. They are discoverable
    in the table of contents at the top of the document still.
    jcouball committed Jul 9, 2025
    Configuration menu
    Copy the full SHA
    3d2c473 View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2025

  1. Configuration menu
    Copy the full SHA
    8e6a11e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4430478 View commit details
    Browse the repository at this point in the history
  3. chore: release v4.0.5

    jcouball committed Aug 20, 2025
    Configuration menu
    Copy the full SHA
    4a7700d View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2025

  1. build: refactor Rakefile by splitting tasks into separate files

    The monolithic 79-line Rakefile has been refactored into a clean
    15-line loader that dynamically imports task definitions from the
    tasks/ directory.
    
    Changes:
    - Created tasks/ directory with 5 focused rake files:
      - tasks/test.rake - test execution tasks
      - tasks/rubocop.rake - RuboCop linting tasks
      - tasks/yard.rake - YARD documentation tasks
      - tasks/gem_tasks.rake - gem building and release tasks
      - tasks/test_gem.rake - gem sanity check task
    
    - Main Rakefile now:
      - Loads all .rake files from tasks/ directory
      - Dynamically builds default task list based on available tasks
      - Simplified from 79 lines to 15 lines
    
    - Moved platform-specific logic (JRuby/TruffleRuby check) into
      yard.rake where it belongs
    
    - Maintained all original functionality and default task behavior:
      - Default tasks: test, rubocop, yard, yardstick:coverage, build
      - yardstick remains commented out of defaults (too many warnings)
    
    This refactoring improves maintainability and separation of concerns
    while preserving all existing rake task functionality.
    jcouball committed Nov 11, 2025
    Configuration menu
    Copy the full SHA
    bd69f9b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4a03b5c View commit details
    Browse the repository at this point in the history
  3. fix: standardize deprecation handling and consolidate tests (fixes #842)

    Replace invalid Git.deprecation/Git.deprecated calls with Git::Deprecation.warn.
    Consolidate all deprecation-related tests into tests/units/test_deprecations.rb.
    
    Changes:
    - Base: use Git::Deprecation.warn in is_* methods and set_index/set_working
    - Object::Commit#set_commit warns properly
    - Consolidated log/base/object deprecation tests into one file
    - Removed redundant test files
    
    All tests pass locally: 430 tests, 1582 assertions.
    jcouball committed Nov 11, 2025
    Configuration menu
    Copy the full SHA
    a731110 View commit details
    Browse the repository at this point in the history
  4. chore: release v4.0.6

    jcouball committed Nov 11, 2025
    Configuration menu
    Copy the full SHA
    c81311f View commit details
    Browse the repository at this point in the history
Loading