forked from php-zookeeper/php-zookeeper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
150 lines (119 loc) · 3.57 KB
/
ChangeLog
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
ZooKeeper Extension Changelog
Version 1.0.1
-------------
Bugs:
* Fix segfault caused by invalid ctx under ZTS mode
* Fix compilation error with PHP 7.0(ZTS)
Version 1.0.0
-------------
Improvements:
* Make extension compatible with Zookeeper 3.6 (Thanks to camporter, GH PR #43)
* Make extension compatible with PHP 8 (Thanks to John P. Bloch, GH PR #44)
Version 0.7.2
-------------
Bugs:
* Fix segfault due to double free of global callback data (GH PR #35)
* Optimize callback-related statements
* Fix build error with PHP 7.4 (GH PR #38)
Version 0.7.1
-------------
Bugs:
* Fix segmentation fault after destroying Zookeeper instance (Issue #32)
Version 0.7.0
-------------
Improvements:
* Make parameter 'acls' of method 'create' optional
* Add static method 'dispatch'
* Drop PHP-5 support (Issue #14)
Bugs:
* Fix segmentation fault found in PHP 7.3
Version 0.6.4
-------------
Bugs:
* Fix segmentation fault after destroying Zookeeper instance (Issue #32)
Version 0.6.3
-------------
Bugs:
* Correct exception message (From "Failed to connect to Zookeeper" to "Failed to initialize ZooKeeper ...", Issue #29)
* Fix 'duplicate symbol _php_zk_config_ce'
* Fix segmentation fault when destroying Zookeeper instance (GH PR #31)
Version 0.6.2
-------------
Bugs:
* Fix 'undefined symbol: zoo_wgetconfig' with libzookeeper < 3.5 (Issue #22)
Version 0.6.1
-------------
Bugs:
* Fix memory leaks
Others:
* Fix symbol conflicts
Version 0.6.0
-------------
Improvements:
* Add class 'ZookeeperConfig'
* Add method 'getConfig'
* Drop PHP-5 support
Version 0.5.1
-------------
Others:
* Fix warning: implicit declaration of function ‘xxx’ [-Wimplicit-function-declaration]
Version 0.5.0
-------------
Improvements:
* Add method 'close'
php-zookeeper-0.5.x will be the last series which supports PHP 5.x.
Version 0.4.1
-------------
Bugs:
* Fix 'Corrupted fcall_info provided to zend_call_function()' (AZ Issue #89, #90)
Version 0.4.0
-------------
Bugs:
* Fix segmentation fault due to improperly implemented threading (PR #13)
Improvements:
* Add function 'zookeeper_dispatch'
Version 0.3.2
-------------
Bugs:
* Fix duplicate symbols (PR #10)
Version 0.3.1
-------------
Bugs:
* Fix memory leak in method getChildren (Thanks to hulk<[email protected]>, PR #5)
* Fix memory leak in method create (Thanks to Lin Huang, PR #6)
Version 0.3.0
-------------
Bugs:
* Fix session warning with PHP 7.1 (Issue #4)
Improvements:
* Support PHP-7 (PR #1)
* Support exceptions (PR #2)
Version 0.2.3
-------------
Bugs:
* Fix 'Node with null data cause php segfault at Zookeeper::get($path)' (AZ Issue #21)
* Fix 'Stat is null when get a node which holds null data' (AZ Issue #29)
* Fix 'Wrong type conversion in function call' (Thanks to Dmitry Faleychik<[email protected]>, AZ PR #42)
* Fix AZ PR #44 (Thanks to jeff.tang<[email protected]>)
* Fix AZ Issue #27 (--with-libdir not honoured, Thanks to Remi Collet)
Improvements:
* Respect null's when passed as values during set(), create(), and get() (Thanks to Ryan Uber<[email protected]>, AZ PR #22)
* Make extension compatible with Zookeeper 3.5.0alpha (Thanks to Ryan Uber<[email protected]>, AZ PR #28 N #48)
* Display ini entries in `phpinfo()`
Version 0.2.2
-------------
* PHP 5.4 compatibility
* Sample PHP class for using zookeeper
* Fix NOTCONNECTED_STATE issue
* Various other fixes
Version 0.2.1
-------------
* Package up missed source files
Version 0.2.0
-------------
* Added session handler support
* Added connect() and delete methods
* Bug fixes
Version 0.1.0
-------------
* Initial release