summaryrefslogtreecommitdiff
path: root/msgpack
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Remove deprecated submodule unpack (#385)Inada Naoki2019-12-052-18/+0
|
* Drop old buffer protocol support (#383)Inada Naoki2019-12-051-38/+22
|
* blackenInada Naoki2019-12-053-180/+245
|
* Add Timestamp support (#382)Inada Naoki2019-12-057-20/+233
|
* Intern map keys (#381)Inada Naoki2019-12-032-0/+5
| | | Fixes #372.
* Remove encoding option from Unpacker. (#380)Inada Naoki2019-12-033-50/+14
|
* Ressurect unicode_errors of the Packer. (#379)Inada Naoki2019-12-032-10/+35
|
* Remove encoding/unicode_errors options from Packer (#378)Inada Naoki2019-12-032-63/+9
|
* Drop Python 2 support from _cmsgpack (#376)Inada Naoki2019-11-285-33/+6
|
* 0.6.2v0.6.2Inada Naoki2019-09-201-1/+1
|
* Use Py_SIZE() when it is safe (#369)Inada Naoki2019-09-191-3/+3
|
* Avoid calling __Pyx_GetModuleGlobalName for ExtType (#363)Marty B2019-09-191-0/+2
|
* use relative imports (#357)Felix Schwarz2019-05-124-10/+10
| | | | | Some applications use msgpack to store persistent data and require a specific msgpack version (e.g. borgbackup). Bundling helps in case there is an (incompatible) version of msgpack in a system-wide install.
* v0.6.1v0.6.1Inada Naoki2019-01-251-1/+1
|
* Recommend max_buffer_len instead of max_(str|bin|ext)_lenInada Naoki2019-01-252-13/+16
|
* Auto limit configuration (#342)Inada Naoki2019-01-242-27/+68
|
* use _PyFloat APIs to (de)serialize (#340)INADA Naoki2019-01-072-20/+7
|
* Fix docstringInada Naoki2018-12-042-2/+2
|
* 0.6.0v0.6.0Inada Naoki2018-11-301-1/+1
|
* cleanupInada Naoki2018-11-301-13/+13
|
* Fix fallbackInada Naoki2018-11-301-1/+1
|
* Implement strict_map_key to fallback unpacker.Inada Naoki2018-11-291-1/+9
|
* Add strict_map_key option to unpackerInada Naoki2018-11-292-5/+17
|