File: ChangeLog

package info (click to toggle)
php-msgpack 2.0.2%2B0.5.7-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,192 kB
  • ctags: 729
  • sloc: ansic: 6,789; xml: 702; php: 18; makefile: 1
file content (111 lines) | stat: -rw-r--r-- 2,463 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
msgpack extension changelog

Version 0.5.5
-------------
	* Fix ZTS build
	* Fixed Bug #14 ("Invalid read" reported by valgrind)
	* Fixed FR #8 (Return on unserialization):
	Unserializer will return false on error now

Version 0.5.4
-------------
	* Fixed Bug #12 (msgpack_seriallize interfere with php serialize)
	* Fixed Bug #11 (unpacking empty array / segmentation fault).

Version 0.5.3
-------------
	* Fixed Bug #6 (bug with incorrect packing of mixed arrays)

Version 0.5.2
-------------
	* Support PHP 5.4.x version.

Version 0.5.1
-------------
	* Fixed include path for version check.
	(Contributed by duedal)

Version 0.5.0
-------------
	* Fix ZEND_DECLARE_MODULE_GLOBALS:
	Moved ZEND_DECLARE_MODULE_GLOBALS from header to source file.
	Added ZEND_EXTERN_MODULE_GLOBALS in source files to avoid undefined
	_msgpack_globals message.
	(Contributed by seporaitis)
	* Add unpack of template converter:
	Merge https://github.com/msgpack/msgpack/pull/58
	Fixed memory leaks.
	Fixed older version.
	Fixed tests scripts.
	Added msgpack_unpack function was implemented.
	(Contributed by ivan)

Version 0.4.0
-------------
	* Fix array pack.
	* Fix test code.
	* Add unpack of class object converter.

Version 0.3.4
-------------
	* Support PHP 5.3.x version on Windows.
	(note: NAN and Resource is failed)

Version 0.3.3
-------------
	* Update msgpack header files.
	* Fix unpack internal processing.

Version 0.3.2
-------------
	* Version PHP 5 or newer.

Version 0.3.1
-------------
	* Fix class MessagePackUnpacker.

Version 0.3.0
-------------
	* Change msgpack_unpack.c (used template)
	* Add php_only ini option (true / false)
	* Change class MessagePack and MessagePackUnpacker __construct option.
	* Add class MessagePack and MessagePackUnpacker setOption method.

Version 0.2.1
-------------
	* Fix stream deserializer.

Version 0.2.0
-------------
	* Add stream deserializer / class MessagePackUnpacker interface.
	* Add alias functions.
	* Add class MessagePack interface.

Version 0.1.5
-------------
	* Add msgpack_pack.c
	* Add msgpack_unpack.c
	* Update msgpack.c

Version 0.1.4
-------------
	* Change broken random data.
	* Support PHP 5.2.x version.

Version 0.1.3
-------------
	* Fix broken random data.
	* Change arrays and objects.

Version 0.1.2
-------------
	* Add Serializable class support.
	* Fix arrays and objects reference.

Version 0.1.1
-------------
	* Add session support.

Version 0.1.0
-------------
	* Initial release.