summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 0.6.2v0.6.2Inada Naoki2019-09-201-1/+1
|
* Update ChangeLogInada Naoki2019-09-201-0/+10
|
* Add Python 3.8 to travis (#371)Inada Naoki2019-09-191-4/+10
|
* update Cython to 0.29.13 (#370)Inada Naoki2019-09-192-3/+4
|
* 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.
* Update requirements.txt (#346)Hugues2019-03-271-1/+1
| | | bytearray.pxd is only available starting with Cython 0.29
* Fix changelog.INADA Naoki2019-02-041-1/+1
| | | | Fixes #343
* v0.6.1v0.6.1Inada Naoki2019-01-251-1/+1
|
* Recommend max_buffer_len instead of max_(str|bin|ext)_lenInada Naoki2019-01-253-13/+34
|
* travis: Install new pytestInada Naoki2019-01-251-1/+1
|
* Remove pytest warningsInada Naoki2019-01-253-11/+27
|
* Auto limit configuration (#342)Inada Naoki2019-01-243-28/+92
|
* use _PyFloat APIs to (de)serialize (#340)INADA Naoki2019-01-072-20/+7
|
* Fix docstringInada Naoki2018-12-042-2/+2
|
* Build linux wheel for Python 3.7Inada Naoki2018-12-041-1/+1
|
* AppVeyor: Add Python 3.7 and remove 3.6master-361Inada Naoki2018-11-301-4/+4
|
* 0.6.0v0.6.0Inada Naoki2018-11-302-2/+3
|
* cleanupInada Naoki2018-11-301-13/+13
|
* Update tox.iniInada Naoki2018-11-301-4/+4
|
* Update ChangeLogInada Naoki2018-11-301-0/+5
|
* unpacker: Add `strict_map_key` option (#334)INADA Naoki2018-11-304-6/+37
|\
| * Fix fallbackInada Naoki2018-11-301-1/+1
| |
| * Fix testInada Naoki2018-11-301-2/+2
| |
| * Fix testInada Naoki2018-11-291-2/+2
| |
| * Implement strict_map_key to fallback unpacker.Inada Naoki2018-11-291-1/+9
| |
| * Add strict_map_key option to unpackerInada Naoki2018-11-293-5/+28
|/
* Update READMEINADA Naoki2018-11-201-3/+9
|
* Unpacker: allow to use buffer with size greater than 2 GB (#332)jkorvin2018-11-201-1/+1
|
* Add StackError and FormatError (#331)INADA Naoki2018-11-207-47/+119
|
* s/iteritems/items/g (#330)INADA Naoki2018-11-141-1/+1
|
* Try language_level=3 (#329)INADA Naoki2018-11-141-1/+1
|
* Refactor Cython code (#328)INADA Naoki2018-11-1410-40/+17
| | | _msgpack -> _cmsgpack
* fallback: Fix warning stacklevel (#327)INADA Naoki2018-11-141-4/+4
|
* Remove deprecated write_bytes option (#322)INADA Naoki2018-11-123-68/+16
|
* Remove deprecated exception classes (#323)INADA Naoki2018-11-124-96/+85
|
* PendingDeprecationWarning -> DeprecationWarning (#321)INADA Naoki2018-11-093-7/+7
|
* Add Packer.buffer() (#320)INADA Naoki2018-11-098-20/+107
|
* Update changelogInada Naoki2018-11-081-0/+12
|
* unpacker: Make default size limit smaller (#319)INADA Naoki2018-11-082-23/+28
| | | | | To avoid DoS attack, make default size limit smaller. Fixes #295
* Update ChangeLogInada Naoki2018-11-081-0/+4
|
* Merge extension modules (#314)INADA Naoki2018-11-086-22/+17
|\ | | | | | | | | | | There were `_packer.so` and `_unpacker.so`. But single module is simpler than double module. Merge extension module into single `_msgpack.so`.
| * Update docker/runtestsINADA Naoki2018-11-081-1/+1
| |
| * Update travis configINADA Naoki2018-11-081-6/+6
| |
| * Merge extension moduleINADA Naoki2018-11-084-15/+10
|/ | | | | | | There were `_packer.so` and `_unpacker.so`. But single module is simpler than double module. Merge extension module into single `_msgpack.so`.
* Update travis.ymlInada Naoki2018-11-071-3/+9
|
* Fix stream unpacking example in README (#317)Marat Sharafutdinov2018-11-051-1/+1
|
* Start 0.6 developmentINADA Naoki2018-10-032-1/+7
|
* Alternate fixes for jython and legacy CPython (#310)Raymond E Ferguson2018-10-021-39/+35
| | | | | | | | | | | | Python 3.4 is not supported officially. But keep running test for a while, to know when msgpack-python stop working on Python 3.4 actually. The current patches did not work under jython-2.7.1 where implicit casting of buffer or memoryview doesn't work. It may also be the jython is a little pickier about string casting non string bytes due to the underlying strong typing of java. See issues #303 & #304.