Junio C Hamano | 7193db3 | 2007-03-04 17:20:38 -0800 | [diff] [blame] | 1 | GIT v1.5.0.3 Release Notes |
Junio C Hamano | a1367d1 | 2007-02-28 14:17:45 -0800 | [diff] [blame] | 2 | ========================== |
| 3 | |
| 4 | Fixes since v1.5.0.2 |
| 5 | -------------------- |
| 6 | |
| 7 | * Bugfixes |
| 8 | |
| 9 | - 'git.el' honors the commit coding system from the configuration. |
| 10 | |
| 11 | - 'blameview' in contrib/ correctly digs deeper when a line is |
| 12 | clicked. |
| 13 | |
| 14 | - 'http-push' correctly makes sure the remote side has leading |
| 15 | path. Earlier it started in the middle of the path, and |
| 16 | incorrectly. |
| 17 | |
Junio C Hamano | 7193db3 | 2007-03-04 17:20:38 -0800 | [diff] [blame] | 18 | - 'git-merge' did not exit with non-zero status when the |
| 19 | working tree was dirty and cannot fast forward. It does |
| 20 | now. |
| 21 | |
Junio C Hamano | a1367d1 | 2007-02-28 14:17:45 -0800 | [diff] [blame] | 22 | - 'cvsexportcommit' does not lose yet-to-be-used message file. |
| 23 | |
| 24 | - int-vs-size_t typefix when running combined diff on files |
| 25 | over 2GB long. |
| 26 | |
| 27 | - 'git apply --whitespace=strip' should not touch unmodified |
| 28 | lines. |
| 29 | |
| 30 | - 'git-mailinfo' choke when a logical header line was too long. |
| 31 | |
| 32 | - 'git show A..B' did not error out. Negative ref ("not A" in |
| 33 | this example) does not make sense for the purpose of the |
| 34 | command, so now it errors out. |
| 35 | |
| 36 | - 'git fmt-merge-msg --file' without file parameter did not |
| 37 | correctly error out. |
| 38 | |
| 39 | - 'git archimport' barfed upon encountering a commit without |
| 40 | summary. |
| 41 | |
| 42 | - 'git index-pack' did not protect itself from getting a short |
| 43 | read out of pread(2). |
| 44 | |
Junio C Hamano | 7193db3 | 2007-03-04 17:20:38 -0800 | [diff] [blame] | 45 | - 'git http-push' had a few buffer overruns. |
| 46 | |
| 47 | - Build dependency fixes to rebuild fetch.o when other headers |
| 48 | change. |
| 49 | |
Junio C Hamano | a1367d1 | 2007-02-28 14:17:45 -0800 | [diff] [blame] | 50 | * Documentation updates |
| 51 | |
Junio C Hamano | 7193db3 | 2007-03-04 17:20:38 -0800 | [diff] [blame] | 52 | - user-manual updates. |
Junio C Hamano | a1367d1 | 2007-02-28 14:17:45 -0800 | [diff] [blame] | 53 | |
Junio C Hamano | 7193db3 | 2007-03-04 17:20:38 -0800 | [diff] [blame] | 54 | - Options to 'git remote add' were described insufficiently. |
Junio C Hamano | a1367d1 | 2007-02-28 14:17:45 -0800 | [diff] [blame] | 55 | |
Junio C Hamano | 7193db3 | 2007-03-04 17:20:38 -0800 | [diff] [blame] | 56 | - Configuration format.suffix was not documented. |
Junio C Hamano | a1367d1 | 2007-02-28 14:17:45 -0800 | [diff] [blame] | 57 | |
Junio C Hamano | 7193db3 | 2007-03-04 17:20:38 -0800 | [diff] [blame] | 58 | - Other formatting and spelling fixes. |