ChangeLog 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627
  1. NOTE: uriparser is looking for help with a few things:
  2. https://github.com/uriparser/uriparser/labels/help%20wanted
  3. If you can help, please get in touch. Thanks!
  4. 2024-05-05 -- 0.9.8
  5. >>>>>>>>>>>>> SECURITY >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  6. * Fixed: [CVE-2024-34402]
  7. Protect against integer overflow in ComposeQueryEngine
  8. (GitHub #183, GitHub #185)
  9. * Fixed: [CVE-2024-34403]
  10. Protect against integer overflow in ComposeQueryMallocExMm
  11. (GitHub #183, GitHub #186)
  12. >>>>>>>>>>>>> SECURITY >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  13. * Changed: Require CMake >=3.5.0 (GitHub #172)
  14. * Added: CMake option URIPARSER_SHARED_LIBS=(ON|OFF) to control,
  15. whether to produce a shared or static library for uriparser
  16. and that alone, falls back to standard BUILD_SHARED_LIBS
  17. if available, else defaults to "ON" (GitHub #169, GitHub #170)
  18. * Improved: Document that scheme-based normalization a la
  19. section 6.2.3 of RFC 3986 is a responsibility of the application
  20. using uriparser (GitHub #173, GitHub #174)
  21. * Improved: Document supported code points for functions uriEscape(Ex)W
  22. (GitHub #171, GitHub #175)
  23. * Infrastructure: Update Clang from 15 to 18 (GitHub #161, GitHub #187)
  24. * Infrastructure: Adapt to breaking changes in Clang packaging (GitHub #160)
  25. * Infrastructure: Get sanitizer CFLAGS and LDFLAGS back in sync (GitHub #161)
  26. * Infrastructure: Pin GitHub Actions to specific commits for security
  27. (GitHub #165)
  28. * Soname: 1:31:0 — see https://verbump.de/ for what these numbers do
  29. 2022-10-05 -- 0.9.7
  30. * Fixed: Multiple issues with IPv6 and IPvFuture literal parsing
  31. (GitHub #146, GitHub #150)
  32. Thanks to Scallop Ye for the report and the pull request!
  33. * Fixed: Fix symbol visibility for -DBUILD_SHARED_LIBS=OFF (GitHub #139,
  34. GitHub #141); thanks to Mariusz Zaborski for the report!
  35. * Fixed: For MinGW, use size_t for inet_ntop declaration and fix macro
  36. checks for both MinGW and mingw-w64 (GitHub #131)
  37. * Fixed: Compiler warnings (GitHub #132, GitHub #152)
  38. * Improved: Use name UriConfig.h rather than generic config.h for the
  39. config header file to avoid name clashes and also include it through
  40. "UriConfig.h" with quotes rather than <UriConfig.h> so that it is found
  41. in quote path locations (GitHub #149)
  42. Thanks to Gaspard Petit for bringing this up!
  43. * Improved: Document need for UriConfig.h in UriMemory.c (GitHub #136)
  44. * Infrastructure: Add (support for) Visual Studio 17/2022 (GitHub #152)
  45. * Infrastructure: Drop (support for) Visual Studio <=14/2015 (GitHub #152)
  46. * Infrastructure: Update Clang from 13 to 15 (GitHub #143, GitHub #151)
  47. * Infrastructure: Make MinGW with 32bit Wine on Ubuntu 20.04 possible
  48. (GitHub #142, GitHub #144, GitHub #145)
  49. * Soname: 1:30:0 — see https://verbump.de/ for what these numbers do
  50. 2022-01-06 -- 0.9.6
  51. >>>>>>>>>>>>> SECURITY >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  52. * Fixed: [CVE-2021-46141]
  53. Fix a bug affecting both uriNormalizeSyntax* and uriMakeOwner*
  54. functions where the text range in .hostText would not be duped using
  55. malloc but remain unchanged (and hence "not owned") for URIs with
  56. an IPv4 or IPv6 address hostname; depending on how an application
  57. uses uriparser, this could lead the application into a use-after-free
  58. situation.
  59. As the second half, fix uriFreeUriMembers* functions that would not
  60. free .hostText memory for URIs with an IPv4 or IPv6 address host;
  61. also, calling uriFreeUriMembers* multiple times on a URI of this
  62. very nature would result in trying to free pointers to stack
  63. (rather than heap) memory (GitHub #121, GitHub #124)
  64. Commit 987b046e41f407d17c622e580fc82a5e834b4329
  65. Commit b1a34743bc1472e055d886e29e9b53f670eb3282
  66. * Fixed: [CVE-2021-46142]
  67. Fix functions uriNormalizeSyntax* for out-of-memory situations
  68. (i.e. malloc returning NULL) for URIs containing empty segments
  69. (any of user info, host text, query, or fragment) where previously
  70. pointers to stack (rather than heap) memory were freed (GitHub #122,
  71. GitHub #124)
  72. Commit c0483990e6b5b454f7c8752b36760cfcb0d093f5
  73. >>>>>>>>>>>>> SECURITY >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  74. * Fixed: CMake: Call "enable_language(CXX)" prior to tinkering with
  75. CMAKE_CXX_* variables (GitHub #110)
  76. Thanks to Alexander Richardson for the patch (originally at libexpat)
  77. * Fixed: CMake: Support absolute paths for both CMAKE_INSTALL_LIBDIR
  78. and CMAKE_INSTALL_INCLUDEDIR (GitHub #114)
  79. Thanks to Rafael Fontenelle for bringing this up (originally at libexpat)
  80. * Fixed: Windows: Address MSVC compiler warnings (GitHub #111, GitHub #113)
  81. * Fixed: Documentation: Space requirements for uriUriStringToUnixFilename
  82. did not take into account short form "file:/bin/bash" of RFC 8089 of 2017
  83. (with prefix "file:/" rather than "file:///") that uriparser supports
  84. since release 0.8.6 in 2018 (GitHub #118, GitHub #119)
  85. * Fixed: Compile error with MinGW GCC 9 related to a mismatched prototype
  86. for function inet_ntop (GitHub #117, GitHub #120)
  87. Thanks to Sandro Mani for the report!
  88. * Fixed: Compile warnings in test suite code (GitHub #120)
  89. * Improved: Respect variable ${CPP} in doc/preprocess.sh (GitHub #115)
  90. * Added: Test suite invocation for MinGW using Wine (GitHub #120)
  91. * Soname: 1:29:0 — see https://verbump.de/ for what these numbers do
  92. 2021-03-18 -- 0.9.5
  93. * Fixed: Fix a bug regarding section "5.2.4. Remove Dot Segments"
  94. of RFC 3986 that affected both normalization and reference resolution
  95. with regard to trailing slashes (GitHub #92, #97)
  96. Thanks to Dan Pape for the report!
  97. * Fixed: MinGW: Fix name of static library (GitHub #90)
  98. Thanks to SpaceIm for the patch and Sandro Mani for review!
  99. * Fixed: Use correct inline marker "__forceinline" for Intel C++ Compiler
  100. (GitHub #93)
  101. Thanks to jensenrichardson for the patch!
  102. * Fixed: Link against pthreads for (default) -DURIPARSER_BUILD_TESTS=ON
  103. (GitHub #99, #100)
  104. * Fixed: When integrated using CMake function add_subdirectory, installation
  105. could fail due to lack of prefix ${CMAKE_CURRENT_SOURCE_DIR} (GitHub #98)
  106. Thanks for the patch to Shehzan Mohammed!
  107. * Fixed: Addressed MSVC compile warning about lack of /EHsc when compiling
  108. the C++ test suite code (GitHub #102)
  109. * Fixed: Stopped misadvertising wide characters as Unicode support
  110. (GitHub #104)
  111. * Added: CMake option URIPARSER_WARNINGS_AS_ERRORS=(ON|OFF)
  112. to turn compile warnings into errors, defaults to "OFF" (GitHub #102)
  113. * Improved: pkg-config: Use ${prefix} and ${exec_prefix} to ease
  114. overriding variables using --define-variable=NAME=VALUE,
  115. e.g. as done on OpenWRT (GitHub #91)
  116. Thanks to Karel Kočí for the pull request!
  117. * Improved: Auto-detection of the qhelpgenerator command based on CMake
  118. package "Qt5Help" when available. CMake option "QHG_LOCATION" can still
  119. be used to enforce a specific location (GitHub #103)
  120. Thanks for his help to Andreas Sturmlechner!
  121. * Improved: Make documentation use pkg-config in example on how to
  122. check for uriparser from within configure.ac (GNU Autoconf)
  123. (GitHub #37, #106)
  124. * Improved: In testing code, add a missing 'extern "C"' (GitHub #109)
  125. Thanks to Jørgen Ibsen for the patch!
  126. * Soname: 1:28:0 — see https://verbump.de/ for what these numbers do
  127. 2020-05-31 -- 0.9.4
  128. * Fixed: testrunner: No longer crashes when compiled with NDEBUG (GitHub #67)
  129. * Fixed: CMake: Support GTest 1.8.0 (GitHub #68)
  130. Thanks to Ryan Schmidt for the related report!
  131. * Fixed: CMake: Use variable GTEST_INCLUDE_DIRS (with plural "S") rather than
  132. GTEST_INCLUDE_DIR (GitHub #79, #81)
  133. Thanks to Wouter Beek for the related report!
  134. * Improved: CMake: Send config summary to stdout, not stderr (GitHub #72)
  135. Thanks to Scott Donelan for the patch!
  136. * Improved: Make -DURIPARSER_BUILD_TESTS=OFF unlock compilation without
  137. a C++ compiler; thanks to Fabrice Fontaine for the patch! (GitHub #69)
  138. * Added: Functions to make UriUri[AW] instances independent of the original
  139. URI string (GitHub #77 and #78)
  140. New functions:
  141. uriMakeOwner[AW]
  142. uriMakeOwnerMm[AW]
  143. * Added: CMake option URIPARSER_ENABLE_INSTALL to toggle installation of
  144. files, defaults to "ON" (GitHub #74, #75)
  145. Thanks to Scott Donelan for the patch!
  146. * Soname: 1:27:0
  147. 2019-04-28 -- 0.9.3
  148. * Fixed: pkg-config: Fix version line in liburiparser.pc (GitHub #65)
  149. * Changed: MinGW: Add library version suffix to DLL name
  150. Thanks to Sandro Mani for the patch! (GitHub #63, #64)
  151. * Soname: 1:26:0
  152. 2019-04-22 -- 0.9.2
  153. * Fixed: Add missing extern "C" wrapper to UriIp4.h for use from C++
  154. * Fixed: Linking error for symbol defaultMemoryManager from mixing C and C++
  155. Thanks to Jørgen Ibsen for the report! (GitHub #52)
  156. * Fixed: Link errors on Haiku regarding function inet_ntop (GitHub #45)
  157. Thanks to Schrijvers Luc for the patch!
  158. * Fixed: Mark API functions with __declspec(dllexport) and
  159. __declspec(dllimport) in *.h files for Visual Studio (GitHub #60)
  160. * Improved: Use -fvisibility=hidden by default with supporting compilers,
  161. e.g. GCC and Clang (GitHub #60)
  162. * Changed: Migrated from GNU Autotools to CMake (GitHub #17, #47, #56, #59)
  163. Thanks for their support with the CMake migration to:
  164. - David Demelier
  165. - Jørgen Ibsen
  166. - KangLin
  167. - Kouhei Sutou
  168. - myd7349
  169. - Richard Hodges
  170. - Zachary Lund
  171. * Removed: All Windows-related build systems other than CMake
  172. * Soname: 1:25:0
  173. 2019-01-02 -- 0.9.1
  174. >>>>>>>>>>>>> SECURITY >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  175. * Fixed: [CVE-2018-20721]
  176. Out-of-bounds read in uriParse*Ex* for incomplete URIs with IPv6
  177. addresses with embedded IPv4 address, e.g. "//[::44.1";
  178. mitigated if passed parameter <afterLast> points to readable memory
  179. containing a '\0' byte.
  180. Commit cef25028de5ff872c2e1f0a6c562eb3ea9ecbce4
  181. Thanks to Joergen Ibsen for the report!
  182. >>>>>>>>>>>>> SECURITY >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  183. * Fixed: When parsing a malformed URI with an IPvFuture address
  184. (e.g. "http://[vA.123456" missing "]"), errorPos would point to the first
  185. character after "v" than the actual position of the error (here: the end
  186. of the string)
  187. * Fixed: uriToStringCharsRequired* reported 1 more byte than actually needed
  188. for IPv4 address URIs (GitHub #41); Thanks to @gyh007 for the patch!
  189. * Fixed: Compilation with MinGW
  190. Thanks to Sandro Mani for the patch!
  191. * Fixed: Drop use of asprintf from the test suite for MinGW (GitHub #40)
  192. * Improved: For parse errors, waterproof errorPos <= afterLast
  193. * Soname: 1:24:0
  194. 2018-10-27 -- 0.9.0
  195. >>>>>>>>>>>>> SECURITY >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  196. * Fixed: [CVE-2018-19198]
  197. Out-of-bounds write in uriComposeQuery* and uriComposeQueryEx*
  198. Commit 864f5d4c127def386dd5cc926ad96934b297f04e
  199. Thanks to Google Autofuzz team for the report!
  200. * Fixed: [CVE-2018-19199]
  201. Detect integer overflow in uriComposeQuery* and uriComposeQueryEx*
  202. Commit f76275d4a91b28d687250525d3a0c5509bbd666f
  203. Thanks to Google Autofuzz team for the report!
  204. * Fixed: [CVE-2018-19200]
  205. Protect uriResetUri* against acting on NULL input
  206. Commit f58c25069cf4a986fe17a80c5b38687e31feb539
  207. >>>>>>>>>>>>> SECURITY >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  208. * Fixed: Be fully compliant to C89 (Gitub #28) and C++98 in test code
  209. * Fixed: Fix off-by-one in uriComposeQueryCharsRequired* and ...Ex*
  210. Reported space requirements were 1 byte bigger than necessary
  211. * Changed: Marked as deprecated:
  212. Deprecated functions:
  213. uriNormalizeSyntaxMaskRequired[AW]
  214. uriParseUri[AW]
  215. uriParseUriEx[AW]
  216. * Added: Add convenience functions to ease user code to parse a single URI
  217. New functions:
  218. uriParseSingleUri[AW]
  219. uriParseSingleUriEx[AW]
  220. uriParseSingleUriExMm[AW]
  221. * Added: Support for custom memory managers (GitHub #26, #35), see Doxygen
  222. New functions (as extension of existing ones):
  223. uriAddBaseUriExMm[AW]
  224. uriComposeQueryMallocExMm[AW]
  225. uriDissectQueryMallocExMm[AW]
  226. uriFreeQueryListMm[AW]
  227. uriFreeUriMembersMm[AW]
  228. uriNormalizeSyntaxExMm[AW]
  229. uriParseSingleUriExMm[AW]
  230. uriRemoveBaseUriMm[AW]
  231. New functions (for convenience):
  232. uriCompleteMemoryManager
  233. uriEmulateCalloc
  234. uriEmulateReallocarray
  235. uriTestMemoryManager
  236. New error codes:
  237. URI_ERROR_MEMORY_MANAGER_FAULTY
  238. URI_ERROR_MEMORY_MANAGER_INCOMPLETE
  239. New types:
  240. UriFuncCalloc
  241. UriFuncFree
  242. UriFuncMalloc
  243. UriFuncRealloc
  244. UriFuncReallocarray
  245. UriMemoryManager
  246. * Added: Add non-void versions of uriNormalizeSyntaxMaskRequired*
  247. New functions:
  248. uriNormalizeSyntaxMaskRequiredEx[AW]
  249. * Changed: Migrate test suite from CppTest to GoogleTest 1.8.1
  250. * Improved: Make test suite free of memory leaks (GitHub #31)
  251. Thanks to AddressSanitizer!
  252. * Removed: Support for pointless define URI_SIZEDOWN (GitHub #29)
  253. Related configure option --enable-sizedown has also been removed.
  254. * Soname: 1:23:0
  255. 2018-08-18 -- 0.8.6
  256. * Fixed: Bad/NULL .hostText.afterLast when parsing certain rather pathologic
  257. but well-formed URIs with empty host (e.g. "//:%aa@") (GitHub #15)
  258. Thanks to Kurt Schwehr for the report!
  259. * Fixed: Fix uriRemoveBaseUri for case where scheme, host name,
  260. IPvFuture address or path segments of the source address were
  261. string prefixes of the related counterpart in the base URI.
  262. Thanks to Yang Yu for the patch! (GitHub #19, #20)
  263. * Fixed: Make UriStringToUnixFilename and UriStringToWindowsFilename
  264. support minimal representation a la RFC 8089, e.g. file:/bin/bash
  265. (compare to file:///bin/bash with three slashes) (GitHub #12, #14)
  266. Thanks to Zane van Iperen for the report!
  267. * Fixed: Documentation typos (GitHub #10, #11)
  268. Thanks to Graham Percival!
  269. * Improved: Made API docs of uriRemoveBaseUri more clear
  270. (related to GitHub #19)
  271. * Soname: 1:22:0
  272. 2018-02-07 -- 0.8.5
  273. * Changed: The uriparser project has moved from SourceForge to GitHub:
  274. Code + issue tracker: https://github.com/uriparser/uriparser
  275. New website: https://uriparser.github.io/
  276. Please update any links of yours, accordingly. Thank you!
  277. * Fixed: Memleak in out-of-memory clean-up code
  278. of URI normalization, related to SF.net bug #28.
  279. Thanks to Chris Hills for the report!
  280. * Fixed: Fix compilation of uriparse(1) on FreeBSD
  281. Thanks to Ed Schouten for the patch!
  282. * Fixed: Fix C90 compilation errors
  283. Thanks to Joel Cunningham for the patches!
  284. * Fixed: Space requirements documented for uriWindowsFilenameToUriStringA
  285. given URI "file://server1/file1.txt" (SF.net bug #31)
  286. Thanks to threedyd for the report!
  287. * Fixed: Compiler warnings
  288. Thanks to Joel Cunningham for the patches!
  289. * Fixed: Stop exporting internal function RemoveBaseUriImpl
  290. Thanks to Joel Cunningham for the report!
  291. * Fixed: API documentation front page no longer empty with Doxygen 1.8.13
  292. * Fixed: "make -C doc install" fixed for lack of .map files
  293. * Improved: Communicate that absolutePath is always URI_FALSE for URIs
  294. with a host in uriparse CLI tool output and Uri.h header
  295. (GitHub #2, SF.net #30)
  296. * Soname: 1:21:0
  297. 2015-10-12 -- 0.8.4
  298. * Fixed: Stack overflow on parsing malformed IPv6 addresses with
  299. more than eigtht quads. Thanks to Alexander Klink for the report!
  300. * Soname: 1:20:0
  301. 2015-10-04 -- 0.8.3
  302. * Fixed: uriCompareRange reported NULL pointer and range of
  303. length zero as equal, by mistake.
  304. Thanks to Robert Kausch and his Coverity report.
  305. * Fixed: Use-after-free in out-of-memory code of uriMakeOwner.
  306. Thanks to Chris Hills and his Klocwork-based report (SF.net bug #28)
  307. * Soname: 1:19:0
  308. 2015-04-27 -- 0.8.2
  309. * Fixed: Broken conversion from/to Windows network shares (SF.net bug #21)
  310. Thanks to Adam Gross and Dmitry Repkin!
  311. * Fixed: Limit uriCompareRange return values to -1/0/1 (SF.net bug #24)
  312. As a side effect, this fixes the test suite for AArch64.
  313. Thanks to Marcin Juszkiewicz for the patch!
  314. * Fixed: MinGW Makefile:
  315. LIB_DIR fixed from ../../lib leftover to ../../src (SF.net bug #27)
  316. Thanks to Dmytro Zagashev for the report!
  317. * Fixed: Add missing NULL checks to UriStringToFilename (SF.net bug #25)
  318. Thanks to Jerome Custodio for the report!
  319. * Changed: Leave inlining decisions to GCC
  320. * Soname: 1:18:0
  321. 2014-10-20 -- 0.8.1
  322. * Fixed: Sync URI_VER_* preprocessor defines (were at 0.7.6, SF.net bug #23)
  323. * Fixed: Bug in internal function that may flip uriEqualsUri results around
  324. * Added: Function uriAddBaseUriEx allowing to resolve URIs with
  325. a scheme identical to that of the base URI to resolve against
  326. as if the URI to resolve had no scheme specified, when flag
  327. URI_RESOLVE_IDENTICAL_SCHEME_COMPAT is specified
  328. (SF.net feature request #4)
  329. * Soname: 1:17:0
  330. 2014-07-12 -- 0.8.0.1
  331. * Fixed: ISO C90 warnings (SF.net bug #20)
  332. * Changed: No longer ship RFC documents (to make things easier for Debian)
  333. * Soname: 1:16:0
  334. 2013-12-20 -- 0.8.0
  335. * Fixed: Resolution of relative URI "/" broken
  336. Thanks to Mo McRoberts for the patch!
  337. * Fixed: uriAddBaseUri produced uriUri objects with both host
  338. and the absolutePath flag set (while the absolutePath flag
  339. should only be true for URI objects without a host) when
  340. resolving absolute URIs like "/" or "/foo/bar".
  341. Now the absolutePath flag is set to URI_FALSE and an empty
  342. segment is added as necessary
  343. * Fixed: .errorCode could end up unset, previously
  344. Thanks to Radu Hociung for the patch! (SF.net bug #16)
  345. * Fixed: Resolve use of non-POSIX "sed -r" used when building
  346. documentation (SF.net bug #18)
  347. Thanks to Ryan Schmidt for reporting!
  348. * Fixed: Build DLL with -no-undefined on Windows
  349. Thanks to Michel Zou for the patch! (SF.net bug #19)
  350. * Added: Command line tool "uriparse"
  351. Thanks to Radu Hociung for coding! (SF.net feature request #3)
  352. * Soname: 1:15:0
  353. 2013-08-24 -- 0.7.9
  354. * Fixed: Error position ended up as NULL for some syntax errors.
  355. Thanks to Daniel Solano Gómez for the patch! (SF.net bug #14)
  356. * Soname: 1:14:0
  357. 2013-05-13 -- 0.7.8
  358. * Fixed: Fix dissection of query string "q=hello&x=&y=" (SF.net bug #12)
  359. Thanks to Marc Novakowski for reporting!
  360. * Soname: 1:13:0
  361. 2012-04-05 -- 0.7.7
  362. * Fixed: Fix rejection of some valid characters for userinfo
  363. section, e.g. "http://%2Fuser:%2F21@host/" (SF.net bug #11)
  364. * Fixed: Fix rejection of valid double colon in userinfo
  365. section, e.g. "http://::@host/"
  366. * Soname: 1:12:0
  367. 2012-01-20 -- 0.7.6
  368. * Fixed: Qt Compressed Help file was not installed
  369. * Fixed: Shadow/VPATH build doc generation
  370. * Fixed: Compile error from Doxygen when configuring with
  371. neither --enable-doc nor --disable-doc
  372. * Fixed: Code documentation errors
  373. Thanks to Valentin Haenel for the patch!
  374. * Fixed: Fix include path in pkg-config, i.e. remove
  375. "/uriparser" suffix as uriparser's headers are meant to
  376. be included by statements like #include <uriparser/....> .
  377. Thanks to Philip de Nier for reporting!
  378. * Fixed: Compilation in context of Eclipse + Cygwin + wchar_t
  379. (SF.net bug #10)
  380. Thanks to Gary Mazzaferro for reporting!
  381. * Fixed: Selection of supported character widths at build
  382. time: <char *> or <wchar_t *> or both
  383. * Added: configure parameters to disable either character
  384. widths: --disable-char, --disable-wchar_t
  385. * Soname: 1:11:0
  386. 2009-03-04 -- 0.7.5
  387. * Added: pkg-config file
  388. * Fixed: File Doxyfile.in was missing from release archives
  389. Thanks to Rakesh Pandit for reporting!
  390. * Fixed: Doc generation troubles
  391. * Changed: No longer shipping bundled libcpptest
  392. * Changed: New dependencies:
  393. - libcpptest 1.1.0 or later
  394. - pkg-config
  395. The libcpptest dependency can be disabled through
  396. configuring with --disable-test, which excludes the
  397. test suite from compilation.
  398. * Soname: 1:10:0
  399. 2008-12-23 -- 0.7.4
  400. * Fixed: Null pointer de-referencing when dissecting query
  401. strings starting with "&" right after "?" (SF.net bug #7).
  402. Thanks to Harvey Vrsalovic for reporting!
  403. * Fixed: Memory leak in uriFreeQueryList function (SF.net bug #6)
  404. Thanks to Daniel Chapiesky for reporting!
  405. * Fixed: Memory leak in uriNormalizeSyntax(Ex) functions (SF.net bug #6)
  406. Thanks to Daniel Chapiesky for reporting!
  407. * Improved: Nested configure hacks resolved
  408. * Soname: 1:9:0
  409. 2008-11-08 -- 0.7.3
  410. * Fixed: Missing NULL check in parsing routines
  411. Thanks to Sezai Tekin for reporting!
  412. * Fixed: uriparser now builds on Cygwin
  413. * Fixed: Now shipping gnulib's config.guess from HEAD
  414. which is suitable for Haiku (SF.net bug #5)
  415. * Changed: swprintf requirement resolved
  416. * Changed: Build system changes:
  417. - configure option --enable-doc added
  418. - configure.in renamed to configure.ac
  419. - some Autotools files moved to build-aux directory
  420. * Added: Qt Assistant documentation output:
  421. - Qt Compressed Help (.qch) at <doc/uriparser-doc-*.qch>
  422. - Qt Help Project (.qhp) at <doc/html/index.qhp>
  423. Generation requires Doxygen 1.5.7.1-20081103 or later.
  424. * Soname: 1:8:0
  425. 2008-09-01 -- 0.7.2
  426. * Fixed: Bad cleanup logic in functions
  427. - uriAddBaseUri(..)
  428. - uriRemoveBaseUri(..)
  429. Previously you needed to call uriFreeUriMembers on return code
  430. URI_ERROR_MALLOC and only then. So that's why these functions now
  431. take cleanup off your shoulders. An extra call to uriFreeUriMembers
  432. from your side is still needed in case of success.
  433. * Soname: 1:7:0
  434. 2008-04-27 -- 0.7.1
  435. * Fixed: Bogus syntax error when parsing URIs with port-like
  436. passwords, e.g. "http://user:21@host/" (SF.net bug #1)
  437. Thanks to Friedrich Delgado Friedrichs for reporting!
  438. * Fixed: Parser did not handle trailing slashes correctly in some cases,
  439. which also made the structures produced from parsing "http://e.com/"
  440. and "http://e.com" indistinguishable. (SF.net bug #2)
  441. Thanks to Edward Z. Yang for reporting!
  442. 2008-04-04 -- 0.7.0
  443. * Added: Dissection and composition of query strings
  444. * Added: Documentation improvements
  445. (in|out|inout indicators, addition of \since and \see)
  446. * Changed: Code::Blocks project files updated from file format
  447. version 1.4 to 1.6, which is produced by Code::Blocks 8.02
  448. * Added: Code::Blocks workspace file
  449. * Soname: 1:5:0
  450. 2008-02-25 -- 0.6.4
  451. * Added: Syntax-based normalization can now handle relative URIs,
  452. e.g. "../../a/b/.././c" is normalized to "../../a/c"
  453. * Fixed: Normalization code could free foreign memory
  454. * Fixed: Normalization processed the path segment even when asked not to
  455. * Added: MinGW Makefile and related readme
  456. Thanks to Michael Anthony Puls II!
  457. * Fixed: Documentation bug not requiring enough memory for the output
  458. buffer when converting a relative file URI back to a filename
  459. * Soname: 1:4:0
  460. 2008-02-11 -- 0.6.3
  461. * Fixed: Two major crash bugs in normalization code
  462. Thanks to Adrian Manrique for the patch!
  463. * Added: Brief usage tutorial
  464. * Soname: 1:3:0
  465. 2008-02-08 -- 0.6.2
  466. * Fixed: Freeing a normalized URI like "http://test?"
  467. caused a crash. Thanks to Adrian Manrique for reporting!
  468. * Fixed: Filename <--> URI string conversion helpers can
  469. now handle relative URIs and filenames
  470. * Soname: 1:2:0
  471. 2007-12-23 -- 0.6.1
  472. * Fixed: Percent-encodings in hostnames were not repaired during normalization.
  473. Thanks to Adrian Manrique for reporting!
  474. * Fixed: Percent-encodings were fixed after dot removal not before during
  475. normalization.
  476. Thanks to Adrian Manrique for reporting!
  477. * Fixed: Include path order bug
  478. Thanks to Ed Schouten for reporting this!
  479. * Fixed: Shadow builds now possible
  480. Thanks to Adeodato Simó for the patch!
  481. * Added: Version guards for Autoconf/Automake
  482. Thanks to Martin Michlmayr for reporting!
  483. * Soname: 1:1:0
  484. 2007-09-17 -- 0.6.0
  485. * Fixed: Proper soname updates from now on, starting at 1:0:0
  486. * Removed: Visual Studio 2003 project files
  487. 2007-09-13 -- 0.5.2
  488. * Added: RemoveBaseUri function to create URI references
  489. * Added: Unix/Windows filename <--> URI string conversion helpers
  490. * Added: EscapeEx function to escape text blocks without zero termination
  491. * Fixed: Bug in ToString for URIs with scheme, path, but no host (e.g. "f:/.//g")
  492. * Fixed: AddBase now resolves ".//g" with base "f:/a" to "f:/.//g" instead of
  493. "f://g" which would result in "g" becoming the authority part when parsing
  494. a recomposition (ToString) of that URI structure. This is a whole in RFC 3986,
  495. see http://lists.w3.org/Archives/Public/uri/2007Aug/0003.html for details.
  496. 2007-08-09 -- 0.5.1
  497. * Fixed: Empty host bug (URIs like "///g")
  498. * Fixed: Relative URIs are no longer touched by normalization
  499. * Fixed: MergePath failed for empty paths
  500. * Fixed: Bug with "." segments in AddBase
  501. All of the above revealed by test cases from 4Suite (http://4suite.org/)
  502. 2007-07-28 -- 0.5.0
  503. * Added: Syntax-based normalization
  504. * Added: Percent-encoding function Escape
  505. * Improved: Malloc/NULL checks added
  506. * Added: New function UnescapeInPlaceEx can also decode '+' to ' '
  507. and convert line breaks
  508. * Added: Exact space computation for ToString, see ToStringCharsRequired
  509. * Added: --enable-sizedown for saving space and slower code
  510. * Fixed: Two internal functions were exposed in the API by mistake:
  511. uriPushToStack and uriStackToOctet
  512. * Added: Visual Studio 2005 project files
  513. * Removed: Legacy code (removal was announced for 0.5.0)
  514. 2007-07-06 -- 0.4.1
  515. * Fixed: ToString did not work for IPv4 and IPv6 hosts
  516. 2007-07-03 -- 0.4.0
  517. * Added: References resolution (think relative to absolute)
  518. * Added: Naive URI equality check
  519. * Added: URIs can now be converted back to strings
  520. * Fixed: The first path segment of a relative URI was eaten
  521. (functions ParseSegmentNz and ParseMustBeSegmentNzNc)
  522. * Fixed: uri->scheme.first was not reset in some cases
  523. (function ParseMustBeSegmentNzNc)
  524. * Improved: Test suite now built on "make check", not before
  525. * Fixed: Test suite always returned 0 (success)
  526. 2007-04-23 -- 0.3.4
  527. * Added: Shared library support (moved to libtool)
  528. 2007-04-03 -- 0.3.3
  529. * Fixed: Now unix EOLs constantly
  530. * Fixed: Added forgotten files to release package
  531. 2007-03-31 -- 0.3.2
  532. * Fixed: Now compiles on FreeBSD
  533. 2007-03-28 -- 0.3.1
  534. * Fixed: Now compiles on Mac OS X
  535. 2007-03-26 -- 0.3.0
  536. * Added: New API, old marked deprecated
  537. * Added: Added support for wide strings (think wchar_t)
  538. * Added: Doxygen code documentation
  539. * Added: Test suite using CppTest
  540. * Changed: Library code is now licensed under the new BSD license.
  541. The test suite code is licensed under LGPL.
  542. 2006-12-08 -- 0.2.1