Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Remove deprecated submodule unpack (#385) | Inada Naoki | 2019-12-05 | 2 | -18/+0 | |
| | ||||||
* | Drop old buffer protocol support (#383) | Inada Naoki | 2019-12-05 | 1 | -38/+22 | |
| | ||||||
* | blacken | Inada Naoki | 2019-12-05 | 3 | -180/+245 | |
| | ||||||
* | Add Timestamp support (#382) | Inada Naoki | 2019-12-05 | 7 | -20/+233 | |
| | ||||||
* | Intern map keys (#381) | Inada Naoki | 2019-12-03 | 2 | -0/+5 | |
| | | | Fixes #372. | |||||
* | Remove encoding option from Unpacker. (#380) | Inada Naoki | 2019-12-03 | 3 | -50/+14 | |
| | ||||||
* | Ressurect unicode_errors of the Packer. (#379) | Inada Naoki | 2019-12-03 | 2 | -10/+35 | |
| | ||||||
* | Remove encoding/unicode_errors options from Packer (#378) | Inada Naoki | 2019-12-03 | 2 | -63/+9 | |
| | ||||||
* | Drop Python 2 support from _cmsgpack (#376) | Inada Naoki | 2019-11-28 | 5 | -33/+6 | |
| | ||||||
* | 0.6.2v0.6.2 | Inada Naoki | 2019-09-20 | 1 | -1/+1 | |
| | ||||||
* | Use Py_SIZE() when it is safe (#369) | Inada Naoki | 2019-09-19 | 1 | -3/+3 | |
| | ||||||
* | Avoid calling __Pyx_GetModuleGlobalName for ExtType (#363) | Marty B | 2019-09-19 | 1 | -0/+2 | |
| | ||||||
* | use relative imports (#357) | Felix Schwarz | 2019-05-12 | 4 | -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.1 | Inada Naoki | 2019-01-25 | 1 | -1/+1 | |
| | ||||||
* | Recommend max_buffer_len instead of max_(str|bin|ext)_len | Inada Naoki | 2019-01-25 | 2 | -13/+16 | |
| | ||||||
* | Auto limit configuration (#342) | Inada Naoki | 2019-01-24 | 2 | -27/+68 | |
| | ||||||
* | use _PyFloat APIs to (de)serialize (#340) | INADA Naoki | 2019-01-07 | 2 | -20/+7 | |
| | ||||||
* | Fix docstring | Inada Naoki | 2018-12-04 | 2 | -2/+2 | |
| | ||||||
* | 0.6.0v0.6.0 | Inada Naoki | 2018-11-30 | 1 | -1/+1 | |
| | ||||||
* | cleanup | Inada Naoki | 2018-11-30 | 1 | -13/+13 | |
| | ||||||
* | Fix fallback | Inada Naoki | 2018-11-30 | 1 | -1/+1 | |
| | ||||||
* | Implement strict_map_key to fallback unpacker. | Inada Naoki | 2018-11-29 | 1 | -1/+9 | |
| | ||||||
* | Add strict_map_key option to unpacker | Inada Naoki | 2018-11-29 | 2 | -5/+17 | |
| | ||||||
* | Unpacker: allow to use buffer with size greater than 2 GB (#332) | jkorvin | 2018-11-20 | 1 | -1/+1 | |
| | ||||||
* | Add StackError and FormatError (#331) | INADA Naoki | 2018-11-20 | 4 | -32/+78 | |
| | ||||||
* | s/iteritems/items/g (#330) | INADA Naoki | 2018-11-14 | 1 | -1/+1 | |
| | ||||||
* | Try language_level=3 (#329) | INADA Naoki | 2018-11-14 | 1 | -1/+1 | |
| | ||||||
* | Refactor Cython code (#328) | INADA Naoki | 2018-11-14 | 5 | -33/+9 | |
| | | | _msgpack -> _cmsgpack | |||||
* | fallback: Fix warning stacklevel (#327) | INADA Naoki | 2018-11-14 | 1 | -4/+4 | |
| | ||||||
* | Remove deprecated write_bytes option (#322) | INADA Naoki | 2018-11-12 | 2 | -39/+16 | |
| | ||||||
* | Remove deprecated exception classes (#323) | INADA Naoki | 2018-11-12 | 4 | -96/+85 | |
| | ||||||
* | PendingDeprecationWarning -> DeprecationWarning (#321) | INADA Naoki | 2018-11-09 | 3 | -7/+7 | |
| | ||||||
* | Add Packer.buffer() (#320) | INADA Naoki | 2018-11-09 | 3 | -18/+60 | |
| | ||||||
* | unpacker: Make default size limit smaller (#319) | INADA Naoki | 2018-11-08 | 2 | -23/+28 | |
| | | | | | To avoid DoS attack, make default size limit smaller. Fixes #295 | |||||
* | Merge extension module | INADA Naoki | 2018-11-08 | 2 | -2/+5 | |
| | | | | | | | There were `_packer.so` and `_unpacker.so`. But single module is simpler than double module. Merge extension module into single `_msgpack.so`. | |||||
* | Start 0.6 development | INADA Naoki | 2018-10-03 | 1 | -1/+1 | |
| | ||||||
* | Alternate fixes for jython and legacy CPython (#310) | Raymond E Ferguson | 2018-10-02 | 1 | -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. | |||||
* | fallback: Fix error on Jython | Inada Naoki | 2018-06-27 | 1 | -0/+7 | |
| | | | | Fixes #303 | |||||
* | Fix TypeError in fallback.unpack() on <Python 2.7.6 | Alex Gaynor | 2018-04-16 | 1 | -25/+31 | |
| | ||||||
* | 0.5.60.5.6 | INADA Naoki | 2018-02-23 | 1 | -1/+1 | |
| | ||||||
* | Deprecate implementation module's unpack() (#290) | INADA Naoki | 2018-02-23 | 3 | -25/+23 | |
| | ||||||
* | Fix Unpacker.feed() drops unused data in buffer. (#289) | INADA Naoki | 2018-02-23 | 1 | -2/+7 | |
| | | | Fixes #287 | |||||
* | Fix #285 again | INADA Naoki | 2018-02-23 | 1 | -18/+3 | |
| | ||||||
* | Revert "Move unpack() from each implementation to __init__." (#288) | INADA Naoki | 2018-02-23 | 3 | -14/+39 | |
|\ | | | | | This reverts commit da902f9c1d996fb461f1efef6487ef40d32d365a. | |||||
| * | Revert "Move unpack() from each implementation to __init__. (#286)" | INADA Naoki | 2018-02-23 | 3 | -14/+39 | |
| | | | | | | | | This reverts commit da902f9c1d996fb461f1efef6487ef40d32d365a. | |||||
* | | 0.5.50.5.5 | INADA Naoki | 2018-02-22 | 1 | -1/+1 | |
|/ | ||||||
* | Move unpack() from each implementation to __init__. (#286) | INADA Naoki | 2018-02-22 | 3 | -39/+14 | |
| | | | Fixes #285 | |||||
* | Fix memory leak in pure Python Unpacker.feed() (#284) | INADA Naoki | 2018-02-16 | 1 | -0/+2 | |
| | | | fixes #283 | |||||
* | Use cython's cast for converting encoding and errors (#279)0.5.4 | INADA Naoki | 2018-02-05 | 2 | -53/+32 | |
| | | | It is little faster on Python 3 because we can skip temporary bytes object | |||||
* | 0.5.4 | INADA Naoki | 2018-02-05 | 1 | -1/+1 | |
| |