Skip to content

Commit 127e943

Browse files
authored
Release | Updates for 9.3.1-preview release (#1572)
Release | Updates for 9.3.1-preview release (#1572)
1 parent 0f3e0a1 commit 127e943

File tree

5 files changed

+15
-7
lines changed

5 files changed

+15
-7
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ 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+
## [9.3.1] Preview Release
7+
### Added
8+
- Added replication connection option [#1566](https://github.com/microsoft/mssql-jdbc/pull/1566)
9+
10+
### Fixed issues
11+
- Fixed an issue where `trustStorePassword` is null when using applicationIntent=ReadOnly [#1565](https://github.com/microsoft/mssql-jdbc/pull/1565)
12+
- Fixed an issue where redirected token contains named instance in servername [#1568](https://github.com/microsoft/mssql-jdbc/pull/1568)
13+
614
## [9.3.0] Preview Release
715
### Added
816
- Added Open Connection Retry feature [#1535](https://github.com/microsoft/mssql-jdbc/pull/1535)

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ To get the latest preview version of the driver, add the following to your POM f
9191
<dependency>
9292
<groupId>com.microsoft.sqlserver</groupId>
9393
<artifactId>mssql-jdbc</artifactId>
94-
<version>9.3.0.jre15-preview</version>
94+
<version>9.3.1.jre15-preview</version>
9595
</dependency>
9696
```
9797

@@ -126,7 +126,7 @@ Projects that require either of the two features need to explicitly declare the
126126
<dependency>
127127
<groupId>com.microsoft.sqlserver</groupId>
128128
<artifactId>mssql-jdbc</artifactId>
129-
<version>9.3.0.jre15-preview</version>
129+
<version>9.3.1.jre15-preview</version>
130130
<scope>compile</scope>
131131
</dependency>
132132

@@ -144,7 +144,7 @@ Projects that require either of the two features need to explicitly declare the
144144
<dependency>
145145
<groupId>com.microsoft.sqlserver</groupId>
146146
<artifactId>mssql-jdbc</artifactId>
147-
<version>9.3.0.jre15-preview</version>
147+
<version>9.3.1.jre15-preview</version>
148148
<scope>compile</scope>
149149
</dependency>
150150

@@ -171,7 +171,7 @@ When setting 'useFmtOnly' property to 'true' for establishing a connection or cr
171171
<dependency>
172172
<groupId>com.microsoft.sqlserver</groupId>
173173
<artifactId>mssql-jdbc</artifactId>
174-
<version>9.3.0.jre15-preview</version>
174+
<version>9.3.1.jre15-preview</version>
175175
</dependency>
176176

177177
<dependency>

build.gradle

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

1515
apply plugin: 'java'
1616

17-
version = '9.3.0'
17+
version = '9.3.1'
1818
def jreVersion = ""
1919
def testOutputDir = file("build/classes/java/test")
2020
def archivesBaseName = 'mssql-jdbc'

pom.xml

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

77
<groupId>com.microsoft.sqlserver</groupId>
88
<artifactId>mssql-jdbc</artifactId>
9-
<version>9.3.0</version>
9+
<version>9.3.1</version>
1010
<packaging>jar</packaging>
1111

1212
<name>Microsoft JDBC Driver for SQL Server</name>

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 = 9;
1010
static final int minor = 3;
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.

0 commit comments

Comments
 (0)