Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

devel-release-1.12.0 #3673

Merged
merged 118 commits into from
Jul 8, 2022
Merged

devel-release-1.12.0 #3673

merged 118 commits into from
Jul 8, 2022

Commits on Mar 18, 2020

  1. Fix percent-encoded fragment modification in Poco::URI

    Before this commit using Poco::URI class to parse specific URIs that had
    percent-encoded fragment identifier resulted in the loss of information
    concerning the way the fragment identifier was encoded. There could be the cases
    when the  result of Poco::URI object serialization to string did not match the
    original URI string Poco::URI object was created from.
    
    In this commit we change the internal logic of fragment processing in Poco::URI,
    so that the fragment is stored inside the class in raw form (the same way as
    query string). The methods getFragment and setFragment work the old way (with
    percent-decoded fragment values), new methods getRawFragment and setRawFragment
    are added to get access to the original fragment representation.
    Daniil Zotkin committed Mar 18, 2020
    Configuration menu
    Copy the full SHA
    908ca6e View commit details
    Browse the repository at this point in the history

Commits on May 27, 2022

  1. Configuration menu
    Copy the full SHA
    76fa430 View commit details
    Browse the repository at this point in the history
  2. Remaining changes for Windows on ARM64 support (#3608)

    * Add ARM64 to Foundation
    
    * Changed lib, and bin folders of ARM64 builds
    
    * Updated buildwin.cmd
    hmartinez82 committed May 27, 2022
    Configuration menu
    Copy the full SHA
    6cf3a53 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6ab38be View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0df6a6a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3e6e259 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    216d5ae View commit details
    Browse the repository at this point in the history

Commits on May 28, 2022

  1. Configuration menu
    Copy the full SHA
    71a3a79 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fcaab80 View commit details
    Browse the repository at this point in the history

Commits on May 29, 2022

  1. fix(TCPServer): #1884 #1965

    aleks-f committed May 29, 2022
    Configuration menu
    Copy the full SHA
    9f7ccaf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b52ec8c View commit details
    Browse the repository at this point in the history
  3. Avoid clang 10 -Wimplicit-int-float-conversion warning/error when con…

    …verting int into float (#2943)
    
    Example of warning (error when using -Werror) we get with clang 10:
    
    /remote/intdeliv/components/osp/Poco/Foundation/19-0-0-6/include/Poco/Dynamic/VarHolder.h:444:14: error: implicit conversion from 'int' to 'float' changes value from 2147483647 to 2147483648 [-Werror,-Wimplicit-int-float-conversion]
                    if (from > std::numeric_limits<T>::max())
                             ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    /remote/intdeliv/components/osp/Poco/Foundation/19-0-0-6/include/Poco/Dynamic/VarHolder.h:332:4: note: in instantiation of function template specialization 'Poco::Dynamic::VarHolder::checkUpperLimitFloat<float, int>' requested here
                            checkUpperLimitFloat<F,T>(from);
                            ^
    /remote/intdeliv/components/osp/Poco/Foundation/19-0-0-6/include/Poco/Dynamic/VarHolder.h:2175:3: note: in instantiation of function template specialization 'Poco::Dynamic::VarHolder::convertToSmaller<float, int>' requested here
                    convertToSmaller(_val, val);
                    ^
    Romain-Geissler-1A committed May 29, 2022
    Configuration menu
    Copy the full SHA
    75eb0ca View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1343caa View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1fe93ca View commit details
    Browse the repository at this point in the history
  6. #2569: Added TIMESTAMP data type support on MySQL (#3471)

    * Unit test for TIMESTAMP data type in MySQL.
    
    * Added support for TIMESTAMP data type.
    
    Co-authored-by: Hector Toledo Soto <hsoto@transperfect.com>
    hectots and Hector Toledo Soto committed May 29, 2022
    Configuration menu
    Copy the full SHA
    0f9a876 View commit details
    Browse the repository at this point in the history
  7. MongoDB::Array: int --> size_t in get for consistency with size(), ne…

    …w helper functions to add elements to an array. (#3016)
    matejk committed May 29, 2022
    Configuration menu
    Copy the full SHA
    9740190 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    a17a7bf View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    980cd02 View commit details
    Browse the repository at this point in the history

Commits on May 30, 2022

  1. Syslog: Include Facility to Syslog Message (#3452)

    * Fixed indentation
    
    * Added Facility to Message in RemoteSyslogListener
    BeBinder committed May 30, 2022
    Configuration menu
    Copy the full SHA
    2aaa7f8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ea03d88 View commit details
    Browse the repository at this point in the history
  3. Add Message::getAll (#3104)

    oktal committed May 30, 2022
    Configuration menu
    Copy the full SHA
    8fa4d52 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f860c26 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1f587cf View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    fe59436 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    2b7b953 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    5c29df0 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    e25a8b3 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    1a662a1 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    d93a188 View commit details
    Browse the repository at this point in the history
  12. Added missing SocketProactor class to ProGen source (#3616)

    * Added missing SocketProactor class to ProGen source
    
    * ProGen'd VS2022 Net project
    hmartinez82 committed May 30, 2022
    Configuration menu
    Copy the full SHA
    38593be View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    bc8e192 View commit details
    Browse the repository at this point in the history

Commits on May 31, 2022

  1. Handle MariaDB JSON columns since they are stored as longtext (#3621)

    * Also extract BLOBs when reading longtext columns as std::string
    
    * Fix error message in unit test
    
    * Added unit test to read longtext columns as std::string
    hmartinez82 committed May 31, 2022
    Configuration menu
    Copy the full SHA
    573dcca View commit details
    Browse the repository at this point in the history
  2. Use tx_isolation when connected to MariaDB regardless of version (#…

    …3622)
    
    * Use `tx_isolation` when connected to MariaDB regardless of version
    
    * Rename variable
    
    * Handle MariaDB server info in the middle of the string
    hmartinez82 committed May 31, 2022
    Configuration menu
    Copy the full SHA
    4051f85 View commit details
    Browse the repository at this point in the history
  3. Updated to PCRE version 8.45 (#3623)

    * Add missing changes from zlib update
    
    * Updated to PCRE version 8.45
    
    Build on Win32 and Linux, RegularExpressionTest was successful
    Spaky committed May 31, 2022
    Configuration menu
    Copy the full SHA
    17fec1b View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2022

  1. Fix/tsan (#3617)

    * fix(Foundation): tsan warnings fixes
    
    * fix(Thread_POSIX): tsan warnings fixes; add tsan.suppress
    
    * fix(Util): tsan fixes
    
    * fix(netSSL_OpenSSL): tsan fixes
    
    * fix(Data): tsan warnings fixes
    
    * feat(ci): add tsan job
    
    * feat(ci): add tsan job, another attempt
    
    * feat(ci): add tsan job, 3rd attempt
    
    * fix(Foundation): tsan warnings fixes
    
    * fix(Thread_POSIX): tsan warnings fixes; add tsan.suppress
    
    * fix(Util): tsan fixes
    
    * fix(netSSL_OpenSSL): tsan fixes
    
    * fix(Data): tsan warnings fixes
    
    * feat(ci): add tsan job
    
    * feat(ci): add tsan job, another attempt
    
    * feat(ci): add tsan job, 3rd attempt
    
    * fix(ResultMetadata): memory leak #3474
    
    * feat(ci): disable ActiveDispatcher tests for tsan runs
    
    * feat(ci): try to fix tsan options file detection (again)
    
    * chore(TestLibrary: correct spelling
    
    * fix(ci): fix tsan run; add -y to apt; disable samples build for some jobs
    
    * fix(ci): add mysql ports
    
    * feat(ci): add VS asan
    
    * feat(double-conversion): Upgrade double-conversion to v3.2.0 #3624
    
    * chore(asan): disable msvc asan build (dll not found)
    
    * chore(double-conversion): move NumericString.h before double-conversion includes to prevent min/max collision; reinstate lost loongarch64
    
    * chore(JSON): sync pdjson with upstream
    
    * fix(Statement): Poco::Data::Statement becomes unusable after exception #2287
    aleks-f committed Jun 2, 2022
    Configuration menu
    Copy the full SHA
    ff879f5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ec41521 View commit details
    Browse the repository at this point in the history
  3. TCPServerDispatcher.h: missing <atomic> (#2961)

    Fixes: b8af168
    Fixes: #1965
    azat committed Jun 2, 2022
    Configuration menu
    Copy the full SHA
    8939866 View commit details
    Browse the repository at this point in the history
  4. Windows embedded OpenSSL: Fixed bogus warning during compilation (Ext…

    …ernal OpenSSL defined but internal headers used - possible mismatch!) (#3627)
    matejk committed Jun 2, 2022
    Configuration menu
    Copy the full SHA
    eaf88cc View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2967db2 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    7035844 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    420664e View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    91c7392 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    db0e012 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    fbdb612 View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2022

  1. Configuration menu
    Copy the full SHA
    2bd71b4 View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2022

  1. Configuration menu
    Copy the full SHA
    08fe7fd View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2022

  1. Configuration menu
    Copy the full SHA
    ae00d05 View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2022

  1. Configuration menu
    Copy the full SHA
    7f4bdca View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    24b99e7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    34c4d7c View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2022

  1. Configuration menu
    Copy the full SHA
    c97d570 View commit details
    Browse the repository at this point in the history
  2. json format PrintHandler #2678

    aleks-f committed Jun 18, 2022
    Configuration menu
    Copy the full SHA
    1d32b9b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5cc73c6 View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2022

  1. fix warning C4717: 'format<std::vector<std::any,std::allocatorstd::an… (

    #3640)
    
    * fix warning C4717: 'format<std::vector<std::any,std::allocatorstd::any > >': recursive on all control paths, function will cause runtime stack overflow
    
    * keep origin format.
    shelllet committed Jun 19, 2022
    Configuration menu
    Copy the full SHA
    283321a View commit details
    Browse the repository at this point in the history
  2. fix(format): scope

    aleks-f committed Jun 19, 2022
    Configuration menu
    Copy the full SHA
    dc201ad View commit details
    Browse the repository at this point in the history
  3. fix(Crypto): libPocoCrypto.so: undefined reference to pthread_atfork …

    …when linking statically with OpenSSL 1.1 #3073
    aleks-f committed Jun 19, 2022
    Configuration menu
    Copy the full SHA
    a843c63 View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2022

  1. Configuration menu
    Copy the full SHA
    41f11b0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    37cb890 View commit details
    Browse the repository at this point in the history
  3. FifoBuffer.advance method not throw exception when length==0 (#3641)

    * fifobuffer not throw error when length = 0
    
    * Update FIFOBuffer.h
    
    fix indentation
    
    Co-authored-by: Aleksandar Fabijanic <aleks-f@users.noreply.github.com>
    JackyWoo and aleks-f committed Jun 20, 2022
    Configuration menu
    Copy the full SHA
    4938185 View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2022

  1. Configuration menu
    Copy the full SHA
    6dc79c0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    aa71874 View commit details
    Browse the repository at this point in the history
  3. chore(JSON): add test for #2612

    aleks-f committed Jun 21, 2022
    Configuration menu
    Copy the full SHA
    c77f558 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    15e242b View commit details
    Browse the repository at this point in the history
  5. Fix some clang 10 -Wsign-compare warnings (#2960)

    In file included from /data/mwrep/res/osp/Poco/JSON/20-0-0-0/include/Poco/JSON/Object.h:22:
    In file included from /data/mwrep/res/osp/Poco/JSON/20-0-0-0/include/Poco/JSON/Array.h:23:
    In file included from /data/mwrep/res/osp/Poco/Foundation/20-0-0-0/include/Poco/Dynamic/Var.h:26:
    In file included from /data/mwrep/res/osp/Poco/Foundation/20-0-0-0/include/Poco/Dynamic/VarHolder.h:22:
    In file included from /data/mwrep/res/osp/Poco/Foundation/20-0-0-0/include/Poco/NumberFormatter.h:22:
    /data/mwrep/res/osp/Poco/Foundation/20-0-0-0/include/Poco/NumericString.h:220:31: error: comparison of integers of different signs: 'unsigned long' and 'char' [-Werror,-Wsign-compare]
                                    if ((limitCheck - result) < add) return false;
                                         ~~~~~~~~~~~~~~~~~~~  ^ ~~~
    /data/mwrep/res/osp/Poco/Foundation/20-0-0-0/include/Poco/NumericString.h:229:31: error: comparison of integers of different signs: 'unsigned long' and 'char' [-Werror,-Wsign-compare]
                                    if ((limitCheck - result) < add) return false;
                                         ~~~~~~~~~~~~~~~~~~~  ^ ~~~
    /data/mwrep/res/osp/Poco/Foundation/20-0-0-0/include/Poco/NumericString.h:240:31: error: comparison of integers of different signs: 'unsigned long' and 'char' [-Werror,-Wsign-compare]
                                    if ((limitCheck - result) < add) return false;
                                         ~~~~~~~~~~~~~~~~~~~  ^ ~~~
    /data/mwrep/res/osp/Poco/Foundation/20-0-0-0/include/Poco/NumericString.h:249:31: error: comparison of integers of different signs: 'unsigned long' and 'char' [-Werror,-Wsign-compare]
                                    if ((limitCheck - result) < add) return false;
                                         ~~~~~~~~~~~~~~~~~~~  ^ ~~~
    4 errors generated.
    Romain-Geissler-1A committed Jun 21, 2022
    Configuration menu
    Copy the full SHA
    3e56349 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3ca2680 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    4b4be21 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    1e3bc35 View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2022

  1. Configuration menu
    Copy the full SHA
    47f2c35 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5cbe30e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cafd56a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6a97657 View commit details
    Browse the repository at this point in the history
  5. fix(strToInt): overflows #3580

    aleks-f committed Jun 22, 2022
    Configuration menu
    Copy the full SHA
    284a141 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b937130 View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2022

  1. Configuration menu
    Copy the full SHA
    391cb63 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c8e6602 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0903810 View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2022

  1. Configuration menu
    Copy the full SHA
    79f7b43 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ae00f1c View commit details
    Browse the repository at this point in the history
  3. Make ParallelSocketReactor thread namable (#3642)

    make ParallelSocketReactor thread namable
    JackyWoo committed Jun 24, 2022
    Configuration menu
    Copy the full SHA
    cbe738d View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2022

  1. Configuration menu
    Copy the full SHA
    5ef9628 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3f9b406 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2022

  1. Configuration menu
    Copy the full SHA
    a785705 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2022

  1. Configuration menu
    Copy the full SHA
    b23488d View commit details
    Browse the repository at this point in the history
  2. Revert "avoid clang tidy warning (#3646)" (#3648)

    This reverts commit b23488d.
    aleks-f committed Jun 27, 2022
    Configuration menu
    Copy the full SHA
    309aff3 View commit details
    Browse the repository at this point in the history
  3. fix(VarHolder): limits check

    aleks-f committed Jun 27, 2022
    Configuration menu
    Copy the full SHA
    c377807 View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2022

  1. As of C++11, std::swap is noexcept. #2386 (#3645)

    * As of C++11, std::swap is noexcept. #2386
    
    * fix(Any): remove throw on swap
    
    * fix(Any): As of C++11, std::swap is noexcept. #2386
    
    * fix(Any): make size const #2386
    
    * fix(SimpleRowFormatter): clang won't compile noexcept #2386
    
    * a couple of arm fixes
    
    * fix(Any): As of C++11, std::swap is noexcept. #2386
    
    * fix(AnyTest): local() for POCO_NO_SOO# 2386
    
    * test(RSACipher): RSA encryption without private key #2367
    
    * chore(RSACipherTest): delete ciphers #2367
    aleks-f committed Jun 28, 2022
    Configuration menu
    Copy the full SHA
    168f1eb View commit details
    Browse the repository at this point in the history
  2. add separate accessors and mutators for connect, send and receive tim… (

    #3476)
    
    * add separate accessors and mutators for connect, send and receive timeouts
    
    * implement timeout methods outside of class declaration to conform to existing code structure
    
    * Update HTTPSession.h
    
    Co-authored-by: bfoster <bfoster@malwarebytes.com>
    Co-authored-by: Aleksandar Fabijanic <aleks-f@users.noreply.github.com>
    3 people committed Jun 28, 2022
    Configuration menu
    Copy the full SHA
    cc14bcf View commit details
    Browse the repository at this point in the history
  3. Make poll set interruptable (#3644)

    * Make poll set interruptable
    
    * open test for poll set
    
    * fix poll set wake up test
    
    * fix build error
    JackyWoo committed Jun 28, 2022
    Configuration menu
    Copy the full SHA
    0d539a7 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2022

  1. Configuration menu
    Copy the full SHA
    5d7a101 View commit details
    Browse the repository at this point in the history
  2. better socket reactor wake up (#3647)

    * better socket reactor wake up
    
    * Remove documentation comment from source file
    
    Co-authored-by: Aleksandar Fabijanic <aleks-f@users.noreply.github.com>
    JackyWoo and aleks-f committed Jun 29, 2022
    Configuration menu
    Copy the full SHA
    3f124bd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    451360e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7a2f2e0 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b3337ac View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    076cddb View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2022

  1. Configuration menu
    Copy the full SHA
    36d8507 View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2022

  1. Merge pull request #2959 from dahek/get_raw_fragment

    Fix percent-encoded fragment modification in Poco::URI
    obiltschnig committed Jul 3, 2022
    Configuration menu
    Copy the full SHA
    b6dcb5b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2daf323 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    06718f4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9bde3bc View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    13b5605 View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2022

  1. Configuration menu
    Copy the full SHA
    3e4a286 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b1823b6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    672d64b View commit details
    Browse the repository at this point in the history
  4. fix(Socket): Socket::select EPOLL implementation returns socket in ex…

    …ceptList when empty list is given #3655; mark select as deprecated #1459
    aleks-f committed Jul 4, 2022
    Configuration menu
    Copy the full SHA
    93e58b4 View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2022

  1. Fix/poll set race (#3630)

    * fix(PollSet): PollSet data race #3628
    
    * fix(SocketConnector): SocketConnector test #2875
    
    * fix(PollSet): optimize the amount of locked code; fix and simplify wakeUp logic
    
    * fix(SocketConnectorTest): fix test memleak (data not flowing, handlers not deleted) #2875
    
    * fix(PollSet): clear() and tests
    aleks-f committed Jul 5, 2022
    Configuration menu
    Copy the full SHA
    840044f View commit details
    Browse the repository at this point in the history
  2. fix(PollSet): #1459 #3628 #3655 #3661

    aleks-f committed Jul 5, 2022
    Configuration menu
    Copy the full SHA
    8169648 View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2022

  1. Configuration menu
    Copy the full SHA
    31a49c0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a1b21d2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    dd16ab0 View commit details
    Browse the repository at this point in the history
  4. fix(PollSet): CMakelists.txt

    aleks-f committed Jul 6, 2022
    Configuration menu
    Copy the full SHA
    adec31e View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    474dbac View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    0a53c6f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    dd0aaa9 View commit details
    Browse the repository at this point in the history
  8. Feat/pcre2 (#3663)

    * upgrade to pcre2
    
    * use pcre2_*_8 names
    
    * fix pcre2 lib name for unbundled build
    
    * CMake changes for PCRE2
    
    * add missing macro for unbundled build
    
    * add PCRE2_STATIC
    
    * updated VS project files for pcre2
    
    Co-authored-by: Günter Obiltschnig <guenter.obiltschnig@appinf.com>
    aleks-f and obiltschnig committed Jul 6, 2022
    Configuration menu
    Copy the full SHA
    bbe09e4 View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2022

  1. Revert "formatHex with lower case (#3657)" (#3670)

    This reverts commit b1823b6.
    aleks-f committed Jul 7, 2022
    Configuration menu
    Copy the full SHA
    674446d View commit details
    Browse the repository at this point in the history
  2. Always set thread names on POSIX platforms (#3384)

    * chore: gitignore vim .swp files
    
    * feat(POSIX): Always set thread names.
    
    I'm not sure about the original intent to hide it under a DEBUG macro.
    
    Naming the threads in release mode makes it easier to see runtime
    application and know which thread pool uses how many threads and what
    their names are. Firefox, Chromium and many other apps do this on Linux.
    Arun Chandrasekaran committed Jul 7, 2022
    Configuration menu
    Copy the full SHA
    0af9524 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0e6e166 View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2022

  1. doc: update CHANGLEOG

    aleks-f committed Jul 8, 2022
    Configuration menu
    Copy the full SHA
    ce61229 View commit details
    Browse the repository at this point in the history