Accepting request 1114788 from home:pgajdos

- version update to 1.4.2
  * User visible (not in a particular order):
    - Fix some numeric conversion checks;
    - Always use Unicode for SSPI allowing not ASCII to work;
    - Improve BCP copy, especially for Sybase;
    - Better error reporting for ICONV failures;
    - Disable TLSv1 by default;
    - ODBC: partial TVP support (missing data at execution);
    - ODBC: support for quoted string in connection string;
    - CT-Library: support large identifiers;
    - CT-Library: report appropriate severity values;
    - apps: datacopy report errors on standard error;
    - pool: use poll instead of select to support more connections.
  * Implementation:
    - Use more bool type for boolean instead of integer;
    - more macros for ODBC tests to encapsulate some ODBC API.
- modified patches
  % configure-return-void-fix.patch (refreshed)
- have not BUGS.md anymore

OBS-URL: https://build.opensuse.org/request/show/1114788
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/freetds?expand=0&rev=74
This commit is contained in:
Jan Engelhardt 2023-10-02 10:19:34 +00:00 committed by Git OBS Bridge
parent 44c0e69e92
commit 5c81ca22ef
5 changed files with 33 additions and 10 deletions

View File

@ -1,12 +1,12 @@
Index: freetds-1.3.18/configure
Index: freetds-1.4.2/configure
===================================================================
--- freetds-1.3.18.orig/configure
+++ freetds-1.3.18/configure
@@ -19944,6 +19944,7 @@ SQLRETURN SQL_API SQLColAttribute (SQLH
--- freetds-1.4.2.orig/configure
+++ freetds-1.4.2/configure
@@ -21580,6 +21580,7 @@ SQLRETURN SQL_API SQLColAttribute (SQLH
SQLUSMALLINT ColumnNumber, SQLUSMALLINT FieldIdentifier,
SQLPOINTER CharacterAttribute, SQLSMALLINT BufferLength,
SQLSMALLINT *StringLength, SQLLEN * NumericAttribute) {
+ return 0;
}
int
main ()
main (void)

BIN
freetds-1.3.20.tar.gz (Stored with Git LFS)

Binary file not shown.

3
freetds-1.4.2.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:53ecf3905543d4cefffcc2dd73e3d5571928b236cbe93881996636e022ca0e9e
size 3281463

View File

@ -1,3 +1,26 @@
-------------------------------------------------------------------
Mon Oct 2 09:19:58 UTC 2023 - pgajdos@suse.com
- version update to 1.4.2
* User visible (not in a particular order):
- Fix some numeric conversion checks;
- Always use Unicode for SSPI allowing not ASCII to work;
- Improve BCP copy, especially for Sybase;
- Better error reporting for ICONV failures;
- Disable TLSv1 by default;
- ODBC: partial TVP support (missing data at execution);
- ODBC: support for quoted string in connection string;
- CT-Library: support large identifiers;
- CT-Library: report appropriate severity values;
- apps: datacopy report errors on standard error;
- pool: use poll instead of select to support more connections.
* Implementation:
- Use more bool type for boolean instead of integer;
- more macros for ODBC tests to encapsulate some ODBC API.
- modified patches
% configure-return-void-fix.patch (refreshed)
- have not BUGS.md anymore
-------------------------------------------------------------------
Mon Sep 4 12:44:35 UTC 2023 - pgajdos@suse.com

View File

@ -17,7 +17,7 @@
Name: freetds
Version: 1.3.20
Version: 1.4.2
Release: 0
Summary: A free re-implementation of the TDS (Tabular Data Stream) protocol
License: GPL-2.0-or-later AND LGPL-2.1-or-later
@ -198,6 +198,6 @@ odbcinst -u -d -n 'SQL Server'
%{_libdir}/libtdsodbc.so.*
%files doc
%doc AUTHORS.md BUGS.md NEWS.md README.md TODO.md
%doc AUTHORS.md NEWS.md README.md TODO.md
%changelog