We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4452a7 commit 28f4785Copy full SHA for 28f4785
CHANGELOG.md
@@ -1,5 +1,10 @@
1
# Changelog
2
3
+## 0.0.26 (2026-04-10)
4
+
5
+* Skip preamble before the first multipart boundary more efficiently [#262](https://github.com/Kludex/python-multipart/pull/262).
6
+* Silently discard epilogue data after the closing multipart boundary [#259](https://github.com/Kludex/python-multipart/pull/259).
7
8
## 0.0.25 (2026-04-10)
9
10
* Add MIME content type info to `File` [#143](https://github.com/Kludex/python-multipart/pull/143).
python_multipart/__init__.py
@@ -12,7 +12,7 @@
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
15
-__version__ = "0.0.25"
+__version__ = "0.0.26"
16
17
from .multipart import (
18
BaseParser,
0 commit comments