chore(deps): update dependency msgpack to v1.2.0 #9

Open
renovate-bot wants to merge 1 commit from renovate/msgpack-1.x into master
Member

This PR contains the following updates:

Package Change Age Confidence
msgpack (changelog) ==1.0.4 -> ==1.2.0 age confidence

Release Notes

msgpack/msgpack-python (msgpack)

v1.2.0

Compare Source

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

v1.1.2

Compare Source

Release Date: 2025-10-08

This release does not change source code. It updates only building
wheels:

  • Update Cython to v3.1.4
  • Update cibuildwheel to v3.2.0
  • Drop Python 3.8
  • Add Python 3.14
  • Add windows-arm

v1.1.1

Compare Source

Release Date: 2025-06-13

  • No change from 1.1.1rc1.

v1.1.0

Compare Source

Release Date: 2024-09-10

  • use PyLong_* instead of PyInt_* for compatibility with future
    Cython. (#​620)

v1.0.8

Compare Source

Release Date: 2024-03-01

  • Update Cython to 3.0.8. This fixes memory leak when iterating
    Unpacker object on Python 3.12.
  • Do not include C/Cython files in binary wheels.

v1.0.7

Compare Source

Release Date: 2023-09-28

  • Fix build error of extension module on Windows. (#​567)
  • setup.py doesn't skip build error of extension module. (#​568)

v1.0.6

Compare Source

Release Date: 2023-09-21

[!NOTE]
v1.0.6 Wheels for Windows don't contain extension module. Please
upgrade to v1.0.7 or newer.

  • Add Python 3.12 wheels (#​517)
  • Remove Python 2.7, 3.6, and 3.7 support

v1.0.5

Compare Source

Release Date: 2023-03-08

  • Use __BYTE_ORDER__ instead of __BYTE_ORDER for portability. (#​513,
    #​514)
  • Add Python 3.11 wheels (#​517)
  • fallback: Fix packing multidimensional memoryview (#​527)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [msgpack](https://github.com/msgpack/msgpack-python) ([changelog](https://github.com/msgpack/msgpack-python/blob/main/CHANGELOG.md)) | `==1.0.4` -> `==1.2.0` | ![age](https://developer.mend.io/api/mc/badges/age/pypi/msgpack/1.2.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/msgpack/1.0.4/1.2.0?slim=true) | --- ### Release Notes <details> <summary>msgpack/msgpack-python (msgpack)</summary> ### [`v1.2.0`](https://github.com/msgpack/msgpack-python/blob/HEAD/CHANGELOG.md#120) [Compare Source](https://github.com/msgpack/msgpack-python/compare/v1.1.2...v1.2.0) Release Date: 2026-06-11 - Support free threaded Python. [#&#8203;654](https://github.com/msgpack/msgpack-python/issues/654), [#&#8203;686](https://github.com/msgpack/msgpack-python/issues/686) - Dropped support for Python 3.9. [#&#8203;656](https://github.com/msgpack/msgpack-python/issues/656) - Fix missing error checks in C code. [#&#8203;665](https://github.com/msgpack/msgpack-python/issues/665), [#&#8203;666](https://github.com/msgpack/msgpack-python/issues/666), [#&#8203;667](https://github.com/msgpack/msgpack-python/issues/667), [#&#8203;672](https://github.com/msgpack/msgpack-python/issues/672) - Fix `strict_map_key` option didn't work for `object_pairs_hook`. [#&#8203;673](https://github.com/msgpack/msgpack-python/issues/673) - Increase DEFAULT\_RECURSE\_LIMIT of Unpacker to 1024. [#&#8203;676](https://github.com/msgpack/msgpack-python/issues/676) - Fix memory leak when Unpacker returns error for invalid input. [#&#8203;671](https://github.com/msgpack/msgpack-python/issues/671) - Fix `Packer.pack_ext_type()` ignored `autoreset` option. [#&#8203;663](https://github.com/msgpack/msgpack-python/issues/663) - Fix `Timestamp.from_datetime()` returning wrong value for pre-epoch datetimes. [#&#8203;662](https://github.com/msgpack/msgpack-python/issues/662) - Fix use-after-free in `unpackb()` and `Unpacker.unpack()` for non-contiguous input. [#&#8203;677](https://github.com/msgpack/msgpack-python/issues/677) - Fix possible memory leak when calling `Unpacker.__init__()` several times. [#&#8203;687](https://github.com/msgpack/msgpack-python/issues/687) ### [`v1.1.2`](https://github.com/msgpack/msgpack-python/blob/HEAD/CHANGELOG.md#112) [Compare Source](https://github.com/msgpack/msgpack-python/compare/v1.1.1...v1.1.2) Release Date: 2025-10-08 This release does not change source code. It updates only building wheels: - Update Cython to v3.1.4 - Update cibuildwheel to v3.2.0 - Drop Python 3.8 - Add Python 3.14 - Add windows-arm ### [`v1.1.1`](https://github.com/msgpack/msgpack-python/blob/HEAD/CHANGELOG.md#111) [Compare Source](https://github.com/msgpack/msgpack-python/compare/v1.1.0...v1.1.1) Release Date: 2025-06-13 - No change from 1.1.1rc1. ### [`v1.1.0`](https://github.com/msgpack/msgpack-python/blob/HEAD/CHANGELOG.md#110) [Compare Source](https://github.com/msgpack/msgpack-python/compare/v1.0.8...v1.1.0) Release Date: 2024-09-10 - use `PyLong_*` instead of `PyInt_*` for compatibility with future Cython. ([#&#8203;620](https://github.com/msgpack/msgpack-python/issues/620)) ### [`v1.0.8`](https://github.com/msgpack/msgpack-python/blob/HEAD/CHANGELOG.md#108) [Compare Source](https://github.com/msgpack/msgpack-python/compare/v1.0.7...v1.0.8) Release Date: 2024-03-01 - Update Cython to 3.0.8. This fixes memory leak when iterating `Unpacker` object on Python 3.12. - Do not include C/Cython files in binary wheels. ### [`v1.0.7`](https://github.com/msgpack/msgpack-python/blob/HEAD/CHANGELOG.md#107) [Compare Source](https://github.com/msgpack/msgpack-python/compare/v1.0.6...v1.0.7) Release Date: 2023-09-28 - Fix build error of extension module on Windows. ([#&#8203;567](https://github.com/msgpack/msgpack-python/issues/567)) - `setup.py` doesn't skip build error of extension module. ([#&#8203;568](https://github.com/msgpack/msgpack-python/issues/568)) ### [`v1.0.6`](https://github.com/msgpack/msgpack-python/blob/HEAD/CHANGELOG.md#106) [Compare Source](https://github.com/msgpack/msgpack-python/compare/v1.0.5...v1.0.6) Release Date: 2023-09-21 > \[!NOTE] > v1.0.6 Wheels for Windows don't contain extension module. Please > upgrade to v1.0.7 or newer. - Add Python 3.12 wheels ([#&#8203;517](https://github.com/msgpack/msgpack-python/issues/517)) - Remove Python 2.7, 3.6, and 3.7 support ### [`v1.0.5`](https://github.com/msgpack/msgpack-python/blob/HEAD/CHANGELOG.md#105) [Compare Source](https://github.com/msgpack/msgpack-python/compare/v1.0.4...v1.0.5) Release Date: 2023-03-08 - Use `__BYTE_ORDER__` instead of `__BYTE_ORDER` for portability. ([#&#8203;513](https://github.com/msgpack/msgpack-python/issues/513), [#&#8203;514](https://github.com/msgpack/msgpack-python/issues/514)) - Add Python 3.11 wheels ([#&#8203;517](https://github.com/msgpack/msgpack-python/issues/517)) - fallback: Fix packing multidimensional memoryview ([#&#8203;527](https://github.com/msgpack/msgpack-python/issues/527)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODUuMCIsInVwZGF0ZWRJblZlciI6IjQyLjUyLjgiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIiLCJsYWJlbHMiOlsicmVub3ZhdGUtYm90Il19-->
renovate-bot changed title from chore(deps): update dependency msgpack to v1.0.8 to chore(deps): update dependency msgpack to v1.1.0 2024-09-10 10:07:01 +05:30
renovate-bot force-pushed renovate/msgpack-1.x from 5da76c496c to e20de29ec7 2024-09-10 10:07:01 +05:30 Compare
renovate-bot changed title from chore(deps): update dependency msgpack to v1.1.0 to chore(deps): update dependency msgpack to v1.1.1 2025-06-16 05:50:58 +05:30
renovate-bot force-pushed renovate/msgpack-1.x from e20de29ec7 to c466c6277a 2025-06-16 05:50:58 +05:30 Compare
renovate-bot force-pushed renovate/msgpack-1.x from c466c6277a to 260ac24c48 2025-10-13 05:17:09 +05:30 Compare
renovate-bot changed title from chore(deps): update dependency msgpack to v1.1.1 to chore(deps): update dependency msgpack to v1.1.2 2025-10-13 05:17:10 +05:30
renovate-bot force-pushed renovate/msgpack-1.x from 260ac24c48 to 3437749c7d 2026-06-12 18:54:34 +05:30 Compare
renovate-bot changed title from chore(deps): update dependency msgpack to v1.1.2 to chore(deps): update dependency msgpack to v1.2.0 2026-06-12 18:54:36 +05:30
Commenting is not possible because the repository is archived.
No description provided.