Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: uriparser-doc | Distribution: openSUSE Tumbleweed |
Version: 0.9.8 | Vendor: openSUSE |
Release: 2.1 | Build date: Wed May 29 10:49:36 2024 |
Group: Documentation/Other | Build host: reproducible |
Size: 820959 | Source RPM: uriparser-0.9.8-2.1.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://uriparser.github.io | |
Summary: Documentation files for the uriparser URI parsing library |
uriparser is a strictly RFC 3986 compliant URI parsing library and supports Unicode. This subpackage contains the documentation for uriparser.
BSD-3-Clause
* Wed May 29 2024 Adam Majer <adam.majer@suse.de> - enable unit tests * Mon May 06 2024 Gus Kenion <gus.kenion@suse.com> - update to 0.9.8 (bsc#1223887, bsc#1223888): * Fixed: [CVE-2024-34402] Protect against integer overflow in ComposeQueryEngine (GitHub #183, GitHub #185) * Fixed: [CVE-2024-34403] Protect against integer overflow in ComposeQueryMallocExMm (GitHub #183, GitHub #186) * Changed: Require CMake >=3.5.0 (GitHub #172) Added: CMake option URIPARSER_SHARED_LIBS=(ON|OFF) to control, whether to produce a shared or static library for uriparser and that alone, falls back to standard BUILD_SHARED_LIBS if available, else defaults to "ON" (GitHub #169, GitHub #170) * Improved: Document that scheme-based normalization a la section 6.2.3 of RFC 3986 is a responsibility of the application using uriparser (GitHub #173, GitHub #174) * Improved: Document supported code points for functions uriEscape(Ex)W (GitHub #171, GitHub #175) * Infrastructure: Update Clang from 15 to 18 (GitHub #161, GitHub [#187]) Infrastructure: Adapt to breaking changes in Clang packaging (GitHub #160) Infrastructure: Get sanitizer CFLAGS and LDFLAGS back in sync (GitHub #161) Infrastructure: Pin GitHub Actions to specific commits for security (GitHub #165) * Soname: 1:31:0 — see https://verbump.de/ for what these numbers do * Mon Oct 17 2022 Dirk Müller <dmueller@suse.com> - update to 0.9.7: * Fixed: Multiple issues with IPv6 and IPvFuture literal parsing (GitHub #146, GitHub #150) Thanks to Scallop Ye for the report and the pull request! * Fixed: Fix symbol visibility for -DBUILD_SHARED_LIBS=OFF (GitHub #139, GitHub #141); thanks to Mariusz Zaborski for the report! * Fixed: For MinGW, use size_t for inet_ntop declaration and fix macro checks for both MinGW and mingw-w64 (GitHub #131) * Fixed: Compiler warnings (GitHub #132, GitHub #152) * Improved: Use name UriConfig.h rather than generic config.h for the config header file to avoid name clashes and also include it through "UriConfig.h" with quotes rather than <UriConfig.h> so that it is found in quote path locations (GitHub #149) Thanks to Gaspard Petit for bringing this up! * Improved: Document need for UriConfig.h in UriMemory.c (GitHub #136) * Infrastructure: Add (support for) Visual Studio 17/2022 (GitHub #152) * Infrastructure: Drop (support for) Visual Studio <=14/2015 (GitHub #152) * Infrastructure: Update Clang from 13 to 15 (GitHub #143, GitHub #151) * Infrastructure: Make MinGW with 32bit Wine on Ubuntu 20.04 possible (GitHub #142, GitHub #144, GitHub #145) * Soname: 1:30:0 — see https://verbump.de/ for what these numbers do * Mon May 16 2022 Andrew Daugherity <adaugherity@tamu.edu> - fix cmake build (incorrect line continuation - %%make_jobs is not part of the %%cmake call; it only worked in distros where it printed a deprecation warning before invoking make) - replace deprecated %%make_jobs with %%cmake_build - fix building docs: need graphviz-gd to produce PNG files and ghostscript-fonts-std for the fonts used * Sun Jan 09 2022 Dirk Müller <dmueller@suse.com> - update to 0.9.6 (bsc#1194365, bsc#1194364): * Fixed: [CVE-2021-46141] Fix a bug affecting both uriNormalizeSyntax* and uriMakeOwner* functions where the text range in .hostText would not be duped using malloc but remain unchanged (and hence "not owned") for URIs with an IPv4 or IPv6 address hostname; depending on how an application uses uriparser, this could lead the application into a use-after-free situation. As the second half, fix uriFreeUriMembers* functions that would not free .hostText memory for URIs with an IPv4 or IPv6 address host; also, calling uriFreeUriMembers* multiple times on a URI of this very nature would result in trying to free pointers to stack (rather than heap) memory (GitHub #121, GitHub #124) Commit 987b046e41f407d17c622e580fc82a5e834b4329 Commit b1a34743bc1472e055d886e29e9b53f670eb3282 * Fixed: [CVE-2021-46142] Fix functions uriNormalizeSyntax* for out-of-memory situations (i.e. malloc returning NULL) for URIs containing empty segments (any of user info, host text, query, or fragment) where previously pointers to stack (rather than heap) memory were freed (GitHub #122, GitHub #124) * Sun May 16 2021 Dirk Müller <dmueller@suse.com> - update to 0.9.5: * Fixed: Fix a bug regarding section "5.2.4. Remove Dot Segments" of RFC 3986 that affected both normalization and reference resolution with regard to trailing slashes (GitHub #92, #97) Thanks to Dan Pape for the report! * Fixed: MinGW: Fix name of static library (GitHub #90) Thanks to SpaceIm for the patch and Sandro Mani for review! * Fixed: Use correct inline marker "__forceinline" for Intel C++ Compiler (GitHub #93) Thanks to jensenrichardson for the patch! * Fixed: Link against pthreads for (default) -DURIPARSER_BUILD_TESTS=ON (GitHub #99, #100) * Fixed: When integrated using CMake function add_subdirectory, installation could fail due to lack of prefix ${CMAKE_CURRENT_SOURCE_DIR} (GitHub #98) Thanks for the patch to Shehzan Mohammed! * Fixed: Addressed MSVC compile warning about lack of /EHsc when compiling the C++ test suite code (GitHub #102) * Fixed: Stopped misadvertising wide characters as Unicode support (GitHub #104) * Added: CMake option URIPARSER_WARNINGS_AS_ERRORS=(ON|OFF) to turn compile warnings into errors, defaults to "OFF" (GitHub #102) * Improved: pkg-config: Use ${prefix} and ${exec_prefix} to ease overriding variables using --define-variable=NAME=VALUE, e.g. as done on OpenWRT (GitHub #91) Thanks to Karel Kočí for the pull request! * Improved: Auto-detection of the qhelpgenerator command based on CMake package "Qt5Help" when available. CMake option "QHG_LOCATION" can still be used to enforce a specific location (GitHub #103) Thanks for his help to Andreas Sturmlechner! * Improved: Make documentation use pkg-config in example on how to check for uriparser from within configure.ac (GNU Autoconf) (GitHub #37, #106) * Improved: In testing code, add a missing 'extern "C"' (GitHub #109) Thanks to Jørgen Ibsen for the patch! * Soname: 1:28:0 — see https://verbump.de/ for what these numbers do * Tue Jul 28 2020 Martin Rey <mrey@suse.com> - Update to version 0.9.4 * Fixed: testrunner: No longer crashes when compiled with NDEBUG (GitHub #67) * Fixed: CMake: Support GTest 1.8.0 (GitHub #68) Thanks to Ryan Schmidt for the related report! * Fixed: CMake: Use variable GTEST_INCLUDE_DIRS (with plural "S") rather than GTEST_INCLUDE_DIR (GitHub #79, #81) Thanks to Wouter Beek for the related report! * Improved: CMake: Send config summary to stdout, not stderr (GitHub #72) Thanks to Scott Donelan for the patch! * Improved: Make -DURIPARSER_BUILD_TESTS=OFF unlock compilation without a C++ compiler; thanks to Fabrice Fontaine for the patch! (GitHub #69) * Added: Functions to make UriUri[AW] instances independent of the original URI string (GitHub #77 and #78) New functions: uriMakeOwner[AW] uriMakeOwnerMm[AW] * Added: CMake option URIPARSER_ENABLE_INSTALL to toggle installation of files, defaults to "ON" (GitHub #74, #75) Thanks to Scott Donelan for the patch! * Soname: 1:26:0 * Mon Jul 22 2019 Todd R <toddrme2178@gmail.com> - Update to version 0.9.3 * Fixed: pkg-config: Fix version line in liburiparser.pc (GitHub #65) * Changed: MinGW: Add library version suffix to DLL name Thanks to Sandro Mani for the patch! (GitHub #63, #64) * Soname: 1:26:0 - Update to version 0.9.2 * Fixed: Add missing extern "C" wrapper to UriIp4.h for use from C++ * Fixed: Linking error for symbol defaultMemoryManager from mixing C and C++ Thanks to Jørgen Ibsen for the report! (GitHub #52) * Fixed: Link errors on Haiku regarding function inet_ntop (GitHub #45) Thanks to Schrijvers Luc for the patch! * Fixed: Mark API functions with __declspec(dllexport) and __declspec(dllimport) in *.h files for Visual Studio (GitHub #60) * Improved: Use -fvisibility=hidden by default with supporting compilers, e.g. GCC and Clang (GitHub #60) * Changed: Migrated from GNU Autotools to CMake (GitHub #17, #47, #56, #59) Thanks for their support with the CMake migration to: - David Demelier - Jørgen Ibsen - KangLin - Kouhei Sutou - myd7349 - Richard Hodges - Zachary Lund * Removed: All Windows-related build systems other than CMake * Soname: 1:25:0 - Switch to cmake build - Split docs into own subpackage * Wed Jan 16 2019 adam.majer@suse.de - Update to version 0.9.1 * Fixed Out-of-bounds read in uriParse*Ex* for incomplete URIs with IPv6 addresses with embedded IPv4 address, e.g. "//[::44.1" mitigated if passed parameter <afterLast> points to readable memory containing a '\0' byte. (bsc#1122193, CVE-2018-20721) * Fixed: When parsing a malformed URI with an IPvFuture address (e.g. "http://[vA.123456" missing "]"), errorPos would point to the first character after "v" than the actual position of the error (here: the end of the string) * Fixed: uriToStringCharsRequired* reported 1 more byte than needed for IPv4 address URIs (GitHub #41); * Improved: For parse errors, waterproof errorPos <= afterLast * Soname: 1:24:0 * Fri Nov 16 2018 adam.majer@suse.de - Update to version 0.9.0 * Fixed: Out-of-bounds write in uriComposeQuery* and uriComposeQueryEx* (bsc#1115722, CVE-2018-19198) * Fixed: Detect integer overflow in uriComposeQuery* and uriComposeQueryEx* (bsc#1115723, CVE-2018-19199) * Fixed: Protect uriResetUri* against acting on NULL input (bsc#1115724, CVE-2018-19200) * Changed: Marked as deprecated: Deprecated functions: uriNormalizeSyntaxMaskRequired[AW] uriParseUri[AW] uriParseUriEx[AW] Added: Add convenience functions to ease user code to parse a single URI New functions: uriParseSingleUri[AW] uriParseSingleUriEx[AW] uriParseSingleUriExMm[AW] Added: Support for custom memory managers (GitHub #26, #35), see Doxygen New functions (as extension of existing ones): uriAddBaseUriExMm[AW] uriComposeQueryMallocExMm[AW] uriDissectQueryMallocExMm[AW] uriFreeQueryListMm[AW] uriFreeUriMembersMm[AW] uriNormalizeSyntaxExMm[AW] uriParseSingleUriExMm[AW] uriRemoveBaseUriMm[AW] New functions (for convenience): uriCompleteMemoryManager uriEmulateCalloc uriEmulateReallocarray uriTestMemoryManager New error codes: URI_ERROR_MEMORY_MANAGER_FAULTY URI_ERROR_MEMORY_MANAGER_INCOMPLETE New types: UriFuncCalloc UriFuncFree UriFuncMalloc UriFuncRealloc UriFuncReallocarray UriMemoryManager * Added: Add non-void versions of uriNormalizeSyntaxMaskRequired* * Changed: Migrate test suite from CppTest to GoogleTest * Improved: Make test suite free of memory leaks * Removed: Support for pointless define URI_SIZEDOWN * Soname: 1:23:0 - Changes in version 0.8.6 * Fixed: Bad/NULL .hostText.afterLast when parsing certain rather pathologic but well-formed URIs with empty host * Fixed: Fix uriRemoveBaseUri for case where scheme, host name, IPvFuture address or path segments of the source address were string prefixes of the related counterpart in the base URI. * Fixed: Make UriStringToUnixFilename and UriStringToWindowsFilename support minimal representation a la RFC 8089, e.g. file:/bin/bash * Soname: 1:22:0 - uriparser-doxygen.patch: dropped, not needed - package documentation
/usr/share/doc/packages/uriparser /usr/share/doc/packages/uriparser-doc /usr/share/doc/packages/uriparser-doc/Mainpage.txt /usr/share/doc/packages/uriparser/html /usr/share/doc/packages/uriparser/html/UriBase_8h.html /usr/share/doc/packages/uriparser/html/UriDefsAnsi_8h.html /usr/share/doc/packages/uriparser/html/UriDefsConfig_8h.html /usr/share/doc/packages/uriparser/html/UriDefsUnicode_8h.html /usr/share/doc/packages/uriparser/html/UriIp4_8h.html /usr/share/doc/packages/uriparser/html/Uri_8h.html /usr/share/doc/packages/uriparser/html/annotated.html /usr/share/doc/packages/uriparser/html/bc_s.png /usr/share/doc/packages/uriparser/html/bc_sd.png /usr/share/doc/packages/uriparser/html/classes.html /usr/share/doc/packages/uriparser/html/clipboard.js /usr/share/doc/packages/uriparser/html/closed.png /usr/share/doc/packages/uriparser/html/cookie.js /usr/share/doc/packages/uriparser/html/deprecated.html /usr/share/doc/packages/uriparser/html/dir_24c5c890457908cb185130461432a4ab.html /usr/share/doc/packages/uriparser/html/dir_24c5c890457908cb185130461432a4ab_dep.map /usr/share/doc/packages/uriparser/html/dir_24c5c890457908cb185130461432a4ab_dep.md5 /usr/share/doc/packages/uriparser/html/dir_24c5c890457908cb185130461432a4ab_dep.png /usr/share/doc/packages/uriparser/html/dir_d44c64559bbebec7f509842c48db8b23.html /usr/share/doc/packages/uriparser/html/dir_e68e8157741866f444e17edd764ebbae.html /usr/share/doc/packages/uriparser/html/doc.svg /usr/share/doc/packages/uriparser/html/docd.svg /usr/share/doc/packages/uriparser/html/doxygen.css /usr/share/doc/packages/uriparser/html/doxygen.svg /usr/share/doc/packages/uriparser/html/doxygen_crawl.html /usr/share/doc/packages/uriparser/html/dynsections.js /usr/share/doc/packages/uriparser/html/files.html /usr/share/doc/packages/uriparser/html/folderclosed.svg /usr/share/doc/packages/uriparser/html/folderclosedd.svg /usr/share/doc/packages/uriparser/html/folderopen.svg /usr/share/doc/packages/uriparser/html/folderopend.svg /usr/share/doc/packages/uriparser/html/functions.html /usr/share/doc/packages/uriparser/html/functions_vars.html /usr/share/doc/packages/uriparser/html/globals.html /usr/share/doc/packages/uriparser/html/globals_enum.html /usr/share/doc/packages/uriparser/html/globals_eval.html /usr/share/doc/packages/uriparser/html/globals_func.html /usr/share/doc/packages/uriparser/html/globals_type.html /usr/share/doc/packages/uriparser/html/graph_legend.html /usr/share/doc/packages/uriparser/html/graph_legend.md5 /usr/share/doc/packages/uriparser/html/graph_legend.png /usr/share/doc/packages/uriparser/html/index.html /usr/share/doc/packages/uriparser/html/jquery.js /usr/share/doc/packages/uriparser/html/menu.js /usr/share/doc/packages/uriparser/html/menudata.js /usr/share/doc/packages/uriparser/html/minus.svg /usr/share/doc/packages/uriparser/html/minusd.svg /usr/share/doc/packages/uriparser/html/nav_f.png /usr/share/doc/packages/uriparser/html/nav_fd.png /usr/share/doc/packages/uriparser/html/nav_g.png /usr/share/doc/packages/uriparser/html/nav_h.png /usr/share/doc/packages/uriparser/html/nav_hd.png /usr/share/doc/packages/uriparser/html/navtree.css /usr/share/doc/packages/uriparser/html/open.png /usr/share/doc/packages/uriparser/html/pages.html /usr/share/doc/packages/uriparser/html/plus.svg /usr/share/doc/packages/uriparser/html/plusd.svg /usr/share/doc/packages/uriparser/html/resize.js /usr/share/doc/packages/uriparser/html/search /usr/share/doc/packages/uriparser/html/search/all_0.js /usr/share/doc/packages/uriparser/html/search/all_1.js /usr/share/doc/packages/uriparser/html/search/all_10.js /usr/share/doc/packages/uriparser/html/search/all_11.js /usr/share/doc/packages/uriparser/html/search/all_12.js /usr/share/doc/packages/uriparser/html/search/all_13.js /usr/share/doc/packages/uriparser/html/search/all_14.js /usr/share/doc/packages/uriparser/html/search/all_2.js /usr/share/doc/packages/uriparser/html/search/all_3.js /usr/share/doc/packages/uriparser/html/search/all_4.js /usr/share/doc/packages/uriparser/html/search/all_5.js /usr/share/doc/packages/uriparser/html/search/all_6.js /usr/share/doc/packages/uriparser/html/search/all_7.js /usr/share/doc/packages/uriparser/html/search/all_8.js /usr/share/doc/packages/uriparser/html/search/all_9.js /usr/share/doc/packages/uriparser/html/search/all_a.js /usr/share/doc/packages/uriparser/html/search/all_b.js /usr/share/doc/packages/uriparser/html/search/all_c.js /usr/share/doc/packages/uriparser/html/search/all_d.js /usr/share/doc/packages/uriparser/html/search/all_e.js /usr/share/doc/packages/uriparser/html/search/all_f.js /usr/share/doc/packages/uriparser/html/search/classes_0.js /usr/share/doc/packages/uriparser/html/search/close.svg /usr/share/doc/packages/uriparser/html/search/enums_0.js /usr/share/doc/packages/uriparser/html/search/enumvalues_0.js /usr/share/doc/packages/uriparser/html/search/files_0.js /usr/share/doc/packages/uriparser/html/search/functions_0.js /usr/share/doc/packages/uriparser/html/search/mag.svg /usr/share/doc/packages/uriparser/html/search/mag_d.svg /usr/share/doc/packages/uriparser/html/search/mag_sel.svg /usr/share/doc/packages/uriparser/html/search/mag_seld.svg /usr/share/doc/packages/uriparser/html/search/pages_0.js /usr/share/doc/packages/uriparser/html/search/pages_1.js /usr/share/doc/packages/uriparser/html/search/pages_2.js /usr/share/doc/packages/uriparser/html/search/search.css /usr/share/doc/packages/uriparser/html/search/search.js /usr/share/doc/packages/uriparser/html/search/searchdata.js /usr/share/doc/packages/uriparser/html/search/typedefs_0.js /usr/share/doc/packages/uriparser/html/search/variables_0.js /usr/share/doc/packages/uriparser/html/search/variables_1.js /usr/share/doc/packages/uriparser/html/search/variables_10.js /usr/share/doc/packages/uriparser/html/search/variables_11.js /usr/share/doc/packages/uriparser/html/search/variables_2.js /usr/share/doc/packages/uriparser/html/search/variables_3.js /usr/share/doc/packages/uriparser/html/search/variables_4.js /usr/share/doc/packages/uriparser/html/search/variables_5.js /usr/share/doc/packages/uriparser/html/search/variables_6.js /usr/share/doc/packages/uriparser/html/search/variables_7.js /usr/share/doc/packages/uriparser/html/search/variables_8.js /usr/share/doc/packages/uriparser/html/search/variables_9.js /usr/share/doc/packages/uriparser/html/search/variables_a.js /usr/share/doc/packages/uriparser/html/search/variables_b.js /usr/share/doc/packages/uriparser/html/search/variables_c.js /usr/share/doc/packages/uriparser/html/search/variables_d.js /usr/share/doc/packages/uriparser/html/search/variables_e.js /usr/share/doc/packages/uriparser/html/search/variables_f.js /usr/share/doc/packages/uriparser/html/splitbar.png /usr/share/doc/packages/uriparser/html/splitbard.png /usr/share/doc/packages/uriparser/html/structUriHostDataStructA.html /usr/share/doc/packages/uriparser/html/structUriIp4Struct.html /usr/share/doc/packages/uriparser/html/structUriIp6Struct.html /usr/share/doc/packages/uriparser/html/structUriMemoryManagerStruct.html /usr/share/doc/packages/uriparser/html/structUriParserStateStructA.html /usr/share/doc/packages/uriparser/html/structUriPathSegmentStructA.html /usr/share/doc/packages/uriparser/html/structUriQueryListStructA.html /usr/share/doc/packages/uriparser/html/structUriTextRangeStructA.html /usr/share/doc/packages/uriparser/html/structUriUriStructA.html /usr/share/doc/packages/uriparser/html/sync_off.png /usr/share/doc/packages/uriparser/html/sync_on.png /usr/share/doc/packages/uriparser/html/tab_a.png /usr/share/doc/packages/uriparser/html/tab_ad.png /usr/share/doc/packages/uriparser/html/tab_b.png /usr/share/doc/packages/uriparser/html/tab_bd.png /usr/share/doc/packages/uriparser/html/tab_h.png /usr/share/doc/packages/uriparser/html/tab_hd.png /usr/share/doc/packages/uriparser/html/tab_s.png /usr/share/doc/packages/uriparser/html/tab_sd.png /usr/share/doc/packages/uriparser/html/tabs.css /usr/share/licenses/uriparser-doc /usr/share/licenses/uriparser-doc/COPYING
Generated by rpm2html 1.8.1
Fabrice Bellet, Mon Nov 4 00:02:33 2024