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: apache/maven-resolver
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: maven-resolver-1.9.18
Choose a base ref
...
head repository: apache/maven-resolver
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: maven-resolver-1.9.19
Choose a head ref
  • 7 commits
  • 25 files changed
  • 1 contributor

Commits on Nov 22, 2023

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

Commits on Jan 27, 2024

  1. Use one Maven in CI

    This is not a plugin but library, does not need
    to be tested against several Maven versions,
    just to be built with one.
    cstamas committed Jan 27, 2024
    Configuration menu
    Copy the full SHA
    a3e620d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fc969c2 View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2024

  1. [MRESOLVER-522] Improve congested file locks behaviour (#455) (#461)

    Instead to immediately give up and sleep, they will sit a while to enter critical region. This is important for "hot" locks.
    
    Explanation: currently a "loser" will _immediately give up_ and will go to sleep 100ms if cannot enter critical region, even if winner exits critical region within next 5ms. The retry is needed to ensure that it is retried as much as given time/unit takes, that was before consumed by constant retries+sleeps. The logic still works, as if tryLock spends time/unit waiting on criticalRegion (which is possible only on VERY HIGHLY congested locks), there will be no retry happening.
    
    Backport of 089796b
    
    ---
    
    https://issues.apache.org/jira/browse/MRESOLVER-522
    cstamas authored Apr 10, 2024
    Configuration menu
    Copy the full SHA
    b225076 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    31df8a3 View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2024

  1. [MRESOLVER-536] Do not belly up if FS does not support setting mtime (#…

    …469)
    
    This seems more logical step, simply use File.setLastModified
    as it does not throws, and is used all over the 1.9.x codebase.
    
    ---
    
    https://issues.apache.org/jira/browse/MRESOLVER-536
    cstamas authored Apr 16, 2024
    Configuration menu
    Copy the full SHA
    adadd42 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c1b0357 View commit details
    Browse the repository at this point in the history
Loading