Bump JGit to e74f3855a

Notable updates for Gerrit include:
3e7281662 UploadPackServlet#doPost use try-with-resource to ensure up is closed
b39972f8a Update Apache Mina SSHD to 2.9.2
1e04046a6 Fix crashes on rare combination of file names (this issue has
been seen during offline reindex of changes with specific merge
commits).

The full change log is:
$ git log --oneline --no-merges e81c5135f..e74f3855a
ec7c61eac BatchRefUpdate: Consistent switch branches in ref update
2b21d9bbb RefWriter#writePackedRefs: Remove a redundant "if" check
ebc1f7d65 commitgraph package: fix exports/imports, add @since tag for new API
cf70e7cbe CommitGraph: implement commit-graph writer
8e1053ac4 [releng] bump japicmp base version
339b38340 Prepare 6.4.1-SNAPSHOT builds
acd079b37 JGit v6.4.0.202211300538-r
cb9f058f9 Fix crashes on rare combination of file names
2e28f27c2 Prepare 6.5.0-SNAPSHOT builds
ce0c739f2 Prepare 6.4.0-SNAPSHOT build
a3a726be6 JGit v6.4.0.202211231055-rc1
c14e6f5c6 [pgm] Add options --name-only, --name-status to diff, log, show
3d522c690 Update Orbit to R20221123021534 for 2022-12
19de96785 RBE: Update toolchain with bazel-toolchains 5.1.2 release
396508e28 SshTestGitServer: : ensure UploadPack is closed to fix resource leak
bde09c185 UploadPackTest: ensure UploadPack is closed to fix resource leak
4ddc64a2d [pgm] Ensure UploadPack is closed to fix resource leak
3e7281662 UploadPackServlet#doPost use try-with-resource to ensure up is closed
cddff2b7f Fix warnings in PatchApplierTest
143188e83 Fix boxing warnings in TransportTest
f849b8d0d Silence warnings about unclosed BasePackPushConnection
9fc9ae6de Fix warning about non-externalized String
af87046e5 Remove unused imports
3301032c6 Suppress non-externalized String warnings
f67cca6cb Remove unused API problem filters
fec271c11 Silence API errors
41b33a16b Silence API errors
aa9f736c3 Silence API warnings
ad994f7f6 Add 4.26 target platform
b06778c46 Use "releases" repository for 4.25 target platform
b39972f8a Update Apache Mina SSHD to 2.9.2
282d0b4f8 Update Orbit to S20221118032057
bd515f1c2 DfsBlockCache: Report IndexEventConsumer metrics for reverse indexes.
accacc27a DfsStreamKey: Replace ForReverseIndex to separate metrics.
1c886d92f RawText.isBinary(): handle complete buffer correctly
ed9979797 PackExt: Add a reverse index extension.
1e04046a6 Fix crashes on rare combination of file names

Change-Id: I99ff61bfd87c0732a8240ae60e17500805028ecc
Release-Notes: Bump JGit to e74f3855a
1 file changed
tree: 8355ef33773f6284b69b57c7db8e14121650760a
  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. web-dev-server.config.mjs
  40. WORKSPACE
  41. 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.