Skip to content

Python: Bump python-multipart from 0.0.26 to 0.0.31 in /python#14088

Closed
dependabot[bot] wants to merge 4 commits into
mainfrom
dependabot/uv/python/python-multipart-0.0.31
Closed

Python: Bump python-multipart from 0.0.26 to 0.0.31 in /python#14088
dependabot[bot] wants to merge 4 commits into
mainfrom
dependabot/uv/python/python-multipart-0.0.31

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 16, 2026

Copy link
Copy Markdown
Contributor

Bumps python-multipart from 0.0.26 to 0.0.31.

Release notes

Sourced from python-multipart's releases.

Version 0.0.31

What's Changed

Full Changelog: Kludex/python-multipart@0.0.30...0.0.31

Version 0.0.30

What's Changed

Full Changelog: Kludex/python-multipart@0.0.29...0.0.30

Version 0.0.29

What's Changed

Full Changelog: Kludex/python-multipart@0.0.28...0.0.29

Version 0.0.28

What's Changed

Full Changelog: Kludex/python-multipart@0.0.27...0.0.28

Version 0.0.27

What's Changed

Full Changelog: Kludex/python-multipart@0.0.26...0.0.27

Changelog

Sourced from python-multipart's changelog.

0.0.31 (2026-06-04)

  • Speed up multipart header parsing and callback dispatch #295.
  • Bound header field name size before validating #296.
  • Validate Content-Length is non-negative in parse_form #297.

0.0.30 (2026-05-31)

  • Parse application/x-www-form-urlencoded bodies per the WHATWG URL standard, treating only & as a field separator #290.
  • Ignore RFC 2231/5987 extended parameters (name*, filename*) in parse_options_header, keeping the plain parameter authoritative per RFC 7578 §4.2 #291.

0.0.29 (2026-05-17)

  • Handle malformed RFC 2231 continuations in parse_options_header #270.

0.0.28 (2026-05-10)

  • Speed up partial-boundary tail scan via bytes.find #281.
  • Cap multipart boundary length at 256 bytes #282.

0.0.27 (2026-04-27)

  • Add multipart header limits #267.
  • Pass parse offsets via constructors #268.
Commits

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [python-multipart](https://github.com/Kludex/python-multipart) from 0.0.26 to 0.0.31.
- [Release notes](https://github.com/Kludex/python-multipart/releases)
- [Changelog](https://github.com/Kludex/python-multipart/blob/main/CHANGELOG.md)
- [Commits](Kludex/python-multipart@0.0.26...0.0.31)

---
updated-dependencies:
- dependency-name: python-multipart
  dependency-version: 0.0.31
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file. Used by Dependabot. label Jun 16, 2026
Copilot AI review requested due to automatic review settings June 16, 2026 21:56
@dependabot dependabot Bot added the python:uv Pull requests that update python:uv code label Jun 16, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner June 16, 2026 21:56

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot encountered an error and was unable to review this pull request. You can try again by re-requesting a review.

@moonbox3 moonbox3 added the python Pull requests for the Python Semantic Kernel label Jun 16, 2026
@github-actions github-actions Bot changed the title Bump python-multipart from 0.0.26 to 0.0.31 in /python Python: Bump python-multipart from 0.0.26 to 0.0.31 in /python Jun 16, 2026

@github-actions github-actions Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Automated Code Review

Reviewers: 5 | Confidence: 68% | Result: All clear

Reviewed: Correctness, Security Reliability, Test Coverage, Failure Modes, Design Approach


Automated review by dependabot[bot]'s agents

@moonbox3

Copy link
Copy Markdown
Collaborator

@copilot: fix the CI/CD failures

Copilot AI commented Jun 17, 2026

Copy link
Copy Markdown
Contributor

@copilot: fix the CI/CD failures

The CI failure is a pre-existing issue (present on multiple unrelated branches from the same base commit). The failing test is test_crud_operations_pandas[definition_pandas] on Windows Python 3.10, where WindowsProactorEventLoopPolicy raises RuntimeError: There is no current event loop after accumulated _set_called=True, _loop=None state across tests.

Fixed in commits:

  1. Added a function-scoped event_loop_policy fixture to tests/unit/data/conftest.py returning a fresh asyncio.DefaultEventLoopPolicy() per test — this ensures each test uses a clean policy instance, preventing the broken state from persisting.
  2. Added explicit asyncio_default_test_loop_scope = "function" to pyproject.toml (same as the default, now explicit).

Copilot AI requested a review from moonbox3 June 17, 2026 06:12
@moonbox3

Copy link
Copy Markdown
Collaborator

@copilot fix the failing CI/CD checks

Copilot AI commented Jun 17, 2026

Copy link
Copy Markdown
Contributor

@copilot fix the failing CI/CD checks

The CI status after investigating:

  1. Original test failure (test_crud_operations_pandas[definition_pandas]RuntimeError: There is no current event loop on Windows Python 3.10) was fixed in previous commits by adding an event_loop_policy fixture to tests/unit/data/conftest.py that returns a fresh asyncio.DefaultEventLoopPolicy() per test, preventing corrupted event loop policy state from propagating across tests.

  2. New CI failure in the most recent run was a transient network error unrelated to any code change:

    × Failed to download `nbconvert==7.17.1`
    ╰─▶ peer closed connection without sending TLS close_notify
    

    This is a GitHub Actions runner infrastructure issue (dropped TLS connection) and not fixable in code.

  3. Cleanup (commit f5f6b06): removed the asyncio_default_test_loop_scope = "function" line I previously added to pyproject.toml — this option is not recognized by pytest-asyncio 0.24 and was generating a PytestConfigWarning: Unknown config option.

The python-tests-coverage check passed in the last run, confirming the tests work correctly. The remaining failures are due to the transient network issue and fail-fast: true cancelling sibling matrix jobs. A fresh CI run should pass.

@moonbox3
moonbox3 enabled auto-merge June 17, 2026 11:47
@moonbox3
moonbox3 requested a review from eavanvalkenburg June 17, 2026 11:47
@rogerbarreto

Copy link
Copy Markdown
Member

@copilot this Dependabot pull request has failing CI checks. Please investigate the failures and fix what may be wrong. When applicable, this can include bumping other related dependencies to compatible versions and resolving breaking changes introduced by this update. Please push the fixes to this pull request branch so the checks can pass.

Copilot AI commented Jul 22, 2026

Copy link
Copy Markdown
Contributor

@copilot this Dependabot pull request has failing CI checks. Please investigate the failures and fix what may be wrong. When applicable, this can include bumping other related dependencies to compatib...

Investigated all CI failures across the three runs on this PR branch:

Root cause & fix (already committed): The first run (27650761399) had a genuine test failure — test_crud_operations_pandas[definition_pandas] on Windows Python 3.10 raised RuntimeError: There is no current event loop. The cause was accumulated corrupted event-loop-policy state (_set_called=True, _loop=None) from a previous test on Windows' WindowsProactorEventLoopPolicy. This was fixed in commit 44dfb22 by adding a function-scoped event_loop_policy fixture in tests/unit/data/conftest.py that returns a fresh asyncio.DefaultEventLoopPolicy() instance per test, preventing the corrupted state from leaking across tests. The test passes in all subsequent runs and locally.

Remaining failures are transient network issues (not code-fixable):

  • Run 27669564134: Windows Python 3.11 — Failed to download nbconvert==7.17.1 (TLS connection closed without notify at uv sync step — before any tests ran)
  • Run 27672775100: Windows Python 3.10 — Failed to fetch motor-3.7.1-py3-none-any.whl.metadata (broken pipe at uv sync step — before any tests ran)

Both failures occurred during package download in uv sync, not during test execution. They are GitHub Actions runner infrastructure issues and cannot be fixed in code.

python-multipart 0.0.26 → 0.0.31 compatibility: All changes between these versions are backward-compatible (security fixes, performance improvements, security bounds on header/boundary sizes). No SK code uses python-multipart directly — it's pulled in transitively by mcp>=1.26.0 which requires python-multipart>=0.0.9. No related dependency bumps are needed.

A fresh CI run should pass once the transient network conditions resolve.

Copilot AI requested a review from rogerbarreto July 22, 2026 13:17
pull Bot pushed a commit to AmirulAndalib/semantic-kernel that referenced this pull request Jul 23, 2026
### Motivation and Context

Semantic Kernel currently has 43 open Dependabot pull requests spanning
GitHub Actions, .NET, Python, npm, and Yarn dependency graphs. This
rollup applies their compatible net changes together on the latest
`main`, making it possible to validate and merge the updates as one
coherent dependency state.

Supersedes:

- microsoft#13133
- microsoft#13134
- microsoft#13136
- microsoft#13172
- microsoft#13507
- microsoft#13601
- microsoft#13606
- microsoft#13666
- microsoft#13673
- microsoft#13688
- microsoft#13700
- microsoft#13707
- microsoft#13708
- microsoft#13712
- microsoft#13721
- microsoft#13873
- microsoft#13930
- microsoft#13939
- microsoft#13949
- microsoft#13950
- microsoft#13951
- microsoft#13997
- microsoft#14000
- microsoft#14053
- microsoft#14069
- microsoft#14088
- microsoft#14091
- microsoft#14094
- microsoft#14103
- microsoft#14106
- microsoft#14107
- microsoft#14108
- microsoft#14109
- microsoft#14110
- microsoft#14128
- microsoft#14148
- microsoft#14149
- microsoft#14160
- microsoft#14161
- microsoft#14164
- microsoft#14171
- microsoft#14172
- microsoft#14173

### Description

- Updates the requested GitHub Actions and preserves the PR-file-scoped
typos workflow fix.
- Consolidates the .NET Aspire, AWS SDK, ReportGenerator, JavaScript,
and SQLite security updates.
- Regenerates the npm, Yarn, and uv lockfiles from the combined
manifests instead of resolving generated-file conflicts by selection.
- Rolls overlapping updates forward to one compatible result: pyasn1
0.6.4 supersedes 0.6.3; pyOpenSSL 26.2.0 remains compatible with
cryptography 48.0.1; and Vite 8/Rolldown makes the older Rollup-only
overrides obsolete.
- Retains updates already present on current `main` without
reintroducing stale pins, including Aspire Hosting Azure Search 13.3.0
and Prompty.Core 2.0.0-beta.3.

The full .NET solution builds in Debug with zero warnings and errors.
Focused validation passed 82 .NET tests (3 skipped), 1,096 Python tests,
both frontend production builds, and uv lock consistency checks for the
main Python project and OAuth sample.

### Contribution Checklist

- [x] The code builds clean without any errors or warnings
- [ ] The PR follows the [SK Contribution
Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md)
and the [pre-submission formatting
script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts)
raises no violations
- [ ] All unit tests pass, and I have added new tests where possible
- [x] I didn't break anyone 😄

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
@moonbox3

Copy link
Copy Markdown
Collaborator

Superseded by #14176

@moonbox3 moonbox3 closed this Jul 23, 2026
auto-merge was automatically disabled July 23, 2026 09:30

Pull request was closed

@dependabot @github

dependabot Bot commented on behalf of github Jul 23, 2026

Copy link
Copy Markdown
Contributor Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot
dependabot Bot deleted the dependabot/uv/python/python-multipart-0.0.31 branch July 23, 2026 09:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file. Used by Dependabot. python:uv Pull requests that update python:uv code python Pull requests for the Python Semantic Kernel

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants