Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Consider releasing new version to resolve JGit issue #394

Closed
ciscoo opened this issue Oct 19, 2023 · 0 comments
Closed

Consider releasing new version to resolve JGit issue #394

ciscoo opened this issue Oct 19, 2023 · 0 comments

Comments

@ciscoo
Copy link

ciscoo commented Oct 19, 2023

Several of my company's build started failing due CVE-2023-4759 which was flagged by our internally hosted IQ Server.

None of our projects directly depend on JGit, but instead it is a transitive dependency from Gradle plugins such as gradle-git-publish and com.diffplug.spotless.

This is easily resolved using a constraint such as:

buildscript {
    dependencies {
        constraints {
            classpath("org.eclipse.jgit:org.eclipse.jgit") {
                version {
                    strictly("6.7.0.202309050840-r")
                }
            }
        }
    }
}

However, I think it would be better if a new version of this library was released since rich versions are used, so it should pick up the latest version when built/published.

ajoberstar added a commit that referenced this issue Oct 21, 2023
Testing against Java 21 and Gradle 8.4

Also updates to latest JGit, which resolves #394.
ajoberstar added a commit that referenced this issue Oct 21, 2023
Testing against Java 21 and Gradle 8.4

Also updates to latest JGit, which resolves #394.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant