File tree 14 files changed +28
-28
lines changed
findbyusername/src/integration-test/java/sample
redis/src/integration-test/java/sample
redis-json/src/integration-test/java/sample
webflux/src/integration-test/java/sample
websocket/src/integration-test/java/sample
custom-cookie/src/main/java/sample
redis/src/main/java/sample
integration-test/java/rest
security/src/main/java/sample
xml/redis/src/main/java/sample
spring-session-data-redis/src/integration-test/java/org/springframework/session/data/redis
spring-session-jdbc/src/integration-test/java/org/springframework/session/jdbc 14 files changed +28
-28
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2014-2018 the original author or authors.
2
+ * Copyright 2014-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
46
46
@ SpringBootTest (webEnvironment = WebEnvironment .MOCK )
47
47
public class FindByUsernameTests {
48
48
49
- private static final String DOCKER_IMAGE = "redis:5.0.1 " ;
49
+ private static final String DOCKER_IMAGE = "redis:5.0.3 " ;
50
50
51
51
@ Autowired
52
52
private MockMvc mockMvc ;
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2014-2018 the original author or authors.
2
+ * Copyright 2014-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
50
50
@ AutoConfigureMockMvc
51
51
public class HttpRedisJsonTest {
52
52
53
- private static final String DOCKER_IMAGE = "redis:5.0.1 " ;
53
+ private static final String DOCKER_IMAGE = "redis:5.0.3 " ;
54
54
55
55
@ Autowired
56
56
private MockMvc mockMvc ;
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2014-2018 the original author or authors.
2
+ * Copyright 2014-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
39
39
@ SpringBootTest
40
40
public class RedisSerializerTest {
41
41
42
- private static final String DOCKER_IMAGE = "redis:5.0.1 " ;
42
+ private static final String DOCKER_IMAGE = "redis:5.0.3 " ;
43
43
44
44
@ SpringSessionRedisOperations
45
45
private RedisTemplate <Object , Object > sessionRedisTemplate ;
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2014-2018 the original author or authors.
2
+ * Copyright 2014-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
45
45
@ SpringBootTest (webEnvironment = WebEnvironment .MOCK )
46
46
public class BootTests {
47
47
48
- private static final String DOCKER_IMAGE = "redis:5.0.1 " ;
48
+ private static final String DOCKER_IMAGE = "redis:5.0.3 " ;
49
49
50
50
@ Autowired
51
51
private MockMvc mockMvc ;
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2014-2018 the original author or authors.
2
+ * Copyright 2014-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
47
47
@ SpringBootTest (webEnvironment = WebEnvironment .RANDOM_PORT )
48
48
public class AttributeTests {
49
49
50
- private static final String DOCKER_IMAGE = "redis:5.0.1 " ;
50
+ private static final String DOCKER_IMAGE = "redis:5.0.3 " ;
51
51
52
52
@ LocalServerPort
53
53
private int port ;
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2014-2018 the original author or authors.
2
+ * Copyright 2014-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
52
52
@ SpringBootTest (webEnvironment = WebEnvironment .RANDOM_PORT )
53
53
public class ApplicationTests {
54
54
55
- private static final String DOCKER_IMAGE = "redis:5.0.1 " ;
55
+ private static final String DOCKER_IMAGE = "redis:5.0.3 " ;
56
56
57
57
@ Value ("${local.server.port}" )
58
58
private String port ;
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2014-2018 the original author or authors.
2
+ * Copyright 2014-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
28
28
@ Profile ("embedded-redis" )
29
29
public class EmbeddedRedisConfig {
30
30
31
- private static final String DOCKER_IMAGE = "redis:5.0.1 " ;
31
+ private static final String DOCKER_IMAGE = "redis:5.0.3 " ;
32
32
33
33
@ Bean
34
34
public GenericContainer redisContainer () {
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2014-2018 the original author or authors.
2
+ * Copyright 2014-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
28
28
@ Profile ("embedded-redis" )
29
29
public class EmbeddedRedisConfig {
30
30
31
- private static final String DOCKER_IMAGE = "redis:5.0.1 " ;
31
+ private static final String DOCKER_IMAGE = "redis:5.0.3 " ;
32
32
33
33
@ Bean
34
34
public GenericContainer redisContainer () {
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2014-2018 the original author or authors.
2
+ * Copyright 2014-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
54
54
@ WebAppConfiguration
55
55
public class RestMockMvcTests {
56
56
57
- private static final String DOCKER_IMAGE = "redis:5.0.1 " ;
57
+ private static final String DOCKER_IMAGE = "redis:5.0.3 " ;
58
58
59
59
@ Autowired
60
60
private SessionRepositoryFilter <? extends Session > sessionRepositoryFilter ;
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2014-2018 the original author or authors.
2
+ * Copyright 2014-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
28
28
@ Profile ("embedded-redis" )
29
29
public class EmbeddedRedisConfig {
30
30
31
- private static final String DOCKER_IMAGE = "redis:5.0.1 " ;
31
+ private static final String DOCKER_IMAGE = "redis:5.0.3 " ;
32
32
33
33
@ Bean
34
34
public GenericContainer redisContainer () {
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2014-2018 the original author or authors.
2
+ * Copyright 2014-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
28
28
@ Profile ("embedded-redis" )
29
29
public class EmbeddedRedisConfig {
30
30
31
- private static final String DOCKER_IMAGE = "redis:5.0.1 " ;
31
+ private static final String DOCKER_IMAGE = "redis:5.0.3 " ;
32
32
33
33
@ Bean
34
34
public GenericContainer redisContainer () {
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2014-2018 the original author or authors.
2
+ * Copyright 2014-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
28
28
@ Profile ("embedded-redis" )
29
29
public class EmbeddedRedisConfig {
30
30
31
- private static final String DOCKER_IMAGE = "redis:5.0.1 " ;
31
+ private static final String DOCKER_IMAGE = "redis:5.0.3 " ;
32
32
33
33
@ Bean
34
34
public GenericContainer redisContainer () {
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2014-2018 the original author or authors.
2
+ * Copyright 2014-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
29
29
*/
30
30
public abstract class AbstractRedisITests {
31
31
32
- private static final String DOCKER_IMAGE = "redis:5.0.1 " ;
32
+ private static final String DOCKER_IMAGE = "redis:5.0.3 " ;
33
33
34
34
protected static class BaseConfig {
35
35
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2014-2018 the original author or authors.
2
+ * Copyright 2014-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -88,7 +88,7 @@ protected void configure() {
88
88
private static class MariaDb10Container extends MariaDBContainer <MariaDb10Container > {
89
89
90
90
MariaDb10Container () {
91
- super ("mariadb:10.3.11 " );
91
+ super ("mariadb:10.3.12 " );
92
92
}
93
93
94
94
@ Override
You can’t perform that action at this time.
0 commit comments