diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2022-11-16 10:15:30 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2022-11-16 10:15:30 +0100 |
commit | 0fb9d26eff27f3843a389e3b41e8331fee412a6c (patch) | |
tree | 3ca60d7aa31834504d22e87d55d59dd1db585c55 /org.eclipse.jgit/src/org/eclipse/jgit/lib | |
parent | f288de7490ee9bc82f688de40295f14adb18e454 (diff) | |
parent | 1cd9a1f804fce2278cd6f8bfaf9b9a27310f5f8c (diff) | |
download | jgit-0fb9d26eff27f3843a389e3b41e8331fee412a6c.tar.gz jgit-0fb9d26eff27f3843a389e3b41e8331fee412a6c.zip |
Merge branch 'stable-6.3'
* stable-6.3:
[benchmarks] Remove profiler configuration
Add SHA1 benchmark
[benchmarks] Set version of maven-compiler-plugin to 3.8.1
Fix running JMH benchmarks
Add option to allow using JDK's SHA1 implementation
Fix API breakage caused by extracting WorkTreeUpdater
Extract Exception -> HTTP status code mapping for reuse
Don't handle internal git errors as an HTTP error
Ignore IllegalStateException if JVM is already shutting down
Allow to perform PackedBatchRefUpdate without locking loose refs
Change-Id: Ib58879be292c54a2a7f4936ac0986997985c822b
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/lib')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java index 2342cad0d7..47a572b83a 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java @@ -538,6 +538,13 @@ public final class ConfigConstants { public static final String CONFIG_KEY_SUPPORTSATOMICFILECREATION = "supportsatomicfilecreation"; /** + * The "sha1Implementation" key in the "core" section + * + * @since 5.13.2 + */ + public static final String SHA1_IMPLEMENTATION = "sha1implementation"; + + /** * The "noprefix" key in the "diff" section * @since 3.0 */ |