File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1+ ## (unreleased)
2+
3+ * Use freetds v1.5.1 and OpenSSL v3.5.0 for Windows and Linux builds.
4+
15## 3.2.1
26
37* Ensure the native Gem loads on Windows. Fixes #581 .
Original file line number Diff line number Diff line change 11ICONV_VERSION = ENV [ "TINYTDS_ICONV_VERSION" ] || "1.18"
22ICONV_SOURCE_URI = "http://ftp.gnu.org/pub/gnu/libiconv/libiconv-#{ ICONV_VERSION } .tar.gz"
33
4- OPENSSL_VERSION = ENV [ "TINYTDS_OPENSSL_VERSION" ] || "3.4.1 "
4+ OPENSSL_VERSION = ENV [ "TINYTDS_OPENSSL_VERSION" ] || "3.5.0 "
55OPENSSL_SOURCE_URI = "https://www.openssl.org/source/openssl-#{ OPENSSL_VERSION } .tar.gz"
66
7- FREETDS_VERSION = ENV [ "TINYTDS_FREETDS_VERSION" ] || "1.4.26 "
7+ FREETDS_VERSION = ENV [ "TINYTDS_FREETDS_VERSION" ] || "1.5.1 "
88FREETDS_SOURCE_URI = "http://www.freetds.org/files/stable/freetds-#{ FREETDS_VERSION } .tar.bz2"
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ class ThreadTest < TinyTds::TestCase
6565 result = client . execute "waitfor delay '00:00:#{ delay } '; select db_name()"
6666 result . each { |r | puts r }
6767 rescue TinyTds ::Error => e
68- if e . message == "Adaptive Server connection timed out"
68+ if e . message . include? ( " connection timed out")
6969 exception = true
7070 end
7171 end
You can’t perform that action at this time.
0 commit comments