Skip to content

Releases: gitblit-org/gitblit

1.9.3

09 Apr 17:03
Compare
Choose a tag to compare

Update Note

The 1.9 minor version is the last to support Java 7. From 1.10 on Gitblit will require Java 8.


!! IMPORTANT SECURITY FIX FOR CONFIG USER SERVICE !!

There is a security vulnerability in version 1.9.2, which allows an attacker to gain
elevated access rights. This is present when the Config User Service is used as the
user service, which is the default.

Version 1.9.2 introduced a new implementation to store user data in the user config file
which holds user name, password, access rights etc. This was done to solve problems with
very large user bases (PR #1364). This new implementation does not properly escape all
control characters, like newline and tab. As a result, a normal user, when logged into
Gitblit, can edit his profile data and enter values in e.g. the email address that are
interpreted as control characters in the text file stored on disk. This allows the malicious
user to give themselves e.g. elevated access rights on their account.

This is fixed in 1.9.3. Updates of existing installations should be made to 1.9.3, not 1.9.2.

Many thanks to Github user @YYHYlh for finding and reporting this issue (issue #1410).

Security

  • Fix escaping control characters in config user service, resolving a security vulnerability. (issue #1410)

Full release notes on gitblit.com

1.9.2

05 Feb 15:52
Compare
Choose a tag to compare

Update Note

The 1.9 minor version is the last to support Java 7. From 1.10 on Gitblit will require Java 8.


Fixes

Fixes

  • Fix raw links broken for branches with a forward slash in the name (issue #1290, issue #1234, issue #813)
  • Fix markdown links to files in subfolders (issue #1358, PR #1392 by @TomaszSzt)
  • Fix high CPU load when saving huge users.conf file (PR #1364 by @Curly060)
  • Fix broken encoding in Norwegian language file (issue #834, PR #1379)
  • Fix various issues (typos, broken and duplicate keys) in language properties files (PR #1380 by @flaix)
  • Fix mirrored HTTP(S) with a user name and password (issue #1059, PR #1381 by @edram)
  • Fix relative time display being off on activity page (issue #800, issue #1248, PR #1382)
  • Fix URL encoding for links to raw view for files (issue #1375, PR #1383)
  • Resolve StackOverflowErrors on page serialization (issue #1011, PR #1141 by @tomaswolf)
  • Fix double encoding links in Markdown/Wiki pages (issue #864)
Changes

Changes

  • Updated traditional Chinese translation (PR #1367 by @YMNNs)
  • Make it possible to call the Windows batch commands on the command line from a different folder (PR #1370 by @Zwixx)
  • Updated Japanese translation (PR #1398 by @TakehideMorimoto)
Additions

Additions

  • Add service scripts for FreeBSD (PR #1345 by @davehofmann)
  • Add Russian translation (PR #1343 by @vhot2076)

Full release notes on gitblit.com

1.9.1

05 Apr 11:17
Compare
Choose a tag to compare

Update Note

When you have Gitblit installed as a service under Linux or Windows, you may need to edit your service script/definition. The command line to start Gitblit needs to be different, the classpath and class are speficied now.

See notes for release 1.9.0.


      !! IMPORTANT BUG FIX FOR PASSWORD HASH UPGRADE !!
      
      There is a severe bug in version 1.9.0, which can lock users out from their accounts.
      When updating from a previous version to 1.9.0, existing stored passwords are rehashed
      with a more secure password hash mechanism when a user first logs in after the update.
      This happens when the password hashing mechanism was left at default and not specifically
      set in the configuration. An error in the implementation will destroy the stored password
      instead and the user can no longer log in.

      Only certain circumstances will lead to this wrong behaviour. It will most likely
      affect users of the Gitblit Docker container. If you did not encounter any problems,
      update to 1.9.1 to be on the safe side. If you were hit by this bug, we are deeply sorry.
      There is no way to fix the affected accounts other than to set a new password.

      This is fixed in 1.9.1. Updates of existing installations should be made to 1.9.1, not 1.9.0.
Fixes

Fixes

  • Fixed broken password hash upgrade destroying existing stored passwords on update.
  • Fixed Linux service scripts to use -cp parameter instead of -jar.

Full release notes on gitblit.com

1.9.0

01 Feb 09:51
Compare
Choose a tag to compare

Update Note

Gitblit uses Servlet 3.0 and thus drops support for Tomcat 6. Run on Tomcat 6 at your own risk.

With the update to Lucene 5.5.2 reindexing of the tickets is necessary. This is done automatically during the first server start after an upgrade. Depending on the amount of tickets you have, this could take a little while. The old index is kept, so that a downgrade is still possible without losing information. The old index can be deleted, when a downgrade is no longer required.

The interface for the ITicketService changed. If you have your own derived implementation, rename start to onStart. (see commit 63dbdfd)

To support Java 9+, Gitblit can no longer load JARs from the 'ext' folder by itself. In order to include the folder, it needs to be added to the classpath explicitly by changing the command line. Check the new start scripts to see the new required command line.

The 1.9 minor version will be the last to support Java 7. From 1.10 on Gitblit will require Java 8.

When the realm.ldap.bindpattern property is set, GitBlit will only bind as the user to LDAP, not to a manager account or anonymously.

Older password storage mechanisms are deprecated, PBKDF2 is the new default. When you switch from plaintext to a hashed scheme, or from the older hashed to the new PBKDF2 scheme, the stored password of a user will be rehashed with the more secure mechanism when the user logs in.


      Highlights:
      
      * Collapsible and nested repository groups on the repositories page
      * Runs on Java 11
      * Retrieve SSH keys from LDAP
      * User language preference
      * Option to merge ticket branches fast-forward or with merge commit

Security

  • Change authentication cookie to use random value instead of user information (issue #1063, PR #1116)
  • Increase cookie security (PR #1167)
Fixes

Fixes

  • Fixed wrong HTML entity (&rt;) in HTML emails (PR #1105)
  • Fixed Dutch translation (PR #1130)
  • Changed LDAP binding strategies, to correctly find team membership (issue #833, issue #920, PR #247, PR #1149)
  • Fixed disabled links in the PagerPanel to really be disabled (PR #1147)
  • Set "can admin" permission on LDAP users and teams correctly (PR #1152)
  • Fixed user mentions in tickets (issue #985)
  • Fixed JEE Servlet 3.0 definition (issue #1132, PR #1178)
  • Fixed proxy setup documentation (PR #1183)
  • Fixed bug with reverse proxy when using a non-standard HTTPS port (issue #1114, PR #1201)
  • Fixed wrapping of last column in tree page (PR #1202)
  • Fixed NPE with unsupported transport URL protocol (PR #1238)
  • Fixed unit tests by providing zipped local versions of external git repositories used for tests (issue #1275, PR #1309)
  • Fixed NPE for symbolic links to repositories (issue #837, issue #891)
  • Fixed NPE for ticket milestones without due date (PR #1278)
  • Fixed NPE with special characters in repository names (issue #999, PR #1194)
  • Fixed NPE when stopping GitBlit
  • Fixed exception due to MAC error on SSH connections (issue #1282)
  • Fixed link to LDAP sample LDIF file in documentation
  • Fixed NPE on unknown git commands. (issue #1092)
  • Fixed NPE for URLs to non-existing documents (PR #1324)
Changes

Changes

  • Updated traditional Chinese translation (PR #1110)
  • Load commit cache in the background to improve start-up time (PR #1140)
  • Improved logging when sending emails fails, to assist in analysis (PR #1144)
  • Support customized IUserService that can access application settings (PR #1171)
  • Added feedback for invalid input on user SSH key form (PR #1239)
  • Encode email sender's name with UTF-8 (PR #1206)
  • Made Gitblit run on Java 9+ (issue #1262, issue #1294, PR #1266)
  • The JRE version is reported upon starting
  • Add the ext directory to the classpath on the command-line to start Gitblit and related programs.
  • Report back that git command clone.bundle is unsupported instead of simply failing
Additions

Additions

  • Added option to merge a ticket branch to the integration branch fast-forward or with a merge commit (PR #1142)
  • Added SSH key manager that retrieves keys from LDAP directory (PR #1160)
  • Updated Korean translation (PR #1176)
  • The list of SSH authentication methods accepted by the server was made configurable (PR #1159)
  • User language preference setting (PR #1198)
  • Gitblit Authority sends user certificate email based on user preferred language (PR #1198)
  • List branches over RPC for a given repository (PR #1192)
  • Added Czech translation (PR #1200)
  • Added setting to set HTTP idle timeout to prevent timeouts when cloning large repositories over HTTP(S) (PR #1243)
  • Made the repository groups on the repositories page collapsible (issue #527, PR #1224)
  • Made the repository groups on the repositories page nested (issue #725, PR #1267)
  • Added PBKDF2 as password hashing algorithm. Other password storage choices are deprecated (issue #1166, PR #1172)

Full release notes on gitblit.com

Gitblit 1.3.2

23 Aug 12:41
Compare
Choose a tag to compare

Release highlights include:

  • several small bug fixes
  • added HtpasswdUserService for authenticating against an htpasswd file

Gitblit GO for Windows: gitblit-1.3.2.zip
Gitblit GO for Linux/OSX: gitblit-1.3.2 tar.gz
Gitblit WAR for your servlet container: gitblit-1.3.2.war
Gitblit Express for RedHat OpenShift cloud hosting: express-1.3.2.zip
Gitblit Manager is a Java/Swing app for remote administration of your server: manager-1.3.2.zip
Gitblit API is a library package for integrating Gitblt administration into your own app: gbapi-1.3.2.zip

Gitblit 1.3.1

24 Jul 20:04
Compare
Choose a tag to compare

Release highlights include:

  • added optional page cache-control stamping to reduce server loads, this is disabled by default
  • added PAMUserService for authenticating against a local Linux/Unix/MacOSX server
  • several small bug fixes
  • updated translations

Gitblit GO for Windows: gitblit-1.3.1.zip
Gitblit GO for Linux/OSX: gitblit-1.3.1.tar.gz
Gitblit WAR for your servlet container: gitblit-1.3.1.war
Gitblit Express for RedHat OpenShift cloud hosting: express-1.3.1.zip
Gitblit Manager is a Java/Swing app for remote administration of your server: manager-1.3.1.zip
Gitblit API is a library package for integrating Gitblt administration into your own app: gbapi-1.3.1.zip

Gitblit 1.3.0

15 Jul 16:01
Compare
Choose a tag to compare

Release highlights include:

  • integrated git daemon
  • compare refs or commits page
  • completed the Gitblit reflog (formerly pushlog) introduced in 1.2.1
  • added new dashboard pages
  • added a stars feature
  • improved the repository url panel to show your access permission and to offer native app clone links
  • improved navigation and theme
  • customizable page header colors and logo
  • recent activity commit caching to improve performance of dashboard and activity pages
  • Windows authentication
  • Salesforce.com authentication
  • lots of bug fixes

Gitblit GO for Windows: gitblit-1.3.0.zip
Gitblit GO for Linux/OSX: gitblit-1.3.0.tar.gz
Gitblit WAR for your servlet container: gitblit-1.3.0.war