Skip to content

Commit

Permalink
pom, gradle and changelog update for preview release (#1952)
Browse files Browse the repository at this point in the history
* pom, gradle and changelog update for preview release

* Changelog update

* Changelog update
  • Loading branch information
tkyc authored Nov 3, 2022
1 parent 57ff2b0 commit 5fae35d
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 3 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,29 @@ All notable changes to this project will be documented in this file.

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

## [12.1.0] Stable Release
### Added
- Added support for access token callback [1940](https://github.com/microsoft/mssql-jdbc/pull/1940)
- Added support for DefaultAzureCredential [1936](https://github.com/microsoft/mssql-jdbc/pull/1936)
- Added support for Java 19 [1929](https://github.com/microsoft/mssql-jdbc/pull/1929)
### Changed
- Driver is Loom friendly [1931](https://github.com/microsoft/mssql-jdbc/pull/1931)
- Managed Identity authentication is achieved with Azure Identity instead [1936](https://github.com/microsoft/mssql-jdbc/pull/1936)
- Updated MSAL and jackson-databind versions [1947](https://github.com/microsoft/mssql-jdbc/pull/1947)
- Updated Azure-Identity version [1941](https://github.com/microsoft/mssql-jdbc/pull/1941)
- Made MSAL an optional dependency [1893](https://github.com/microsoft/mssql-jdbc/pull/1893)
- Added FINE logging for token expiry [1875](https://github.com/microsoft/mssql-jdbc/pull/1875)
- Upgraded junit jupiter [1895](https://github.com/microsoft/mssql-jdbc/pull/1895)
### Fixed issues
- Ensure that batchParamValues is cleared in all cases when executing a batch [1869](https://github.com/microsoft/mssql-jdbc/pull/1869)
- Fixed query cancellation bug [1897](https://github.com/microsoft/mssql-jdbc/pull/1897)
- Fixed callable statement index out of bounds error [1898](https://github.com/microsoft/mssql-jdbc/pull/1898)
- Fixed sonartype warnings [1950](https://github.com/microsoft/mssql-jdbc/pull/1950)
- Fixed check for DONE token when fetching result sets [1943](https://github.com/microsoft/mssql-jdbc/pull/1943)
- Fixed race condition in secure string utility [1948](https://github.com/microsoft/mssql-jdbc/pull/1948)
- Fixed attestation NONE protocol bug to work with all servers and enclave types [1942](https://github.com/microsoft/mssql-jdbc/pull/1942)
- Fixed signed byte comparison [1920](https://github.com/microsoft/mssql-jdbc/pull/1920)

## [11.2.0] Stable Release
### Added
- Added support for caching parameter metadata for Always Encrypted with secure enclaves [1866](https://github.com/microsoft/mssql-jdbc/pull/1866)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

apply plugin: 'java'

version = '12.1.0-SNAPSHOT'
version = '12.1.0'
def jreVersion = ""
def testOutputDir = file("build/classes/java/test")
def archivesBaseName = 'mssql-jdbc'
Expand Down
2 changes: 1 addition & 1 deletion mssql-jdbc_auth_LICENSE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MICROSOFT SOFTWARE LICENSE TERMS
MICROSOFT JDBC DRIVER 11.2.0 FOR SQL SERVER
MICROSOFT JDBC DRIVER 12.1.0 FOR SQL SERVER

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.

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<version>12.1.0-SNAPSHOT</version>
<version>12.1.0</version>
<packaging>jar</packaging>

<name>Microsoft JDBC Driver for SQL Server</name>
Expand Down

0 comments on commit 5fae35d

Please sign in to comment.