Skip to content

Commit 64e6ee5

Browse files
tkycDavid-Engel
andauthored
12.6.1 version bump (#2331)
* 12.6.1 version bump * Update src/samples/dataclassification/pom.xml Co-authored-by: David Engel <[email protected]> --------- Co-authored-by: David Engel <[email protected]>
1 parent e2685b4 commit 64e6ee5

File tree

15 files changed

+22
-18
lines changed

15 files changed

+22
-18
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ 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.6.1] Hotfix & Stable Release
7+
### Fixed issues
8+
- Fixed 'EXEC' escape syntax for CallableStatements. 'EXEC' keyword can be used to execute stored procedures. [#2329](https://github.com/microsoft/mssql-jdbc/pull/2329)
9+
610
## [12.6.0] Stable Release
711
### Changed
812
- Adjusted PreparedStatement cache, so it's cleared before every execute [#2272](https://github.com/microsoft/mssql-jdbc/pull/2272)

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ We're now on the Maven Central Repository. Add the following to your POM file to
8181
<dependency>
8282
<groupId>com.microsoft.sqlserver</groupId>
8383
<artifactId>mssql-jdbc</artifactId>
84-
<version>12.6.0.jre11</version>
84+
<version>12.6.1.jre11</version>
8585
</dependency>
8686
```
8787
The driver can be downloaded from [Microsoft](https://aka.ms/downloadmssqljdbc). For driver version 12.1.0 and greater, please use the jre11 version when using Java 11 or greater, and the jre8 version when using Java 8.
@@ -92,7 +92,7 @@ To get the latest version of the driver, add the following to your POM file:
9292
<dependency>
9393
<groupId>com.microsoft.sqlserver</groupId>
9494
<artifactId>mssql-jdbc</artifactId>
95-
<version>12.6.0.jre11</version>
95+
<version>12.6.1.jre11</version>
9696
</dependency>
9797
```
9898

@@ -127,7 +127,7 @@ Projects that require either of the two features need to explicitly declare the
127127
<dependency>
128128
<groupId>com.microsoft.sqlserver</groupId>
129129
<artifactId>mssql-jdbc</artifactId>
130-
<version>12.6.0.jre11</version>
130+
<version>12.6.1.jre11</version>
131131
<scope>compile</scope>
132132
</dependency>
133133

@@ -145,7 +145,7 @@ Projects that require either of the two features need to explicitly declare the
145145
<dependency>
146146
<groupId>com.microsoft.sqlserver</groupId>
147147
<artifactId>mssql-jdbc</artifactId>
148-
<version>12.6.0.jre11</version>
148+
<version>12.6.1.jre11</version>
149149
<scope>compile</scope>
150150
</dependency>
151151

@@ -172,7 +172,7 @@ When setting 'useFmtOnly' property to 'true' for establishing a connection or cr
172172
<dependency>
173173
<groupId>com.microsoft.sqlserver</groupId>
174174
<artifactId>mssql-jdbc</artifactId>
175-
<version>12.6.0.jre11</version>
175+
<version>12.6.1.jre11</version>
176176
</dependency>
177177

178178
<dependency>

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
apply plugin: 'java'
1313

14-
version = '12.6.0'
14+
version = '12.6.1'
1515
def releaseExt = ''
1616
def jreVersion = ""
1717
def testOutputDir = file("build/classes/java/test")

mssql-jdbc_auth_LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
MICROSOFT SOFTWARE LICENSE TERMS
2-
MICROSOFT JDBC DRIVER 12.6.0 FOR SQL SERVER
2+
MICROSOFT JDBC DRIVER 12.6.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

Lines changed: 1 addition & 1 deletion
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.6.0</version>
8+
<version>12.6.1</version>
99
<packaging>jar</packaging>
1010
<name>Microsoft JDBC Driver for SQL Server</name>
1111
<description>

src/main/java/com/microsoft/sqlserver/jdbc/SQLJdbcVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
final class SQLJdbcVersion {
99
static final int MAJOR = 12;
1010
static final int MINOR = 6;
11-
static final int PATCH = 0;
11+
static final int PATCH = 1;
1212
static final int BUILD = 0;
1313
/*
1414
* Used to load mssql-jdbc_auth DLL.

src/samples/adaptive/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<dependency>
1616
<groupId>com.microsoft.sqlserver</groupId>
1717
<artifactId>mssql-jdbc</artifactId>
18-
<version>12.6.0.jre11</version>
18+
<version>12.6.1.jre11</version>
1919
</dependency>
2020
</dependencies>
2121
<profiles>

src/samples/alwaysencrypted/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<dependency>
1616
<groupId>com.microsoft.sqlserver</groupId>
1717
<artifactId>mssql-jdbc</artifactId>
18-
<version>12.6.0.jre11</version>
18+
<version>12.6.1.jre11</version>
1919
</dependency>
2020
</dependencies>
2121
<profiles>

src/samples/azureactivedirectoryauthentication/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<dependency>
1515
<groupId>com.microsoft.sqlserver</groupId>
1616
<artifactId>mssql-jdbc</artifactId>
17-
<version>12.6.0.jre11</version>
17+
<version>12.6.1.jre11</version>
1818
</dependency>
1919
</dependencies>
2020
<profiles>

src/samples/connections/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<dependency>
1515
<groupId>com.microsoft.sqlserver</groupId>
1616
<artifactId>mssql-jdbc</artifactId>
17-
<version>12.6.0.jre11</version>
17+
<version>12.6.1.jre11</version>
1818
</dependency>
1919
</dependencies>
2020
<profiles>

0 commit comments

Comments
 (0)