Browse Source

Upgrade to SQL Server 2022-latest.

See #1768
pull/1794/head
Mark Paluch 2 years ago
parent
commit
967f0f9179
No known key found for this signature in database
GPG Key ID: 55BC6374BAA9D973
  1. 6
      ci/accept-third-party-license.sh
  2. 2
      spring-data-jdbc/README.adoc
  3. 2
      spring-data-jdbc/src/test/java/org/springframework/data/jdbc/testing/MsSqlDataSourceConfiguration.java

6
ci/accept-third-party-license.sh

@ -1,10 +1,9 @@ @@ -1,10 +1,9 @@
#!/bin/sh
{
echo "mcr.microsoft.com/mssql/server:2022-CU5-ubuntu-20.04"
echo "mcr.microsoft.com/mssql/server:2022-latest"
echo "ibmcom/db2:11.5.7.0a"
echo "harbor-repo.vmware.com/mcr-proxy-cache/mssql/server:2019-CU16-ubuntu-20.04"
echo "harbor-repo.vmware.com/mcr-proxy-cache/mssql/server:2022-CU5-ubuntu-20.04"
echo "harbor-repo.vmware.com/mcr-proxy-cache/mssql/server:2022-latest"
echo "harbor-repo.vmware.com/dockerhub-proxy-cache/ibmcom/db2:11.5.7.0a"
} > spring-data-jdbc/src/test/resources/container-license-acceptance.txt
@ -12,6 +11,5 @@ @@ -12,6 +11,5 @@
echo "mcr.microsoft.com/mssql/server:2022-latest"
echo "ibmcom/db2:11.5.7.0a"
echo "harbor-repo.vmware.com/mcr-proxy-cache/mssql/server:2022-latest"
echo "harbor-repo.vmware.com/mcr-proxy-cache/mssql/server:2022-CU5-ubuntu-20.04"
echo "harbor-repo.vmware.com/dockerhub-proxy-cache/ibmcom/db2:11.5.7.0a"
} > spring-data-r2dbc/src/test/resources/container-license-acceptance.txt

2
spring-data-jdbc/README.adoc

@ -69,7 +69,7 @@ In order to accept the EULA, please add a file named `container-license-acceptan @@ -69,7 +69,7 @@ In order to accept the EULA, please add a file named `container-license-acceptan
At the time of this writing this would be
```
mcr.microsoft.com/mssql/server:2022-CU5-ubuntu-20.04
mcr.microsoft.com/mssql/server:2022-latest
ibmcom/db2:11.5.7.0a
```

2
spring-data-jdbc/src/test/java/org/springframework/data/jdbc/testing/MsSqlDataSourceConfiguration.java

@ -38,7 +38,7 @@ import com.microsoft.sqlserver.jdbc.SQLServerDataSource; @@ -38,7 +38,7 @@ import com.microsoft.sqlserver.jdbc.SQLServerDataSource;
@ConditionalOnDatabase(DatabaseType.SQL_SERVER)
public class MsSqlDataSourceConfiguration extends DataSourceConfiguration {
public static final String MS_SQL_SERVER_VERSION = "mcr.microsoft.com/mssql/server:2022-CU5-ubuntu-20.04";
public static final String MS_SQL_SERVER_VERSION = "mcr.microsoft.com/mssql/server:2022-latest";
private static MSSQLServerContainer<?> MSSQL_CONTAINER;
public MsSqlDataSourceConfiguration(TestClass testClass, Environment environment) {

Loading…
Cancel
Save