Compare commits
1 Commits
Author | SHA256 | Date | |
---|---|---|---|
f3a2f25b7f |
BIN
msgpack-1.0.5.tar.gz
(Stored with Git LFS)
Normal file
BIN
msgpack-1.0.5.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
msgpack-1.1.0.tar.gz
(Stored with Git LFS)
BIN
msgpack-1.1.0.tar.gz
(Stored with Git LFS)
Binary file not shown.
@@ -1,49 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Fri Sep 13 05:36:08 UTC 2024 - ecsos <ecsos@opensuse.org>
|
|
||||||
|
|
||||||
- Update to 1.1.0
|
|
||||||
* Avoid using floating points during timestamp-datetime conversions in #591
|
|
||||||
* use ruff instead of black in #598
|
|
||||||
* update Cython and setuptools in #599
|
|
||||||
* Add experimental support for Python 3.13 in #600
|
|
||||||
* update README in #561
|
|
||||||
* update cibuildwheel to 2.17 in #601
|
|
||||||
* implement buffer protocol in #602
|
|
||||||
* Remove unused code in #603
|
|
||||||
* packer: add buf_size option in #604
|
|
||||||
* update readme in #605
|
|
||||||
* cython: better exception handling in #606
|
|
||||||
* better error checks in #607
|
|
||||||
* Cleanup code and pyproject in #608
|
|
||||||
* Release v1.1.0rc1 in #609
|
|
||||||
* do not install cython as build dependency in #610
|
|
||||||
* update Cython to 3.0.11 in #617
|
|
||||||
* update cibuildwheel to 2.20.0 in #618
|
|
||||||
* Release v1.1.0rc2 in #619
|
|
||||||
* MNT: use PyLong_* instead of PyInt_* in #620
|
|
||||||
* release v1.1.0 in #622
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Mon Jul 22 10:57:59 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
|
||||||
|
|
||||||
- Update to 1.0.8
|
|
||||||
* 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.
|
|
||||||
- Drop removal of C/Cython files from %install section
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Mon Nov 27 19:33:29 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
|
||||||
|
|
||||||
- update to 1.0.7:
|
|
||||||
* remove inline macro for msvc
|
|
||||||
* do not fallback on build error
|
|
||||||
* fix: build status badge
|
|
||||||
* Drop python2 support
|
|
||||||
* Drop Python 3.6 support
|
|
||||||
* try Cython 3.0
|
|
||||||
* sphinx-related work
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon May 8 07:20:01 UTC 2023 - Johannes Kastl <kastl@b1-systems.de>
|
Mon May 8 07:20:01 UTC 2023 - Johannes Kastl <kastl@b1-systems.de>
|
||||||
|
|
||||||
@@ -78,7 +32,7 @@ Mon Jan 10 23:20:31 UTC 2022 - Dirk Müller <dmueller@suse.com>
|
|||||||
|
|
||||||
- update to 1.0.3:
|
- update to 1.0.3:
|
||||||
* add python 3.10 support
|
* add python 3.10 support
|
||||||
* bugfixes
|
* bugfixes
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Dec 20 13:22:55 UTC 2020 - Dirk Müller <dmueller@suse.com>
|
Sun Dec 20 13:22:55 UTC 2020 - Dirk Müller <dmueller@suse.com>
|
||||||
@@ -123,10 +77,10 @@ Thu Mar 7 21:33:19 UTC 2019 - Ondřej Súkup <mimi.vx@gmail.com>
|
|||||||
* Unpacker(max_buffer_len=N) configures max_*_len options from N, instead
|
* Unpacker(max_buffer_len=N) configures max_*_len options from N, instead
|
||||||
of static default sizes.
|
of static default sizes.
|
||||||
* max_bin_len, max_str_len, and max_ext_len are deprecated.
|
* max_bin_len, max_str_len, and max_ext_len are deprecated.
|
||||||
* unpacker: Default value of input limits are smaller than before to
|
* unpacker: Default value of input limits are smaller than before to
|
||||||
avoid DoS attack
|
avoid DoS attack
|
||||||
* Unpacker doesn't wrap underlaying ValueError (including UnicodeError)
|
* Unpacker doesn't wrap underlaying ValueError (including UnicodeError)
|
||||||
into UnpackValueError. If you want to catch all exception during unpack,
|
into UnpackValueError. If you want to catch all exception during unpack,
|
||||||
you need to use try ... except Exception with minimum try code block.
|
you need to use try ... except Exception with minimum try code block.
|
||||||
* PackValueError and PackOverflowError are also removed. You need to catch
|
* PackValueError and PackOverflowError are also removed. You need to catch
|
||||||
normal ValueError and OverflowError.
|
normal ValueError and OverflowError.
|
||||||
@@ -236,7 +190,7 @@ Tue Nov 18 13:14:12 UTC 2014 - toddrme2178@gmail.com
|
|||||||
Bugs fixed
|
Bugs fixed
|
||||||
- Unpacker doesn't increment refcount of hooks. Hooks may be GCed while unpacking.
|
- Unpacker doesn't increment refcount of hooks. Hooks may be GCed while unpacking.
|
||||||
- Unpacker may read unfilled internal buffer.
|
- Unpacker may read unfilled internal buffer.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Dec 8 15:02:40 UTC 2013 - p.drouand@gmail.com
|
Sun Dec 8 15:02:40 UTC 2013 - p.drouand@gmail.com
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-msgpack
|
# spec file for package python-msgpack
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2023 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -16,9 +16,10 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%define oldpython python
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-msgpack
|
Name: python-msgpack
|
||||||
Version: 1.1.0
|
Version: 1.0.5
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: MessagePack (de)serializer
|
Summary: MessagePack (de)serializer
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
@@ -34,6 +35,10 @@ BuildRequires: python-rpm-macros
|
|||||||
# was renamed at 0.5.0
|
# was renamed at 0.5.0
|
||||||
Provides: python-msgpack-python = %{version}
|
Provides: python-msgpack-python = %{version}
|
||||||
Obsoletes: python-msgpack-python < 0.5.0
|
Obsoletes: python-msgpack-python < 0.5.0
|
||||||
|
%ifpython2
|
||||||
|
Provides: %{oldpython}-msgpack-python = %{version}
|
||||||
|
Obsoletes: %{oldpython}-msgpack-python < 0.5.0
|
||||||
|
%endif
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
%description
|
%description
|
||||||
|
Reference in New Issue
Block a user