]> source.dussan.org Git - sonarqube.git/commitdiff
Dependency upgrade (minor): com.microsoft.sqlserver:mssql-jdbc from 11.2.0.jre11...
authorDimitris Kavvathas <dimitris.kavvathas@sonarsource.com>
Tue, 18 Oct 2022 08:56:07 +0000 (10:56 +0200)
committersonartech <sonartech@sonarsource.com>
Thu, 20 Oct 2022 20:03:02 +0000 (20:03 +0000)
build.gradle
server/sonar-docs/src/pages/setup/install-server.md
server/sonar-docs/src/pages/setup/sonar-properties.md
sonar-application/src/main/assembly/conf/sonar.properties

index a211da46c3c038e9710671f6ac516165e35267fe..09f59e698ef51058dddab119382ad051f33317bb 100644 (file)
@@ -252,7 +252,7 @@ subprojects {
       }
       dependency 'com.hazelcast:hazelcast-kubernetes:2.2.3'
       // Documentation must be updated if mssql-jdbc is updated: https://github.com/SonarSource/sonarqube/commit/03e4773ebf6cba854cdcf57a600095f65f4f53e7
-      dependency('com.microsoft.sqlserver:mssql-jdbc:11.2.0.jre11') {
+      dependency('com.microsoft.sqlserver:mssql-jdbc:11.2.1.jre11') {
         exclude 'com.fasterxml.jackson.core:jackson-databind'
       }
       dependency 'com.oracle.database.jdbc:ojdbc8:21.6.0.0.1'
index 5a70208e21e711b8cd3703b0b02913fc41c2c2b8..92381119c7a9d66c049107a3fbc2e9a56400edb6 100644 (file)
@@ -63,7 +63,7 @@ Create an empty schema and a `sonarqube` user. Grant this `sonarqube` user permi
 |
 |To use integrated security: 
 |
-|1. Download the [Microsoft SQL JDBC Auth 11.2.0 package](https://github.com/microsoft/mssql-jdbc/releases/download/v11.2.0/mssql-jdbc_auth.zip) and copy `mssql-jdbc_auth-11.2.0.x64.dll` to any folder in your path. 
+|1. Download the [Microsoft SQL JDBC Auth 11.2.1 package](https://github.com/microsoft/mssql-jdbc/releases/download/v11.2.1/mssql-jdbc_auth.zip) and copy `mssql-jdbc_auth-11.2.1.x64.dll` to any folder in your path. 
 |
 |2. _If you're running SonarQube as a Windows service_, make sure the Windows account under which the service is running has permission to connect your SQL server. The account should have `db_owner` database role membership. 
 |
index f39a8a48963f4e93cff38612f28d1ad828545d1c..e98e179aa1ae879707fa3c156ff1a06e441d3cee 100644 (file)
@@ -37,7 +37,7 @@ By default the schema named "public" is used. It can be overridden with the para
 **`SONAR_JDBC_URL=jdbc:sqlserver://localhost;databaseName=sonar;integratedSecurity=true`**  
 A database named sonar must exist and its collation must be case-sensitive (CS) and accent-sensitive (AS). Use this connection string if you want to use integrated security with Microsoft Sql Server. Do not set the `SONAR_JDBC_USERNAME` or `SONAR_JDBC_PASSWORD` property if you are using Integrated Security. 
 
-For Integrated Security to work, you have to download the Microsoft SQL JDBC Auth 11.2.0 package [here](https://github.com/microsoft/mssql-jdbc/releases/download/v11.2.0/mssql-jdbc_auth.zip) and copy `mssql-jdbc_auth-11.2.0.x64.dll` to your path.
+For Integrated Security to work, you have to download the Microsoft SQL JDBC Auth 11.2.1 package [here](https://github.com/microsoft/mssql-jdbc/releases/download/v11.2.1/mssql-jdbc_auth.zip) and copy `mssql-jdbc_auth-11.2.1.x64.dll` to your path.
 
 **`SONAR_JDBC_URL=jdbc:sqlserver://localhost;databaseName=sonar`**  
 Use this connection string if you want to use SQL Auth while connecting to MS Sql Server. Set the `SONAR_JDBC_USERNAME` and `SONAR_JDBC_PASSWORD` appropriately.
index 245602296827d26a3ef3efe1bb55c47260847027..779485312e17ccb41640b7fcf9f52c84cb5aef1e 100644 (file)
@@ -40,9 +40,9 @@
 # A database named sonar must exist and its collation must be case-sensitive (CS) and accent-sensitive (AS)
 # Use the following connection string if you want to use integrated security with Microsoft Sql Server
 # Do not set sonar.jdbc.username or sonar.jdbc.password property if you are using Integrated Security
-# For Integrated Security to work, you have to download the Microsoft SQL JDBC Auth 11.2.0 package from
-# https://github.com/microsoft/mssql-jdbc/releases/download/v11.2.0/mssql-jdbc_auth.zip
-# and 'mssql-jdbc_auth-11.2.0.x64.dll' to your path.
+# For Integrated Security to work, you have to download the Microsoft SQL JDBC Auth 11.2.1 package from
+# https://github.com/microsoft/mssql-jdbc/releases/download/v11.2.1/mssql-jdbc_auth.zip
+# and 'mssql-jdbc_auth-11.2.1.x64.dll' to your path.
 #sonar.jdbc.url=jdbc:sqlserver://localhost;databaseName=sonar;integratedSecurity=true
 
 # Use the following connection string if you want to use SQL Auth while connecting to MS Sql Server.