summaryrefslogtreecommitdiff
path: root/msgpack
Commit message (Collapse)AuthorAgeFilesLines
* Release v1.0.5 (#534)Inada Naoki2023-03-091-2/+2
|
* minor type in exception message (#533)Anthon van der Neut2023-03-051-1/+1
| | | interger -> integer
* Release v1.0.5rc1 (#528)v1.0.5rc1Inada Naoki2023-01-181-2/+2
|
* fallback: Fix packing multidim memoryview (#527)Inada Naoki2023-01-181-1/+1
| | | Fix #526
* Remove unused codeInada Naoki2023-01-181-26/+0
|
* Fix build error caused by ntohs, ntohl (#514)Inada Naoki2022-08-081-2/+4
|
* Usef `__BYTE_ORDER__` instead of `__BYTE_ORDER` (#513)Jakub Kulík2022-08-021-4/+2
| | | | __BYTE_ORDER__ is common predefined macro available on at least gcc and clang. __BYTE_ORDER is macro defined in platform specific headers.
* Release v1.0.4 (#509)v1.0.4Inada Naoki2022-06-031-2/+2
|
* 1.0.4rc1Inada Naoki2022-05-251-2/+2
|
* Fix Unpacker max_buffer_length handling (#506)Inada Naoki2022-05-242-16/+14
|
* Use PyFloat_Pack8() on Python 3.11a7 (#499)Victor Stinner2022-03-142-2/+21
| | | | | | | | Python 3.11a7 adds public functions: * PyFloat_Pack4(), PyFloat_Pack8() * PyFloat_Unpack4(), PyFloat_Unpack8() https://bugs.python.org/issue46906
* Update setuptools and black (#498)Inada Naoki2022-03-034-12/+14
| | | | * Use setuptools * Use black==22.1.0
* Don't define __*_ENDIAN__ macro on Unix. (#495)Inada Naoki2022-01-191-4/+0
|
* Release v1.0.3 (#491)v1.0.3Inada Naoki2021-11-241-1/+1
|
* blackInada Naoki2021-11-171-1/+1
|
* 1.0.3rc1v1.0.3rc1Inada Naoki2021-11-161-1/+1
|
* Nicer error when packing a datetime without tzinfo (#466)Benjamin Egelund-Müller2021-11-162-0/+6
|
* Fix black formattingInada Naoki2021-11-161-1/+1
|
* Improve exception message relating to strict_map_key (#485)Paul Melis2021-11-161-1/+1
|
* cimport uint64_t instead of using ctypedef (#473)Vladimir Matveev2021-03-191-1/+1
|
* Remove unused PyObject_AsReadBuffer definition (#468)Alexander Shadchin2021-02-271-1/+0
| | | Also "old" buffer API was removed in Python 3.10
* Fix error formatting (#463)Andrey Bienkowski2021-02-261-6/+10
|
* fix docstring (#459)Inada Naoki2021-02-122-33/+60
|
* Refactor fallback read header (#441)Guy Tuval2021-01-021-165/+82
|
* v1.0.2v1.0.2Inada Naoki2020-12-181-1/+1
|
* Fix overflow in unpacking timestamp to datetime (#452)Inada Naoki2020-12-181-3/+3
|
* v1.0.1v1.0.1Inada Naoki2020-12-111-1/+1
|
* Update docstringInada Naoki2020-12-043-50/+63
|
* Fix datetime before epoch on windows in cython implementation (#436)Peter Fischer2020-07-301-13/+21
| | | | Cython implementation still used datetime.from_timestamp method, which does not work on windows. Update the cython implementation to use utc time and delta and add a regression test to highlight the issue.
* Synchronize handling of datetime in Packer implementations (#434)Peter Fischer2020-07-241-1/+1
| | | The handling of datetime is different in the cython and Python implementations. In contrast to the docs, timezone is not required in the Python implementation.
* Allow for timestamps before UNIX epoch (#433)Tom Pohl2020-07-231-1/+3
|
* Fix Unpacker.tell() (#427)jfolz2020-06-082-9/+16
| | | | | Fixes #426. Co-authored-by: folz <joachim.folz@dfki.de>
* 1.0.0v1.0.0Inada Naoki2020-02-171-1/+1
|
* Add some test for timestamp (#403)Inada Naoki2020-02-061-7/+1
|
* Fix some typoInada Naoki2019-12-131-5/+5
|
* Reintroduce __ne__v1.0.0rc1Inada Naoki2019-12-121-0/+4
|
* Make Timestamp hashable (#396)Inada Naoki2019-12-121-3/+4
| | | When overriding __eq__, __hash__ should be overridden too.
* Refine Timestamp APIs (#395)Inada Naoki2019-12-122-45/+58
|
* blackInada Naoki2019-12-121-1/+1
|
* Prepare 1.0rc1Inada Naoki2019-12-121-1/+1
|
* Support datetime. (#394)Inada Naoki2019-12-116-21/+175
|
* Simplify check for bool type (#362)Marty B2019-12-091-5/+4
|
* typoInada Naoki2019-12-091-1/+1
|
* Unpacker: Change max_buffer_size to 100MiB (#391)Inada Naoki2019-12-092-31/+36
|
* Update README (#393)Inada Naoki2019-12-091-2/+2
|
* Make strict_map_key default to True (#392)Inada Naoki2019-12-062-9/+5
|
* Fix fallback Unpacker.read() (#388)Inada Naoki2019-12-061-1/+3
| | | Fixes #352.
* Remove unused importInada Naoki2019-12-061-1/+0
|
* Use new msgpack spec by default. (#386)Inada Naoki2019-12-053-26/+16
|
* fallback: Remove old buffer protocol support (#384)Inada Naoki2019-12-051-15/+1
|