SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

 
 
Changelog for libcares2-32bit-1.19.0-4.2.x86_64.rpm :

* Sun Jan 29 2023 Martin Hauke - Update to version 1.19.0 Security:
* Low. Stack overflow in ares_set_sortlist() which is used during c-ares initialization and typically provided by an administrator and not an end user. (bsc#1208067, CVE-2022-4904) Changes:
* Add ARES_OPT_HOSTS_FILE similar to ARES_OPT_RESOLVCONF for specifying a custom hosts file location. Bug fixes:
* Fix memory leak in reading /etc/hosts when using localhost fallback.
* Fix chain building c-ares when libresolv is already included by another project.
* File lookup should not immediately abort as there may be other tries due to search criteria.
* Asterisks should be allowed in host validation as CNAMEs may reference wildcard domains.
* AutoTools build system referenced bad STDC_HEADERS macro.
* Even if one address class returns a failure for ares_getaddrinfo() we should still return the results we have.
* Fix ares_getaddrinfo() numerical address resolution with AF_UNSPEC
* Fix tools and help information.
* Various documentation fixes and cleanups.
* Add include guards to ares_data.h
* c-ares could try to exceed maximum number of iovec entries supported by system.
* The RFC6761 6.3 states localhost subdomains must be offline too
* Tue Dec 07 2021 Adam Majer - update to 1.18.1. Changes since 1.17.2:
* Allow \'/\' as a valid character for a returned name for CNAME in-addr.arpa delegation
* no longer forwards requests for localhost resolution per RFC6761
* During a domain search, treat ARES_ENODATA as ARES_NXDOMAIN so that the search process will continue to the next domain in the search.
* Provide ares_nameser.h as a public interface as needed by NodeJS
* Add support for URI(Uniform Resource Identifier) records via ares_parse_uri_reply()- disable unit tests for SLE12 since GCC compiler too old to build unit tests- 5c995d5.patch: upstreamed- disable-live-tests.patch: refreshed
* Thu Sep 09 2021 Adam Majer - new upstream website- drop multibuild - tests do not require static library anymore- spec file cleanup- drop sources that were re-added to upstream distibution (c-ares-config.cmake.in ares_dns.h libcares.pc.cmake)
* Wed Sep 08 2021 Adam Majer - 5c995d5.patch: augment input validation on hostnames to allow _ as part of DNS response (bsc#1190225)
* Thu Aug 12 2021 Adam Majer - update to 1.17.2: Security:
* When building c-ares with CMake, the RANDOM_FILE would not be set and therefore downgrade to the less secure random number generator
* If ares_getaddrinfo() was terminated by an ares_destroy(), it would cause a crash
* Crash in sortaddrinfo() if the list size equals 0 due to an unexpected DNS response
* Expand number of escaped characters in DNS replies as per RFC1035 5.1 to prevent spoofing follow-up (bsc#1188881, CVE-2021-3672)
* Perform validation on hostnames to prevent possible XSS due to applications not performing valiation themselves Changes:
* ares_malloc(0) is now defined behavior (returns NULL) rather than system-specific to catch edge cases Bug fixes:
* Building tests should not force building of static libraries except on Windows
* Relative headers must use double quotes to prevent pulling in a system library for details see, https://c-ares.haxx.se/changelog.html#1_17_2
* Sat Jan 16 2021 Dirk Müller - update to 1.17.1: Travis: add iOS target built with CMake (#378) Issue #377 suggested that CMake builds for iOS with c-ares were broken. This PR adds an automatic Travis build for iOS CMake. - fix build External projects were using non-public header ares_dns.h, make public again (#376) It appears some outside projects were relying on macros in ares_dns.h, even though it doesn\'t appear that header was ever meant to be public. That said, we don\'t want to break external integrators so we should distribute this header again. - note that so versioning has moved to configure.ac - note about 1.17.1 - fix sed gone wrong autotools cleanup (#372)
* buildconf: remove custom logic with autoreconf- remove missing_header.patch (upstream)
* Sat Nov 21 2020 Marcus Rueckert - add BR for pkg-config to get the provides in the devel package
* Thu Nov 19 2020 Adam Majer - ares_dns.h, missing_header.patch: re-add missing header in last release
* Tue Nov 17 2020 Adam Majer - Version update to 1.17.0 Security:
* avoid read-heap-buffer-overflow in ares_parse_soa_reply found during fuzzing
* Avoid theoretical buffer overflow in RC4 loop comparison
* Empty hquery->name could lead to invalid memory access
* ares_parse_{a,aaaa}_reply() could return a larger
*naddrttls than was passed in (bsc#1178882, CVE-2020-8277) Changes:
* Update help information for adig, acountry, and ahost
* Test Suite now uses dynamic system-assigned ports rather than hardcoded ports to prevent failures in containers
* Detect remote DNS server does not support EDNS using rules from RFC 6891
* Source tree has been reorganized to use a more modern layout
* Allow parsing of CAA Resource Record Bug fixes:
* readaddrinfo bad sizeof()
* Test cases should honor HAVE_WRITEV flag, not depend on WIN32
* FQDN with trailing period should be queried first
* ares_getaddrinfo() was returning members of the struct as garbage values if unset, and was not honoring ai_socktype and ai_protocol hints.
* ares_gethostbyname() with AF_UNSPEC and an ip address would fail
* Properly document ares_set_local_ip4() uses host byte order For details, see https://c-ares.haxx.se/changelog.html- add missing upstream sources, to be removed for next release- remove unnecessary BuildRequires- fix building on SLE12 systems
* Fri Sep 11 2020 Tomáš Chvátal - simplify conditions bit to make it tad more readable
* Thu Sep 10 2020 Atri Bhattacharya - Implement multibuild specfile to split out tests into its own flavor; this way we can build and run tests, which require static lib, as well as avoid packaging the latter without issues with the installed cmake file..
* Wed Jul 08 2020 Matthias Eliasson - Version update to 1.16.1 Security:
* Prevent possible use-after-free and double-free in ares_getaddrinfo() if ares_destroy() is called prior to ares_getaddrinfo() completing. Reported by Jann Horn at Google Project Zero. Changes:
* Allow TXT records on CHAOS qclass. Used for retriving things like version.bind, version.server, authoris.bind, hostname.bind, and id.server. [3] Bug fixes:
* Fix Windows Unicode incompatibilities with ares_getaddrinfo() [1]
* Silence false cast-align compiler warnings due to valid casts of struct sockaddr to struct sockaddr_in and struct sockaddr_in6.
* MacOS should use libresolv for retrieving DNS servers, like iOS
* CMake build system should populate the INCLUDE_DIRECTORIES property of installed targets [2]
* Correct macros in use for the ares_getaddrinfo.3 man page- Changes in version 1.16.0 Changes:
* Introduction of ares_getaddrinfo() API which provides similar output (including proper sorting as per RFC 6724) to the system native API, but utilizes different data structures in order to provide additional information such as TTLs and all aliases. Please reference the respective man pages for usage details.
* Parse SOA records from ns_t_any response
* CMake: Provide c-ares version in package export file
* CMake: Add CPACK functionality for DEB and RPM
* CMake: Generate PDB files during build
* CMake: Support manpage installation Bug fixes:
* Fix bad expectation in IPv6 localhost test.
* AutoTools: use XC_CHECK_BUILD_FLAGS instead of XC_CHECK_USER_FLAGS to prevent complaints about CPPFLAGS in CFLAGS.
* Fix .onion handling
* Command line usage was out of date for adig and ahost.
* Typos in manpages
* If ares_getenv is defined, it must return a value on all platforms
* If /etc/resolv.conf has invalid lookup values, use the defaults.
* Tests: Separate live tests from SetServers
* tests as only live tests should require internet access.
* ares_gethostbyname() should return ENODATA if no valid A or AAAA record is found, but a CNAME was found.
* CMake: Rework library function checking to prevent unintended linking with system libraries that aren\'t needed.
* Due to use of inet_addr() it was not possible to return 255.255.255.255 from ares_gethostbyname().
* CMake: Fix building of tests on Windows- Drop regression.patch which have been fixed upstream- Refresh disable-live-tests.patch- Remove static lib since its required when doing tests and we dont want it included in package- Run spec-cleaner
* Mon Feb 03 2020 Adam Majer - Upgrade to latest snapshot from 2020-01-17- disable-live-tests.patch: refreshed- regression.patch: fix a regression in DNS results that contain both A and AAAA answers.
* Tue Jan 28 2020 Michał Rostecki - Add netcfg as the build requirement and runtime requirement. ares_getaddrinfo function uses the getservbyport_r function which requires the /etc/services file to function properly. That config file is provided by the netcfg package. Unit tests rely on it too, hence it has to be a build dependency as well.
* Mon Jan 06 2020 Todd R - Switch to cmake-based build. Some packages need the cmake build files.
 
ICM