-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.xml
333 lines (298 loc) · 10.8 KB
/
package.xml
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
<?xml version="1.0"?>
<package packagerversion="1.4.11" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0
http://pear.php.net/dtd/tasks-1.0.xsd
http://pear.php.net/dtd/package-2.0
http://pear.php.net/dtd/package-2.0.xsd">
<name>Tarantool</name>
<channel>tarantool.github.io/tarantool-php/pecl</channel>
<summary>PHP extension for Tarantool</summary>
<description>
PECL PHP driver for Tarantool
Tarantool is an in-memory database and Lua application server.
This package provides PECL PHP driver for Tarantool.
</description>
<lead>
<name>Eugine Blikh</name>
<user>bigbes</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2024-07-04</date>
<version>
<release>0.4.0</release>
<api>0.4.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://opensource.org/licenses/bsd-license.php">BSD 2-Clause</license>
<notes>-</notes>
<contents>
<dir name="/">
<file role='src' name='config.m4'/>
<dir name='src'>
<file role='src' name='php_tarantool.h'/>
<file role='src' name='tarantool.c'/>
<file role='src' name='tarantool_msgpack.c'/>
<file role='src' name='tarantool_msgpack.h'/>
<file role='src' name='tarantool_proto.c'/>
<file role='src' name='tarantool_proto.h'/>
<file role='src' name='tarantool_schema.c'/>
<file role='src' name='tarantool_schema.h'/>
<file role='src' name='tarantool_tp.c'/>
<file role='src' name='tarantool_tp.h'/>
<dir name='third_party'>
<file role='src' name='mhash.h'/>
<file role='src' name='msgpuck.c'/>
<file role='src' name='msgpuck.h'/>
<file role='src' name='PMurHash.c'/>
<file role='src' name='PMurHash.h'/>
<file role='src' name='sha1.c'/>
<file role='src' name='sha1.h'/>
<file role='src' name='tp.h'/>
</dir> <!-- third_party -->
</dir> <!-- src -->
<file role='test' name='test-run.py'/>
<dir name='lib'>
<file role='test' name='__init__.py'/>
<file role='test' name='tarantool_server.py'/>
</dir> <!-- lib -->
<dir name='test'>
<file role='test' name='CreateTest.php'/>
<file role='test' name='DMLTest.php'/>
<file role='test' name='MockTest.php'/>
<file role='test' name='MsgPackTest.php'/>
<file role='test' name='phpunit'/>
<file role='test' name='phpunit.phar'/>
<dir name='shared'>
<file role='test' name='box.lua'/>
<file role='test' name='phpunit.xml'/>
<file role='test' name='tarantool-1.ini'/>
<file role='test' name='tarantool-2.ini'/>
<file role='test' name='tarantool-3.ini'/>
<file role='test' name='valgrind.sup'/>
</dir> <!-- shared -->
</dir> <!-- tests -->
</dir> <!-- / -->
</contents>
<dependencies>
<required>
<php>
<min>7.0.0</min>
<max>8.0.0</max>
<exclude>6.0.0</exclude>
</php>
<pearinstaller>
<min>1.4.0</min>
</pearinstaller>
</required>
</dependencies>
<providesextension>tarantool</providesextension>
<extsrcrelease/>
<changelog>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.4.0</release><api>0.4.0</api></version>
<date>2024-07-04</date>
<notes>
tarantool-php 0.4.0
## Overview
The release adds support for PHP 8.x and fixes incompatibility with
Tarantool 2.10+.
## Breaking changes
This release should not break existing code.
## New features
- Support PHP 8.x (#171).
- Support Tarantool 2.10+ (#175).
- Call IPROTO method (#101).
- Support new _index system space format (#151).
## Bugfixes
- Give meaningful error when retry_count is zero (#83).
- select() by space_no and index_name (#42).
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.3.3</release><api>0.3.3</api></version>
<date>2020-06-30</date>
<notes>
tarantool-php 0.3.3
## Overview
This release revives the connector in fact: now it supports PHP 7.0-7.4 and
Tarantool 1.6-2.5 (except 2.2 for now due to #151). There are several
restrictions, however. Most notable are:
- Schema fetching fails on a space with `is_nullable` or `collation` index
part parameters (#151).
- New call_17 command is not supported yet (#101).
Those problem will be fixed in the next release. Anyway, this release allows
to upgrade PHP and Tarantool versions and keep existing PHP code, which uses
the connector, operational.
## Breaking changes
This release should not break existing code.
## New features
- Support PHP 7.3 and 7.4 (#139, #150).
## Bugfixes
- Ignore unknown fields in a space format (PR #132).
- Fixed 'Undefined property' error at attempt to extend Tarantool class
(#135).
- Raise 'No field ... defined' at attempt to update by an unknown field name
(b3846f6a).
- Allow `null` as `offset` value for select() when strict types are enabled
(#154).
## Testing and deployment
- Support both Python 2 and 3 in the test runner (9bc7fa5f).
- Use strict types mode in testing (da8ecba8).
- Support PHPUnit 6-9 for testing against different PHP versions.
- Enabled PHP 7.0-7.4 in testing.
- Enabled Tarantool 1.6-2.5 in testing (except 2.2 for now).
- Added 'php-tarantool' alias for Debian / Ubuntu packages (PR #155).
- Enable the extension by default on Debian / Ubuntu (40d8795a, PR #156).
- Deploy packages for Linux distributions with PHP 7 (#117):
- CentOS 8;
- Fedora 25-31;
- Debian: Stretch, Buster;
- Ubuntu: Xenial, Bionic, Eoan, Focal.
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.3.2</release><api>0.3.2</api></version>
<date>2018-04-18</date>
<notes>
tarantool-php 0.3.2
Upsert bug fixed
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.2.0</release><api>0.2.0</api></version>
<date>2016-11-22</date>
<notes>
tarantool-php 0.2.0
PHP 7 version
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.1.0</release><api>0.1.0</api></version>
<date>2016-02-26</date>
<notes>
tarantool-php 0.1.0
Fix a lot of bugs, added upsert command, added tests
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.13</release><api>0.0.13</api></version>
<date>2015-04-24</date>
<notes>
tarantool-php 0.0.13
Schema is rewritten (using mhash, not zend hash).
Batching auth+select_index+select_space (download schema) using tp.h
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.12</release><api>0.0.12</api></version>
<date>2015-04-24</date>
<notes>
tarantool-php 0.0.12
Fix couple of segfaults and memory leaks
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.11</release><api>0.0.11</api></version>
<date>2015-04-22</date>
<notes>
tarantool-php 0.0.11
Fix select error on 32bit systems, update version of rpm packages
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.10</release><api>0.0.10</api></version>
<date>2015-03-24</date>
<notes>
tarantool-php 0.0.10
Add alias for flush_schema -> flushSchema
Add eval to commands
Fix segfaults when args are empty in eval/call
Add RTree constants
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.9</release><api>0.0.9</api></version>
<date>2015-03-24</date>
<notes>
tarantool-php 0.0.9
Fix for build with pecl
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.8</release><api>0.0.8</api></version>
<date>2015-03-24</date>
<notes>
tarantool-php 0.0.8
Fixing avito segfaults, remove obsolete cleanups
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.7</release><api>0.0.7</api></version>
<date>2015-03-17</date>
<notes>
tarantool-php 0.0.7
Fixing avito segfaults
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.6</release><api>0.0.5</api></version>
<date>2015-03-08</date>
<notes>
tarantool-php 0.0.6
Fixing some segfaults
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.5</release><api>0.0.5</api></version>
<date>2014-02-09</date>
<notes>
tarantool-php 0.0.5
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.4</release><api>0.0.4</api></version>
<date>2014-08-11</date>
<notes>
tarantool-php 0.0.4
Added connection pool for PHP-FPM, fixing memleaks, fixing msgpack
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.3</release><api>0.0.3</api></version>
<date>2014-08-11</date>
<notes>
tarantool-php 0.0.3
Continue with Tests, Fixing Bugs
Adding global constants for different iterator types
</notes>
</release>
<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.0.2</release><api>0.0.2</api></version>
<date>2014-08-07</date>
<notes>
tarantool-php 0.0.2
Initial Release
</notes>
</release>
</changelog>
</package>