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
|
v6.0.1 (2025-12-21)
===================
- Require Python >= 3.10 (fixup).
v6.0.0 (2025-12-21)
===================
- Drop Python 3.9 support (breaking change).
- Add support for Python 3.14.
- Minor improvements from GitHub Copilot code review.
- Modernize build environment.
- Update CI environment.
v5.0.0 (2025-05-02)
===================
- Require Python 3.9 or later (breaking change).
- Update CI environment.
v4.0.3 (2024-05-28)
===================
- Prepare for Python 3.13.
v4.0.2 (2023-08-30)
===================
- Depend on Python >= 3.7.
- Support Python 3.12.
v4.0.1 (2023-01-08)
===================
- Add support for Python 3.11.
- Correct version information in RTD documentation.
- ``badges/shields``: Change to GitHub workflow badge routes.
v4.0.0 (2022-01-02)
===================
- Require Python 3.7 or later (breaking change).
- Remove undocumented submodules (breaking change).
The ``chars``, ``classify``, ``compose``, ``defrag``, ``encoding``,
``join`` and ``split`` submodules have been deleted. Therefore,
statements like
``from uritools.classify import isuri``
will no longer work. Use
``from uritools import isuri``
instead.
v3.0.2 (2021-04-27)
===================
- Update build environment.
v3.0.1 (2021-03-09)
===================
- Do not convert percent-encodings to uppercase in host components
generated by ``uricompose()``.
- Officially support Python 3.9.
- Format code with Black.
v3.0.0 (2019-12-15)
===================
- Require Python 3.5 or later.
v2.2.0 (2018-05-17)
===================
- Add URI classification methods and functions.
v2.1.1 (2018-05-13)
===================
- Treat URIs with invalid schemes as relative references.
v2.1.0 (2017-10-07)
===================
- Add ``SplitResult.getauthority()``.
- Add optional ``errors`` parameter to ``SplitResult.gethost()``.
v2.0.1 (2017-09-13)
===================
- Officially support Python 3.6.
- Move documentation to RTD.
- Fix ``flake8`` checks.
v2.0.0 (2016-10-09)
===================
- Drop Python 3.2 support (breaking change).
- No longer treat semicolons as query separators by default (breaking
change).
- Add optional ``sep`` parameter to ``SplitResult.getquerydict()`` and
``SplitResult.getquerylist()`` (breaks ``encoding`` when passed as
positional argument).
- Add optional ``querysep`` parameter to ``uricompose()`` (breaks
``encoding`` when passed as positional argument).
v1.0.2 (2016-04-08)
===================
- Fix ``uriencode()`` documentation and unit tests requiring the
``safe`` parameter to be a ``bytes`` object.
v1.0.1 (2015-07-09)
===================
- Encode semicolon in query values passed to ``uricompose()``.
v1.0.0 (2015-06-12)
===================
- Fix use of URI references as base URIs in ``urijoin()`` and
``SplitResult.transform()``.
- Remove ``SplitResult.getaddrinfo()``.
- Remove ``SplitResult.getauthority()``.
- Remove ``SplitResult.gethostip()``; return ``ipaddress`` address
objects from ``SplitResult.gethost()`` instead.
- Remove ``SplitResult.gethost()`` ``encoding`` parameter.
- Remove query delimiter parameters.
- Return normalized paths from ``SplitResult.getpath()``.
- Convert character constants to strings.
v0.12.0 (2015-04-03)
====================
- Deprecate ``SplitResult.getaddrinfo()``.
- Deprecate ``SplitResult.getauthority()``.
- Deprecate ``SplitResult.gethost()`` and ``SplitResult.gethostip()``
``encoding`` parameter; always use ``utf-8`` instead.
- Drop support for "bytes-like objects".
- Remove ``DefragResult.base``.
v0.11.1 (2015-03-25)
====================
- Fix ``uricompose()`` for relative-path references with colons in the
first path segment.
v0.11.0 (2014-12-16)
====================
- Support ``encoding=None`` for ``uriencode()`` and ``uridecode()``.
- Add optional ``errors`` parameter to decoding methods.
v0.10.1 (2014-11-30)
====================
- Make ``uricompose()`` return ``str`` on all Python versions.
v0.10.0 (2014-11-30)
====================
- Use ``ipaddress`` module for handling IPv4/IPv6 host addresses.
- Add ``userinfo``, ``host`` and ``port`` keyword arguments to
``uricompose()``.
- Deprecate ``DefragResult.base``.
- Feature freeze for v1.0.
v0.9.0 (2014-11-21)
===================
- Improve Python 3 support.
v0.8.0 (2014-11-04)
===================
- Fix ``uriencode()`` and ``uridecode()``.
- Deprecate ``RE``, ``urinormpath()``, ``DefragResult.getbase()``.
- Support non-string query values in ``uricompose()``.
v0.7.0 (2014-10-12)
===================
- Add optional port parameter to ``SplitResult.getaddrinfo()``.
- Cache ``SplitResult.authority`` subcomponents.
v0.6.0 (2014-09-17)
===================
- Add basic IPv6 support.
- Change ``SplitResult.port`` back to string, to distinguish between
empty and absent port components.
- Remove ``querysep`` and ``sep`` parameters.
- Do not raise ``ValueError`` if scheme is not well-formed.
- Improve Python 3 support.
v0.5.2 (2014-08-06)
===================
- Fix empty port handling.
v0.5.1 (2014-06-22)
===================
- Add basic Python 3 support.
v0.5.0 (2014-06-21)
===================
- Add ``SplitResult.getaddrinfo()``.
- Support query mappings and sequences in ``uricompose()``.
v0.4.0 (2014-03-20)
===================
- Fix ``SplitResult.port`` to return int (matching urlparse).
- Add ``SplitResult.getquerylist(), SplitResult.getquerydict()``.
v0.3.0 (2014-03-02)
===================
- Add result object accessor methods.
- Update documentation.
v0.2.1 (2014-02-24)
===================
- Fix IndexError in ``urinormpath()``.
- Integrate Python 2.7.6 ``urlparse`` unit tests.
v0.2.0 (2014-02-18)
===================
- Add authority subcomponent attributes.
- Return ``DefragResult`` from ``uridefrag()``.
- Improve edge case behavior.
v0.1.0 (2014-02-14)
===================
- Initial beta release.
|