Upgrade JGit to 5.1.7.201904200442-r

This release fixes a regression that was introduced in the previous
release, where an infinite loop could occur when an object was not
found in the packfile and `core.trustfolderstat` was set to `false`.

Bug: Issue 10695
Change-Id: I6f6e4491ad1b8ce785433e500bb924882f91484e
This commit is contained in:
Matthias Sohn 2019-04-22 01:37:40 +02:00 committed by David Pursehouse
parent c26940129c
commit 528ae9e93c

View File

@ -1,6 +1,6 @@
load("//tools/bzl:maven_jar.bzl", "MAVEN_CENTRAL", "maven_jar")
_JGIT_VERS = "5.1.6.201903130242-r"
_JGIT_VERS = "5.1.7.201904200442-r"
_DOC_VERS = _JGIT_VERS # Set to _JGIT_VERS unless using a snapshot
@ -40,28 +40,28 @@ def jgit_maven_repos():
name = "jgit-lib",
artifact = "org.eclipse.jgit:org.eclipse.jgit:" + _JGIT_VERS,
repository = _JGIT_REPO,
sha1 = "c33db190745a8a40524d3076f033ba2ee4616a64",
src_sha1 = "f0e33171d3d413c5a94f07794aef7b71a35772f6",
sha1 = "ef1f744a1117e3d8916f3770486502a56d241b16",
src_sha1 = "7bf5b5298f8936e959a92f62b5151d58feb9c00a",
unsign = True,
)
maven_jar(
name = "jgit-servlet",
artifact = "org.eclipse.jgit:org.eclipse.jgit.http.server:" + _JGIT_VERS,
repository = _JGIT_REPO,
sha1 = "86564c102e81a76f67630d4fde862d137e24c63a",
sha1 = "8306e221fb50985247138adb8ffb0f4cd74c5e9a",
unsign = True,
)
maven_jar(
name = "jgit-archive",
artifact = "org.eclipse.jgit:org.eclipse.jgit.archive:" + _JGIT_VERS,
repository = _JGIT_REPO,
sha1 = "f4ebfa91f4c988f37648b3087830a83973a975be",
sha1 = "fefb13ab8331cc8b13a15b653b1e057de7d3e514",
)
maven_jar(
name = "jgit-junit",
artifact = "org.eclipse.jgit:org.eclipse.jgit.junit:" + _JGIT_VERS,
repository = _JGIT_REPO,
sha1 = "b2e512e920afbac405a678efe92e3b4bacb9a1df",
sha1 = "f73f1eacc38f8329d9453f1d0353e82404379a89",
unsign = True,
)