From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754666AbbCNHMD (ORCPT ); Sat, 14 Mar 2015 03:12:03 -0400 Received: from pb-smtp1.int.icgroup.com ([208.72.237.35]:50086 "EHLO sasl.smtp.pobox.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1750892AbbCNHL7 convert rfc822-to-8bit (ORCPT ); Sat, 14 Mar 2015 03:11:59 -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=h9QcZ1UfXLn4vI3irTg KH1e0bdr1qv34f7Sa4hwNgLb4wnmom6GsP3pVeeZRJqgqcNO7AtKpnpe3ogsi0lW xh8xb0SEwIy8bIiprIUZmFM8cJN6RenYDZTVUlRu+ZMKTbIut3t0h9Eb0p0JInvN 059DTW1JRCYwLFzMoTI/sTeM= From: Junio C Hamano To: git@vger.kernel.org Cc: Linux Kernel Subject: [ANNOUNCE] Git v2.3.3 Date: Sat, 14 Mar 2015 00:11:56 -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: 66BB6176-CA19-11E4-BD06-A2259F42C9D4-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.3 is now available at the usual places. It is comprised of 26 non-merge commits since v2.3.2, contributed by 11 people, 1 of which is a new contributor. 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.3' 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 New contributors whose contributions weren't in v2.3.2 are as follows. Welcome to the Git development community! Mikko Rapeli. Returning contributors who helped this release are as follows. Thanks for your continued support. Anders Kaseorg, Ben Walton, Jeff King, Johannes Sixt, Junio C Hamano, Mårten Kongstad, Michael J Gruber, Michal Sojka, Nguyễn Thái Ngọc Duy, and René Scharfe. ---------------------------------------------------------------- Git v2.3.3 Release Notes ======================== Fixes since v2.3.2 ------------------ * A corrupt input to "git diff -M" used cause us to segfault. * The borrowed code in kwset API did not follow our usual convention to use "unsigned char" to store values that range from 0-255. * Description given by "grep -h" for its --exclude-standard option was phrased poorly. * Documentaton for "git remote add" mentioned "--tags" and "--no-tags" and it was not clear that fetch from the remote in the future will use the default behaviour when neither is given to override it. * "git diff --shortstat --dirstat=changes" showed a dirstat based on lines that was never asked by the end user in addition to the dirstat that the user asked for. * The interaction between "git submodule update" and the submodule.*.update configuration was not clearly documented. * "git apply" was not very careful about reading from, removing, updating and creating paths outside the working tree (under --index/--cached) or the current directory (when used as a replacement for GNU patch). * "git daemon" looked up the hostname even when "%CH" and "%IP" interpolations are not requested, which was unnecessary. * The "interpolated-path" option of "git daemon" inserted any string client declared on the "host=" capability request without checking. Sanitize and limit %H and %CH to a saner and a valid DNS name. Also contains typofixes, documentation updates and trivial code clean-ups. ---------------------------------------------------------------- Changes since v2.3.2 are as follows: Anders Kaseorg (1): t5516: correct misspelled pushInsteadOf Ben Walton (1): kwset: use unsigned char to store values with high-bit set Jeff King (5): git_connect: let user override virtual-host we send to daemon t5570: test git-daemon's --interpolated-path option daemon: sanitize incoming virtual hostname diffcore-rename: split locate_rename_dst into two functions diffcore-rename: avoid processing duplicate destinations Johannes Sixt (1): test_ln_s_add: refresh stat info of fake symbolic links Junio C Hamano (11): apply: reject input that touches outside the working area apply: do not read from the filesystem under --index apply: do not read from beyond a symbolic link apply: do not touch a file beyond a symbolic link t4008: correct stale comments t9300: correct expected object names t4010: correct expected object names tests: do not borrow from COPYING and README from the real source t/diff-lib: check exact object names in compare_diff_raw t4008: modernise style Git 2.3.3 Michael J Gruber (1): git-remote.txt: describe behavior without --tags and --no-tags Michal Sojka (1): submodule: improve documentation of update subcommand Mikko Rapeli (1): Documentation/git-clean.txt: document that -f may need to be given twice Mårten Kongstad (1): diff --shortstat --dirstat: remove duplicate output Nguyễn Thái Ngọc Duy (1): grep: correct help string for --exclude-standard René Scharfe (2): daemon: look up client-supplied hostname lazily daemon: use callback to build interpolated path