From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753515AbbCWVgZ (ORCPT ); Mon, 23 Mar 2015 17:36:25 -0400 Received: from pb-smtp1.int.icgroup.com ([208.72.237.35]:52649 "EHLO sasl.smtp.pobox.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752214AbbCWVgU convert rfc822-to-8bit (ORCPT ); Mon, 23 Mar 2015 17:36:20 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=pobox.com; h=from:to:cc :subject:date:message-id:mime-version:content-type :content-transfer-encoding; q=dns; s=sasl; b=xiYxKxDUAOAiqo+mwT3 g6wUpg4ZJl5mfTPz4A0xodiwP8CQV6yUTzqPcusEYcpkxIvLobxbEPjlypYbftGG 55JAX5cMYNqmRzegGII/a5tzrs9GRPrngOSx4qEnK9ffiPntLY3SrvV6Fnd5DGVI w8sWrLhTeSYBSVYBJWjr/UA4= From: Junio C Hamano To: git@vger.kernel.org Cc: Linux Kernel Subject: [ANNOUNCE] Git v2.3.4 Date: Mon, 23 Mar 2015 14:36:18 -0700 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 X-Pobox-Relay-ID: A46DFA46-D1A4-11E4-B1CD-11859F42C9D4-77302942!pb-smtp1.pobox.com Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The latest maintenance release Git v2.3.4 is now available at the usual places. It is comprised of 22 non-merge commits since v2.3.3, contributed by 9 people, 1 of which is a new face. All these fixes have already been in the 'master' branch for some time. The tarballs are found at: https://www.kernel.org/pub/software/scm/git/ The following public repositories all have a copy of the 'v2.3.4' tag and the 'maint' branch that the tag points at: url = https://kernel.googlesource.com/pub/scm/git/git url = git://repo.or.cz/alt-git.git url = https://code.google.com/p/git-core/ url = git://git.sourceforge.jp/gitroot/git-core/git.git url = git://git-core.git.sourceforge.net/gitroot/git-core/git-core url = https://github.com/gitster/git Karthik Nayak joined the Git development community as a new contributor whose contributions weren't in v2.3.3. Welcome. Returning contributors who helped this release are as follows. Thanks for your continued support. Alexander Kuleshov, Eric Sunshine, Junio C Hamano, Kyle J. McKay, Michael J Gruber, René Scharfe, SZEDER Gábor, and Torsten Bögershausen. ---------------------------------------------------------------- Git v2.3.4 Release Notes ======================== Fixes since v2.3.3 ------------------ * The 'color.status.unmerged' configuration was not described. * "git log --decorate" did not reset colors correctly around the branch names. * "git -C '' subcmd" refused to work in the current directory, unlike "cd ''" which silently behaves as a no-op. * "git imap-send" learned to optionally talk with an IMAP server via libcURL; because there is no other option when Git is built with NO_OPENSSL option, use that codepath by default under such configuration. * A workaround for certain build of GPG that triggered false breakage in a test has been added. * "git rebase -i" recently started to include the number of commits in the insn sheet to be processed, but on a platform that prepends leading whitespaces to "wc -l" output, the numbers are shown with extra whitespaces that aren't necessary. * We did not parse username followed by literal IPv6 address in SSH transport URLs, e.g. ssh://user@[2001:db8::1]:22/repo.git correctly. Also contains typofixes, documentation updates and trivial code clean-ups. ---------------------------------------------------------------- Changes since v2.3.3 are as follows: Alexander Kuleshov (1): git: make was_alias and done_help non-static Eric Sunshine (2): rebase-interactive: suppress whitespace preceding item count rebase-interactive: re-word "item count" comment Junio C Hamano (8): Documentation/config.txt: avoid unnecessary negation Documentation/config.txt: explain multi-valued variables once Documentation/config.txt: describe the structure first and then meaning Documentation/config.txt: have a separate "Values" section Documentation/config.txt: describe 'color' value type in the "Values" section Documentation/config.txt: simplify boolean description in the syntax section log --decorate: do not leak "commit" color into the next item Git 2.3.4 Karthik Nayak (1): git: treat "git -C ''" as a no-op when is empty Kyle J. McKay (2): imap-send: use cURL automatically when NO_OPENSSL defined t7510: do not fail when gpg warns about insecure memory Michael J Gruber (1): config,completion: add color.status.unmerged René Scharfe (2): zlib: initialize git_zstream in git_deflate_init{,_gzip,_raw} use isxdigit() for checking if a character is a hexadecimal digit SZEDER Gábor (2): completion: add a test for __git_remotes() helper function completion: simplify __git_remotes() Torsten Bögershausen (3): connect.c: allow ssh://user@[2001:db8::1]/repo.git t5601: add more test cases for IPV6 t5500: show user name and host in diag-url