Skip to content

chore(deps): Bump msgpack from 1.1.2 to 1.2.1#1445

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/msgpack-1.2.1
Open

chore(deps): Bump msgpack from 1.1.2 to 1.2.1#1445
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/msgpack-1.2.1

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps msgpack from 1.1.2 to 1.2.1.

Release notes

Sourced from msgpack's releases.

v1.2.1

What's Changed

Full Changelog: msgpack/msgpack-python@v1.2.0...v1.2.1

v1.2.0

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from msgpack's changelog.

1.2.1

Release Date: 2026-06-19

Fix a segfault when calling Unpacker.unpack() or Unpacker.skip() after an unpacking failure. But note that reusing the same Unpacker instance after an unpacking failure is not supported. Please create a new Unpacker instance instead. GHSA-6v7p-g79w-8964

1.2.0

Release Date: 2026-06-11

  • Support free threaded Python. #654, #686
  • Dropped support for Python 3.9. #656
  • Fix missing error checks in C code. #665, #666, #667, #672
  • Fix strict_map_key option didn't work for object_pairs_hook. #673
  • Increase DEFAULT_RECURSE_LIMIT of Unpacker to 1024. #676
  • Fix memory leak when Unpacker returns error for invalid input. #671
  • Fix Packer.pack_ext_type() ignored autoreset option. #663
  • Fix Timestamp.from_datetime() returning wrong value for pre-epoch datetimes. #662
  • Fix use-after-free in unpackb() and Unpacker.unpack() for non-contiguous input. #677
  • Fix possible memory leak when calling Unpacker.__init__() several times. #687
Commits
  • 448d43f release v1.2.1 (#698)
  • 2c56ddb Merge commit from fork
  • 0f4f350 Bump pypa/cibuildwheel from 4.0.0 to 4.1.0 in the all-dependencies group (#694)
  • 11ed0a5 release v1.2.0 (#692)
  • c410a38 Bump pypa/cibuildwheel from 3.4.1 to 4.0.0 (#691)
  • 97ba6ca skip ci: remove unneeded CIBW_SKIP option
  • cdde1b0 Wheels CI hangs for MacOS Intel (#689)
  • 5eb57e1 release v1.2.0rc1 (#681)
  • 77395c1 Harden Unpacker.__init__ re-entry cleanup to prevent buffer/context leaks (...
  • 7df7136 Guard Packer buffer protocol hooks with Cython critical sections (#686)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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.

Bumps [msgpack](https://github.com/msgpack/msgpack-python) from 1.1.2 to 1.2.1.
- [Release notes](https://github.com/msgpack/msgpack-python/releases)
- [Changelog](https://github.com/msgpack/msgpack-python/blob/main/CHANGELOG.md)
- [Commits](msgpack/msgpack-python@v1.1.2...v1.2.1)

---
updated-dependencies:
- dependency-name: msgpack
  dependency-version: 1.2.1
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Jun 23, 2026
@gcko gcko self-requested a review June 23, 2026 23:54

@gcko gcko 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.

Adversarial review of the full gh pr diff (#1445), cross-checked against the msgpack-python 1.2.0/1.2.1 release notes, the PyPI advisory database, and recce's actual usage. No code changed — only the resolved lockfile entry.

LOW (positive / security) — bump closes a known advisory. GHSA-6v7p-g79w-8964 ("MessagePack for Python: Out-of-bounds read / crash on Unpacker reuse after a caught error") affects msgpack <= 1.2.0 and is first patched in 1.2.1. recce was previously pinned to 1.1.2, i.e. vulnerable. This bump is therefore security-positive. Real-world exposure to recce is low (recce doesn't unpack untrusted msgpack directly; the consumer is dbt's manifest (de)serialization of trusted local artifacts), but moving off a flagged version is the right call. uv.lock:1298 (msgpack package block).

NIT — minor version jump carries a Python-floor change that does not affect recce. msgpack 1.2.0 dropped Python 3.9 support (msgpack-python PR #656). recce declares requires-python = ">=3.10" (pyproject.toml:7), so this is a no-op for recce; the new lockfile wheels start at cp310, consistent with the floor. Flagging only for completeness.

NIT — behavioral change in 1.2.0: DEFAULT_RECURSE_LIMIT raised 511 → 1024 (msgpack-python PR #676). This is strictly more permissive (deeper nested structures now decode rather than raising). It cannot break code that previously worked, and recce/dbt do not depend on the old 511 ceiling. No action.

NIT — no test/coverage impact. A lockfile-only Dependabot bump touches no source and no tests; there is no coverage drift, no hidden behavioral shift in recce's own code, and no error-path holes introduced. The risk surface is entirely "does dbt still work against msgpack 1.2.1," which is a minor-version, semver-compatible bump whose 1.2.0/1.2.1 changelog is bugfix/memory-safety only (use-after-free in get_data_from_buffer, memory-leak on invalid nested arrays, Unpacker re-entry hardening) — no API removals or signature changes.

Overall: A clean, low-risk, security-positive transitive lockfile bump. No CRITICAL/HIGH/MEDIUM concerns. Recommendation: APPROVE; CI on the recce PR is the remaining gate (confirms dbt resolves and imports cleanly against 1.2.1).

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 python:uv Pull requests that update python:uv code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant