Skip to content

Commit bda01d6

Browse files
authored
Updated files for preview release (#2142)
1 parent 533c2c0 commit bda01d6

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55

6+
## [12.3.1] Preview Release
7+
### Added
8+
- Added a case to throw XAER_RMFAIL on connection reset for XA transactions [2118](https://github.com/microsoft/mssql-jdbc/pull/2118)
9+
- Added support for Azure Active Directory Service Principal Certificate Authentication [2128](https://github.com/microsoft/mssql-jdbc/pull/2128)
10+
### Changed
11+
- Improved performance of building parameter type definitions [1938](https://github.com/microsoft/mssql-jdbc/pull/1938)
12+
- Removed check condition that had no effect [2129](https://github.com/microsoft/mssql-jdbc/pull/2129)
13+
- Updated azure-security-keyvault-keys, azure-identity, gson and h2 library versions [2133](https://github.com/microsoft/mssql-jdbc/pull/2133)
14+
- Changed serverName sent in LOGIN packet to include instanceName [2140](https://github.com/microsoft/mssql-jdbc/pull/2140)
15+
### Fixed issues
16+
- Resolved high thread count when using findSocketUsingThreading [2104](https://github.com/microsoft/mssql-jdbc/pull/2104)
17+
- Corrected Activity ID behavior to stay the same for the life of the process, always send Activity ID in PRELOGIN, increment sequence for each new connection and send a unique client ID that persists for duration of process [2136](https://github.com/microsoft/mssql-jdbc/pull/2136)
18+
619
## [12.3.0] Preview Release
720
### Added
821
- Added additional logging info to help debug [2118](https://github.com/microsoft/mssql-jdbc/pull/2118)

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
apply plugin: 'java'
1313

14-
version = '12.3.1-SNAPSHOT'
14+
version = '12.3.1'
1515
def jreVersion = ""
1616
def testOutputDir = file("build/classes/java/test")
1717
def archivesBaseName = 'mssql-jdbc'

mssql-jdbc_auth_LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
MICROSOFT SOFTWARE LICENSE TERMS
2-
MICROSOFT JDBC DRIVER 12.3.0 FOR SQL SERVER
2+
MICROSOFT JDBC DRIVER 12.3.1 FOR SQL SERVER
33

44
These license terms are an agreement between you and Microsoft Corporation (or one of its affiliates). They apply to the software named above and any Microsoft services or software updates (except to the extent such services or updates are accompanied by new or additional terms, in which case those different terms apply prospectively and do not alter your or Microsoft’s rights relating to pre-updated software or services). IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS.
55

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>com.microsoft.sqlserver</groupId>
77
<artifactId>mssql-jdbc</artifactId>
8-
<version>12.3.1-SNAPSHOT</version>
8+
<version>12.3.1</version>
99
<packaging>jar</packaging>
1010
<name>Microsoft JDBC Driver for SQL Server</name>
1111
<description>

0 commit comments

Comments
 (0)