diff --git a/multipart-0.2.5.tar.gz b/multipart-0.2.5.tar.gz deleted file mode 100644 index 6fda7b623a7896cf1c10f4534fa91f0113e18af8..0000000000000000000000000000000000000000 Binary files a/multipart-0.2.5.tar.gz and /dev/null differ diff --git a/multipart-1.0.0.tar.gz b/multipart-1.0.0.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..738936757855f73f1a093955715739b0aba1e234 Binary files /dev/null and b/multipart-1.0.0.tar.gz differ diff --git a/python-multipart.spec b/python-multipart.spec index 8fd18b3891c3be2c6348dca9eb2c54909b925c6c..246767c676364f22e8b8eda2fb807691541de158 100644 --- a/python-multipart.spec +++ b/python-multipart.spec @@ -1,13 +1,13 @@ %global pypi_name multipart Name: python-%{pypi_name} -Version: 0.2.5 +Version: 1.0.0 Release: 1 Summary: Parser for multipart/form-data License: MIT URL: http://github.com/defnull/multipart -Source0: https://files.pythonhosted.org/packages/ad/ff/6f8d8a6635d20e6d5932bf34facc6ee50184f585411e65ef556744d55a49/multipart-0.2.5.tar.gz +Source0: https://files.pythonhosted.org/packages/28/8a/8f22022649955bce1b1f22b8814998001aabb1d1d6833d40ee8bbbd700e6/multipart-1.0.0.tar.gz BuildArch: noarch BuildRequires: python3-devel @@ -49,6 +49,15 @@ rm -rf %{pypi_name}.egg-info %{python3_sitelib}/%{pypi_name}-%{version}-py%{python3_version}.egg-info %changelog +* Tue Oct 8 2024 guojunding - 1.0.0-1 +- Update package to version 1.0.0 +- A completely new, fast, non-blocking PushMultipartParser parser, which now serves as the basis for all other parsers. +- The new parser is stricter and rejects clearly broken input quicker, even in non-strict mode (e.g. invalid line breaks or header names). This should not affect data sent by actual browsers or HTTP clients. +- Default charset for MultipartParser headers and text fields changed to utf8, as recommended by W3C HTTP. +- Default disk and memory limits for MultipartParser increased, but multiple other limits added for finer control. Check if the the new defaults still fit your needs. +- Undocumented APIs deprecated or removed, some of which were not strictly private. This includes parameters for MultipartParser and some MultipartPart methods, but those should not be used by anyone but the parser itself. + + * Fri Aug 02 2024 muxiaohui - 0.2.5-1 - Update package to version 0.2.5 - Add official support for Python 3.10-3.12