Update JGit to c82818e0e

This update includes the following commits:

c82818e0e Bazel: Remove unused dependencies flagged by unused_deps
f8eefdb00 Bazel: Format build file with buildifier
58dd6496e Upgrade wagon-ssh to 3.4.3
7672f2594 Update spring-boot-maven-plugin to 2.4.4
afd5c6153 Update spotbugs-maven-plugin to 4.2.2
60c32aa22 Update japicmp-maven-plugin to 0.15.3
502bfff7d Refactor CommitCommand to improve readability
18c735c47 CommitCommand: fix formatting
b08c599fb CommitCommand: remove unncessary comment
f43cb3605 Ensure post-commit hook is called after index lock was released
fd3edc7bf sshd: try all configured signature algorithms for a key
6faee128f sshd: modernize ssh config file parsing
ffc1f9b02 sshd: implement ssh config PubkeyAcceptedAlgorithms
41643dcb7 Optimize RevWalkUtils.findBranchesReachableFrom()
0bd2f4bf7 Introduce getMergedInto(RevCommit commit, Collection<Ref> refs)
4a78d911c Skip detecting content renames for large files
84ed57d2f Remove unused API problem filters
33a055e63 Document http options supported by JGit
808c4495c HTTP cookies: do tilde expansion on http.cookieFile
232876421 Prepare 5.12.0-SNAPSHOT builds
e5aa53fec Update Orbit to R20210223232630
1f368f886 Prepare 5.11.1-SNAPSHOT builds
30b6887d4 JGit v5.11.0.202103091610-r
7a3f62818 Manually set status of jmh dependencies
8d712c846 Update DEPENDENCIES report for 5.11.0
663f29e15 Add dependency to dash-licenses
2a6b2eddc PackFile: Add id + ext based constructors
093020864 GC: deleteOrphans: Use PackFile
c57b2935c PackExt: Convert to Enum
616764183 Restore preserved packs during missing object seeks
7fbff3588 Pack: Replace extensions bitset with bitmapIdx PackFile
49c89285a PackDirectory: Use PackFile to ensure we find preserved packs
dc7f0bfee GC: Use PackFile to de-dup logic
971dafd30 Create a PackFile class for Pack filenames
1172c0b28 Prepare 5.11.0-SNAPSHOT builds
d60dd7231 JGit v5.11.0.202103031150-rc1
40d6eda3f HTTP: cookie file stores expiration in seconds
a534d3d90 Update Orbit to S20210223232630
616a88895 LFS: handle invalid pointers better
b12637244 Fix errorprone configuration for maven-compiler-plugin with javac
83d4f19a3 Prepare 5.11.0-SNAPSHOT builds
9eacae28d JGit v5.11.0.202102240950-m3

Change-Id: Ib094b01ba22380195e8b10dfa40465b5088a9557
1 file changed
tree: 7841a103d92a16e7410679a82ac6e443d6caf990
  1. .settings/
  2. .ts-out/
  3. antlr3/
  4. contrib/
  5. Documentation/
  6. e2e-tests/
  7. java/
  8. javatests/
  9. lib/
  10. modules/
  11. plugins/
  12. polygerrit-ui/
  13. prolog/
  14. prologtests/
  15. proto/
  16. resources/
  17. tools/
  18. webapp/
  19. .bazelignore
  20. .bazelproject
  21. .bazelrc
  22. .bazelversion
  23. .editorconfig
  24. .git-blame-ignore-revs
  25. .gitignore
  26. .gitmodules
  27. .gitreview
  28. .mailmap
  29. .pydevproject
  30. .zuul.yaml
  31. BUILD
  32. COPYING
  33. INSTALL
  34. Jenkinsfile
  35. package.json
  36. README.md
  37. SUBMITTING_PATCHES
  38. version.bzl
  39. WORKSPACE
  40. yarn.lock
README.md

Gerrit Code Review

Gerrit is a code review and project management tool for Git based projects.

Build Status Maven Central

Objective

Gerrit makes reviews easier by showing changes in a side-by-side display, and allowing inline comments to be added by any reviewer.

Gerrit simplifies Git based project maintainership by permitting any authorized user to submit changes to the master Git repository, rather than requiring all approved changes to be merged in by hand by the project maintainer.

Documentation

For information about how to install and use Gerrit, refer to the documentation.

Source

Our canonical Git repository is located on googlesource.com. There is a mirror of the repository on Github.

Reporting bugs

Please report bugs on the issue tracker.

Contribute

Gerrit is the work of hundreds of contributors. We appreciate your help!

Please read the contribution guidelines.

Note that we do not accept Pull Requests via the Github mirror.

Getting in contact

The Developer Mailing list is repo-discuss on Google Groups.

License

Gerrit is provided under the Apache License 2.0.

Build

Install Bazel and run the following:

    git clone --recurse-submodules https://gerrit.googlesource.com/gerrit
    cd gerrit && bazel build release

Install binary packages (Deb/Rpm)

The instruction how to configure GerritForge/BinTray repositories is here

On Debian/Ubuntu run:

    apt-get update & apt-get install gerrit=<version>-<release>

NOTE: release is a counter that starts with 1 and indicates the number of packages that have been released with the same version of the software.

On CentOS/RedHat run:

    yum clean all && yum install gerrit-<version>[-<release>]

On Fedora run:

    dnf clean all && dnf install gerrit-<version>[-<release>]

Use pre-built Gerrit images on Docker

Docker images of Gerrit are available on DockerHub

To run a CentOS 8 based Gerrit image:

    docker run -p 8080:8080 gerritcodereview/gerrit[:version]-centos8

To run a Ubuntu 20.04 based Gerrit image:

    docker run -p 8080:8080 gerritcodereview/gerrit[:version]-ubuntu20

NOTE: release is optional. Last released package of the version is installed if the release number is omitted.