Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch 1 #8

Closed
wants to merge 9 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
ubuntu:
strategy:
matrix:
version: ['7.3', '7.4', '8.0', '8.1', '8.2']
version: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
runs-on: ubuntu-latest
steps:
- name: Install re2c
Expand Down
46 changes: 40 additions & 6 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ It can deal with rfc822 and rfc2045 (MIME) compliant messages.
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2022-09-15</date>
<date>2023-08-22</date>
<version>
<release>3.1.5dev</release>
<release>3.1.7dev</release>
<api>3.0</api>
</version>
<stability>
Expand All @@ -47,10 +47,7 @@ It can deal with rfc822 and rfc2045 (MIME) compliant messages.
</stability>
<license uri="https://www.php.net/license/3_01.txt" filesource="LICENSE">PHP-3.01</license>
<notes>
- drop usage of removed mbfl APIs in PHP 8.3
- fix GH-27 MimeMessage::__construct() throws TypeError with $mode=stream
- fix GH-21, GH-22, GH-24 segfault in mailparse_msg_parse without mime-version
- fix #81403 mailparse_rfc822_parse_addresses drops escaped quotes
-
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -96,6 +93,8 @@ It can deal with rfc822 and rfc2045 (MIME) compliant messages.
<file name="gh21.phpt" role="test" />
<file name="gh22.phpt" role="test" />
<file name="gh24.phpt" role="test" />
<file name="gh29.phpt" role="test" />
<file name="gh30.phpt" role="test" />
<file name="parse_test_messages.phpt" role="test" />
</dir> <!-- //tests -->
<file name="config.m4" role="src" />
Expand Down Expand Up @@ -131,6 +130,41 @@ It can deal with rfc822 and rfc2045 (MIME) compliant messages.
<providesextension>mailparse</providesextension>
<extsrcrelease />
<changelog>
<release>
<date>2023-08-22</date>
<version>
<release>3.1.6</release>
<api>3.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://www.php.net/license/3_01.txt" filesource="LICENSE">PHP-3.01</license>
<notes>
- fix #29 Segmentation fault with ISO-2022-JP Subject header
- fix #30 Segmentation fault with UTF-8 encoded X-MS-Iris-MetaData header
- revert fix #81403 mailparse_rfc822_parse_addresses drops escaped quotes
</notes>
</release>
<release>
<date>2023-07-27</date>
<version>
<release>3.1.5</release>
<api>3.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://www.php.net/license/3_01.txt" filesource="LICENSE">PHP-3.01</license>
<notes>
- drop usage of removed mbfl APIs in PHP 8.3
- fix GH-27 MimeMessage::__construct() throws TypeError with $mode=stream
- fix GH-21, GH-22, GH-24 segfault in mailparse_msg_parse without mime-version
- fix #81403 mailparse_rfc822_parse_addresses drops escaped quotes
</notes>
</release>
<release>
<date>2022-09-15</date>
<version>
Expand Down
2 changes: 1 addition & 1 deletion php_mailparse.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
extern zend_module_entry mailparse_module_entry;
#define phpext_mailparse_ptr &mailparse_module_entry

#define PHP_MAILPARSE_VERSION "3.1.5-dev"
#define PHP_MAILPARSE_VERSION "3.1.7-dev"

#ifdef PHP_WIN32
#define PHP_MAILPARSE_API __declspec(dllexport)
Expand Down
Loading
Loading