Yuxuan 'fishy' Wang | 4f5ad9d | 2016-05-03 16:18:58 -0700 | [diff] [blame] | 1 | = Release notes for Gerrit 2.4.1 |
Sasa Zivkov | 7c1a56f | 2012-06-05 17:56:05 +0200 | [diff] [blame] | 2 | |
| 3 | Gerrit 2.4.1 is now available: |
| 4 | |
Shawn Pearce | 6d7ebc6 | 2015-06-12 16:34:42 -0700 | [diff] [blame] | 5 | link:https://www.gerritcodereview.com/download/gerrit-2.4.1.war[https://www.gerritcodereview.com/download/gerrit-2.4.1.war] |
Sasa Zivkov | 7c1a56f | 2012-06-05 17:56:05 +0200 | [diff] [blame] | 6 | |
| 7 | |
| 8 | There are no schema changes from 2.4. However, if upgrading from |
| 9 | anything but 2.4, follow the upgrade procedure in the 2.4 |
| 10 | link:ReleaseNotes-2.4.html[ReleaseNotes]. |
| 11 | |
| 12 | |
Yuxuan 'fishy' Wang | 4f5ad9d | 2016-05-03 16:18:58 -0700 | [diff] [blame] | 13 | == Bug Fixes |
Sasa Zivkov | 7c1a56f | 2012-06-05 17:56:05 +0200 | [diff] [blame] | 14 | * Catch all exceptions when async emailing |
| 15 | + |
| 16 | This fixes email notification issues reported |
| 17 | link:https://groups.google.com/group/repo-discuss/browse_thread/thread/dd157ebc55b962ef/652822d6fbe61e71[here]. |
| 18 | |
| 19 | * Fixed cleanup of propagated SshScopes |
| 20 | + |
| 21 | This improves error reporting in case of email notification errors. |
| 22 | |
| 23 | * issue 1394 Fix lookup of the 'Commit Message' file in patch set |
| 24 | + |
| 25 | There is an assumption that the commit message is always first in the list of |
| 26 | files of a patch set. However, there was another place in Gerrit code, which |
| 27 | did binary search through the list of the files, without taking this assumption |
| 28 | into account. In case when a patch set contained a file which lexicographically |
| 29 | sorted before '/COMMIT_MSG' (like '.gitignore' for example) it could have |
| 30 | happened that the commit message was not found and, as a side effect, it wasn't |
| 31 | possible to review it. |
| 32 | |
| 33 | * issue 1162 Fix deadlock on destroy of CommandFactoryProvider |
| 34 | |
| 35 | * Honor the sendmail.smtpUser from gerrit.config on upgrade |
| 36 | + |
| 37 | If sendmail.smtpUser was not present in the gerrit.config then don't set it in |
| 38 | site upgrade. |
| 39 | |
| 40 | * issue 1420 Forge committer bypassed |
| 41 | + |
| 42 | It was possible to forge committer even without having permission for that. |
| 43 | This was a regression from 2.3. |
| 44 | |
| 45 | * Make sure the "Object too large..." error message is printed when an object |
| 46 | larger than receive.maxObjectSizeLimit is rejected by Gerrit |
| 47 | |
| 48 | * Display proper error if file diff fails because content is too large |
| 49 | |
| 50 | * Get around a log4j bug that causes AsyncAppender-Dispatcher thread to die and |
| 51 | block other threads |
| 52 | ** Make async logging buffer size configurable |
| 53 | ** Make logging events discardable, prevent NPE in AsyncAppender-Dispatcher thread |