Skip to content

Commit a4874da

Browse files
committed
Upgrade to SQL Server 2022-latest.
See #1768
1 parent c93c1d5 commit a4874da

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

ci/accept-third-party-license.sh

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
#!/bin/sh
22

33
{
4-
echo "mcr.microsoft.com/mssql/server:2022-CU5-ubuntu-20.04"
4+
echo "mcr.microsoft.com/mssql/server:2022-latest"
55
echo "ibmcom/db2:11.5.7.0a"
6-
echo "harbor-repo.vmware.com/mcr-proxy-cache/mssql/server:2019-CU16-ubuntu-20.04"
7-
echo "harbor-repo.vmware.com/mcr-proxy-cache/mssql/server:2022-CU5-ubuntu-20.04"
6+
echo "harbor-repo.vmware.com/mcr-proxy-cache/mssql/server:2022-latest"
87
echo "harbor-repo.vmware.com/dockerhub-proxy-cache/ibmcom/db2:11.5.7.0a"
98
} > spring-data-jdbc/src/test/resources/container-license-acceptance.txt
109

1110
{
1211
echo "mcr.microsoft.com/mssql/server:2022-latest"
1312
echo "ibmcom/db2:11.5.7.0a"
1413
echo "harbor-repo.vmware.com/mcr-proxy-cache/mssql/server:2022-latest"
15-
echo "harbor-repo.vmware.com/mcr-proxy-cache/mssql/server:2022-CU5-ubuntu-20.04"
1614
echo "harbor-repo.vmware.com/dockerhub-proxy-cache/ibmcom/db2:11.5.7.0a"
1715
} > spring-data-r2dbc/src/test/resources/container-license-acceptance.txt

spring-data-jdbc/README.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ In order to accept the EULA, please add a file named `container-license-acceptan
6969
At the time of this writing this would be
7070

7171
```
72-
mcr.microsoft.com/mssql/server:2022-CU5-ubuntu-20.04
72+
mcr.microsoft.com/mssql/server:2022-latest
7373
ibmcom/db2:11.5.7.0a
7474
```
7575

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
@ConditionalOnDatabase(DatabaseType.SQL_SERVER)
3939
public class MsSqlDataSourceConfiguration extends DataSourceConfiguration {
4040

41-
public static final String MS_SQL_SERVER_VERSION = "mcr.microsoft.com/mssql/server:2022-CU5-ubuntu-20.04";
41+
public static final String MS_SQL_SERVER_VERSION = "mcr.microsoft.com/mssql/server:2022-latest";
4242
private static MSSQLServerContainer<?> MSSQL_CONTAINER;
4343

4444
public MsSqlDataSourceConfiguration(TestClass testClass, Environment environment) {

0 commit comments

Comments
 (0)