Merge branch 'jk/complete-commit-c'
[git.git] / Documentation / RelNotes / 1.8.2.txt
blob6c85bf4f0f8b968777cf338d45a60fd6dfb093cb
1 Git v1.8.2 Release Notes
2 ========================
4 Backward compatibility notes
5 ----------------------------
7 In the upcoming major release (tentatively called 1.8.2), we will
8 change the behavior of the "git push" command.
10 When "git push [$there]" does not say what to push, we have used the
11 traditional "matching" semantics so far (all your branches were sent
12 to the remote as long as there already are branches of the same name
13 over there).  We will use the "simple" semantics that pushes the
14 current branch to the branch with the same name, only when the current
15 branch is set to integrate with that remote branch.  There is a user
16 preference configuration variable "push.default" to change this.
19 Updates since v1.8.1
20 --------------------
22 UI, Workflows & Features
24  * Initial ports to QNX and z/OS UNIX System Services have started.
26  * Output from the tests is coloured using "green is okay, yellow is
27    questionable, red is bad and blue is informative" scheme.
29 Foreign Interface
31  *
33 Performance, Internal Implementation, etc.
35  *
37 Also contains minor documentation updates and code clean-ups.
40 Fixes since v1.8.1
41 ------------------
43 Unless otherwise noted, all the fixes since v1.8.1 in the maintenance
44 track are contained in this release (see release notes to them for
45 details).
47  * An element on GIT_CEILING_DIRECTORIES list that does not name the
48    real path to a directory (i.e. a symbolic link) could have caused
49    the GIT_DIR discovery logic to escape the ceiling.
50    (merge 059b379 mh/ceiling later to maint).
52  * t4014, t9502 and t0200 tests had various portability issues that
53    broke on OpenBSD.
54    (merge 27f6342 jc/maint-test-portability later to maint).
56  * t9020 and t3600 tests had various portability issues.
57    (merge 5a02966 jc/test-portability later to maint).
59  * t9200 runs "cvs init" on a directory that already exists, but a
60    platform can configure this fail for the current user (e.g. you
61    need to be in the cvsadmin group on NetBSD 6.0).
62    (merge 8666df0 jc/test-cvs-no-init-in-existing-dir later to maint).
64  * The behaviour visible to the end users was confusing, when they
65    attempt to kill a process spawned in the editor that was in turn
66    launched by Git with SIGINT (or SIGQUIT), as Git would catch that
67    signal and die.  We ignore these signals now.
68    (merge 1250857 pf/editor-ignore-sigint later to maint).
70  * After failing to create a temporary file using mkstemp(), failing
71    pathname was not reported correctly on some platforms.
72    (merge f7be59b jc/mkstemp-more-careful-error-reporting later to maint).
74  * The way "git svn" asked for password using SSH_ASKPASS and
75    GIT_ASKPASS was not in line with the rest of the system.
76    (merge e9263e4 ss/svn-prompt later to maint).
78  * The --graph code fell into infinite loop when asked to do what the
79    code did not expect.
80    (merge 656197a mk/maint-graph-infinity-loop later to maint).
82  * http transport was wrong to ask for the username when the
83    authentication is done by certificate identity.
84    (merge 75e9a40 rb/http-cert-cred-no-username-prompt later to maint).
86  * "git pack-refs" that ran in parallel to another process that
87    created new refs had a nasty race.
88    (merge b3f1280 jk/repack-ref-racefix later to maint).
90  * After "git add -N" and then writing a tree object out of the
91    index, the cache-tree data structure got corrupted.
92    (merge eec3e7e nd/invalidate-i-t-a-cache-tree later to maint).
94  * "gitweb", when sorting by age to show repositories with new
95    activities first, used to sort repositories with absolutely
96    nothing in it early, which was not very useful.
97    (merge 28dae18 md/gitweb-sort-by-age later to maint).
99  * When a line to be wrapped has a solid run of non space characters
100    whose length exactly is the wrap width, "git shortlog -w" failed
101    to add a newline after such a line.
102    (merge e0db176 sp/shortlog-missing-lf later to maint).
104  * Some shells do not behave correctly when IFS is unset; work it
105    around by explicitly setting it to the default value.
106    (merge 393050c jc/maint-fbsd-sh-ifs-workaround later to maint).