-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Comparing changes
Open a pull request
base repository: apache/maven
base: maven-3.9.7
head repository: apache/maven
compare: maven-3.9.8
- 19 commits
- 51 files changed
- 5 contributors
Commits on May 22, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1c166ab - Browse repository at this point
Copy the full SHA 1c166abView commit details
Commits on Jun 3, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1f97d9f - Browse repository at this point
Copy the full SHA 1f97d9fView commit details
Commits on Jun 4, 2024
-
[MNG-8136] Update Eclipse Sisu to 0.9.0.M3 (#1547)
Update Eclipse Sisu 0.9.0.M3 (carries ASM 9.7). --- https://issues.apache.org/jira/browse/MNG-8136
Configuration menu - View commit details
-
Copy full SHA for 2a43483 - Browse repository at this point
Copy the full SHA 2a43483View commit details
Commits on Jun 5, 2024
-
[MNG-8135] Profile activation based on OS properties is no longer cas…
…e insensitive (#1561) Backport of 0456c7c --- https://issues.apache.org/jira/browse/MNG-8135
Configuration menu - View commit details
-
Copy full SHA for 9ee3963 - Browse repository at this point
Copy the full SHA 9ee3963View commit details -
Configuration menu - View commit details
-
Copy full SHA for a2fa050 - Browse repository at this point
Copy the full SHA a2fa050View commit details -
[MNG-7902] Sort plugins in the validation report (#1510)
Co-authored-by: Yueh Chun Wu <[email protected]> (cherry picked from commit dd96794)
Configuration menu - View commit details
-
Copy full SHA for df00ea5 - Browse repository at this point
Copy the full SHA df00ea5View commit details
Commits on Jun 6, 2024
-
[MNG-8066] Default exception handler does not handle recursion (#1558)
If there is a recursion in throwable causes, Maven will hang forever, instead to return. --- https://issues.apache.org/jira/browse/MNG-8066
Configuration menu - View commit details
-
Copy full SHA for 8650720 - Browse repository at this point
Copy the full SHA 8650720View commit details -
[MNG-8142] Hidden bug: JDK profile activator throw NumberFormatEx (#1557
) If property `java.version` is in unexpected format, the activator throws `NumberFormatEx`, that in turn, is caught and reported by `DefaultProfileSelector` w/o any cause. These should be cleanly reported instead: report that `java.version` property is in "unexpected format", and also report why was there are failure to evaluate a property activation. Note 1: Maven allows `-Djava.version` override (!!!), this is exactly what IT MNG-3746 does, but the `NumberFormatEx` went unnoticed, was swallowed, no cause reported. Note 2: This bug was revealed by #1555 as it reported the issue, and later "asserted error free log" which was not error-free. Hence, this bug was simply revealed by improved logging on unrelated issue. --- https://issues.apache.org/jira/browse/MNG-8142
Configuration menu - View commit details
-
Copy full SHA for 200dc02 - Browse repository at this point
Copy the full SHA 200dc02View commit details -
[MNG-8146] Drop commons-lang (#1564)
For start, keeping almost same LOC but the distro zip lost almost 1 MB (was 10MB now is 9MB). Second, am really unsure why it was introduced in the first place, as it merely caused confusion, over StringUtils for example. --- https://issues.apache.org/jira/browse/MNG-8146
Configuration menu - View commit details
-
Copy full SHA for 741deac - Browse repository at this point
Copy the full SHA 741deacView commit details -
[MNG-8140] Always tell why model was discarded as "invalid" (#1555)
The info is there, but we redirect user to rinse-repeat in debug mode, that that creates a TON of output. All is there, just tell why. --- https://issues.apache.org/jira/browse/MNG-8140
Configuration menu - View commit details
-
Copy full SHA for 66266e5 - Browse repository at this point
Copy the full SHA 66266e5View commit details -
[MNG-8141] Model builder should report problems it finds during build (…
…#1556) And not rely that model was validated, which is not true in some cases. Model builder can still easily detect issues with models while building them. Provides "escape hatch" for projects stuck on invalid models in form of user property that can be enabled with `-Dmaven.modelBuilder.failOnInvalidModel=false`, this reverts to _old_ behaviour of maven, and the JavaFX reproducer goes back to error "unable to resolve" errors with uninterpolated `${javafx.platform}` property as classifier. --- https://issues.apache.org/jira/browse/MNG-8141
Configuration menu - View commit details
-
Copy full SHA for 7fcd8c5 - Browse repository at this point
Copy the full SHA 7fcd8c5View commit details
Commits on Jun 7, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 758e054 - Browse repository at this point
Copy the full SHA 758e054View commit details
Commits on Jun 8, 2024
-
[MNG-8141][MNG-8147] Restore profile ID invariance but warn if duplic…
…ate IDs present (#1568) Fix and improvement in one PR as they are closely related. First, this PR restores the ability (broken by MNG-8081) to calculate Profile activation for POMs with duplicate Profile ID. Second, this PR improves UX by warning them about invalid models in their build. The reproducer now looks like this: https://gist.github.com/cstamas/165a610b233f4c03e381a0a2697903eb Notice: * WARNs issued about models (all Maven versions are mute about this) * still, property `${javafx.platform}` properly evaluated just like in 3.9.6 (but not in 3.9.7) * build succeeds (fails in 3.9.7) --- https://issues.apache.org/jira/browse/MNG-8147 https://issues.apache.org/jira/browse/MNG-8141
Configuration menu - View commit details
-
Copy full SHA for dd8c95c - Browse repository at this point
Copy the full SHA dd8c95cView commit details -
Configuration menu - View commit details
-
Copy full SHA for ac5d71a - Browse repository at this point
Copy the full SHA ac5d71aView commit details
Commits on Jun 10, 2024
-
[MNG-8141] Aftermath, and tidy up (#1572)
No (logic) change, merely moved the new code to proper place (validation) to not piggy back onto processing: this is much cleaner. --- https://issues.apache.org/jira/browse/MNG-8141 Inspired by suggestions in master PR #1569
Configuration menu - View commit details
-
Copy full SHA for 02927b7 - Browse repository at this point
Copy the full SHA 02927b7View commit details
Commits on Jun 11, 2024
-
[MNG-8150] Backport TransferListener improvements for Maven 3.9.x (#1576
) Backporting #1575 to Maven 3.9.x. - [x] I hereby declare this contribution to be licenced under the [Apache License Version 2.0, January 2004](http://www.apache.org/licenses/LICENSE-2.0) --- https://issues.apache.org/jira/browse/MNG-8150
Configuration menu - View commit details
-
Copy full SHA for 083716d - Browse repository at this point
Copy the full SHA 083716dView commit details
Commits on Jun 12, 2024
-
[MNG-7758] Report dependency problems for all repository
(cherry picked from commit 768ebbc)
Configuration menu - View commit details
-
Copy full SHA for 37f1f02 - Browse repository at this point
Copy the full SHA 37f1f02View commit details
Commits on Jun 13, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 105d843 - Browse repository at this point
Copy the full SHA 105d843View commit details -
Configuration menu - View commit details
-
Copy full SHA for 36645f6 - Browse repository at this point
Copy the full SHA 36645f6View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff maven-3.9.7...maven-3.9.8