[PHP-DEV] PHP 8.0.29 Released

2023-06-08 Thread Gabriel Caruso
tps://gist.github.com/carusogabriel/23a65f8c273d1ebedececeba1f60a416> and below; Thanks to everyone that worked on getting the security patch ready for today. Gabriel Caruso & Sara Golemon php-8.0.29.tar.gz SHA256 hash: db6ee08df5706365f624cde1cffb20ad6de1effe59d7e886337213a09f2e2684 PGP signature:

[PHP-DEV] PHP-8.0 End of Life

2024-01-08 Thread Gabriel Caruso
the Supported Versions page, and upgrade to a maintained and support version of PHP. I take this opportunity to thanks Sara, and all the other Release Managers, that supported me these years contributing to PHP - I could have not make it without you all! All the best, and stay safe! Gabriel

[PHP-DEV] Change default branch in GitHub for php-src

2019-02-22 Thread Gabriel Caruso
ust master. There're a couple of examples that we constantly change from `master` to `PHP-7.4`. So, I'd like to propose that the default branch should be *`PHP-7.4`*. Best, -- Gabriel Caruso

Re: [PHP-DEV] [RFC] Saner string to number comparisons

2019-02-27 Thread Gabriel Caruso
-- > 0 == "" | true | false I know that a cast of am empty and non-empty string results into 0 ( https://3v4l.org/W0P3Z), but still, not sure about this one in specific. Best, -- Gabriel Caruso

Re: [PHP-DEV] PHP 7.4 Release Manager Selection

2019-03-05 Thread Gabriel Caruso
; -- > PHP Internals - PHP Runtime Development Mailing List > To unsubscribe, visit: http://www.php.net/unsub.php > > I'd like to suggest Peter Kokot for this role. -- Gabriel Caruso

Re: [PHP-DEV] Re: Merging new hash algorithm (crc32c) into PHP 7.3 and maybe 7.2?

2019-03-10 Thread Gabriel Caruso
and self contained. It cleaning merges > > against master, and the 7.2 branch. It was suggested that in addition to > > merging to 7.4, I could get approval to merge into 7.3 and maybe 7.2. > > > > This email is to get approval for which versions it can be merged into. > > > > thanks > > Andrew > > > > > > > -- Gabriel Caruso

[PHP-DEV] Don't silence chr function arguments error

2019-04-28 Thread Gabriel Caruso
extra arguments consistent with the rest of the core functions, e.g. "Warning: chr() expects parameter 1 to be int, string given". The idea is to merge in PHP-7.4, but if there's a consensus that this should go into PHP 8 only, so it is :) Best, -- Gabriel Caruso

Re: [PHP-DEV] Don't silence chr function arguments error

2019-05-08 Thread Gabriel Caruso
Em seg, 29 de abr de 2019 às 13:01, Sara Golemon escreveu: > On Mon, Apr 29, 2019 at 2:37 AM Nikita Popov wrote: > >> > The idea is to merge in PHP-7.4, but if there's a consensus that this >>> > should go into PHP 8 only, so it is :) >>> > >>> > Technically a BC break, so 8.0 would be the prefe

Re: [PHP-DEV] Computing code coverage on Azure Pipelines

2019-09-15 Thread Gabriel Caruso
zure Pipelines itself, > or if that doesn't work something like codecov.io. > > Maybe someone is interested in giving this a try? > > Regards, > Nikita > I'm, as I've also reported this a while ago: https://bugs.php.net/bug.php?id=78288. Do you have something in mind how/what to set up? Best regards, -- Gabriel Caruso

Re: [PHP-DEV] Build instructions for Ubuntu 18.04 (and other systems)

2019-09-15 Thread Gabriel Caruso
Hello Dik On Sun, Sep 15, 2019, 22:42 Dik Takken wrote: > On 15-09-19 20:49, Nikita Popov wrote: > > > > Anyone interested in doing this? > > > > Hi Nikita, > > May I suggest to provide instructions to build using Docker? This has a > number of advantages: > > * Same instructions will work on Li

Re: [PHP-DEV] [RFC] "use global functions/consts" statement

2020-01-01 Thread Gabriel Caruso
Hello Tyson, On Wed, 1 Jan 2020 at 20:31, tyson andre wrote: > Hi internals, > > This RFC proposes to support an opt-in "use global functions/consts;" > statement to disable PHP's check for the function/const in the current > namespace before falling back to the global namespace. > > https://wik

[PHP-DEV] Ensure correct signatures for PHP magic methods

2020-01-05 Thread Gabriel Caruso
Hello Internals, I have a PR proposing to start checking the signatures for PHP magic methods in the next major version of PHP: https://github.com/php/php-src/pull/4177. The idea for this PR came from https://bugs.php.net/bug.php?id=69718. I'd like to hear your opinion before putting more effort

Re: [PHP-DEV] Ensure correct signatures for PHP magic methods

2020-01-06 Thread Gabriel Caruso
On Mon, 6 Jan 2020 at 10:05, Nikita Popov wrote: > On Sun, Jan 5, 2020 at 6:44 PM Gabriel Caruso > wrote: > >> Hello Internals, >> >> I have a PR proposing to start checking the signatures for PHP magic >> methods in the next major version of PHP: >> h

Re: [PHP-DEV] Ensure correct signatures for PHP magic methods

2020-01-06 Thread Gabriel Caruso
Hello George On Mon, 6 Jan 2020 at 01:28, G. P. B. wrote: > On Sun, 5 Jan 2020 at 18:44, Gabriel Caruso > wrote: > >> Hello Internals, >> >> I have a PR proposing to start checking the signatures for PHP magic >> methods in the next major version of PHP: >&

Re: [PHP-DEV] Re: VCS Account Request: nicolasgrekas

2020-01-15 Thread Gabriel Caruso
-src/pulls/nicolas-grekas [2]: https://github.com/php/php-src/pulls?utf8=%E2%9C%93&q=is%3Aopen+is%3Apr+commenter%3Anicolas-grekas+ Best regards, -- Gabriel Caruso On Tue, 14 Jan 2020 at 13:20, PHP Group wrote: > VCS Account Rejected: nicolasgrekas rejected by salathe /o\ > > -

[PHP-DEV] PHP 8.0 Release Manager Selection

2020-03-26 Thread Gabriel Caruso
Hello there, I'd like to throw my name in the selection os RM for PHP 8 :) I've been contributing to PHP itself for a while, apart from many other contributions in the ecosystem. Best regards,

[PHP-DEV] [RFC] Ensure correct magic methods' signatures when typed

2020-03-29 Thread Gabriel Caruso
Hello internals. I'd like to discuss with you about https://github.com/php/php-src/pull/4177. I'll write a formal RFC for this during the week. Open question: ```php public function __constructor() {} ``` vs. ```php public function __constructor(): void {} ``` The same goes for `__destruct`,

[PHP-DEV] [RFC] [DISCUSSION] Ensure correct magic methods' signatures when typed

2020-04-05 Thread Gabriel Caruso
Hello, internals. Hereby you can find the RFC Document that I want to discuss as suggested via https://externals.io/message/109416 and https://externals.io/message/107990: https://wiki.php.net/rfc/magic-methods-signature Best regards, -- Gabriel Caruso

Re: [PHP-DEV] PHP 8.0 Release Manager Selection

2020-04-07 Thread Gabriel Caruso
visit: http://www.php.net/unsub.php > > Hello there, I'd like to throw my name in the selection of RM for PHP 8 :) I've been contributing to PHP itself for a while, apart from other contributions to the ecosystem. Best regards, -- Gabriel Caruso

Re: [PHP-DEV] [RFC] [DISCUSSION] Ensure correct magic methods' signatures when typed

2020-04-11 Thread Gabriel Caruso
On Tue, 7 Apr 2020 at 12:55, Claude Pache wrote: > > Le 5 avr. 2020 à 16:01, Gabriel Caruso a > écrit : > > Hello, internals. > > Hereby you can find the RFC Document that I want to discuss as suggested > via https://externals.io/message/109416 and > https://

Re: [PHP-DEV] [RFC] [DISCUSSION] Ensure correct magic methods' signatures when typed

2020-04-11 Thread Gabriel Caruso
On Sat, 11 Apr 2020 at 22:40, Gabriel Caruso wrote: > On Tue, 7 Apr 2020 at 12:55, Claude Pache wrote: > >> >> Le 5 avr. 2020 à 16:01, Gabriel Caruso a >> écrit : >> >> Hello, internals. >> >> Hereby you can find the RFC Document that I want to

Re: [PHP-DEV] [RFC] [DISCUSSION] Ensure correct magic methods' signatures when typed

2020-04-14 Thread Gabriel Caruso
On Sat, 11 Apr 2020 at 23:29, Gabriel Caruso wrote: > On Sat, 11 Apr 2020 at 22:40, Gabriel Caruso > wrote: > >> On Tue, 7 Apr 2020 at 12:55, Claude Pache wrote: >> >>> >>> Le 5 avr. 2020 à 16:01, Gabriel Caruso a >>> écrit : >>>

Re: [PHP-DEV] [RFC] [DISCUSSION] Ensure correct magic methods' signatures when typed

2020-04-14 Thread Gabriel Caruso
On Tue, 14 Apr 2020 at 15:24, Nicolas Grekas wrote: > Hello Gabriel, > > >>> https://wiki.php.net/rfc/magic-methods-signature >> >> RFC and implementation have been updated. >> > > There are a few things I don't understand from the RFC, let me list from > the examples. > > > This RFC proposes to

Re: [PHP-DEV] [RFC] [DISCUSSION] Ensure correct magic methods' signatures when typed

2020-04-15 Thread Gabriel Caruso
On Wed, 15 Apr 2020 at 12:57, Nikita Popov wrote: > On Tue, Apr 14, 2020 at 7:45 PM Claude Pache > wrote: > >> >> >> Le 14 avr. 2020 à 18:53, Nikita Popov a écrit : >> >> On Tue, Apr 14, 2020 at 6:07 PM Claude Pache >> wrote: >> >>> >>> >>> > Le 14 avr. 2020 à 16:54, Nicolas Grekas >>> a écri

[PHP-DEV] Re: [RFC] [DISCUSSION] Ensure correct magic methods' signatures when typed

2020-04-15 Thread Gabriel Caruso
On Sun, 5 Apr 2020 at 16:01, Gabriel Caruso wrote: > > Hello, internals. > > Hereby you can find the RFC Document that I want to discuss as suggested > via https://externals.io/message/109416 and > https://externals.io/message/107990: > > https://wiki.php.net/rfc/magic-me

Re: [PHP-DEV] [RFC] [DISCUSSION] Ensure correct magic methods' signatures when typed

2020-04-16 Thread Gabriel Caruso
On Thu, 16 Apr 2020 at 16:22, Guilliam Xavier wrote: > On Sun, Apr 5, 2020 at 4:02 PM Gabriel Caruso > wrote: > > > > Hello, internals. > > > > Hereby you can find the RFC Document that I want to discuss as suggested > > via https://externals.io/message

Re: [PHP-DEV] [RFC] [DISCUSSION] Ensure correct magic methods' signatures when typed

2020-04-23 Thread Gabriel Caruso
On Thu, 16 Apr 2020 at 18:46, tyson andre wrote: > > Ah, so that's what this is about! In that case, I'd be happy to simply > > always enforce that __construct() cannot return a value, in the same way > we > > do for ": void" functions. (If we have backwards compatibility concerns, > we > > can a

Re: [PHP-DEV] [RFC] Mixed type

2020-04-23 Thread Gabriel Caruso
On Mon, 20 Apr 2020 at 13:18, Dan Ackroyd wrote: > Hi Internals, > > Here is an RFC for adding a 'mixed' type to the language: > https://wiki.php.net/rfc/mixed_type_v2 > The RFC builds on an earlier draft by Michael Moravec. > > Part of the motivation for pursuing this RFC was my recent experienc

Re: [PHP-DEV] [RFC] [DISCUSSION] Ensure correct magic methods' signatures when typed

2020-04-28 Thread Gabriel Caruso
On Thu, 16 Apr 2020 at 16:22, Guilliam Xavier wrote: > On Sun, Apr 5, 2020 at 4:02 PM Gabriel Caruso > wrote: > > > > Hello, internals. > > > > Hereby you can find the RFC Document that I want to discuss as suggested > > via https://externals.io/message

Re: [PHP-DEV] [RFC] [DISCUSSION] Ensure correct magic methods' signatures when typed

2020-05-01 Thread Gabriel Caruso
On Fri, 1 May 2020 at 01:47, Dan Ackroyd wrote: > On Tue, 28 Apr 2020 at 17:32, Gabriel Caruso > wrote: > > > > If there are no further requests or comments, I'll open this RFC for > voting > > next Friday. > > Hi Gabriel, > > I think it would be bet

Re: [PHP-DEV] [RESULT] Re: [PHP-DEV] [VOTE] Round two, PHP 8.0 RM

2020-05-06 Thread Gabriel Caruso
Hello Kalle, Sara On Wed, 6 May 2020 at 17:52, Kalle Sommer Nielsen wrote: > Den tir. 5. maj 2020 kl. 21.05 skrev Sara Golemon : > > I assume you're already familiar with > > https://github.com/php/php-src/blob/master/docs/release-process.md as > our > > official process documentation. > > > >

Re: [PHP-DEV] Proposal For Return-If / Early Return / Guard Clause Syntax

2020-05-10 Thread Gabriel Caruso
On Sun, 10 May 2020 at 17:49, Ralph Schindler wrote: > Hi! > > > # Intro > > I am proposing what is a near completely syntactical addition (only > change is to language.y) to the language. The best terminology for this > syntax is are: `return if`, "return early", or "guard clauses". > >see:

[PHP-DEV] [PHP-8.0] First alpha coming in 4 weeks

2020-05-21 Thread Gabriel Caruso
ng any backward compatibility. Please make sure to start the voting for RFCs by July 13th, so they can make it into PHP 8 (if approved, of course). Hope you all are staying home and safe! - Gabriel Caruso

Re: [PHP-DEV] [RFC] [DISCUSSION] Ensure correct magic methods' signatures when typed

2020-05-26 Thread Gabriel Caruso
On Fri, 1 May 2020 at 13:06, Gabriel Caruso wrote: > On Fri, 1 May 2020 at 01:47, Dan Ackroyd wrote: > >> On Tue, 28 Apr 2020 at 17:32, Gabriel Caruso >> wrote: >> > >> > If there are no further requests or comments, I'll open this RFC for >> vot

[PHP-DEV] [VOTE] Ensure correct signatures of magic methods

2020-05-29 Thread Gabriel Caruso
Hello, internals! I have opened the voting for https://wiki.php.net/rfc/magic-methods-signature. The voting period ends on 2020-06-19 at 18h (CEST). Thanks, -- Gabriel Caruso

Re: [PHP-DEV] Intersection types

2020-05-31 Thread Gabriel Caruso
On Sun, 31 May 2020 at 04:39, Larry Garfield wrote: > On Sat, May 30, 2020, at 3:02 AM, Gert de Pagter wrote: > > Hi Internals, > > > > With recent additions of the type system like union types [1], id like > > to propose adding intersection types as well. > > > > Looking through past RFCs I foun

Re: [PHP-DEV] [VOTE] Ensure correct signatures of magic methods

2020-05-31 Thread Gabriel Caruso
On Sun, 31 May 2020 at 15:57, Nikita Popov wrote: > On Fri, May 29, 2020 at 6:45 PM Gabriel Caruso > wrote: > >> Hello, internals! >> >> I have opened the voting for >> https://wiki.php.net/rfc/magic-methods-signature. >> >> The voting period ends o

Re: [PHP-DEV] [VOTE] Ensure correct signatures of magic methods

2020-06-03 Thread Gabriel Caruso
> > On Mon, Jun 1, 2020 at 12:20 AM Gabriel Caruso > wrote: > >> On Sun, 31 May 2020 at 15:57, Nikita Popov wrote: >> >> > On Fri, May 29, 2020 at 6:45 PM Gabriel Caruso < >> carusogabrie...@gmail.com> >> > wrote: >> > >> >

Re: [PHP-DEV] [VOTE] Ensure correct signatures of magic methods

2020-06-03 Thread Gabriel Caruso
On Wed, 3 Jun 2020 at 12:32, Nikita Popov wrote: > On Sun, May 31, 2020 at 11:20 PM Gabriel Caruso > wrote: > >> On Sun, 31 May 2020 at 15:57, Nikita Popov wrote: >> >>> On Fri, May 29, 2020 at 6:45 PM Gabriel Caruso < >>> carusogabrie...@g

Re: [PHP-DEV] [VOTE] Ensure correct signatures of magic methods

2020-06-07 Thread Gabriel Caruso
On Wed, 3 Jun 2020 at 23:11, Gabriel Caruso wrote: > On Wed, 3 Jun 2020 at 12:32, Nikita Popov wrote: > >> On Sun, May 31, 2020 at 11:20 PM Gabriel Caruso < >> carusogabrie...@gmail.com> wrote: >> >>> On Sun, 31 May 2020 at 15:57, Nikita Popov wrote: &

[PHP-DEV] Change `__debugInfo` return type

2020-06-16 Thread Gabriel Caruso
ted: https://php.net/language.oop5.magic#object.debuginfo) can be found in this PR: https://github.com/php/php-src/pull/5496. Do you agree with this change, or should I proceed with a small RFC? -- Gabriel Caruso

[PHP-DEV] Make `always true` SPL methods return void

2020-06-16 Thread Gabriel Caruso
catch something that happened, so changing it to `void` and just invoke these methods sounds reasonable to me. You can find the PR, with some discussion already, at https://github.com/php/php-src/pull/5314. Can I proceed with these changes, or should I create an RFC for that? -- Gabriel Caruso

Re: [PHP-DEV] [VOTE] Ensure correct signatures of magic methods

2020-06-19 Thread Gabriel Caruso
On Fri, 29 May 2020 at 18:44, Gabriel Caruso wrote: > Hello, internals! > > I have opened the voting for > https://wiki.php.net/rfc/magic-methods-signature. > > The voting period ends on 2020-06-19 at 18h (CEST). > > Thanks, > > -- Gabriel Caruso > The RFC h

[PHP-DEV] PHP 8.0.0alpha2 is ready for testing

2020-07-09 Thread Gabriel Caruso
8.0.0alpha3 should be expected in 2 weeks, i.e. on 23 Jul 2020. Hash values and PGP signatures can be found below or at https://gist.github.com/carusogabriel/0ae8a6238ab9336be7d8e1eb6873888f Thank you, and happy testing! Regards, Sara Golemon & Gabriel Caruso PHP 8.0.0 Alpha2 Manifest: ```

[PHP-DEV] Drop warning about non-public magic methods

2020-07-13 Thread Gabriel Caruso
ic`: https://3v4l.org/LKnKB. This warning does not make much sense as the magic method is executed regardless of its visibility. Should it be dropped? - Gabriel Caruso

Re: [PHP-DEV] The @@ is terrible, are we sure we're OK with it?

2020-07-22 Thread Gabriel Caruso
7;t mind opening an exception for this specific case and let you (or someone), create an RFC proposing to change the syntax of Attributes (https://wiki.php.net/rfc/attributes_v2), and that only! I'm copying PHP 8.0's Release Manager Sara, to hear her opinion on this as well. -- Gabriel Caruso

Re: [PHP-DEV] Changing default assertion mode to throw exceptions

2020-07-22 Thread Gabriel Caruso
On Mon, 13 Jul 2020 at 19:37, Levi Morrison wrote: > Hello everyone, > > I'd like to change the default mode of assertion failures to throw. > The current default is to warn. In my opinion this is a bad strategy: > the engine asserted that something that is expected to be true is not, > so execut

[PHP-DEV] PHP 8.0.0alpha3 is ready for testing

2020-07-23 Thread Gabriel Caruso
8.0.0beta1 should be expected in 2 weeks, i.e. on Aug 06, 2020. Hash values and PGP signatures can be found below or at https://gist.github.com/carusogabriel/6e0b8b33ee4dd2da23002863af4de965 Thank you, and happy testing! Regards, Sara Golemon & Gabriel Caruso PHP 8.0.0 Alpha3 Manifest: ```

[PHP-DEV] 8.0 Feature Freeze happening today

2020-08-04 Thread Gabriel Caruso
pm UTC-4 (EDT) Let us know if you have any questions! -- Gabriel Caruso

Re: [PHP-DEV] 8.0 Feature Freeze happening today

2020-08-04 Thread Gabriel Caruso
On Tue, 4 Aug 2020 at 19:40, Nikita Popov wrote: > On Tue, Aug 4, 2020 at 7:01 PM Nikita Popov wrote: > >> On Tue, Aug 4, 2020 at 9:39 AM Gabriel Caruso >> wrote: >> >>> Good morning Internals! >>> >>> This is a reminder that *today*

[PHP-DEV] PHP 8.0.0beta1 is ready for testing

2020-08-06 Thread Gabriel Caruso
8.0.0beta2 should be expected in 2 weeks, i.e. on Aug 20, 2020. Hash values and PGP signatures can be found below or at https://gist.github.com/carusogabriel/6e0b8b33ee4dd2da23002863af4de965 Thank you, and happy testing! Regards, Sara Golemon & Gabriel Caruso PHP 8.0.0 Beta1 Manifest: ```

Re: [PHP-DEV] Putting the match expression in constant expressions in PHP 8.0 or 8.1

2020-08-07 Thread Gabriel Caruso
On Sat, 8 Aug 2020 at 02:22, tyson andre wrote: > Hi internals, > > The match expression can be thought of as a much more concise/readable > equivalent to chained ternary operators. > I'm proposing allowing matches in constant expressions when all parts of > the match are constant expressions. >

Re: [PHP-DEV] Bump minimal OpenSSL version to 1.0.2 in PHP 8.0

2020-08-14 Thread Gabriel Caruso
On Fri, 14 Aug 2020 at 19:16, Jakub Zelenka wrote: > Hi, > > Just a heads up that I would like to drop support for OpenSSL 1.0.1 in PHP > 8.0 as it doesn't seem to be supported by any major distro (think that RHEL > switched to 1.0.2 in 7.4 and not aware about another distro that would > still su

Re: [PHP-DEV] Allow sleep() to accept non-integer values

2020-08-20 Thread Gabriel Caruso
On Thu, 20 Aug 2020 at 14:16, Michael Voříšek - ČVUT FEL < voris...@fel.cvut.cz> wrote: > Hi everyone, > > thank you for your comments, based on them, I fixed these: > > - usleep is now used as a fallback as well, if interrupted, remaining > time is measured using microtime, so return value is alw

Re: [PHP-DEV] Allow sleep() to accept non-integer values

2020-08-20 Thread Gabriel Caruso
On Thu, 20 Aug 2020 at 14:55, Michael Voříšek - ČVUT FEL < voris...@fel.cvut.cz> wrote: > > Again, I personally don't understand why this could bypass the RFC > process, as multiple people have already, me included, voiced their > disagreement with this change. > > This was proposed by Nikita Popo

Re: [PHP-DEV] Attribute Syntax Revote

2020-08-21 Thread Gabriel Caruso
On Fri, 21 Aug 2020 at 15:12, Paul M. Jones wrote: > Hi everyone -- > > 1. Did anyone else here get this message (below) from Derick yesterday? > > 2. Maybe I missed something -- why was the vote reset? > Yeah, you missed quite a lot. Please, check https://externals.io/message/111630, https://e

Re: [PHP-DEV] PDO fetch performance problems with many bind parameters

2020-08-28 Thread Gabriel Caruso
On Fri, 28 Aug 2020 at 09:19, Matteo Beccati wrote: > Hi George, > > /cc release managers - pls don't hate me ;-) > > On 27/08/2020 10:23, Matteo Beccati wrote: > > > > On 26/08/2020 19:28, G. P. B. wrote: > >> This can still target PHP 8.0 as this seems to be akin to a bug this > >> might even b

[PHP-DEV] PHP 8.0.0 Beta 3 is ready for testing

2020-09-03 Thread Gabriel Caruso
8.0.0 Release Candidate 1 should be expected in 2 weeks, i.e. on Sep 17, 2020. Hash values and PGP signatures can be found below or at https://gist.github.com/carusogabriel/e95befa31ef171ad911e882d1b8c9f05 Thank you, and happy testing! Regards, Sara Golemon & Gabriel Caruso ``` php-8.0.0b

Re: [PHP-DEV] Re: Array recursion detection in PHP 8

2020-09-23 Thread Gabriel Caruso
On Wed, Sep 23, 2020, 14:38 Michael Wallner wrote: > On 23/09/2020 14:07, Michael Wallner wrote: > > Hi, > > > > I wondered about PHP 8 detecting recursion earlier than used to and what > > caused that, respectively why it's caused. Compare the following output: > > > > https://3v4l.org/J7Niu > >

[PHP-DEV] PHP 8.0 branch cut - The Return

2020-09-28 Thread Gabriel Caruso
Following Sara's email a couple of weeks ago, I come this week with a similar one: Next Tuesday, Sep 29th, has been marked on our calendars as the branch date for PHP-8.0 which would open master up for 8.1 targeted work. This would mean that bug fixes would need to include PHP-8.0 in their merge

Re: [PHP-DEV] PHP 8.0 branch cut - The Return

2020-09-29 Thread Gabriel Caruso
On Tue, 29 Sep 2020 at 14:29, Nikita Popov wrote: > On Tue, Sep 29, 2020 at 2:18 PM Remi Collet wrote: > > > Le 29/09/2020 à 11:55, Máté Kocsis a écrit : > > > > > Personally, I think releasing RC1 is realistic now, since parameter > > > names in the most important extensions (- ext/spl) have al

[PHP-DEV] PHP 8.0.0 Release Candidate 1 available for testing

2020-10-01 Thread Gabriel Caruso
Release Candidate 2 should be expected in 2 weeks, i.e. on Oct 15, 2020. Hash values and PGP signatures can be found below or at https://gist.github.com/carusogabriel/cb6e1b957fff40fc1bc9425a01cf6e89 Thank you, and happy testing! Regards, Sara Golemon & Gabriel Caruso ``` php-8.0.0rc1.ta

[PHP-DEV] PHP 8.0 branch out

2020-10-09 Thread Gabriel Caruso
`PHP-8.0` branch to `master`. Kind regards, -- Gabriel Caruso

Re: [PHP-DEV] PHP 8 release announcement page on php.net

2020-10-12 Thread Gabriel Caruso
On Mon, 12 Oct 2020 at 15:25, Larry Garfield wrote: > On Mon, Oct 12, 2020, at 6:10 AM, Eliot Lear wrote: > > What helps me when I spread the word is if there is a simple page that > > will look good on a retweet/FB/LinkedIn page, with a couple of release > > highlights. It doesn't need to be fa

Re: [PHP-DEV] PHP 8 release announcement page on php.net

2020-10-15 Thread Gabriel Caruso
x27;ve received from a couple of communities about this proposal: can we have translations of this page? Portuguese, French, Russian, etc. Best, -- Gabriel Caruso

Re: [PHP-DEV] PHP 8 release announcement page on php.net

2020-10-20 Thread Gabriel Caruso
On Mon, 19 Oct 2020 at 15:54, Roman Pronskiy wrote: > On Fri, Oct 16, 2020 at 1:51 AM Gabriel Caruso > wrote: > > > > Roman, > > > > One question that I've received from a couple of communities about this > proposal: can we have translations of this pa

[PHP-DEV] PHP 8.0.0 RC3 Ready for Testing

2020-10-29 Thread Gabriel Caruso
iel/700b7fafff4f50681d0f4d707da82a4f> Thank you, and happy testing! Regards, Sara Golemon & Gabriel Caruso php-8.0.0RC3.tar.gz SHA256 hash: c651a10058840abd44f99a8aed0446f102291d1408f2299790b919634689b5cd PGP signature: -BEGIN PGP SIGNATURE- iQJKBAABCAA0FiEEv93ShkKCT4EY73eQm2el

Re: [PHP-DEV] Rename PhpToken::getAll()?

2020-11-07 Thread Gabriel Caruso
On Sat, Nov 7, 2020, 10:10 Nikita Popov wrote: > Hi internals, > > Cross-posting from https://bugs.php.net/bug.php?id=80328 to a place where > someone might see it... > > The PhpToken::getAll() API introduced in PHP 8.0 is of course inspired by > the existing token_get_all() function. But arguabl

[PHP-DEV] PHP 8.0.0 RC4 Ready for Testing

2020-11-12 Thread Gabriel Caruso
. Report anything that you have found to https:/bugs.php.net <https://mail.google.com/bugs.php.net> Hash values and PGP signatures can be found below or at https://gist.github.com/carusogabriel/7c9f2bdb6349925ab6ae4b20558d07c7 Thank you, and happy testing! Regards, Sara Golemon & Gabr

[PHP-DEV] PHP 8.0.0 RC5 Ready for Testing

2020-11-19 Thread Gabriel Caruso
below or at https://gist.github.com/carusogabriel/b5ddfc1e166bff3c4fa6db0e83352b95 Thank you, and happy testing! Regards, Sara Golemon & Gabriel Caruso php-8.0.0RC5.tar.gz SHA256 hash: 6edd0e373e36f69e7f927921280a0ebbf716917e0b68664712cfc7b513c97350 PGP signature: -BEGIN PGP SIGNATURE- iQJKBAABCA

[PHP-DEV] Tomorrow is an important day

2020-11-25 Thread Gabriel Caruso
be releasing it. That’s all folks, tomorrow a new era of PHP starts and I can’t wait to see what the future reserves for us! Stay safe, stay home, wear a mask once you go out, and let’s finish 2020 on a high! . Gabriel Caruso

[PHP-DEV] PHP 8.0.1RC1 is available for testing

2020-12-17 Thread Gabriel Caruso
.1 should be expected in 3 weeks, i.e. on January 7th 2021. Hash values and PGP signatures can be found below or at <https://gist.github.com/carusogabriel/462a55847a23a243f8b4208c77d9bdd9>. Thank you, and happy testing! Regards, Gabriel Caruso & Sara Golemon php-8.0.1

[PHP-DEV] PHP 8.0.1 Released!

2021-01-07 Thread Gabriel Caruso
.0.1> Many thanks to all the contributors and supporters! Sara Golemon and Gabriel Caruso Release Manifest here and below: https://gist.github.com/carusogabriel/277fa09acd2734ec009294990b8d1f6e php-8.0.1.tar.gz SHA256 hash: f1fee0429aa2cce6bc5df5d7e65386e266b0aab8a5fad7882d10eb833d2f5376 PGP s

Re: [PHP-DEV] PHP 8.0.1 Released!

2021-01-07 Thread Gabriel Caruso
On Thu, 7 Jan 2021 at 13:51, Patrick ALLAERT wrote: > Hi, > > Since a couple of minutes => 500 internal server error on the homepage of > php.net. > Would it be, by any chance, related? > > Cheers, > Patrick > Should be fixed by http://git.php.net/?p=web/php.git;a=commit;h=511182cf My apologies

Re: [PHP-DEV] PHP.net is down?

2021-01-07 Thread Gabriel Caruso
On Thu, 7 Jan 2021 at 13:56, Patrick ALLAERT wrote: > Hi, > > That is only the homepage. > The rest of the site works fine. > > Could be related to the release of PHP 8.0.1 that happened a few minutes > ago. > > Patrick > > Le jeu. 7 janv. 2021 à 17:49, David Rodrigues a > écrit : > > > Hello! >

[PHP-DEV] PHP 8.0.2RC1 is available for testing

2021-01-21 Thread Gabriel Caruso
stem < https://bugs.php.net>. 8.0.2 should be expected in 2 weeks, i.e. on February 4th 2021. Hash values and PGP signatures can be found below or at <https://gist.github.com/carusogabriel/0159b43d4f233b98ebc0a192c504c8e3>. Thank you, and happy testing! Regards, Gabriel Caruso & Sara

[PHP-DEV] Re: PHP 8.0.2RC1 is available for testing

2021-01-22 Thread Gabriel Caruso
ly in February, but you can have a preview of it at https://github.com/php/php-src/blob/PHP-8.0.2/NEWS Kind regards, -- Gabriel Caruso On Fri, 22 Jan 2021 at 02:01, Andrey Tomin wrote: > Hi where to read about new features? > > чт, 21 янв. 2021 г., 14:25 Gabriel Caruso : > >>

[PHP-DEV] PHP 8.0.2 Released!

2021-02-04 Thread Gabriel Caruso
.0.2> Many thanks to all the contributors and supporters! Sara Golemon and Gabriel Caruso Release Manifest here and below: https://gist.github.com/carusogabriel/a49d4b0cfe8cbc336cb93766f817cc3c php-8.0.2.tar.gz SHA256 hash: cc17a32f76beb5f405da39a548218b3b6736710884fcd761838098553df149da PGP s

[PHP-DEV] PHP 8.0.4RC1 Available for testing

2021-03-18 Thread Gabriel Caruso
8.0.4 should be expected in 2 weeks, i.e. on April 1st 2021. Hash values and PGP signatures can be found below or at: https://gist.github.com/carusogabriel/51828354c38091417e16e25172664a45 Thank you, and happy testing! Regards, Gabriel Caruso & Sara Golemon php-8.0.4RC1.tar.gz SHA256

[PHP-DEV] Re: PHP 8.0.4RC1 Available for testing

2021-03-18 Thread Gabriel Caruso
On Thu, 18 Mar 2021 at 10:56, Gabriel Caruso wrote: > PHP 8.0.3RC1 has just been released and can be downloaded from: > https://downloads.php.net/~carusogabriel/ > Or use the git tag: php-8.0.3RC1 > My bad, it should be php-8.0.4RC1, copy & pasta error :D > > Windows

Re: [PHP-DEV] Changes to Git commit workflow

2021-03-28 Thread Gabriel Caruso
nches#require-signed-commits We can create rules that requires that for all active maintained version of PHP. We can set that per repo, or in a organization level. - Gabriel Caruso

[PHP-DEV] PHP 8.0.5RC1 Available for testing

2021-04-15 Thread Gabriel Caruso
April 29th 2021. Hash values and PGP signatures can be found below or at: https://gist.github.com/carusogabriel/37af3a5ce81ddc46c0be400db2324996 Thank you, and happy testing! Regards, Gabriel Caruso & Sara Golemon php-8.0.5RC1.tar.gz SHA256

Re: [PHP-DEV] Unable to log in to wiki.php.net

2021-04-19 Thread Gabriel Caruso
On Mon, 19 Apr 2021, 16:59 Marco Pivetta, wrote: > On Mon, Apr 19, 2021, 16:56 Aleksander Machniak wrote: > > > I was about to log in to vote on some RFCs, but I cannot log in. I reset > > the password twice, the new passwords didn't work either. > > > > My username is 'alec'. Could someone veri

[PHP-DEV] PHP 8.0.5 Released

2021-04-29 Thread Gabriel Caruso
ChangeLog-8.php#8.0.5> Release Manifest: < https://gist.github.com/carusogabriel/6dc68ec66bc210bd1bca37b02deb1464> Many thanks to all the contributors and supporters! Gabriel Caruso & Sara Golemon php-8.0.5.tar.gz SHA256 hash: 50aeac6fe9c2b5577d534369392ebb89c3e7a342b20ef538832b1df9

Re: [PHP-DEV] Re: [RFC] [Discussion] Final constants

2021-05-17 Thread Gabriel Caruso
On Sun, 16 May 2021, 15:52 Máté Kocsis, wrote: > As I've fully finished the implementation, I intend to bring this to a vote > on Wednesday if no new concerns come up (besides the usual question about > the usefulness of the feature). > > Máté Interesting RFC Maté, thanks for bringing it. How

[PHP-DEV] PHP 8.0.8RC1 Available for testing

2021-06-17 Thread Gabriel Caruso
bug system: https://bugs.php.net 8.0.8 should be expected in 2 weeks, i.e. on July 1st 2021. Hash values and PGP signatures can be found below or at: https://gist.github.com/carusogabriel/0e61cfc58efd2bd4932eff9ec79730b1 Thank you, and happy testing! Regards, Gabriel Caruso & Sara Golemon

[PHP-DEV] PHP 8.0.8 Released!

2021-07-01 Thread Gabriel Caruso
ChangeLog-8.php#8.0.8> Release Manifest: < https://gist.github.com/carusogabriel/b6833d26731a1f7c46daa35a492fd97a> Many thanks to all the contributors and supporters! Gabriel Caruso & Sara Golemon php-8.0.8.tar.gz SHA256 hash: 084a1e8020e86fb99b663d195fd9ac98a9f37dfcb9ecb5c159054cdb

[PHP-DEV] PHP 8.0.9 Released!

2021-07-29 Thread Gabriel Caruso
ChangeLog-8.php#8.0.9> Release Manifest: < https://gist.github.com/carusogabriel/7492c03c31fcfffda2b4b5d2b0b4f376> Many thanks to all the contributors and supporters! Gabriel Caruso & Sara Golemon php-8.0.9.tar.gz SHA256 hash: 1f0d72e90ab6ad0ae13329a96b281f71bc592563ce4e3a4c816b8da4

Re: [PHP-DEV] Shut down gcov.php.net

2021-08-08 Thread Gabriel Caruso
On Wed, 4 Aug 2021, 14:25 Christoph M. Becker, wrote: > Hi all, > > I suggest to shut down altogether. It is barely > maintained for quite a while: PHP 7.4 builds are failing, and there are > no PHP 8.0 builds at all. We already run a coverage job on Azure[1], so > there

[PHP-DEV] PHP 8.0.10RC1 Available for testing

2021-08-16 Thread Gabriel Caruso
bugs in the bug system: https://bugs.php.net. Hash values and PGP signatures can be found below or at: https://gist.github.com/carusogabriel/55774ce6c5d39698719c2f8a6de65284 8.0.10 should be expected in 2 weeks, i.e. on August 26th 2021. Thank you, and happy testing! Regards, Gabriel Caruso &

Re: [PHP-DEV] Guidelines for RFC post feature-freeze

2021-08-23 Thread Gabriel Caruso
On Mon, 23 Aug 2021, 22:49 Deleu, wrote: > Hello everyone! > > We recently had the Nullable Intersection Types RFC process in an > unconventional way starting a new RFC post feature freeze. If memory serves > me right, another similar incident happened with the Attributes RFC which > had a syntax

Re: [PHP-DEV] Guidelines for RFC post feature-freeze

2021-08-23 Thread Gabriel Caruso
On Mon, 23 Aug 2021, 23:07 Gabriel Caruso, wrote: > On Mon, 23 Aug 2021, 22:49 Deleu, wrote: > >> Hello everyone! >> >> We recently had the Nullable Intersection Types RFC process in an >> unconventional way starting a new RFC post feature freeze. If memory

[PHP-DEV] PHP 8.0.10 Released!

2021-08-26 Thread Gabriel Caruso
8.php#8.0.10> Release Manifest:< https://gist.github.com/carusogabriel/8f0196195b1c4d8e2b20fa264b94f8dd> Many thanks to all the contributors and supporters! Gabriel Caruso & Sara Golemon php-8.0.10.tar.gz SHA256 hash: 4612dca9afe8148801648839175ab588097ace66658c6859e9f283ecdeaf

[PHP-DEV] Re: PHP 8.0.10 Released!

2021-08-26 Thread Gabriel Caruso
On Thu, 26 Aug 2021 at 13:04, Gabriel Caruso wrote: > The PHP development team announces the immediate availability of PHP > 8.0.X. This is a security fix release. > PHP 8.0.10, ops. > > All PHP 8.0 users are encouraged to upgrade to this version. > > For source downloads

[PHP-DEV] PHP 8.0.12RC1 Available for testing

2021-10-07 Thread Gabriel Caruso
://bugs.php.net. Hash values and PGP signatures can be found below or at: https://gist.github.com/carusogabriel/c0cc941cada6051bdb659be50f1e600d 8.0.12 should be expected in 2 weeks, i.e. on October 21st 2021. Thank you, and happy testing! Regards, Gabriel Caruso & Sara Golemon php-8.0.12RC1.ta

[PHP-DEV] PHP 8.0.12 Released

2021-10-21 Thread Gabriel Caruso
8.php#8.0.12> Release Manifest: < https://gist.github.com/carusogabriel/6ff51a8439014e0e1f8fb2c0fb3edd4f> Many thanks to all the contributors and supporters! Gabriel Caruso & Sara Golemon php-8.0.12.tar.gz SHA256 hash: a5b78f04a89d3b401465febf449c7ea9de48681f92803dd8dc2bf922812d

[PHP-DEV] PHP 8.0.15RC1 Available for testing

2022-01-06 Thread Gabriel Caruso
/issues. Hash values and PGP signatures can be found below or at: https://gist.github.com/carusogabriel/703f7228db211d5a1127bdca24735da9 8.0.15 should be expected in 2 weeks, i.e. on Jan 20th 2022. Thank you, and happy testing! Regards, Gabriel Caruso & Sara Golemon php-8.0.15RC1.tar.gz SHA256

[PHP-DEV] PHP 8.0.15 Released

2022-01-20 Thread Gabriel Caruso
.15> Release Manifest: < https://gist.github.com/carusogabriel/029c357268c1836104d99655642b596b> Many thanks to all the contributors and supporters! Gabriel Caruso & Sara Golemon php-8.0.15.tar.gz SHA256 hash: 47f0be6188b05390bb457eb1968ea19463acada79650afc35ec763348d5c2370 PGP s

[PHP-DEV] PHP 8.0.17RC1 Available for testing

2022-03-03 Thread Gabriel Caruso
/issues. Hash values and PGP signatures can be found below or at: https://gist.github.com/carusogabriel/150db75ca28b2a3f4a03015d2ae6a672 8.0.17 should be expected in 2 weeks, i.e. on Mar 17th 2022. Thank you, and happy testing! Regards, Gabriel Caruso & Sara Golemon php-8.0.17RC1.tar.gz SHA256

[PHP-DEV] PHP 8.0.17 Released

2022-03-17 Thread Gabriel Caruso
.17> Release Manifest: < https://gist.github.com/carusogabriel/4886a6b7778feb1e4f4e4d66bb8d6225> Many thanks to all the contributors and supporters! Gabriel Caruso & Sara Golemon php-8.0.17.tar.gz SHA256 hash: bdbd792901c156c4d1710c9d266732d3c17f6ff63850d6660b9d8d3411188424 PGP s

  1   2   >