<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/ext/calendar/tests, branch master</title>
<subtitle>git.php.net: repository/php-src.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/'/>
<entry>
<title>Migrate skip checks to --EXTENSIONS--, p1</title>
<updated>2021-03-22T16:51:02+00:00</updated>
<author>
<name>Max Semenik</name>
<email>maxsem.wiki@gmail.com</email>
</author>
<published>2021-03-22T13:10:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=56f90492d68cf01a35fb0ce0290a50c09660b86f'/>
<id>56f90492d68cf01a35fb0ce0290a50c09660b86f</id>
<content type='text'>
For rationale, see https://github.com/php/php-src/pull/6787

Extensions migrated in this part:
* bcmath
* bz2
* calendar
* com_dotnet
* ctype

Closes GH-6797.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
For rationale, see https://github.com/php/php-src/pull/6787

Extensions migrated in this part:
* bcmath
* bz2
* calendar
* com_dotnet
* ctype

Closes GH-6797.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix test</title>
<updated>2020-10-07T12:58:43+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmbecker69@gmx.de</email>
</author>
<published>2020-10-07T12:57:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=a74c25bca143a894220c2a01792707ab8f0e83ef'/>
<id>a74c25bca143a894220c2a01792707ab8f0e83ef</id>
<content type='text'>
The upper limit is different for 32bit and 64bit, but we are testing
the lower limit only, so can use a placeholder.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The upper limit is different for 32bit and 64bit, but we are testing
the lower limit only, so can use a placeholder.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-7.4' into master</title>
<updated>2020-10-07T12:09:32+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmbecker69@gmx.de</email>
</author>
<published>2020-10-07T11:28:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=92d0a101508f535b98636509cb8695823aeeb926'/>
<id>92d0a101508f535b98636509cb8695823aeeb926</id>
<content type='text'>
* PHP-7.4:
  Fix #80185: jdtounix() fails after 2037
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-7.4:
  Fix #80185: jdtounix() fails after 2037
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-7.3' into PHP-7.4</title>
<updated>2020-10-07T11:25:11+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmbecker69@gmx.de</email>
</author>
<published>2020-10-07T11:24:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=9dddfbe755e308d47e1c1c9349b778abed52cd3c'/>
<id>9dddfbe755e308d47e1c1c9349b778abed52cd3c</id>
<content type='text'>
* PHP-7.3:
  Fix #80185: jdtounix() fails after 2037
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-7.3:
  Fix #80185: jdtounix() fails after 2037
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix #80185: jdtounix() fails after 2037</title>
<updated>2020-10-07T11:23:50+00:00</updated>
<author>
<name>Christoph M. Becker</name>
<email>cmbecker69@gmx.de</email>
</author>
<published>2020-10-07T08:38:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=e857dfa7cc9d28174e2328bd3ef74d9c436afda9'/>
<id>e857dfa7cc9d28174e2328bd3ef74d9c436afda9</id>
<content type='text'>
There is no such thing as the "end of the unix epoch", and if it was,
it would certainly not be 2037-10-11T02:00:00.  There is, however,
potential integer overflow which we need to avoid.

Closes GH-6288.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There is no such thing as the "end of the unix epoch", and if it was,
it would certainly not be 2037-10-11T02:00:00.  There is, however,
potential integer overflow which we need to avoid.

Closes GH-6288.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add many missing closing PHP tags to tests</title>
<updated>2020-08-09T20:03:36+00:00</updated>
<author>
<name>Máté Kocsis</name>
<email>kocsismate@woohoolabs.com</email>
</author>
<published>2020-08-09T09:06:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=7aacc705d03887c64a90489e367f4c40b46aa3c2'/>
<id>7aacc705d03887c64a90489e367f4c40b46aa3c2</id>
<content type='text'>
Closes GH-5958
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes GH-5958
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace EXPECTF when possible</title>
<updated>2020-06-29T19:31:44+00:00</updated>
<author>
<name>Fabien Villepinte</name>
<email>fabien.villepinte@gmail.com</email>
</author>
<published>2020-06-29T19:31:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=0c6d06ecfa8f75f5afc4daf852a76c905b672b25'/>
<id>0c6d06ecfa8f75f5afc4daf852a76c905b672b25</id>
<content type='text'>
Closes GH-5779
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes GH-5779
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve some ValueError messages</title>
<updated>2020-04-06T08:41:01+00:00</updated>
<author>
<name>Máté Kocsis</name>
<email>kocsismate@woohoolabs.com</email>
</author>
<published>2020-04-01T21:32:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=50765075db6b6d5a9597589601c59f743f6ee9c8'/>
<id>50765075db6b6d5a9597589601c59f743f6ee9c8</id>
<content type='text'>
Closes GH-5340
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes GH-5340
</pre>
</div>
</content>
</entry>
<entry>
<title>Reindent phpt files</title>
<updated>2020-02-03T21:52:20+00:00</updated>
<author>
<name>Nikita Popov</name>
<email>nikita.ppv@gmail.com</email>
</author>
<published>2020-02-03T21:52:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=f8d795820e780a6322e054c26c581570613c14f0'/>
<id>f8d795820e780a6322e054c26c581570613c14f0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make error messages more consistent by fixing capitalization</title>
<updated>2020-01-17T13:52:46+00:00</updated>
<author>
<name>Máté Kocsis</name>
<email>kocsismate@woohoolabs.com</email>
</author>
<published>2020-01-15T10:27:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=d1764ca33018f1f2e4a05926c879c67ad4aa8da5'/>
<id>d1764ca33018f1f2e4a05926c879c67ad4aa8da5</id>
<content type='text'>
Closes GH-5066 As a first step, let's capitalize their initial letter when it is applicable.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes GH-5066 As a first step, let's capitalize their initial letter when it is applicable.
</pre>
</div>
</content>
</entry>
</feed>
