blob: 8655cfa1d944cd731d6339d2decc553cb3910731 [file] [log] [blame]
Stanley Cheung5adb71f2016-02-13 00:03:02 -08001%YAML 1.2
2--- |
3 <?xml version="1.0" encoding="UTF-8"?>
4 <package packagerversion="1.9.5" 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">
5 <name>grpc</name>
6 <channel>pecl.php.net</channel>
7 <summary>A high performance, open source, general RPC framework that puts mobile and HTTP/2 first.</summary>
8 <description>Remote Procedure Calls (RPCs) provide a useful abstraction for building distributed applications and services. The libraries in this repository provide a concrete implementation of the gRPC protocol, layered over HTTP/2. These libraries enable communication between clients and servers using any combination of the supported languages.</description>
9 <lead>
10 <name>Stanley Cheung</name>
11 <user>stanleycheung</user>
12 <email>grpc-packages@google.com</email>
13 <active>yes</active>
14 </lead>
Stanley Cheung82c6d8d2017-03-01 12:43:25 -080015 <date>2017-03-01</date>
Stanley Cheung5adb71f2016-02-13 00:03:02 -080016 <time>16:06:07</time>
17 <version>
Stanley Cheung3dab4622016-03-23 13:04:53 -070018 <release>${settings.php_version.php()}</release>
19 <api>${settings.php_version.php()}</api>
Stanley Cheung5adb71f2016-02-13 00:03:02 -080020 </version>
21 <stability>
Stanley Cheung42420752017-01-13 15:23:11 -080022 <release>beta</release>
23 <api>beta</api>
Stanley Cheung5adb71f2016-02-13 00:03:02 -080024 </stability>
25 <license>BSD</license>
26 <notes>
Stanley Cheung82c6d8d2017-03-01 12:43:25 -080027 - Added arg info macros #9751
28 - Updated codegen to be consistent with protobuf #9492
Stanley Cheung5adb71f2016-02-13 00:03:02 -080029 </notes>
30 <contents>
31 <dir baseinstalldir="/" name="/">
32 <file baseinstalldir="/" name="config.m4" role="src" />
Stanley Cheung5709e932016-03-07 17:34:47 -080033 <file baseinstalldir="/" name="src/php/README.md" role="src" />
Stanley Cheung5adb71f2016-02-13 00:03:02 -080034 <file baseinstalldir="/" name="src/php/ext/grpc/CREDITS" role="src" />
35 <file baseinstalldir="/" name="src/php/ext/grpc/LICENSE" role="src" />
Stanley Cheung5adb71f2016-02-13 00:03:02 -080036 % for source in php_config_m4.src + php_config_m4.headers:
37 <file baseinstalldir="/" name="${source}" role="src" />
38 % endfor
39 % for lib in libs:
40 % if lib.name in php_config_m4.get('deps', []):
41 % for source in lib.get('public_headers', []) + lib.headers + lib.src:
42 <file baseinstalldir="/" name="${source}" role="src" />
43 % endfor
44 % endif
45 % endfor
46 </dir>
47 </contents>
48 <dependencies>
49 <required>
50 <php>
51 <min>5.5.0</min>
52 </php>
53 <pearinstaller>
54 <min>1.4.0</min>
55 </pearinstaller>
56 </required>
57 </dependencies>
58 <providesextension>grpc</providesextension>
59 <extsrcrelease />
60 <changelog>
61 <release>
62 <version>
63 <release>0.5.0</release>
64 <api>0.5.0</api>
65 </version>
66 <stability>
67 <release>alpha</release>
68 <api>alpha</api>
69 </stability>
70 <date>2015-06-16</date>
71 <license>BSD</license>
72 <notes>
73 First alpha release
74 </notes>
75 </release>
76 <release>
77 <version>
78 <release>0.5.1</release>
79 <api>0.5.1</api>
80 </version>
81 <stability>
82 <release>alpha</release>
83 <api>alpha</api>
84 </stability>
85 <date>2015-07-09</date>
86 <license>BSD</license>
87 <notes>
88 Update to wrap gRPC C Core version 0.10.0
89 </notes>
90 </release>
91 <release>
92 <version>
93 <release>0.6.0</release>
94 <api>0.6.0</api>
95 </version>
96 <stability>
97 <release>beta</release>
98 <api>beta</api>
99 </stability>
100 <date>2015-09-24</date>
101 <license>BSD</license>
102 <notes>
103 - support per message compression disable
104 - expose per-call host override option
105 - expose connectivity API
106 - expose channel target and call peer
107 - add user-agent
108 - update to wrap gRPC C core library beta version 0.11.0
109 </notes>
110 </release>
111 <release>
112 <version>
113 <release>0.6.1</release>
114 <api>0.6.0</api>
115 </version>
116 <stability>
117 <release>beta</release>
118 <api>beta</api>
119 </stability>
120 <date>2015-10-21</date>
121 <license>BSD</license>
122 <notes>
123 - fixed undefined constant fatal error when run with apache/nginx #2275
124 </notes>
125 </release>
126 <release>
127 <version>
128 <release>0.7.0</release>
129 <api>0.7.0</api>
130 </version>
131 <stability>
132 <release>beta</release>
133 <api>beta</api>
134 </stability>
135 <date>2016-01-13</date>
136 <license>BSD</license>
137 <notes>
138 - Breaking change to Credentials class (removed) #3765
139 - Replaced by ChannelCredentials and CallCredentials class #3765
140 - New plugin based metadata auth API #4394
141 - Explicit ChannelCredentials::createInsecure() call
142 </notes>
143 </release>
144 <release>
145 <version>
146 <release>0.8.0</release>
147 <api>0.8.0</api>
148 </version>
149 <stability>
150 <release>beta</release>
151 <api>beta</api>
152 </stability>
Stanley Cheung6b573282016-02-24 21:44:47 -0800153 <date>2016-02-24</date>
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800154 <license>BSD</license>
155 <notes>
156 - Simplify gRPC PHP installation #4517
Stanley Cheung2cb69ad2016-06-30 11:47:14 -0700157 - Wrap gRPC core library version 0.13
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800158 </notes>
159 </release>
Stanley Cheungdf1e05a2016-02-29 16:26:57 -0800160 <release>
161 <version>
Stanley Cheung9a163762016-04-19 13:24:18 -0700162 <release>0.8.1</release>
163 <api>0.8.1</api>
Stanley Cheungdf1e05a2016-02-29 16:26:57 -0800164 </version>
165 <stability>
166 <release>beta</release>
167 <api>beta</api>
168 </stability>
169 <date>2016-03-01</date>
170 <license>BSD</license>
171 <notes>
172 - Increase unit test code coverage #5225
173 </notes>
174 </release>
Stanley Cheung9a163762016-04-19 13:24:18 -0700175 <release>
176 <version>
Stanley Cheung049831a2016-05-18 09:17:01 -0700177 <release>0.14.0</release>
178 <api>0.14.0</api>
Stanley Cheung9a163762016-04-19 13:24:18 -0700179 </version>
180 <stability>
181 <release>beta</release>
182 <api>beta</api>
183 </stability>
184 <date>2016-04-19</date>
185 <license>BSD</license>
186 <notes>
Stanley Cheung2cb69ad2016-06-30 11:47:14 -0700187 - wrap grpc C core version 0.14.0
Stanley Cheung9a163762016-04-19 13:24:18 -0700188 - destroy grpc_byte_buffer after startBatch #6096
189 </notes>
190 </release>
Stanley Cheung049831a2016-05-18 09:17:01 -0700191 <release>
192 <version>
Stanley Cheung2cb69ad2016-06-30 11:47:14 -0700193 <release>0.15.0</release>
194 <api>0.15.0</api>
Stanley Cheung049831a2016-05-18 09:17:01 -0700195 </version>
196 <stability>
197 <release>beta</release>
198 <api>beta</api>
199 </stability>
200 <date>2016-05-18</date>
201 <license>BSD</license>
202 <notes>
203 - Updated functions with TSRM macros for ZTS support #6607
Stanley Cheung2cb69ad2016-06-30 11:47:14 -0700204 - Load default roots.pem via grpc_set_ssl_roots_override_callback #6848
205 </notes>
206 </release>
207 <release>
208 <version>
Stanley Cheung31399d22016-07-21 20:28:11 -0700209 <release>1.0.0RC1</release>
210 <api>1.0.0RC1</api>
Stanley Cheung2cb69ad2016-06-30 11:47:14 -0700211 </version>
212 <stability>
Stanley Cheung67bccfe2016-07-13 08:37:29 -0700213 <release>stable</release>
214 <api>stable</api>
Stanley Cheung2cb69ad2016-06-30 11:47:14 -0700215 </stability>
Stanley Cheung67bccfe2016-07-13 08:37:29 -0700216 <date>2016-07-13</date>
Stanley Cheung2cb69ad2016-06-30 11:47:14 -0700217 <license>BSD</license>
218 <notes>
Stanley Cheung67bccfe2016-07-13 08:37:29 -0700219 - GA release
Stanley Cheung2cb69ad2016-06-30 11:47:14 -0700220 - Fix shutdown hang problem #4017
Stanley Cheung049831a2016-05-18 09:17:01 -0700221 </notes>
222 </release>
Stanley Cheung31399d22016-07-21 20:28:11 -0700223 <release>
224 <version>
225 <release>1.0.0RC2</release>
226 <api>1.0.0RC2</api>
227 </version>
228 <stability>
229 <release>stable</release>
230 <api>stable</api>
231 </stability>
232 <date>2016-07-21</date>
233 <license>BSD</license>
234 <notes>
235 - PHP7 Support #7464
236 </notes>
237 </release>
Stanley Cheung526a9f92016-07-28 10:32:43 -0700238 <release>
239 <version>
240 <release>1.0.0RC3</release>
241 <api>1.0.0RC3</api>
242 </version>
243 <stability>
244 <release>stable</release>
245 <api>stable</api>
246 </stability>
247 <date>2016-07-28</date>
248 <license>BSD</license>
249 <notes>
250 - PHP7 Support continued, reduce code duplication #7543
251 </notes>
252 </release>
Stanley Cheung7e8efc32016-08-09 21:47:46 -0700253 <release>
254 <version>
255 <release>1.0.0RC4</release>
256 <api>1.0.0RC4</api>
257 </version>
258 <stability>
259 <release>stable</release>
260 <api>stable</api>
261 </stability>
262 <date>2016-08-09</date>
263 <license>BSD</license>
264 <notes>
265 - Fixed Ubuntu compile error #7571, #7642
266 </notes>
267 </release>
Stanley Cheung557aa4e2016-08-22 08:45:12 -0700268 <release>
269 <version>
270 <release>1.0.0</release>
271 <api>1.0.0</api>
272 </version>
273 <stability>
274 <release>stable</release>
275 <api>stable</api>
276 </stability>
277 <date>2016-08-18</date>
278 <license>BSD</license>
279 <notes>
280 - gRPC 1.0.0 release
281 </notes>
282 </release>
283 <release>
284 <version>
Stanley Cheung42420752017-01-13 15:23:11 -0800285 <release>1.0.1RC1</release>
286 <api>1.0.1RC1</api>
287 </version>
288 <stability>
289 <release>beta</release>
290 <api>beta</api>
291 </stability>
292 <date>2016-10-06</date>
293 <license>BSD</license>
294 <notes>
295 - Reject metadata keys which are not legal #7881
296 </notes>
297 </release>
298 <release>
299 <version>
300 <release>1.0.1</release>
301 <api>1.0.1</api>
Stanley Cheung557aa4e2016-08-22 08:45:12 -0700302 </version>
303 <stability>
304 <release>stable</release>
305 <api>stable</api>
306 </stability>
Stanley Cheung42420752017-01-13 15:23:11 -0800307 <date>2016-10-27</date>
Stanley Cheung557aa4e2016-08-22 08:45:12 -0700308 <license>BSD</license>
309 <notes>
Stanley Cheung129bca62016-08-26 19:54:57 -0700310 - Reject metadata keys which are not legal #7881
Stanley Cheung557aa4e2016-08-22 08:45:12 -0700311 </notes>
312 </release>
Stanley Cheung42420752017-01-13 15:23:11 -0800313 <release>
314 <version>
Stanley Cheung82c6d8d2017-03-01 12:43:25 -0800315 <release>1.1.0RC1</release>
316 <api>1.1.0RC1</api>
Stanley Cheung42420752017-01-13 15:23:11 -0800317 </version>
318 <stability>
319 <release>beta</release>
320 <api>beta</api>
321 </stability>
322 <date>2017-01-13</date>
323 <license>BSD</license>
324 <notes>
325 - PHP Proto3 adoption #8179
Stanley Cheung82c6d8d2017-03-01 12:43:25 -0800326 - Various bug fixes
327 </notes>
328 </release>
329 <release>
330 <version>
331 <release>1.1.0</release>
332 <api>1.1.0</api>
333 </version>
334 <stability>
335 <release>stable</release>
336 <api>stable</api>
337 </stability>
338 <date>2017-01-31</date>
339 <license>BSD</license>
340 <notes>
341 - PHP Proto3 adoption #8179
342 - Various bug fixes
343 </notes>
344 </release>
345 <release>
346 <version>
347 <release>1.2.0RC1</release>
348 <api>1.2.0RC1</api>
349 </version>
350 <stability>
351 <release>beta</release>
352 <api>beta</api>
353 </stability>
354 <date>2017-03-01</date>
355 <license>BSD</license>
356 <notes>
357 - Added arg info macros #9751
358 - Updated codegen to be consistent with protobuf #9492
Stanley Cheung42420752017-01-13 15:23:11 -0800359 </notes>
360 </release>
Stanley Cheung5adb71f2016-02-13 00:03:02 -0800361 </changelog>
362 </package>