Hello community, here is the log from the commit of package git for openSUSE:Factory checked in at 2020-11-02 14:03:38 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/git (Old) and /work/SRC/openSUSE:Factory/.git.new.3463 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "git" Mon Nov 2 14:03:38 2020 rev:255 rq:844935 version:2.29.2 Changes: -------- --- /work/SRC/openSUSE:Factory/git/git.changes 2020-10-28 09:57:24.131103515 +0100 +++ /work/SRC/openSUSE:Factory/.git.new.3463/git.changes 2020-11-02 14:03:44.196651513 +0100 @@ -1,0 +2,6 @@ +Thu Oct 29 23:07:17 UTC 2020 - Andreas Stieger <andreas.stieger@gmx.de> + +- git 2.29.2: "--committer-date-is-author-date" option of "rebase" + and "am" subcommands lost the e-mail address by mistake in 2.29 + +------------------------------------------------------------------- Old: ---- git-2.29.1.tar.sign git-2.29.1.tar.xz New: ---- git-2.29.2.tar.sign git-2.29.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ git.spec ++++++ --- /var/tmp/diff_new_pack.F2n1Mr/_old 2020-11-02 14:03:45.544652537 +0100 +++ /var/tmp/diff_new_pack.F2n1Mr/_new 2020-11-02 14:03:45.548652540 +0100 @@ -36,7 +36,7 @@ %endif Name: git -Version: 2.29.1 +Version: 2.29.2 Release: 0 Summary: Fast, scalable, distributed revision control system License: GPL-2.0-only ++++++ git-2.29.1.tar.xz -> git-2.29.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-2.29.1/Documentation/RelNotes/2.29.2.txt new/git-2.29.2/Documentation/RelNotes/2.29.2.txt --- old/git-2.29.1/Documentation/RelNotes/2.29.2.txt 1970-01-01 01:00:00.000000000 +0100 +++ new/git-2.29.2/Documentation/RelNotes/2.29.2.txt 2020-10-29 23:11:30.000000000 +0100 @@ -0,0 +1,12 @@ +Git v2.29.2 Release Notes +========================= + +This release is primarily to fix brown-paper-bag breakages in the +2.29.0 release. + +Fixes since v2.29.1 +------------------- + + * In 2.29, "--committer-date-is-author-date" option of "rebase" and + "am" subcommands lost the e-mail address by mistake, which has been + corrected. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-2.29.1/Documentation/git-filter-branch.txt new/git-2.29.2/Documentation/git-filter-branch.txt --- old/git-2.29.1/Documentation/git-filter-branch.txt 2020-10-23 00:31:53.000000000 +0200 +++ new/git-2.29.2/Documentation/git-filter-branch.txt 2020-10-29 23:11:30.000000000 +0100 @@ -532,7 +532,7 @@ an alternative to git-filter-branch which does not suffer from these performance problems or the safety problems (mentioned below). For those with existing tooling which relies upon git-filter-branch, 'git -repo-filter' also provides +filter-repo' also provides https://github.com/newren/git-filter-repo/blob/master/contrib/filter-repo-demos/filter-lamely[filter-lamely], a drop-in git-filter-branch replacement (with a few caveats). While filter-lamely suffers from all the same safety issues as diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-2.29.1/GIT-VERSION-GEN new/git-2.29.2/GIT-VERSION-GEN --- old/git-2.29.1/GIT-VERSION-GEN 2020-10-23 00:31:53.000000000 +0200 +++ new/git-2.29.2/GIT-VERSION-GEN 2020-10-29 23:11:30.000000000 +0100 @@ -1,7 +1,7 @@ #!/bin/sh GVF=GIT-VERSION-FILE -DEF_VER=v2.29.1 +DEF_VER=v2.29.2 LF=' ' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-2.29.1/RelNotes new/git-2.29.2/RelNotes --- old/git-2.29.1/RelNotes 2020-11-02 14:03:47.060653689 +0100 +++ new/git-2.29.2/RelNotes 2020-11-02 14:03:47.068653694 +0100 @@ -1 +1 @@ -symbolic link to Documentation/RelNotes/2.29.1.txt +symbolic link to Documentation/RelNotes/2.29.2.txt diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-2.29.1/builtin/am.c new/git-2.29.2/builtin/am.c --- old/git-2.29.1/builtin/am.c 2020-10-23 00:31:53.000000000 +0200 +++ new/git-2.29.2/builtin/am.c 2020-10-29 23:11:30.000000000 +0100 @@ -161,7 +161,7 @@ state->committer_name = xmemdupz(id.name_begin, id.name_end - id.name_begin); state->committer_email = - xmemdupz(id.mail_begin, id.mail_end - id.mail_end); + xmemdupz(id.mail_begin, id.mail_end - id.mail_begin); } /** @@ -1595,7 +1595,7 @@ if (state->committer_date_is_author_date) committer = fmt_ident(state->committer_name, - state->author_email, WANT_COMMITTER_IDENT, + state->committer_email, WANT_COMMITTER_IDENT, state->ignore_date ? NULL : state->author_date, IDENT_STRICT); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-2.29.1/configure new/git-2.29.2/configure --- old/git-2.29.1/configure 2020-10-23 00:31:53.000000000 +0200 +++ new/git-2.29.2/configure 2020-10-29 23:11:30.000000000 +0100 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for git 2.29.1. +# Generated by GNU Autoconf 2.69 for git 2.29.2. # # Report bugs to <git@vger.kernel.org>. # @@ -580,8 +580,8 @@ # Identity of this package. PACKAGE_NAME='git' PACKAGE_TARNAME='git' -PACKAGE_VERSION='2.29.1' -PACKAGE_STRING='git 2.29.1' +PACKAGE_VERSION='2.29.2' +PACKAGE_STRING='git 2.29.2' PACKAGE_BUGREPORT='git@vger.kernel.org' PACKAGE_URL='' @@ -1265,7 +1265,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures git 2.29.1 to adapt to many kinds of systems. +\`configure' configures git 2.29.2 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1327,7 +1327,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of git 2.29.1:";; + short | recursive ) echo "Configuration of git 2.29.2:";; esac cat <<\_ACEOF @@ -1472,7 +1472,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -git configure 2.29.1 +git configure 2.29.2 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1952,7 +1952,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by git $as_me 2.29.1, which was +It was created by git $as_me 2.29.2, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -8360,7 +8360,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by git $as_me 2.29.1, which was +This file was extended by git $as_me 2.29.2, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -8417,7 +8417,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -git config.status 2.29.1 +git config.status 2.29.2 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-2.29.1/sequencer.c new/git-2.29.2/sequencer.c --- old/git-2.29.1/sequencer.c 2020-10-23 00:31:53.000000000 +0200 +++ new/git-2.29.2/sequencer.c 2020-10-29 23:11:30.000000000 +0100 @@ -4478,7 +4478,7 @@ opts->committer_name = xmemdupz(id.name_begin, id.name_end - id.name_begin); opts->committer_email = - xmemdupz(id.mail_begin, id.mail_end - id.mail_end); + xmemdupz(id.mail_begin, id.mail_end - id.mail_begin); return 0; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-2.29.1/t/t3436-rebase-more-options.sh new/git-2.29.2/t/t3436-rebase-more-options.sh --- old/git-2.29.1/t/t3436-rebase-more-options.sh 2020-10-23 00:31:53.000000000 +0200 +++ new/git-2.29.2/t/t3436-rebase-more-options.sh 2020-10-29 23:11:30.000000000 +0100 @@ -65,8 +65,8 @@ ' test_ctime_is_atime () { - git log $1 --format=%ai >authortime && - git log $1 --format=%ci >committertime && + git log $1 --format="$GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> %ai" >authortime && + git log $1 --format="%cn <%ce> %ci" >committertime && test_cmp authortime committertime } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/git-2.29.1/version new/git-2.29.2/version --- old/git-2.29.1/version 2020-10-23 00:31:53.000000000 +0200 +++ new/git-2.29.2/version 2020-10-29 23:11:30.000000000 +0100 @@ -1 +1 @@ -2.29.1 +2.29.2
participants (1)
-
root