Skip to content

Commit

Permalink
fix(deps): update dependency io.smallrye:smallrye-fault-tolerance to …
Browse files Browse the repository at this point in the history
…v6.7.3 (#11421)

* fix(deps): update dependency io.smallrye:smallrye-fault-tolerance to v6.7.3

* remove CdiFaultToleranceSpi

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Sergio del Amo <[email protected]>
  • Loading branch information
renovate[bot] and sdelamo authored Jan 22, 2025
1 parent 33d6bec commit d3ae72c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ neo4j-java-driver = "5.17.0"
selenium = "4.27.0"
okio = "3.9.1"
slf4j = "2.0.16"
smallrye = "6.4.1"
smallrye = "6.7.3"
spock = "2.3-groovy-4.0"
spotbugs = "4.7.1"
systemlambda = "1.2.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package io.micronaut.inject.beanimport

import io.micronaut.annotation.processing.test.AbstractTypeElementSpec
import io.micronaut.context.ApplicationContext
import io.smallrye.faulttolerance.CdiFaultToleranceSpi
import io.smallrye.faulttolerance.CircuitBreakerMaintenanceImpl
import io.smallrye.faulttolerance.DefaultAsyncExecutorProvider
import io.smallrye.faulttolerance.DefaultExistingCircuitBreakerNames
Expand Down Expand Up @@ -54,9 +53,7 @@ class Application {}
expect:
context.containsBean(DefaultAsyncExecutorProvider)
context.containsBean(CircuitBreakerMaintenanceImpl)
context.containsBean(CdiFaultToleranceSpi.EagerDependencies)
context.containsBean(DefaultExistingCircuitBreakerNames)
context.containsBean(CdiFaultToleranceSpi.EagerDependencies)
context.containsBean(DefaultFallbackHandlerProvider)
context.getBeanDefinition(DefaultFallbackHandlerProvider)
.injectedFields.size() == 1
Expand All @@ -79,7 +76,6 @@ import io.smallrye.faulttolerance.*;
@io.micronaut.context.annotation.Import(classes={
DefaultAsyncExecutorProvider.class,
CircuitBreakerMaintenanceImpl.class,
CdiFaultToleranceSpi.EagerDependencies.class,
DefaultExistingCircuitBreakerNames.class,
DefaultFallbackHandlerProvider.class,
DefaultFaultToleranceOperationProvider.class,
Expand All @@ -91,7 +87,6 @@ class Application {}
expect:
context.containsBean(DefaultAsyncExecutorProvider)
context.containsBean(CircuitBreakerMaintenanceImpl)
context.containsBean(CdiFaultToleranceSpi.EagerDependencies)
context.containsBean(DefaultExistingCircuitBreakerNames)
context.containsBean(DefaultFallbackHandlerProvider)
context.getBeanDefinition(DefaultFallbackHandlerProvider)
Expand Down

0 comments on commit d3ae72c

Please sign in to comment.