Releases: zapodot/hystrix-dropwizard-bundle
Releases · zapodot/hystrix-dropwizard-bundle
1.0.2
Update DropWizard to v. 1.3.1
1.0.1
Tested for DropWizard 1.3.0
1.0
The very first final release of the bundle. Now available from Maven central.
All major dependencies have been updated to the latest release version
0.9.2
- PR #5 from @rajuGT adding better typing to the lambda interface MetricsPublishPredicate
0.9.1
Added the configuration object as input to the MetricsPublishPredicate:
bootstrap.addBundle(HystrixBundle.builder()
.withMetricsPublisherPredicate((conf) -> conf.getSomeConfigurationProperty())
.build());
0.9
Replaced the canPublishHystrixMetrics on the HystrixBundle class with an ability to drop a lamda to the withMetricsPublisherPredicate method on the builder
bootstrap.addBundle(HystrixBundle.builder()
.withMetricsPublisherPredicate(() -> true)
.build());
0.8
- #3 contributed by @rajuGT
- updated DropWizard to v. 1.1.3
0.7
Updated the following deps:
- DropWizard 1.1.1
- Hystrix 1.5.12
0.6
Update deps:
- Dropwizard 1.1.0
- Hystrix 1.5.10
- SLF4J 1.7.25
- Guava 21.0
0.4
Update baseline DW support to 0.9.1. No functional changes