Skip to content

Commit 08ce4f2

Browse files
Merge pull request #28670 from v-kevinwong/18.3.2.1-docs-1
18.3.2.1 ODBC Docs (release notes, bug fixes, Linux install)
2 parents 0f52f81 + b7c5933 commit 08ce4f2

4 files changed

Lines changed: 83 additions & 15 deletions

File tree

docs/connect/odbc/bug-fixes.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: This page contains a listing of bugs fixed in each release, startin
44
author: v-chojas
55
ms.author: v-chojas
66
ms.reviewer: v-davidengel
7-
ms.date: 07/31/2023
7+
ms.date: 10/10/2023
88
ms.service: sql
99
ms.subservice: connectivity
1010
ms.topic: conceptual
@@ -15,6 +15,16 @@ helpviewer_keywords:
1515

1616
This page contains a listing of bugs fixed in each release, starting with [!INCLUDE[msCoName](../../includes/msconame-md.md)] ODBC Driver 17 for [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)].
1717

18+
### Bug fixes in the [!INCLUDE[msCoName](../../includes/msconame-md.md)] ODBC Driver 18.3.2 for [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)]
19+
20+
- Fix crashes when receiving invalid data from server
21+
- Fix infinite loop when receiving invalid data from server
22+
- Fix a crash when attempting to connect under low-memory conditions
23+
24+
### Bug fixes in the [!INCLUDE[msCoName](../../includes/msconame-md.md)] ODBC Driver 17.10.5 for [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)]
25+
26+
- Fix crashes when receiving invalid data from server
27+
1828
### Bug fixes in the [!INCLUDE[msCoName](../../includes/msconame-md.md)] ODBC Driver 18.3.1 for [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)]
1929

2030
- Fix a bug in setting of data classification version attribute

docs/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server.md

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how to install the Microsoft ODBC Driver for SQL Server on Li
44
author: David-Engel
55
ms.author: v-davidengel
66
ms.reviewer: randolphwest
7-
ms.date: 08/07/2023
7+
ms.date: 10/10/2023
88
ms.service: sql
99
ms.subservice: connectivity
1010
ms.topic: conceptual
@@ -39,21 +39,21 @@ fi
3939

4040

4141
#Download the desired package(s)
42-
curl -O https://download.microsoft.com/download/3/5/5/355d7943-a338-41a7-858d-53b259ea33f5/msodbcsql18_18.3.1.1-1_$architecture.apk
42+
curl -O https://download.microsoft.com/download/3/5/5/355d7943-a338-41a7-858d-53b259ea33f5/msodbcsql18_18.3.2.1-1_$architecture.apk
4343
curl -O https://download.microsoft.com/download/3/5/5/355d7943-a338-41a7-858d-53b259ea33f5/mssql-tools18_18.3.1.1-1_$architecture.apk
4444

4545

4646
#(Optional) Verify signature, if 'gpg' is missing install it using 'apk add gnupg':
47-
curl -O https://download.microsoft.com/download/3/5/5/355d7943-a338-41a7-858d-53b259ea33f5/msodbcsql18_18.3.1.1-1_$architecture.sig
47+
curl -O https://download.microsoft.com/download/3/5/5/355d7943-a338-41a7-858d-53b259ea33f5/msodbcsql18_18.3.2.1-1_$architecture.sig
4848
curl -O https://download.microsoft.com/download/3/5/5/355d7943-a338-41a7-858d-53b259ea33f5/mssql-tools18_18.3.1.1-1_$architecture.sig
4949

5050
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --import -
51-
gpg --verify msodbcsql18_18.3.1.1-1_amd64.sig msodbcsql18_18.3.1.1-1_$architecture.apk
52-
gpg --verify mssql-tools18_18.3.1.1-1_amd64.sig mssql-tools18_18.3.1.1-1_$architecture.apk
51+
gpg --verify msodbcsql18_18.3.2.1-1_$architecture.sig msodbcsql18_18.3.2.1-1_$architecture.apk
52+
gpg --verify mssql-tools18_18.3.1.1-1_$architecture.sig mssql-tools18_18.3.1.1-1_$architecture.apk
5353

5454

5555
#Install the package(s)
56-
sudo apk add --allow-untrusted msodbcsql18_18.3.1.1-1_$architecture.apk
56+
sudo apk add --allow-untrusted msodbcsql18_18.3.2.1-1_$architecture.apk
5757
sudo apk add --allow-untrusted mssql-tools18_18.3.1.1-1_$architecture.apk
5858
```
5959

@@ -77,6 +77,9 @@ curl https://packages.microsoft.com/config/debian/10/prod.list | sudo tee /etc/a
7777
#Debian 11
7878
curl https://packages.microsoft.com/config/debian/11/prod.list | sudo tee /etc/apt/sources.list.d/mssql-release.list
7979

80+
#Debian 12
81+
curl https://packages.microsoft.com/config/debian/12/prod.list | sudo tee /etc/apt/sources.list.d/mssql-release.list
82+
8083
sudo apt-get update
8184
sudo ACCEPT_EULA=Y apt-get install -y msodbcsql18
8285
# optional: for bcp and sqlcmd
@@ -191,19 +194,19 @@ The following sections explain how to install the Microsoft ODBC driver 17 from
191194

192195
```bash
193196
#Download the desired package(s)
194-
curl -O https://download.microsoft.com/download/e/4/e/e4e67866-dffd-428c-aac7-8d28ddafb39b/msodbcsql17_17.10.4.1-1_amd64.apk
197+
curl -O https://download.microsoft.com/download/e/4/e/e4e67866-dffd-428c-aac7-8d28ddafb39b/msodbcsql17_17.10.5.1-1_amd64.apk
195198
curl -O https://download.microsoft.com/download/e/4/e/e4e67866-dffd-428c-aac7-8d28ddafb39b/mssql-tools_17.10.1.1-1_amd64.apk
196199

197200
#(Optional) Verify signature, if 'gpg' is missing install it using 'apk add gnupg':
198-
curl -O https://download.microsoft.com/download/e/4/e/e4e67866-dffd-428c-aac7-8d28ddafb39b/msodbcsql17_17.10.4.1-1_amd64.sig
201+
curl -O https://download.microsoft.com/download/e/4/e/e4e67866-dffd-428c-aac7-8d28ddafb39b/msodbcsql17_17.10.5.1-1_amd64.sig
199202
curl -O https://download.microsoft.com/download/e/4/e/e4e67866-dffd-428c-aac7-8d28ddafb39b/mssql-tools_17.10.1.1-1_amd64.sig
200203

201204
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --import -
202-
gpg --verify msodbcsql17_17.10.4.1-1_amd64.sig msodbcsql17_17.10.4.1-1_amd64.apk
205+
gpg --verify msodbcsql17_17.10.5.1-1_amd64.sig msodbcsql17_17.10.5.1-1_amd64.apk
203206
gpg --verify mssql-tools_17.10.1.1-1_amd64.sig mssql-tools_17.10.1.1-1_amd64.apk
204207

205208
#Install the package(s)
206-
sudo apk add --allow-untrusted msodbcsql17_17.10.4.1-1_amd64.apk
209+
sudo apk add --allow-untrusted msodbcsql17_17.10.5.1-1_amd64.apk
207210
sudo apk add --allow-untrusted mssql-tools_17.10.1.1-1_amd64.apk
208211
```
209212

@@ -227,6 +230,9 @@ curl https://packages.microsoft.com/config/debian/10/prod.list | sudo tee /etc/a
227230
#Debian 11
228231
curl https://packages.microsoft.com/config/debian/11/prod.list | sudo tee /etc/apt/sources.list.d/mssql-release.list
229232

233+
#Debian 12
234+
curl https://packages.microsoft.com/config/debian/12/prod.list | sudo tee /etc/apt/sources.list.d/mssql-release.list
235+
230236
sudo apt-get update
231237
sudo ACCEPT_EULA=Y apt-get install -y msodbcsql17
232238
# optional: for bcp and sqlcmd

docs/connect/odbc/linux-mac/release-notes-odbc-sql-server-linux-mac.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: "Learn what's new and changed in released versions of the Microsoft
44
author: v-chojas
55
ms.author: v-chojas
66
ms.reviewer: v-davidengel
7-
ms.date: 07/31/2023
7+
ms.date: 10/10/2023
88
ms.service: sql
99
ms.subservice: connectivity
1010
ms.topic: conceptual
@@ -28,6 +28,22 @@ Thank you.
2828
GeneMi. 2019/04/03.
2929
-->
3030

31+
## 18.3.2, October 2023
32+
33+
| New item | Details |
34+
| :------- | :------ |
35+
| New distribution supported. | Debian 12 |
36+
| Bug fixes. | [Bug fixes](../bug-fixes.md). |
37+
38+
## 17.10.5, October 2023
39+
40+
| New item | Details |
41+
| :------- | :------ |
42+
| New distribution supported. | Debian 12 |
43+
| Improved Performance | More efficient packet buffer memory allocation |
44+
| New Managed Identity (MSI) Authentication Support | Support for MSI authentication for Azure Arc and Azure Cloud Shell and updated to a newer Azure App Service API version |
45+
| Bug fixes. | [Bug fixes](../bug-fixes.md). |
46+
3147
## 18.3.1, July 2023
3248

3349
| New item | Details |

docs/connect/odbc/windows/release-notes-odbc-sql-server-windows.md

Lines changed: 39 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: This release notes article describes the changes in each release of
44
author: v-chojas
55
ms.author: v-chojas
66
ms.reviewer: v-davidengel
7-
ms.date: 06/15/2023
7+
ms.date: 10/10/2023
88
ms.service: sql
99
ms.subservice: connectivity
1010
ms.topic: conceptual
@@ -13,6 +13,44 @@ ms.topic: conceptual
1313

1414
This release notes article describes what's new for the Microsoft ODBC driver for SQL Server on Windows.
1515

16+
## 18.3.2
17+
18+
Version number: 18.3.2.1
19+
Released: October 10, 2023
20+
21+
:::image type="icon" source="../../../includes/media/download.svg" border="false"::: [Download x64 installer](https://go.microsoft.com/fwlink/?linkid=2249006)
22+
:::image type="icon" source="../../../includes/media/download.svg" border="false"::: [Download x86 installer](https://go.microsoft.com/fwlink/?linkid=2249005)
23+
:::image type="icon" source="../../../includes/media/download.svg" border="false"::: [Download ARM64 installer](https://go.microsoft.com/fwlink/?linkid=2248720)
24+
25+
If you need to download the installer in a language other than the one detected for you, you can use these direct links.
26+
For the x64 driver: [Chinese (Simplified)](https://go.microsoft.com/fwlink/?linkid=2249006&clcid=0x804) | [Chinese (Traditional)](https://go.microsoft.com/fwlink/?linkid=2249006&clcid=0x404) | [English (United States)](https://go.microsoft.com/fwlink/?linkid=2249006&clcid=0x409) | [French](https://go.microsoft.com/fwlink/?linkid=2249006&clcid=0x40c) | [German](https://go.microsoft.com/fwlink/?linkid=2249006&clcid=0x407) | [Italian](https://go.microsoft.com/fwlink/?linkid=2249006&clcid=0x410) | [Japanese](https://go.microsoft.com/fwlink/?linkid=2249006&clcid=0x411) | [Korean](https://go.microsoft.com/fwlink/?linkid=2249006&clcid=0x412) | [Portuguese (Brazil)](https://go.microsoft.com/fwlink/?linkid=2249006&clcid=0x416) | [Russian](https://go.microsoft.com/fwlink/?linkid=2249006&clcid=0x419) | [Spanish](https://go.microsoft.com/fwlink/?linkid=2249006&clcid=0x40a)
27+
For the x86 driver: [Chinese (Simplified)](https://go.microsoft.com/fwlink/?linkid=2249005&clcid=0x804) | [Chinese (Traditional)](https://go.microsoft.com/fwlink/?linkid=2249005&clcid=0x404) | [English (United States)](https://go.microsoft.com/fwlink/?linkid=2249005&clcid=0x409) | [French](https://go.microsoft.com/fwlink/?linkid=2249005&clcid=0x40c) | [German](https://go.microsoft.com/fwlink/?linkid=2249005&clcid=0x407) | [Italian](https://go.microsoft.com/fwlink/?linkid=2249005&clcid=0x410) | [Japanese](https://go.microsoft.com/fwlink/?linkid=2249005&clcid=0x411) | [Korean](https://go.microsoft.com/fwlink/?linkid=2249005&clcid=0x412) | [Portuguese (Brazil)](https://go.microsoft.com/fwlink/?linkid=2249005&clcid=0x416) | [Russian](https://go.microsoft.com/fwlink/?linkid=2249005&clcid=0x419) | [Spanish](https://go.microsoft.com/fwlink/?linkid=2249005&clcid=0x40a)
28+
For the ARM64 driver: [Chinese (Simplified)](https://go.microsoft.com/fwlink/?linkid=2248720&clcid=0x804) | [Chinese (Traditional)](https://go.microsoft.com/fwlink/?linkid=2248720&clcid=0x404) | [English (United States)](https://go.microsoft.com/fwlink/?linkid=2248720&clcid=0x409) | [French](https://go.microsoft.com/fwlink/?linkid=2248720&clcid=0x40c) | [German](https://go.microsoft.com/fwlink/?linkid=2248720&clcid=0x407) | [Italian](https://go.microsoft.com/fwlink/?linkid=2248720&clcid=0x410) | [Japanese](https://go.microsoft.com/fwlink/?linkid=2248720&clcid=0x411) | [Korean](https://go.microsoft.com/fwlink/?linkid=2248720&clcid=0x412) | [Portuguese (Brazil)](https://go.microsoft.com/fwlink/?linkid=2248720&clcid=0x416) | [Russian](https://go.microsoft.com/fwlink/?linkid=2248720&clcid=0x419) | [Spanish](https://go.microsoft.com/fwlink/?linkid=2248720&clcid=0x40a)
29+
30+
| Feature added | Details |
31+
| :------- | :------ |
32+
| Bug fixes. | [Bug fixes](../bug-fixes.md). |
33+
34+
## 17.10.5
35+
36+
:::image type="icon" source="../../../includes/media/download.svg" border="false"::: [Download x64 installer](https://go.microsoft.com/fwlink/?linkid=2249004)
37+
:::image type="icon" source="../../../includes/media/download.svg" border="false"::: [Download x86 installer](https://go.microsoft.com/fwlink/?linkid=2248909)
38+
39+
Version number: 17.10.5.1
40+
Released: October 10, 2023
41+
42+
If you need to download the installer in a language other than the one detected for you, you can use these direct links.
43+
For the x64 driver: [Chinese (Simplified)](https://go.microsoft.com/fwlink/?linkid=2249004&clcid=0x804) | [Chinese (Traditional)](https://go.microsoft.com/fwlink/?linkid=2249004&clcid=0x404) | [English (United States)](https://go.microsoft.com/fwlink/?linkid=2249004&clcid=0x409) | [French](https://go.microsoft.com/fwlink/?linkid=2249004&clcid=0x40c) | [German](https://go.microsoft.com/fwlink/?linkid=2249004&clcid=0x407) | [Italian](https://go.microsoft.com/fwlink/?linkid=2249004&clcid=0x410) | [Japanese](https://go.microsoft.com/fwlink/?linkid=2249004&clcid=0x411) | [Korean](https://go.microsoft.com/fwlink/?linkid=2249004&clcid=0x412) | [Portuguese (Brazil)](https://go.microsoft.com/fwlink/?linkid=2249004&clcid=0x416) | [Russian](https://go.microsoft.com/fwlink/?linkid=2249004&clcid=0x419) | [Spanish](https://go.microsoft.com/fwlink/?linkid=2249004&clcid=0x40a)
44+
For the x86 driver: [Chinese (Simplified)](https://go.microsoft.com/fwlink/?linkid=2248909&clcid=0x804) | [Chinese (Traditional)](https://go.microsoft.com/fwlink/?linkid=2248909&clcid=0x404) | [English (United States)](https://go.microsoft.com/fwlink/?linkid=2248909&clcid=0x409) | [French](https://go.microsoft.com/fwlink/?linkid=2248909&clcid=0x40c) | [German](https://go.microsoft.com/fwlink/?linkid=2248909&clcid=0x407) | [Italian](https://go.microsoft.com/fwlink/?linkid=2248909&clcid=0x410) | [Japanese](https://go.microsoft.com/fwlink/?linkid=2248909&clcid=0x411) | [Korean](https://go.microsoft.com/fwlink/?linkid=2248909&clcid=0x412) | [Portuguese (Brazil)](https://go.microsoft.com/fwlink/?linkid=2248909&clcid=0x416) | [Russian](https://go.microsoft.com/fwlink/?linkid=2248909&clcid=0x419) | [Spanish](https://go.microsoft.com/fwlink/?linkid=2248909&clcid=0x40a)
45+
46+
| Feature added | Details |
47+
| :------- | :------ |
48+
| Improved Performance | More efficient packet buffer memory allocation |
49+
| New Managed Identity (MSI) Authentication Support | Support for MSI authentication for Azure Arc and Azure Cloud Shell and updated to a newer Azure App Service API version |
50+
| Bug fixes. | [Bug fixes](../bug-fixes.md). |
51+
52+
## Previous Releases
53+
1654
## 18.3.1
1755

1856
Version number: 18.3.1.1
@@ -67,8 +105,6 @@ For the x86 driver: [Chinese (Simplified)](https://go.microsoft.com/fwlink/?link
67105
| :------- | :------ |
68106
| Bug fixes. | [Bug fixes](../bug-fixes.md). |
69107

70-
## Previous Releases
71-
72108
## 18.2
73109

74110
:::image type="icon" source="../../../includes/media/download.svg" border="false"::: [Download x64 installer](https://go.microsoft.com/fwlink/?linkid=2223270)

0 commit comments

Comments
 (0)