Skip to content

Commit 8cc96a0

Browse files
author
Robert Winkler
committed
Updated release notes for upcoming v0.14.0
1 parent 176f522 commit 8cc96a0

File tree

6 files changed

+28
-219
lines changed

6 files changed

+28
-219
lines changed

RELEASENOTES.adoc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,3 +197,16 @@ NOTE: Breaking changes:
197197
* Issue #349: Added Spring Boot 2 support for resilience4j-retry
198198
* Issue #351: Fixed that CircuitBreaker AutoTransitioner prevents JVM shutdown
199199
* Issue #359: Support for retryOnResult method and Completable, Maybe types missing
200+
* Updated Vavr from 0.9.2 to 0.10.0
201+
* Updated Spring 4 from 4.3.15.RELEASE to 4.3.22.RELEASE
202+
* Updated Spring Boot from 1.5.5.RELEASE to 1.5.19.RELEASE
203+
* Updated Spring Boot 2 from 2.0.2.RELEASE to 2.1.3.RELEASE
204+
* Updated Dropwizard Metrics from 3.2.5 to 3.2.6
205+
* Updated Ratpack from 1.5.4 to 1.6.0
206+
* Updated Micrometer from 1.0.5 to 1.1.3
207+
* Updated Prometheus Simple Client from 0.3.0 to 0.6.0
208+
* Updated Feign from 10.0.1 to 10.2.0
209+
* Updated Retrofit from 2.3.0 to 2.5.0
210+
* Updated Spring Reactor from 3.0.7.RELEASE to 3.2.6.RELEASE
211+
212+

libraries.gradle

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Allows centralized definition of the version of artifacts to
22
// use. In that respect it serves a role similar to <dependencyManagement> in Maven
33
ext {
4-
vavrVersion = '0.9.2'
4+
vavrVersion = '0.10.0'
55
rxJavaVersion = '2.2.7'
6-
reactorVersion = '3.0.7.RELEASE'
6+
reactorVersion = '3.2.6.RELEASE'
77
junitVersion = '4.12'
88
slf4jVersion = '1.7.24'
99
assertjVersion = '3.6.2'
@@ -12,20 +12,19 @@ ext {
1212
powermockVersion = '2.0.0-beta.5'
1313
jcacheVersion = '1.0.0'
1414
awaitilityVersion = '1.7.0'
15-
metricsVersion = '3.2.5'
15+
metricsVersion = '3.2.6'
1616
vertxVersion = '3.5.1'
1717
aspectjVersion = '1.8.13'
18-
spring4Version = '4.3.15.RELEASE'
19-
springBootVersion = '1.5.13.RELEASE'
20-
springBoot2Version = '2.0.2.RELEASE'
21-
ratpackVersion = '1.5.4'
18+
spring4Version = '4.3.22.RELEASE'
19+
springBootVersion = '1.5.19.RELEASE'
20+
springBoot2Version = '2.1.3.RELEASE'
21+
ratpackVersion = '1.6.0'
2222
spockVersion = '1.1-groovy-2.4-rc-4'
23-
retrofitVersion = '2.3.0'
24-
feignVersion = '10.0.1'
25-
prometheusSimpleClientVersion = '0.3.0'
26-
reactorVersion = '3.1.5.RELEASE'
23+
retrofitVersion = '2.5.0'
24+
feignVersion = '10.2.0'
25+
prometheusSimpleClientVersion = '0.6.0'
2726
reactiveStreamsVersion = '1.0.2'
28-
micrometerVersion = '1.0.5'
27+
micrometerVersion = '1.1.3'
2928
hibernateValidatorVersion = '6.0.9.Final'
3029

3130
libraries = [

resilience4j-spring-boot/src/main/java/io/github/resilience4j/retry/autoconfigure/RetryAutoConfiguration.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
import io.github.resilience4j.retry.AsyncRetryRegistry;
2525
import io.github.resilience4j.retry.Retry;
2626
import io.github.resilience4j.retry.RetryRegistry;
27+
import io.github.resilience4j.retry.configure.RetryConfiguration;
2728
import io.github.resilience4j.retry.monitoring.endpoint.RetryEndpoint;
2829

2930

@@ -34,7 +35,7 @@
3435
@Configuration
3536
@ConditionalOnClass(Retry.class)
3637
@EnableConfigurationProperties(RetryProperties.class)
37-
@Import(RetryConfigurationOnMissingBean.class)
38+
@Import(RetryConfiguration.class)
3839
public class RetryAutoConfiguration {
3940

4041
@Bean

resilience4j-spring-boot/src/main/java/io/github/resilience4j/retry/autoconfigure/RetryConfigurationOnMissingBean.java

Lines changed: 0 additions & 102 deletions
This file was deleted.

resilience4j-spring-boot2/src/main/java/io/github/resilience4j/retry/autoconfigure/RetryAutoConfiguration.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
import io.github.resilience4j.retry.AsyncRetryRegistry;
2828
import io.github.resilience4j.retry.Retry;
2929
import io.github.resilience4j.retry.RetryRegistry;
30+
import io.github.resilience4j.retry.configure.RetryConfiguration;
3031
import io.github.resilience4j.retry.event.RetryEvent;
3132
import io.github.resilience4j.retry.monitoring.endpoint.RetryEndpoint;
3233
import io.github.resilience4j.retry.monitoring.endpoint.RetryEventsEndpoint;
@@ -39,7 +40,7 @@
3940
@Configuration
4041
@ConditionalOnClass(Retry.class)
4142
@EnableConfigurationProperties(RetryProperties.class)
42-
@Import(RetryConfigurationOnMissingBean.class)
43+
@Import(RetryConfiguration.class)
4344
public class RetryAutoConfiguration {
4445
@Bean
4546
@ConditionalOnEnabledEndpoint

resilience4j-spring-boot2/src/main/java/io/github/resilience4j/retry/autoconfigure/RetryConfigurationOnMissingBean.java

Lines changed: 0 additions & 103 deletions
This file was deleted.

0 commit comments

Comments
 (0)