From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755335Ab2FDAJM (ORCPT ); Sun, 3 Jun 2012 20:09:12 -0400 Received: from b-pb-sasl-quonix.pobox.com ([208.72.237.35]:58022 "EHLO smtp.pobox.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755271Ab2FDAIy convert rfc822-to-8bit (ORCPT ); Sun, 3 Jun 2012 20:08:54 -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=jl8jViJJuuHFtol/YB+ LWVu9gaz3xp4SdIgRQdTTlJZk+8VZFM++29Vbn6bkRB9gz27F6BCUeKRYemePCrI SlGOEQDdKMYmHsHJjHT6mJaMxYMSIc+axU6rQu9fdr/6rIDTIbKs5SDNw9roFGyW HYDSta7+4RbTA8Zxx2FAIEKU= From: Junio C Hamano To: git@vger.kernel.org Cc: Linux Kernel Subject: [ANNOUNCE] Git 1.7.10.4 Date: Sun, 03 Jun 2012 16:48:29 -0700 Message-ID: <7vvcj8ueej.fsf@alter.siamese.dyndns.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 X-Pobox-Relay-ID: 7874D85C-ADD9-11E1-AC01-FC762E706CDE-77302942!b-pb-sasl-quonix.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 v1.7.10.4 is now available at the usual places. The release tarballs are found at: http://code.google.com/p/git-core/downloads/list and their SHA-1 checksums are: ddc305ab520246790faa72bbaab4b9bf5bcf23fa git-1.7.10.4.tar.gz 951ecda5cbc3e7a5f30b419506ec24b54afa2b93 git-htmldocs-1.7.10.4.tar.gz 0769f6ff48d89df908cfe2af85fb4072b4178746 git-manpages-1.7.10.4.tar.gz Also the following public repositories all have a copy of the v1.7.10.4 tag and the maint branch that the tag points at: 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 Git v1.7.10.4 Release Notes =========================== Fixes since v1.7.10.3 --------------------- * The message file for Swedish translation has been updated a bit. * A name taken from mailmap was copied into an internal buffer incorrectly and could overun the buffer if it is too long. * A malformed commit object that has a header line chomped in the middle could kill git with a NULL pointer dereference. * An author/committer name that is a single character was mishandled as an invalid name by mistake. * The progress indicator for a large "git checkout" was sent to stderr even if it is not a terminal. * "git grep -e '$pattern'", unlike the case where the patterns are read from a file, did not treat individual lines in the given pattern argument as separate regular expressions as it should. * When "git rebase" was given a bad commit to replay the history on, its error message did not correctly give the command line argument it had trouble parsing. Also contains minor fixes and documentation updates. ---------------------------------------------------------------- Changes since v1.7.10.3 are as follows: Avery Pennarun (1): checkout: no progress messages if !isatty(2). Erik Faye-Lund (2): rebase: report invalid commit correctly Makefile: add missing GIT-VERSION-FILE dependency Jeff King (3): fix off-by-one error in split_ident_line pretty: avoid buffer overflow in format_person_part avoid segfault when reading header of malformed commits Junio C Hamano (2): Start preparing for 1.7.10.4 Git 1.7.10.4 Peter Krefting (1): Update Swedish translation (728t0f0u) René Scharfe (4): grep: factor out create_grep_pat() grep: factor out do_append_grep_pat() grep: support newline separated pattern list grep: stop leaking line strings with -f