forked from pear/Net_IPv6
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.xml
402 lines (401 loc) · 11.1 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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.9.4" 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>Net_IPv6</name>
<channel>pear.php.net</channel>
<summary>Check and validate IPv6 addresses</summary>
<description>The class allows you to:
* check if an address is an IPv6 address
* compress/uncompress IPv6 addresses
* check for an IPv4 compatible ending in an IPv6 address
* check the assigned address space of an IPv6 address
* do netmask calculations</description>
<lead>
<name>Alexander Merz</name>
<user>alexmerz</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2014-03-22</date>
<time>18:56:55</time>
<version>
<release>1.2.2b2</release>
<api>1.2.2</api>
</version>
<stability>
<release>beta</release>
<api>alpha</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>
#19334 CheckIPv6 accepted invalid characters
</notes>
<contents>
<dir baseinstalldir="/" name="/">
<file baseinstalldir="/" md5sum="0096c05bc0c7ea27f6d5b657705244d0" name="Net/IPv6.php" role="php" />
<file baseinstalldir="/" md5sum="654a8d6ed187bdf5e0964ae8d4737318" name="tests/TestInit.php" role="test" />
<file baseinstalldir="/" md5sum="f56d958b1971d02c464f24ae778ff6a3" name="tests/Net/Ipv6/Test/BaseTest.php" role="test" />
<file baseinstalldir="/" md5sum="2d6d5316cd1d9da6c5e74204fe45e455" name="tests/Net/Ipv6/Test/BugsTest.php" role="test" />
<file baseinstalldir="/" md5sum="9c30f47bba1e391d260705a01a97648a" name="tests/Net/Ipv6/Test/Test.php" role="test" />
<file baseinstalldir="/" md5sum="29b60e74686cdb55c1de787541c4cad4" name="composer.json" role="data" />
<file baseinstalldir="/" md5sum="60713d62bc926aed48c71be16747b527" name="phpunit.xml" role="data" />
</dir>
</contents>
<dependencies>
<required>
<php>
<min>4.0.0</min>
</php>
<pearinstaller>
<min>1.4.0b1</min>
</pearinstaller>
</required>
</dependencies>
<phprelease />
<changelog>
<release>
<version>
<release>1.0</release>
<api>1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2004-03-02</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>
First official release
</notes>
</release>
<release>
<version>
<release>1.0.1</release>
<api>1.0.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2004-11-24</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>
rewrite compress()/uncompress
fixes this bugs:
Bug #2803 compress() adds colon
Bug #2802 compress() doesn't compress correctly
Thanks to cmoehrke at netviser dot de
</notes>
</release>
<release>
<version>
<release>1.0.2</release>
<api>1.0.2</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2005-02-13</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>
Bug #3404: checkIPv6() is case sensitive
Bug #3405: compress() does not compress '0000'
Thanks to elfrink at introweb dot nl
</notes>
</release>
<release>
<version>
<release>1.0.3</release>
<api>1.0.3</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2005-03-19</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>
Bug #3851: IPv4-mapped/compatible IPv6 uncompress bug
Thanks to dtaylor at jasi dot com
</notes>
</release>
<release>
<version>
<release>1.0.4</release>
<api>1.0.4</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2005-08-03</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>
Bug #4977: trying to compress where nothing is to compress
Thanks to pvenegas at gmail dot com
</notes>
</release>
<release>
<version>
<release>1.0.5</release>
<api>1.0.5</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2005-09-01</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>
Bug #3405 again: problem with compressing
Thanks to elfrink at introweb dot nl
</notes>
</release>
<release>
<version>
<release>1.1.0b1</release>
<api>1.1.0b1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<date>2008-10-27</date>
<notes>
Because this release adds a new method and some bug tickets are still open, the package
release is named as Beta, instead of releasing a 5th RC version.
#14728 add parseAddress(), thanks to Nicholas Williams!
#14767 most CS issues should be solved
</notes>
</release>
<release>
<version>
<release>1.1.0b2</release>
<api>1.1.0b1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2010-02-12</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>
Fixed:
#14747 Compressing an already compressed IP returns the IP "as is" now
#15947 checkIPv6 returned true although the IP was too long
#16220 using the wrong variable in _bin2Ip
</notes>
</release>
<release>
<version>
<release>1.1.0RC1</release>
<api>1.1.0RC1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2005-11-24</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>
This new minor version adds some methods proposed
by Josh Peck (jmp @ joshpeck dot org).
+ Change license to BSD
+ Improved comments and docblocks
+ add removeNetmaskSpec()
+ add getNetmask()
+ add isInNetmask()
+ add getAddressType()
+ add _ip2Bin()
+ add _bin2Ip()
+ add serveral constants for address types
</notes>
</release>
<release>
<version>
<release>1.1.0RC2</release>
<api>1.1.0RC2</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2006-02-09</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>
- fixed a notice, when removeNetmaskSpec is used on an IP
without a netmask
</notes>
</release>
<release>
<version>
<release>1.1.0RC3</release>
<api>1.1.0RC3</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<date>2007-11-21</date>
<notes>
Fix Bug #12442, thanks to pear at erikdebruijn dot nl
+ add getNetmaskSpec()
</notes>
</release>
<release>
<version>
<release>1.1.0RC4</release>
<api>1.1.0RC4</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<date>2008-09-16</date>
<notes>
take care of prefix length specification in an address, thanks to Jens Ott
</notes>
</release>
<release>
<date>2010-11-08</date>
<time>19:15:00</time>
<version>
<release>1.1.0</release>
<api>1.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>
Jump from beta to stable.
Fixed:
#17819 documentation needs to be updated
</notes>
</release>
<release>
<date>2010-11-18</date>
<time>03:40:00</time>
<version>
<release>1.2.0b</release>
<api>1.2.0</api>
</version>
<stability>
<release>beta</release>
<api>alpha</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>
+ New method isCompressible()
+ New method separate()
+ compress() got a second parameter to enforce compression
+ add new address types
- deprecated getPrefixLength() (technical identical to getNetmaskSpec)
- deprecated removePrefixLength() (technical identical to removeNetmaskSpec)
</notes>
</release>
<release>
<date>2010-11-25</date>
<time>14:30:00</time>
<version>
<release>1.2.1b</release>
<api>1.2.0</api>
</version>
<stability>
<release>beta</release>
<api>alpha</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>
#18085 Fix wrong file path
</notes>
</release>
<release>
<date>2010-12-22</date>
<time>02:10:00</time>
<version>
<release>1.2.1b1</release>
<api>1.2.0</api>
</version>
<stability>
<release>beta</release>
<api>alpha</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>
Feature request:
+ add parameter to uncompress() to add leading zeros to an address (Pascal Uhlmann)
</notes>
</release>
<release>
<date>2010-12-30</date>
<time>05:30:00</time>
<version>
<release>1.2.1RC1</release>
<api>1.2.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>
Go to Release Candidate.
Updated Peardoc to reflect the API changes.
</notes>
</release>
<release>
<date>2011-02-07</date>
<time>22:45:00</time>
<version>
<release>1.2.1</release>
<api>1.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>
No Changes. Go to stable.
</notes>
</release>
<release>
<date>2011-11-15</date>
<time>01:50:00</time>
<version>
<release>1.2.2b</release>
<api>1.2.2</api>
</version>
<stability>
<release>beta</release>
<api>alpha</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>
#18687 Add recommendedFormat() provided by Tetsuji Koyama to respect RFC5952 about shortening of 0-Byte segments.
The method may become a part of compress() in a stable release.
#18976 Rok Potocnik spotted a missing range check for the netmask value while checking an IPv6 address.
</notes>
</release>
<release>
<version>
<release>1.2.2b2</release>
<api>1.2.2</api>
</version>
<stability>
<release>beta</release>
<api>alpha</api>
</stability>
<date>2014-03-22</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>
#19334 CheckIPv6 accepted invalid characters
</notes>
</release>
</changelog>
</package>