TheRandomLabs / CurseAPI

A Java library for handling interactions with CurseForge.
MIT License
30 stars 3 forks source link

Bump resilience4jVersion from 1.2.0 to 1.3.0 #20

Closed dependabot-preview[bot] closed 4 years ago

dependabot-preview[bot] commented 4 years ago

Bumps resilience4jVersion from 1.2.0 to 1.3.0. Updates resilience4j-circuitbreaker from 1.2.0 to 1.3.0

Release notes

Sourced from resilience4j-circuitbreaker's releases.

Release v1.3.0

  • Issue #822: Fixed the case where resilience4j rateLimiter seems to ignore configuration
  • Issue #816: Fixed Reactor RetryOperator throws exception wrapped by RetryExceptionWrapper
  • Issue #806: Switched aggregated retry.calls metric to a counter from a gauage
  • Issue #803: Added new Circuit breaker state -> METRICS_ONLY
  • Issue #799: Fixed WritableStackTraceEnabled config setting in ThreadPool bulkhead configuration
  • Issue #775: Added Getter for RetryOnRetryEvent
  • Issue #769: Fixed Duplicated auto complete support in IDEA
  • Issue #765: Added support to use Retry with Feign client
  • Issue #751: Vavr upgrade to 0.10.2
  • Issue #718: Fixed blocking behavior in Reactor Retry Operator
  • Issue #711: Added support to use SpEL in resilienec4j spring annoations
  • Issue #751: Fixed Resilience4j Spring boot modules MetricsAutoConfiguration
  • Issue #565: Added ThreadLocal passing support to the Threadpool bulkhead implementation
  • Issue #430: Added TimeLimiter spring boot starter support
  • Issue #509: Added support to extend Micrometer tags
  • PR #831: non backward compatible API change in ThreadPoolBulkhead decorateRunnable(ThreadPoolBulkhead bulkhead, Runnable runnable) now return Supplier> instead of Runnable
Changelog

Sourced from resilience4j-circuitbreaker's changelog.

== Version 1.2.0

  • Issue #642: Added weight support in RateLimiter
  • Issue #659: Added support for Kotlin Flows
  • Issue #668: Added util class to determine whether Circuit Breaker permits calls
  • Issue #671: Allow configurable wait times for circuit breakers to be open as a function of # of close attempts
  • Issue #674: CircuitBreaker tried an illegal state transition from HALF_OPEN to HALF_OPEN
  • Issue #682: Retrofit call cancellations are recorded as circuit breaker failures
  • Issue #687: context.onSuccess called in case of maximum amount of retries reached
  • Issue #691: Exceptions thrown from fallback methods shouldn't be wrapped
  • Issue #699: Added CircuitBreaker waitIntervalFunction to spring boot config
  • Issue #701: Allow custom Prometheus Histogram buckets
  • Issue #756: Spring Boot module must work without a Spring actuator
  • PR #722: Health indicator overall status can be controlled with allowHealthIndicatorToFail property

== Version 1.3.0

  • Issue #822: Fixed the case where resilience4j rateLimiter seems to ignore configuration
  • Issue #816: Fixed Reactor RetryOperator throws exception wrapped by RetryExceptionWrapper
  • Issue #806: Switched aggregated retry.calls metric to a counter from a gauage
  • Issue #803: Added new Circuit breaker state -> METRICS_ONLY
  • Issue #799: Fixed WritableStackTraceEnabled config setting in ThreadPool bulkhead configuration
  • Issue #775: Added Getter for RetryOnRetryEvent
  • Issue #769: Fixed Duplicated auto complete support in IDEA
  • Issue #765: Added support to use Retry with Feign client
  • Issue #751: Vavr upgrade to 0.10.2
  • Issue #718: Fixed blocking behavior in Reactor Retry Operator
  • Issue #711: Added support to use SpEL in resilienec4j spring annoations
  • Issue #751: Fixed Resilience4j Spring boot modules MetricsAutoConfiguration
  • Issue #565: Added ThreadLocal passing support to the Threadpool bulkhead implementation
  • Issue #430: Added TimeLimiter spring boot starter support
  • Issue #509: Added support to extend Micrometer tags
  • PR #831: non backward compatible API change in ThreadPoolBulkhead decorateRunnable(ThreadPoolBulkhead bulkhead, Runnable runnable) now return Supplier> instead of Runnable
Commits
  • fc8cc89 Support TimeLimiter in spring-cloud and added TimeLimiterConfigCustomizer (#840)
  • 476151a Fixed FixedThreadPoolBulkhead: A CompletionException should not be wrapped in...
  • 22931ca Fixed BulkheadAspect: An ExecutionException is wrapped by a CompletionExcepti...
  • eb96750 Reordered the Aspects so that the TimelimiterAspect has the correct order
  • 22258f6 Support to extend Micrometer tags in TimeLimiter (#838)
  • 2222e3e Fixed the CompletionStageFallbackDecorator. If an exception is wrapped inside...
  • 347de41 Fixed FallbackConfiguration and FallbackConfiguratioOnMissingBean configurati...
  • 57a535d Updated version to 1.3.0-SNAPSHOT
  • 7742fbe Update RELEASENOTES.adoc (#834)
  • 7c08ca5 Delete self-closing element in javadoc (#833)
  • Additional commits viewable in compare view


Updates resilience4j-retry from 1.2.0 to 1.3.0

Release notes

Sourced from resilience4j-retry's releases.

Release v1.3.0

  • Issue #822: Fixed the case where resilience4j rateLimiter seems to ignore configuration
  • Issue #816: Fixed Reactor RetryOperator throws exception wrapped by RetryExceptionWrapper
  • Issue #806: Switched aggregated retry.calls metric to a counter from a gauage
  • Issue #803: Added new Circuit breaker state -> METRICS_ONLY
  • Issue #799: Fixed WritableStackTraceEnabled config setting in ThreadPool bulkhead configuration
  • Issue #775: Added Getter for RetryOnRetryEvent
  • Issue #769: Fixed Duplicated auto complete support in IDEA
  • Issue #765: Added support to use Retry with Feign client
  • Issue #751: Vavr upgrade to 0.10.2
  • Issue #718: Fixed blocking behavior in Reactor Retry Operator
  • Issue #711: Added support to use SpEL in resilienec4j spring annoations
  • Issue #751: Fixed Resilience4j Spring boot modules MetricsAutoConfiguration
  • Issue #565: Added ThreadLocal passing support to the Threadpool bulkhead implementation
  • Issue #430: Added TimeLimiter spring boot starter support
  • Issue #509: Added support to extend Micrometer tags
  • PR #831: non backward compatible API change in ThreadPoolBulkhead decorateRunnable(ThreadPoolBulkhead bulkhead, Runnable runnable) now return Supplier> instead of Runnable
Changelog

Sourced from resilience4j-retry's changelog.

== Version 1.2.0

  • Issue #642: Added weight support in RateLimiter
  • Issue #659: Added support for Kotlin Flows
  • Issue #668: Added util class to determine whether Circuit Breaker permits calls
  • Issue #671: Allow configurable wait times for circuit breakers to be open as a function of # of close attempts
  • Issue #674: CircuitBreaker tried an illegal state transition from HALF_OPEN to HALF_OPEN
  • Issue #682: Retrofit call cancellations are recorded as circuit breaker failures
  • Issue #687: context.onSuccess called in case of maximum amount of retries reached
  • Issue #691: Exceptions thrown from fallback methods shouldn't be wrapped
  • Issue #699: Added CircuitBreaker waitIntervalFunction to spring boot config
  • Issue #701: Allow custom Prometheus Histogram buckets
  • Issue #756: Spring Boot module must work without a Spring actuator
  • PR #722: Health indicator overall status can be controlled with allowHealthIndicatorToFail property

== Version 1.3.0

  • Issue #822: Fixed the case where resilience4j rateLimiter seems to ignore configuration
  • Issue #816: Fixed Reactor RetryOperator throws exception wrapped by RetryExceptionWrapper
  • Issue #806: Switched aggregated retry.calls metric to a counter from a gauage
  • Issue #803: Added new Circuit breaker state -> METRICS_ONLY
  • Issue #799: Fixed WritableStackTraceEnabled config setting in ThreadPool bulkhead configuration
  • Issue #775: Added Getter for RetryOnRetryEvent
  • Issue #769: Fixed Duplicated auto complete support in IDEA
  • Issue #765: Added support to use Retry with Feign client
  • Issue #751: Vavr upgrade to 0.10.2
  • Issue #718: Fixed blocking behavior in Reactor Retry Operator
  • Issue #711: Added support to use SpEL in resilienec4j spring annoations
  • Issue #751: Fixed Resilience4j Spring boot modules MetricsAutoConfiguration
  • Issue #565: Added ThreadLocal passing support to the Threadpool bulkhead implementation
  • Issue #430: Added TimeLimiter spring boot starter support
  • Issue #509: Added support to extend Micrometer tags
  • PR #831: non backward compatible API change in ThreadPoolBulkhead decorateRunnable(ThreadPoolBulkhead bulkhead, Runnable runnable) now return Supplier> instead of Runnable
Commits
  • fc8cc89 Support TimeLimiter in spring-cloud and added TimeLimiterConfigCustomizer (#840)
  • 476151a Fixed FixedThreadPoolBulkhead: A CompletionException should not be wrapped in...
  • 22931ca Fixed BulkheadAspect: An ExecutionException is wrapped by a CompletionExcepti...
  • eb96750 Reordered the Aspects so that the TimelimiterAspect has the correct order
  • 22258f6 Support to extend Micrometer tags in TimeLimiter (#838)
  • 2222e3e Fixed the CompletionStageFallbackDecorator. If an exception is wrapped inside...
  • 347de41 Fixed FallbackConfiguration and FallbackConfiguratioOnMissingBean configurati...
  • 57a535d Updated version to 1.3.0-SNAPSHOT
  • 7742fbe Update RELEASENOTES.adoc (#834)
  • 7c08ca5 Delete self-closing element in javadoc (#833)
  • Additional commits viewable in compare view


Updates resilience4j-retrofit from 1.2.0 to 1.3.0

Release notes

Sourced from resilience4j-retrofit's releases.

Release v1.3.0

  • Issue #822: Fixed the case where resilience4j rateLimiter seems to ignore configuration
  • Issue #816: Fixed Reactor RetryOperator throws exception wrapped by RetryExceptionWrapper
  • Issue #806: Switched aggregated retry.calls metric to a counter from a gauage
  • Issue #803: Added new Circuit breaker state -> METRICS_ONLY
  • Issue #799: Fixed WritableStackTraceEnabled config setting in ThreadPool bulkhead configuration
  • Issue #775: Added Getter for RetryOnRetryEvent
  • Issue #769: Fixed Duplicated auto complete support in IDEA
  • Issue #765: Added support to use Retry with Feign client
  • Issue #751: Vavr upgrade to 0.10.2
  • Issue #718: Fixed blocking behavior in Reactor Retry Operator
  • Issue #711: Added support to use SpEL in resilienec4j spring annoations
  • Issue #751: Fixed Resilience4j Spring boot modules MetricsAutoConfiguration
  • Issue #565: Added ThreadLocal passing support to the Threadpool bulkhead implementation
  • Issue #430: Added TimeLimiter spring boot starter support
  • Issue #509: Added support to extend Micrometer tags
  • PR #831: non backward compatible API change in ThreadPoolBulkhead decorateRunnable(ThreadPoolBulkhead bulkhead, Runnable runnable) now return Supplier> instead of Runnable
Changelog

Sourced from resilience4j-retrofit's changelog.

== Version 1.2.0

  • Issue #642: Added weight support in RateLimiter
  • Issue #659: Added support for Kotlin Flows
  • Issue #668: Added util class to determine whether Circuit Breaker permits calls
  • Issue #671: Allow configurable wait times for circuit breakers to be open as a function of # of close attempts
  • Issue #674: CircuitBreaker tried an illegal state transition from HALF_OPEN to HALF_OPEN
  • Issue #682: Retrofit call cancellations are recorded as circuit breaker failures
  • Issue #687: context.onSuccess called in case of maximum amount of retries reached
  • Issue #691: Exceptions thrown from fallback methods shouldn't be wrapped
  • Issue #699: Added CircuitBreaker waitIntervalFunction to spring boot config
  • Issue #701: Allow custom Prometheus Histogram buckets
  • Issue #756: Spring Boot module must work without a Spring actuator
  • PR #722: Health indicator overall status can be controlled with allowHealthIndicatorToFail property

== Version 1.3.0

  • Issue #822: Fixed the case where resilience4j rateLimiter seems to ignore configuration
  • Issue #816: Fixed Reactor RetryOperator throws exception wrapped by RetryExceptionWrapper
  • Issue #806: Switched aggregated retry.calls metric to a counter from a gauage
  • Issue #803: Added new Circuit breaker state -> METRICS_ONLY
  • Issue #799: Fixed WritableStackTraceEnabled config setting in ThreadPool bulkhead configuration
  • Issue #775: Added Getter for RetryOnRetryEvent
  • Issue #769: Fixed Duplicated auto complete support in IDEA
  • Issue #765: Added support to use Retry with Feign client
  • Issue #751: Vavr upgrade to 0.10.2
  • Issue #718: Fixed blocking behavior in Reactor Retry Operator
  • Issue #711: Added support to use SpEL in resilienec4j spring annoations
  • Issue #751: Fixed Resilience4j Spring boot modules MetricsAutoConfiguration
  • Issue #565: Added ThreadLocal passing support to the Threadpool bulkhead implementation
  • Issue #430: Added TimeLimiter spring boot starter support
  • Issue #509: Added support to extend Micrometer tags
  • PR #831: non backward compatible API change in ThreadPoolBulkhead decorateRunnable(ThreadPoolBulkhead bulkhead, Runnable runnable) now return Supplier> instead of Runnable
Commits
  • fc8cc89 Support TimeLimiter in spring-cloud and added TimeLimiterConfigCustomizer (#840)
  • 476151a Fixed FixedThreadPoolBulkhead: A CompletionException should not be wrapped in...
  • 22931ca Fixed BulkheadAspect: An ExecutionException is wrapped by a CompletionExcepti...
  • eb96750 Reordered the Aspects so that the TimelimiterAspect has the correct order
  • 22258f6 Support to extend Micrometer tags in TimeLimiter (#838)
  • 2222e3e Fixed the CompletionStageFallbackDecorator. If an exception is wrapped inside...
  • 347de41 Fixed FallbackConfiguration and FallbackConfiguratioOnMissingBean configurati...
  • 57a535d Updated version to 1.3.0-SNAPSHOT
  • 7742fbe Update RELEASENOTES.adoc (#834)
  • 7c08ca5 Delete self-closing element in javadoc (#833)
  • Additional commits viewable in compare view


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired)