Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:69517 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 53540 invoked from network); 8 Oct 2013 17:16:28 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 8 Oct 2013 17:16:28 -0000 Authentication-Results: pb1.pair.com header.from=adam@adamharvey.name; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=adam@adamharvey.name; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain adamharvey.name designates 209.85.214.169 as permitted sender) X-PHP-List-Original-Sender: adam@adamharvey.name X-Host-Fingerprint: 209.85.214.169 mail-ob0-f169.google.com Received: from [209.85.214.169] ([209.85.214.169:60330] helo=mail-ob0-f169.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id BA/9C-09409-BED34525 for ; Tue, 08 Oct 2013 13:16:28 -0400 Received: by mail-ob0-f169.google.com with SMTP id wp4so701297obc.28 for ; Tue, 08 Oct 2013 10:16:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=adamharvey.name; s=google; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc:content-type:content-transfer-encoding; bh=hsy5IyTOlt1fhTgVawiwPyMVZ+9FOd6RARm3V0XK9vU=; b=TxOy9pTF2f43YuIXTdMGRSLd9wccBzR/oiWGh2g7a7fdGCF/vR8buY3eaq/pXAQ5rw j4BtE8QkZK2AL7IORdyJsbTU2UNN+h4k5haJeP7aR1ZQQBTrLpspVqQT1P9geDM/V6ga RTIhP9y/LIrYs89ABOCNzkKUA1GXwrjmtgfw4= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc:content-type :content-transfer-encoding; bh=hsy5IyTOlt1fhTgVawiwPyMVZ+9FOd6RARm3V0XK9vU=; b=SfNQZRHQUAgTqH+ATzcb1yOkybcMib04ndYe8/QM2VP7P/jP3lr8LgKUufCVOz9CKH uOGnzOH+Psq5GegKu9RdPCwt9dkrkrKK+zRyiTbmRj5NnLbSddej4KT9PhaEwz66mLxr wWaMRvxW2GFeWLdnS1zaflaQzMZ9ns2Za3Vq1Zc6l0LIJIGaqBiqfUb6IxVB5hL6emkY bWNv383VXlliCttkeDpnlDdGcDOIaoFd99pWltb86EZUPrFyvST9axmIZ3s4sBOQR2pN m1jCPMhrod5Xs0lmfmk/oKfN4oDSZyoaIKlBGFd3sr57ZYIm6LNimpbqfGhF3xOXslN+ EJPA== X-Gm-Message-State: ALoCoQnIUkQKNAB2XtyxO30yX5H3LmAhBYEgAMnhSfB1E5Ql3FHI8yyMQ04i0gunxNvA5KECx+53 X-Received: by 10.182.48.130 with SMTP id l2mr2023037obn.44.1381252585503; Tue, 08 Oct 2013 10:16:25 -0700 (PDT) MIME-Version: 1.0 Sender: adam@adamharvey.name Received: by 10.42.206.208 with HTTP; Tue, 8 Oct 2013 10:09:49 -0700 (PDT) In-Reply-To: References: Date: Tue, 8 Oct 2013 10:09:49 -0700 X-Google-Sender-Auth: oQ124iWJTbSSIFie7XBLTWf0RUg Message-ID: To: Michael Wallner Cc: PHP Internals Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [PHP-DEV] NEWS handling From: aharvey@php.net (Adam Harvey) On 8 October 2013 06:46, Michael Wallner wrote: > I was wondering how we are supposed to handle NEWS entries when a fix > goes into both branches, PHP-5.4 and 5.5. IIRC we used to add the BFN > only to the lowest numbered branch, but then again that was at times > we had mostly onle one stable release branch... The way I've done it (and it seems like most developers are doing it now) is to add the same entry to each stable branch as I merge upwards, so the 5.4 and 5.5 NEWS files each end up with something like: - Extension: . Fixed bug #12345 (luggage combination is weak). (Adam) I think the bug number really has to be in each branch for the NEWS file to be useful =E2=80=94 users need to be able to find out at a glance what's been fixed from 5.5.4 to 5.5.5, for instance. Adam