Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:69591 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 51102 invoked from network); 16 Oct 2013 19:06:16 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 16 Oct 2013 19:06:16 -0000 Authentication-Results: pb1.pair.com smtp.mail=php@marc-bennewitz.de; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=php@marc-bennewitz.de; sender-id=unknown Received-SPF: error (pb1.pair.com: domain marc-bennewitz.de from 80.237.132.171 cause and error) X-PHP-List-Original-Sender: php@marc-bennewitz.de X-Host-Fingerprint: 80.237.132.171 wp164.webpack.hosteurope.de Received: from [80.237.132.171] ([80.237.132.171:40657] helo=wp164.webpack.hosteurope.de) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 9F/E6-15686-7A3EE525 for ; Wed, 16 Oct 2013 15:06:16 -0400 Received: from dslb-088-075-068-074.pools.arcor-ip.net ([88.75.68.74] helo=[192.168.178.27]); authenticated by wp164.webpack.hosteurope.de running ExIM with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) id 1VWWQ8-0008TF-Vs; Wed, 16 Oct 2013 21:06:13 +0200 Message-ID: <525EE3A4.5010505@marc-bennewitz.de> Date: Wed, 16 Oct 2013 21:06:12 +0200 User-Agent: Mozilla/5.0 (X11; Linux i686; rv:24.0) Gecko/20100101 Thunderbird/24.0 MIME-Version: 1.0 To: internals@lists.php.net References: <1381850186.29722.372.camel@ghost> <525D6966.4090308@oracle.com> <525ED515.6060305@marc-bennewitz.de> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-bounce-key: webpack.hosteurope.de;php@marc-bennewitz.de;1381950376;f33db9cc; Subject: Re: [PHP-DEV] Core extension versions From: php@marc-bennewitz.de (Marc Bennewitz) Am 16.10.2013 20:32, schrieb Pierre Joye: > On Wed, Oct 16, 2013 at 8:04 PM, Marc Bennewitz wrote: > >> What about pecl extensions with version numbers grater than PHP_VERSION >> on moving/moved to core? Don't know if this is the case somewhere. > > Still released in pecl as well: package version (like oci or zip) > Only maintained in core: php-version-bundle We had and we'll have pecl extensions that can be moved to core without maintaining pecl releases after moving. e.g: You had the versions in pecl ..., 5.6, 5.6, 6.0, 6.1 and the extension will be moved to PHP core in version 5.6 applications get in trouble as it looks like an old version is installed. In this case we could use the version before and increase it with the same version PHP was increased by. (In the example above it would be 6.2) Greetings