File python-netaddr.changes of Package python-netaddr
1
-------------------------------------------------------------------
2
Thu Oct 24 11:09:05 UTC 2013 - speilicke@suse.com
3
4
- Require python-setuptools instead of distribute (upstreams merged)
5
6
-------------------------------------------------------------------
7
Mon Sep 10 02:34:53 UTC 2012 - alexandre@exatati.com.br
8
9
- Update to 0.7.10:
10
* A bunch of Python 3.x bug fixes. Thanks Arfrever.
11
* Extended nmap support to cover full target specification.
12
FIXED Issue 36 - http://github.com/drkjam/netaddr/issues/36
13
- ResourceWarnings with Python >=3.2
14
FIXED Issue 35 - http://github.com/drkjam/netaddr/issues/35
15
- netaddr-0.7.9: Test failure with Python 3
16
FIXED Issue 34 - http://github.com/drkjam/netaddr/issues/34
17
- netaddr.ip.iana.SaxRecordParser.endElement() incompatible
18
with Python 3.1
19
FIXED Issue 33 - http://github.com/drkjam/netaddr/issues/33
20
- netaddr script not installed with Python 3
21
FIXED Issue 23 - http://github.com/drkjam/netaddr/issues/23
22
- valid_nmap_range() does not validate nmap format case.
23
FIXED Issue 22 - http://github.com/drkjam/netaddr/issues/22
24
- all_matching_cidrs: documentation incorrect
25
26
-------------------------------------------------------------------
27
Wed Aug 29 05:12:38 UTC 2012 - alexandre@exatati.com.br
28
29
- Update to 0.7.9:
30
* Re-release to fix build removing Sphinx dependency.
31
- Aditional changes from 0.7.8:
32
* New SAX parser for IANA data source files (contributed by
33
Andrew Stromnov)
34
* Fixed pickling failures with EUI, OUI and IAB classes.
35
FIXED Issue 31 - http://github.com/drkjam/netaddr/issues/31
36
- Exclude '39.0.0.0/8' network from reserved set. Thanks
37
Andrew Stromnov
38
FIXED Issue 28 - http://github.com/drkjam/netaddr/issues/28
39
- Fix algorithm in ipv6_link_local to fully conform to rfc4291.
40
Thanks Philipp Wollermann
41
FIXED Issue 25 - http://github.com/drkjam/netaddr/issues/25
42
- install_requires is too aggressive? Thanks Adam Lindsay and
43
commenters.
44
FIXED Issue 21 - http://github.com/drkjam/netaddr/issues/21
45
- deepcopy for EUI fails. Thanks Ryan Nowakowski.
46
47
-------------------------------------------------------------------
48
Thu May 31 05:08:00 UTC 2012 - alexandre@exatati.com.br
49
50
- Update to 0.7.7:
51
* Comprehensive documentation update! It's only taken 4 years
52
to get around to using Sphinx and I can confirm it is
53
**TOTALLY AWESOME!**
54
* Various bug fixes
55
* Refreshed IEEE OUI and IAB data
56
* FIXED Issue 24 - http://github.com/drkjam/netaddr/issues/24
57
- Fixed TypeError when comparing BaseIP instance with
58
non-BaseIP objects. Thanks pvaret
59
* FIXED Issue 17 - http://github.com/drkjam/netaddr/issues/17
60
- For large ipv6 networks the .subnet() method fails. Thanks
61
daveyss
62
* FIXED Issue 20 - http://github.com/drkjam/netaddr/issues/20
63
- Test failure with Python 3. Thanks Arfrever
64
65
-------------------------------------------------------------------
66
Tue Sep 20 13:43:05 UTC 2011 - saschpe@suse.de
67
68
- Changed license to 'BSD-3-Clause' (SPDX style)
69
70
-------------------------------------------------------------------
71
Tue Sep 20 13:40:39 UTC 2011 - saschpe@suse.de
72
73
- Fixed non-executable script rpmlint warning
74
- Readded dependency on python-setuptools (with python-distribute):
75
You can't simply remove this, it will break RPMs update mechanism!
76
- Preparatory stuff belongs into the %prep section and the %clean
77
section has a sane default
78
79
-------------------------------------------------------------------
80
Wed Sep 14 00:32:39 UTC 2011 - alexandre@exatati.com.br
81
82
- Regenerate spec file with py2pack;
83
- Removed unneded python-setuptools BuildRequires;
84
- Update to 0.7.6:
85
* A bug fix point release
86
* Refreshed 3rd party data caches
87
* Tested against Python 3.2.x and PyPy 1.6.x
88
* Fixed unit tests under for Mac OSX
89
Specific bug fixes addressed in this release
90
--------------------------------------------
91
* FIXED Issue 15 - http://github.com/drkjam/netaddr/issues/15
92
- Incorrect and invalid glob produced when last octet is not *
93
* FIXED Issue 13 - http://github.com/drkjam/netaddr/issues/13
94
- Added support for IPython 0.11 API changes. Thanks juliantaylor
95
* FIXED Issue 11 - http://github.com/drkjam/netaddr/issues/11
96
- Calling valid_glob on cidr raises ValueError. Thanks radicand
97
* FIXED Issue 7 - http://github.com/drkjam/netaddr/issues/7
98
- Unpickling Bug in IPSet. Thanks LuizOz and labeneator
99
* FIXED Issue 2 - http://github.com/drkjam/netaddr/issues/2
100
- UnboundLocalError raised in IPNetwork constructor. Thanks keesbos
101
102
Miscellanea
103
-----------
104
- Has a famous soft drink company started making it own NICs?
105
106
-------------------------------------------------------------------
107
Thu Mar 3 09:51:36 UTC 2011 - saschpe@suse.de
108
109
- Spec file cleanup:
110
* Added %changelog
111
* Removed empty lines
112
* Added AUTHORS, CHANGELOG, COPYRIGHT, README, LICENSE and
113
THANKS files (all documentation)
114
115
-------------------------------------------------------------------
116
Wed Oct 6 01:41:45 UTC 2010 - alexandre@exatati.com.br
117
118
- Update to 0.7.5:
119
* Python 3.x is now fully supported. The paint is still drying on this so
120
please help with testing and raise bug tickets when you find any issues!
121
* Moved code hosting to github. All history ported thanks to the most
122
excellent tool, svn2git (http://github.com/nirvdrum/svn2git).
123
* All netaddr objects now use approx. 65% less memory due to the use of
124
__slots__ in classes throughout the codebase. Thanks to Stefan Nordhausen
125
and his Python guru for this suggestion!
126
* Applied many optimisations and speedups throughout the codebase.
127
* Fixed the behaviour of the IPNetwork constructor so it now behaves in
128
a much more sensible and expected way (i.e. no longer uses inet_aton
129
semantics which is just plain odd for network addresses).
130
* One minor change to behaviour in this version is that the .value property
131
on IPAddress and IPNetwork objects no longer support assignment using a
132
string IP address. Only integer value assignments are now valid. The impact
133
of this change should be minimal for the majority of users.
134
* FIXED Issue 49 - http://code.google.com/p/netaddr/issues/detail?id=49
135
- Incorrect IP range recognition on IPs with leading zeros
136
* FIXED Issue 50 - http://code.google.com/p/netaddr/issues/detail?id=50
137
- CIDR block parsing
138
* FIXED Issue 52 - http://code.google.com/p/netaddr/issues/detail?id=52
139
- ipv6 cidr matches incorrectly match ipv4 [sic]
140
* FIXED Issue 53 - http://code.google.com/p/netaddr/issues/detail?id=53
141
- Error in online documentation
142
* FIXED Issue 54 - http://code.google.com/p/netaddr/issues/detail?id=54
143
- IP recognition failure
144
* FIXED Issue 55 - http://code.google.com/p/netaddr/issues/detail?id=55
145
- Support for Python 3.x
146
* FIXED Issue 56 - http://code.google.com/p/netaddr/issues/detail?id=56
147
- checking IPAddress in IPNetwork
148
* FIXED Issue 57 - http://code.google.com/p/netaddr/issues/detail?id=57
149
- netaddr objects can't pickle
150
* FIXED Issue 58 - http://code.google.com/p/netaddr/issues/detail?id=58
151
- IPSet operations should accept the same arguments as IPAddress
152
* FIXED Issue 59 - http://code.google.com/p/netaddr/issues/detail?id=59
153
- netaddr fails to load when imported by a PowerDNS coprocess
154
155
-------------------------------------------------------------------
156
Wed May 12 11:36:17 UTC 2010 - alexandre@exatati.com.br
157
158
- Initial package (0.7.4) for openSUSE.
159