Author: Marc-André Lureau <marcandre.lureau@redhat.com>
Date:   Mon Feb 7 15:39:21 2022 +0400

    build-sys: fix out-of-tree mingw compilation

    x86_64-w64-mingw32-windres -i ../../../src/odbc/setup.rc --input-format=rc -o setup.res -O coff
    ../../../src/odbc/setup.rc:19:10: fatal error: version.rc: No such file or directory
       19 | #include "version.rc"
          |          ^~~~~~~~~~~~

Author: Aaron M. Ucko <ucko@ncbi.nlm.nih.gov>
Date:   Wed Jan 19 11:33:01 2022 -0500

    tds/convert.c: Fix floating-point -> integer bounds.

    - Use distinct macros for integer and FP source types as needed.
    - Use power-of-two upper bounds with < when FP source types are a
      consideration, to account for pre-conversion truncation or possible
      precision loss as appropriate.
    - Account for pre-conversion truncation (NOT floor computation) of
      negative FP values and for possible limited precision around the
      lower bounds of 32- and 64-bit signed integer types.
    - Per Freddy, don't bother with explicit l suffixes; 16-bit systems
      are not relevant to FreeTDS.

Author: Frediano Ziglio <freddy77@gmail.com>
Date:   Sun Dec 26 20:20:05 2021 +0000

    Check for system function using header

    It seems that function is available to link but disable by iOS headers
    so check it using code instead of defining it and linking (as
    AC_CHECK_FUNCS does).

Author: Frediano Ziglio <freddy77@gmail.com>
Date:   Fri Dec 24 10:32:50 2021 +0000

    apps: Check for system function presence

    fisql execute system commands using system function which is
    not currently available on iOS. Avoid to use it and disable the
    specific fisql feature.

Author: Frediano Ziglio <freddy77@gmail.com>
Date:   Sun Dec 12 19:46:14 2021 +0000

    defncopy: Supports varchar(max)/varbinary(max)

    If length is -1 it means varchar(max) or varbinary(max) types.

    This fixes https://github.com/FreeTDS/freetds/issues/432.

Author: Frediano Ziglio <freddy77@gmail.com>
Date:   Mon Aug 30 09:22:14 2021 +0100

    Fix compatibility issue with some TLS implementations

    Not found using directly a SQL Server database but with some
    proxy program using different TLS settings.
    The TLS inside TDS packet was not ending with the handshake
    but had some additional bytes containing no data.
    Strip this tail.

Author: Frediano Ziglio <freddy77@gmail.com>
Date:   Tue Aug 24 19:00:13 2021 +0100

    tds: Avoid unaligned access using replacement iconv

    Test string for checking iconv should be memory aligned.
    Extra checks are used to check the alignment explicitly in
    system able to do unaligned access.

Author: Jan umgarten <marsupilami79@gmx.de>
Date:   Mon Aug 16 15:07:58 2021 +0200

    Keep make from failing if the source path contains spaces.
