:chart_with_upwards_trend: Capturing JVM- and application-level metrics. So you know what's going on.

Overview

Metrics

Java CI Maven Central Javadoc

πŸ“ˆ Capturing JVM- and application-level metrics. So you know what's going on.

For more information, please see the documentation

Versions

Version Source Branch Documentation Status
<2.2.x - - πŸ”΄ unmaintained
2.2.x - Docs πŸ”΄ unmaintained
3.0.x release/3.0.x branch Docs πŸ”΄ unmaintained
3.1.x release/3.1.x branch Docs πŸ”΄ unmaintained
3.2.x release/3.2.x branch Docs πŸ”΄ unmaintained
4.0.x release/4.0.x branch Docs πŸ”΄ unmaintained
4.1.x release/4.1.x branch Docs 🟒 maintained
4.2.x release/4.2.x branch - 🟒 in development
5.0.x release/5.0.x branch - 🟑 on pause

Future development

New not-backward compatible features (for example, support for tags) will be implemented in a 5.x.x release. The release will have new Maven coordinates, a new package name and a backwards-incompatible API.

Source code for 5.x.x resides in the release/5.0.x branch.

License

Copyright (c) 2010-2013 Coda Hale, Yammer.com, 2014-2020 Dropwizard Team

Published under Apache Software License 2.0, see LICENSE

Comments
  • ThreadLocal Memory Leak: com.codahale.metrics.ThreadLocalRandom

    ThreadLocal Memory Leak: com.codahale.metrics.ThreadLocalRandom

    Using Metrics 3.1.0 there is a static ThreadLocal in com.codahale.metrics.ThreadLocalRandom that is never cleaned up. This causes app server threads to hold references to this ThreadLocalRandom and thus the app ClassLoader can never be garbage collected.

    It is a common misunderstanding that the ThreadLocalMap.Entry class prevents such leaks as it extends WeakReference. However the Entry class only weakly references the key (the ThreadLocal instance) and not the value (the com.codahale.metrics.ThreadLocalRandom instance). So when a web app gets undeployed then the weakly referenced ThreadLocal instance might get cleaned up but the corresponding ThreadLocalMap.Entry instance is still in the map and still holds a strong reference to its value. ThreadLocalMap has some code to detect these stale entries but this code only gets triggered when calling ThreadLocal.set() or ThreadLocal.remove() ... which does not happen here.

    leak

    The above screenshot shows the GC root excluding WeakReference to further illustrate that the leak exists and is caused by the ThreadLocal.ThreadLocalMap.Entry.value field.

    Either do not use ThreadLocal or provide a clean up mechanism that can be called in a ServletContextListener.

    opened by jnehlmeier 31
  • SlidingTimeWindowReservoir getTick() can overflow and break

    SlidingTimeWindowReservoir getTick() can overflow and break

    The getTick() function of SlidingTimeWindowReservoir uses a collision buffer to allow for measurements which are happening within the same "tick". The default Clock tick is provided by System.nanoTime().

    Under certain circumstances, nanoTime() returns a long sufficiently large that when multiplied by the collision buffer, it overflow into a negative number. The next line in the function will then check whether the new tick (nanos * buffer) is larger than the old and, if not, it will return oldTick + 1. Because of this, the getTick() function returns ticks which are always incresing by one, therefore distorting the window.

    To fix this, I added an absolute offset value to the class. The offset value can be a final field which is initialized when the class is constructured or a static. Following each call to Clock.getTick(), we would reduce the return value but this absolute amount.

    bug Stale 
    opened by omerkudat 28
  • instrumentation for java.util.concurrent classes

    instrumentation for java.util.concurrent classes

    Wrappers for ThreadFactory and ExecutorService.

    ThreadFactory metrics:

    • number of threads created.
    • number of threads running.
    • number of threads that completed.

    ExecutorService metrics:

    • number of tasks submitted.
    • number of tasks running.
    • number of tasks completed.
    • timer for task time measurements.

    Let me know what you think.

    feature 
    opened by fernandezpablo85 25
  • runtime error when using metrics-jvm

    runtime error when using metrics-jvm

    Caused by: java.lang.NoSuchMethodError: com.codahale.metrics.JmxAttributeGauge.(Ljavax/management/MBeanServerConnection;Ljavax/management/ObjectName;Ljava/lang/String;)V at com.codahale.metrics.jvm.BufferPoolMetricSet.getMetrics(BufferPoolMetricSet.java:45) at com.codahale.metrics.MetricRegistry.registerAll(MetricRegistry.java:381) at com.codahale.metrics.MetricRegistry.register(MetricRegistry.java:85) at com.collective.dorado.util.VMInstrumentor.instrumentVM(VMInstrumentor.java:22)

    testet with 3.1.0 and 3.1.1 (java 1.8.0_11-b12) works fine with 3.0.2

    opened by bitkid 19
  • Metric event streams

    Metric event streams

    Provide an interface through which a listener can be registered to receive MetricEvent objects that match a MetricName query. MetricEvent would include the time and type of event (Timer, Meter, Counter, Histogram) and the associated value (timer=time, meter and counter=count, histogram=value).

    Stale 
    opened by ryantenney 18
  • Add OSGi bundle manifest headers

    Add OSGi bundle manifest headers

    Add maven-bundle-plugin (with all defaults) to parent pom.xml Change packaging type to bundle. Set Fragment-Host on metrics-ganglia, metrics-graphite, & metrics-servlet as they expose the same package (com.yammer.metrics.reporting) as metrics-core does.

    If it is undesirable to change the packaging to bundle, I can provide a more involved change to the poms. (Using maven-bundle-plugin to generate the MANIFEST.MF & using maven-jar-plugin to include it in the product.)

    opened by oconnor0 18
  • Future of metrics 4.0 and metric tags

    Future of metrics 4.0 and metric tags

    What is the planned future for metrics 4.0. Looking at the history it looks like 4.0 was developing in the master branch https://github.com/dropwizard/metrics/tree/master It looks like the default branch was recently switched to a new 4.0-development branch that branches from the latest 3.X release.

    My question here is what is the plan moving forward for metrics and are there any target release dates for a 4.0 release. Is the original work that was done in the master branch now dead and the plan is to move forward with 4.0-development?

    Assuming that is true since it's the default branch, what is the plan for tag support? The new MetricName was added to master which allowed metrics to have tags which I think is the number one feature currently missing from metrics. More and more data sources support tags (opentsdb, influx, prometheus, etc) and the tag support enables many features in these data sources. I would really hate for tag support not exist in the metrics lib as it would significantly limit the flexibility of capturing metrics. So I'm hoping that there is plan to add tag support back into the 4.X release and if there isn't one, how can we work to get them back in.

    question Stale 
    opened by rconn01 17
  • JMX Refactor + Add healthchecks

    JMX Refactor + Add healthchecks

    Extract JMX into a new module, and add HealthCheck support.

    Contributions for this are welcome, it may not happen if I have to find time for it.

    See #92 #149 #830

    Stale 
    opened by ryantenney 17
  • Graphite metrics should clean metrics names

    Graphite metrics should clean metrics names

    Graphite does not allow metrics/sensors with names containing ', but Metrics happily submits them. This makes Graphite log a bunch of errors not being able to create the whisper files yada yada.

    I see three different solutions to this:

    • Patch Metrics to not submit these metrics if they have the wrong naming, logging the metrics with the bad naming.
    • Automagically clean the sensor names (removing weird characters etc.) on submission to Graphite/carbon.
    • Keep things the way they are. Possibly adding a static helper method that can be used to clean sensor names from garbage. I am currently wrapping a bunch of sensor names in:
    public class MetricsUtils {
    
        /**
         * Clean graphite metrics names.
         * <p>
         * This was created because I was seeing a lot of stacktraces in Carbon log due to broken metric names.
         * 
         * @param proposal
         *            the proposed metrics' name.
         * @return cleaned metric's name
         */
        public static String cleanMetricName(String proposal) {
            return proposal.replace("'", "");
        }
    
    }
    

    Input welcome.

    opened by JensRantil 17
  • Issue #1138 Replacement of sliding time window.

    Issue #1138 Replacement of sliding time window.

    Hi metrics team,

    This PR provides drop-in replacement of SlidingTimeWindowReservoir called SlidingTimeWindowArrayReservoir. This implementation based uppon ChunkedAssociativeLongArray structure which stores all values in long arrays that are allocated and freed by big chunks. This way of storing reservoir values gives us drastically lower memory overhead over ConcurrentSkipListMap used by current implementation.

    There is also new metrics-jcstress module intoduced within this PR. I've used OpenJDK Java Concurrency Stress tests to prove thread safety of new reservoir.

    As for benchmarks:

    • On already existing benchmark called ReservoirBenchmark new implementation has 4.2x lower latency than old one. And most importantly SlidingTimeWindowArrayReservoir spends only 271 [ms] in GC during benchmark while previous implementation spends 13428 [ms]. With all this changes SlidingTimeWindowArrayReservoir now has performance comparable with ExponentiallyDecayingReservoir.

    • I also created new benchmark called SlidingTimeWindowReservoirsBenchmark with different scenario for this reservoirs. New benchmark has 3 threads that update target reservoir and 1 thread that makes snapshots. In such scenario new implementation has 2.5x faster writes, 3.5x faster snapshots and spends 40x less time in GC.

    Small (1 hour long) load tests for two implementations. Load test also has 3 writers and 1 reader. Frequency of writes changes by periodic function and periods become shorter with time.

    Results bellow: 1h_comparison

    If you're OK with this changes we've basically two ways to merge this PR. We can leave this two separate reservoirs in library and give our users possibility to choose one. Or we can completely replace old implementation with new one.

    improvement 
    opened by storozhukBM 16
  • Making HealthCheck.Result class extensible

    Making HealthCheck.Result class extensible

    I want to extend the Result class to enhance the health checks module for providing additional details. For e.g. I would add another health state in there - MAINTENANCE to indicate my servers are in the maintenance mode and also provider an optional placeholder Map to provide any additional details. Currently, Result class have only healthy and unhealthy states and furthermore, there is no way to provide additional info other than message.

    So, I tried to extend the HealthCheck class and add these details in there. However, due to absence of default no arg constructor in Result class, it's not possible to subclass Result.

    So would like to propose this change or get the feedback.

    Thanks!

    Stale 
    opened by hmpatel 16
  • Update jersey.version (release/5.0.x) (minor)

    Update jersey.version (release/5.0.x) (minor)

    Mend Renovate

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | org.glassfish.jersey:jersey-bom (source) | 3.0.9 -> 3.1.0 | age | adoption | passing | confidence | | org.glassfish.jersey:jersey-bom (source) | 2.37 -> 2.38 | age | adoption | passing | confidence |


    Configuration

    πŸ“… Schedule: Branch creation - "before 2am" (UTC), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    β™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    πŸ‘» Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


    • [ ] If you want to rebase/retry this PR, check this box

    This PR has been generated by Mend Renovate. View repository job log here.

    dependencies 
    opened by renovate[bot] 1
  • Add response code meters for ResponseMetered annotation

    Add response code meters for ResponseMetered annotation

    Currently the ResponseMetered annotation gives us top level 1xx/2xx/3xx/4xx/5xx meters. We have many use cases where we care about specific response codes like 401/503 and end up manually instrumenting code to create these meters. This PR adds meters for individual response codes in addition to the 1xx/2xx/3xx/4xx/5xx meters in the ResponseMetered annotation.

    Hoping others find this useful and I'm open to suggestions/feedback.

    Happy to add this functionality to metrics-jersey3 and metrics-jersey31 as well if this approach is acceptable. Can also create a PR to add individual response code meters to the jetty InstrumentedHandler

    feature 
    opened by dennyac 3
  • Update dependency org.mockito:mockito-core to v4.11.0 (release/4.1.x)

    Update dependency org.mockito:mockito-core to v4.11.0 (release/4.1.x)

    Mend Renovate

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | org.mockito:mockito-core | 4.6.1 -> 4.11.0 | age | adoption | passing | confidence |


    Release Notes

    mockito/mockito

    v4.11.0

    Changelog generated by Shipkit Changelog Gradle Plugin

    4.11.0
    • 2022-12-28 - 1 commit(s) by Andy Coates
    • Improve vararg handling: approach 2 (#​2807)
    • Mocking varargs method with any(String[].class) doesn't work as expected (#​2796)
    • (Argument)Matchers regression from 1.10.19 to 2.18.3 for varargs (#​1498)
    • Cannot verify varargs parameter as an array (#​1222)
    • ArgumentCaptor can't capture varargs-arrays (#​584)
    • Verification of an empty varargs call fails when isNotNull() is used (#​567)

    v4.10.0

    Compare Source

    Changelog generated by Shipkit Changelog Gradle Plugin

    4.10.0

    v4.9.0

    Compare Source

    Changelog generated by Shipkit Changelog Gradle Plugin

    4.9.0
    • 2022-11-14 - 6 commit(s) by Andrei Solntsev, Rafael Winterhalter, Rick Ossendrijver, dependabot[bot]
    • Upgrade objenesis 3.2 -> 3.3 (#​2784)
    • Upgrade objenesis 3.2 -> 3.3 (#​2783)
    • Avoids clearing stale weak entries from critical code segments. (#​2780)
    • bump gradle from 7.3.1 to 7.5.1 (#​2776)
    • Bump gradle/wrapper-validation-action from 1.0.4 to 1.0.5 (#​2775)
    • Bump gradle-errorprone-plugin from 2.0.2 to 3.0.1 (#​2770)
    • Bump junit-platform-launcher from 1.9.0 to 1.9.1 (#​2768)

    v4.8.1

    Compare Source

    Changelog generated by Shipkit Changelog Gradle Plugin

    4.8.1

    v4.8.0

    Compare Source

    Changelog generated by Shipkit Changelog Gradle Plugin

    4.8.0
    • 2022-09-07 - 10 commit(s) by Alex, James Baker, Johannes Spangenberg, Kurt Alfred Kluever, Rafael Winterhalter, Thibault Helsmoortel, dependabot[bot]
    • GitHub Workflows security hardening (#​2744)
    • Assign GlobalConfiguration initializer to unused variable (#​2742)
    • Bump com.diffplug.spotless from 6.9.1 to 6.10.0 (#​2738)
    • Drop varargs collector before invoking a user method. (#​2736)
    • Bump versions.bytebuddy from 1.12.13 to 1.12.14 (#​2734)
    • Remove useless thrown exception from constructor (#​2732)
    • TypeSafeMatching no longer iterates over class methods inefficiently (#​2729)
    • Fixes #​2720: Use StackWalker on Java 9+ to create Locations (#​2723)
    • LocationImpl adds performance overheads due to instantiating a stack trace (#​2720)
    • Fixes #​2626 : Introduce MockSettings.mockMaker (#​2701)
    • Introduce option to disable inline-mock-maker for a specific instance (#​2626)

    v4.7.0

    Compare Source

    Changelog generated by Shipkit Changelog Gradle Plugin

    4.7.0

    Configuration

    πŸ“… Schedule: Branch creation - "before 2am" (UTC), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    β™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    πŸ”• Ignore: Close this PR and you won't be reminded about this update again.


    • [ ] If you want to rebase/retry this PR, check this box

    This PR has been generated by Mend Renovate. View repository job log here.

    dependencies 
    opened by renovate[bot] 1
  • InstrumentedExecutorService does not remove registered gauges after shutdown

    InstrumentedExecutorService does not remove registered gauges after shutdown

    Similar to https://github.com/dropwizard/metrics/issues/1684.

    As the gauges are not removed, once we shutdown the executor service and try to start again with the same name, the executor service can no longer be started.

    opened by nicu-da 2
  • Issue with using the JMX reporter with platform MBean server

    Issue with using the JMX reporter with platform MBean server

    Hi. I am using the latest metrics-jmx (4.2.12) library.

    Here is a snippet of my code

    Initialize the metrics registry:

    MetricRegistry registry = new MetricRegistry();
    final JmxReporter reporter = JmxReporter.forRegistry(registry).build();
    reporter.start();
    

    Register metrics:

    String metricKey = "metric.key";
    
    // metrics map
    HashMap<String,Metric> metricMap = new HashMap<String,Metric>(6);
    
    ..
    ..
    registry.register(metricKey,metricMap.get(metricKey));
    ..
    ..
    

    Get the count using ManagementFactory.getPlatformMBeanServer()

    MBeanServerConnection server = ManagementFactory.getPlatformMBeanServer()
    String metricKey = "metric.key";
    ObjectName metric = new ObjectName("metrics:name=" + metricKey);
     if (server.isRegistered(metric)){
          Object object = server.getAttribute(metric, "Count");
          result = (Long) object;
    }else {
          System.out.println("Metric is not registered : "+ metric);
    }
    

    The issue is it says that the metric is not registered i.e server.isRegistered(metric) returns false.

    This works with metrics-jmx (4.0.7) but not metrics-jmx (4.1.0)

    Can someone help me if I need to do something else to achieve this? or is it an issue in the library?

    opened by rohit2395 0
  • [Metrics-Jersey2] Changed 'getDefinitionMethod ' into 'getHandlingMet…

    [Metrics-Jersey2] Changed 'getDefinitionMethod ' into 'getHandlingMet…

    Hi, I use OpenAPI Generator Plugin to create my web resources interface/abstract-class, then I inherit those abstracts and override methods in order to provide their implemention.

    On these overrides I put @Timed or any other metrics annotation.

    In such situation getDefinitionMethod searches for annotations into the abstract class, which it cannot find because declared into the descendant implementation.

    For that reason I changed 'getDefinitionMethod' into 'getHandlingMethod'.

    opened by antonio-petricca 1
Releases(v5.0.0-rc15)
  • v5.0.0-rc15(Dec 21, 2022)

    What's Changed

    • Fix incorrect javaModuleName property in metrics-logback13 by @joschi in https://github.com/dropwizard/metrics/pull/3048
    • Update actions/stale action to v7 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/3054
    • Update actions/cache action to v3.2.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/3057

    Full Changelog: https://github.com/dropwizard/metrics/compare/v5.0.0-rc14...v5.0.0-rc15

    Source code(tar.gz)
    Source code(zip)
  • v4.2.15(Dec 21, 2022)

    What's Changed

    • Revert "Update logback13.version to v1.4.5" by @joschi in https://github.com/dropwizard/metrics/pull/3047
    • Update logback13.version to v1.3.5 (release/4.2.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/3049
    • Fix incorrect javaModuleName property in metrics-logback13 by @joschi in https://github.com/dropwizard/metrics/pull/3050
    • Update actions/stale action to v7 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/3053
    • Update actions/cache action to v3.2.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/3056

    Full Changelog: https://github.com/dropwizard/metrics/compare/v4.2.14...v4.2.15

    Source code(tar.gz)
    Source code(zip)
  • v5.0.0-rc14(Dec 19, 2022)

    What's Changed

    • Update logback13.version to v1.3.5 (release/5.0.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2984
    • Update logback14.version to v1.4.5 (release/5.0.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2863
    • Update dependency org.ehcache:ehcache to v3.10.8 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2983
    • Update actions/setup-java digest to 19eeec5 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/3003
    • Update dependency org.checkerframework:checker-qual to v3.28.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/3004
    • Update dependency org.apache.maven.plugins:maven-dependency-plugin to v3.4.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2997
    • Update dependency org.apache.httpcomponents:httpcore-nio to v4.4.16 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2996
    • Update dependency org.apache.httpcomponents:httpcore to v4.4.16 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2995
    • Update dependency com.github.ben-manes.caffeine:caffeine to v3.1.2 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2994
    • Update dependency org.apache.httpcomponents:httpclient to v4.5.14 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/3011
    • Update dependency org.apache.httpcomponents:httpclient to v4.5.14 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/3012
    • Update dependency org.jdbi:jdbi3-core to v3.35.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/3013
    • Update dependency org.eclipse.jetty:jetty-bom to v9.4.50.v20221201 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/3024
    • Update dependency org.apache.httpcomponents.client5:httpclient5 to v5.2.1 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/3020
    • Update actions/setup-java digest to c3ac5dd (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/3019
    • Update dependency org.eclipse.jetty:jetty-bom to v10.0.13 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/3027
    • Update actions/checkout action to v3.2.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/3033
    • Update actions/setup-java digest to 1df8dbe (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/3039
    • Update dependency org.eclipse.jetty:jetty-bom to v11.0.13 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/3028
    • Update dependency org.codehaus.plexus:plexus-compiler-javac-errorprone to v2.13.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/3040
    • Add support for Jersey 3.1.x by @joschi in https://github.com/dropwizard/metrics/pull/3042

    Full Changelog: https://github.com/dropwizard/metrics/compare/v5.0.0-rc13...v5.0.0-rc14

    Source code(tar.gz)
    Source code(zip)
  • v4.2.14(Dec 19, 2022)

    What's Changed

    • Update logback13.version to v1.4.5 (release/4.2.x) (minor) by @renovate in https://github.com/dropwizard/metrics/pull/2982
    • Update dependency org.ehcache:ehcache to v3.10.8 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2978
    • Update logback14.version to v1.4.5 (release/4.2.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2980
    • Update actions/setup-java digest to 19eeec5 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/3001
    • Update dependency org.checkerframework:checker-qual to v3.28.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/3002
    • Update dependency org.apache.maven.plugins:maven-dependency-plugin to v3.4.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2993
    • Update dependency org.apache.httpcomponents:httpcore-nio to v4.4.16 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2992
    • Update dependency org.apache.httpcomponents:httpcore to v4.4.16 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2991
    • Update dependency com.github.ben-manes.caffeine:caffeine to v3.1.2 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2990
    • Update dependency org.apache.httpcomponents:httpclient to v4.5.14 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/3008
    • Update dependency org.apache.httpcomponents:httpclient to v4.5.14 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/3009
    • Update dependency org.jdbi:jdbi3-core to v3.35.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/3010
    • Merge Renovate PRs automatically (patch only) by @joschi in https://github.com/dropwizard/metrics/pull/3021
    • Update actions/setup-java digest to c3ac5dd (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/3017
    • Update dependency org.eclipse.jetty:jetty-bom to v9.4.50.v20221201 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/3023
    • Update dependency org.apache.httpcomponents.client5:httpclient5 to v5.2.1 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/3018
    • Update dependency org.eclipse.jetty:jetty-bom to v10.0.13 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/3025
    • Allow override of scheduler by @mikebell90 in https://github.com/dropwizard/metrics/pull/2931
    • Update actions/checkout digest to 7dd9e2a (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/3032
    • Update actions/checkout digest to 755da8c (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/3034
    • Update actions/setup-java digest to 1df8dbe (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/3038
    • Update dependency org.eclipse.jetty:jetty-bom to v11.0.13 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/3026
    • Add support for Jersey 3.1.x by @joschi in https://github.com/dropwizard/metrics/pull/3041

    New Contributors

    • @mikebell90 made their first contribution in https://github.com/dropwizard/metrics/pull/2931

    Full Changelog: https://github.com/dropwizard/metrics/compare/v4.2.13...v4.2.14

    Source code(tar.gz)
    Source code(zip)
  • v4.1.35(Dec 19, 2022)

    What's Changed

    • Update dependency org.ehcache:ehcache to v3.10.8 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2976
    • Update actions/setup-java digest to 19eeec5 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2999
    • Update dependency org.checkerframework:checker-qual to v3.28.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/3000
    • Update dependency org.apache.maven.plugins:maven-dependency-plugin to v3.4.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2989
    • Update dependency org.apache.httpcomponents:httpcore-nio to v4.4.16 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2988
    • Update dependency org.apache.httpcomponents:httpcore to v4.4.16 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2987
    • Update dependency org.apache.httpcomponents:httpclient to v4.5.14 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/3005
    • Update dependency org.apache.httpcomponents:httpclient to v4.5.14 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/3006
    • Update dependency org.jdbi:jdbi3-core to v3.35.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/3007
    • Update dependency org.eclipse.jetty:jetty-bom to v9.4.50.v20221201 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/3022
    • Update actions/setup-java digest to c3ac5dd (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/3015
    • Update dependency org.apache.httpcomponents.client5:httpclient5 to v5.2.1 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/3016
    • Update actions/checkout action to v3.2.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/3031
    • Update actions/setup-java digest to 1df8dbe (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/3036

    Full Changelog: https://github.com/dropwizard/metrics/compare/v4.1.34...v4.1.35

    Source code(tar.gz)
    Source code(zip)
  • v5.0.0-rc13(Nov 18, 2022)

    What's Changed

    • Update dependency org.glassfish.jersey:jersey-bom to v2.37 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2829
    • Update actions/setup-java digest to d854b6d (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2834
    • Update dependency com.rabbitmq:amqp-client to v5.16.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2837
    • Update dependency org.apache.maven.plugins:maven-shade-plugin to v3.4.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2866
    • Update dependency org.apache.maven.plugins:maven-jar-plugin to v3.3.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2865
    • Update log4j2.version to v2.19.0 (release/5.0.x) (minor) by @renovate in https://github.com/dropwizard/metrics/pull/2867
    • Update actions/stale action to v5.2.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2864
    • Update logback13.version to v1.3.1 (release/5.0.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2862
    • Update jetty9.version to v9.4.49.v20220914 (release/5.0.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2861
    • Update dependency org.eclipse.jetty:jetty-bom to v10.0.12 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2858
    • Update dependency org.python:jython-standalone to v2.7.3 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2860
    • Update actions/stale action to v6 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2873
    • Update dependency org.jdbi:jdbi3-core to v3.33.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2880
    • Update actions/setup-java digest to a18c333 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2879
    • Update actions/cache action to v3.0.9 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2883
    • Update dependency org.jdbi:jdbi3-core to v3.34.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2901
    • Update dependency org.checkerframework:checker-qual to v3.26.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2900
    • Update actions/checkout action to v3.1.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2899
    • Update logback13.version to v1.3.3 (release/5.0.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2898
    • Update actions/cache action to v3.0.10 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2897
    • Update logback13.version to v1.3.4 (release/5.0.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2911
    • Update actions/stale action to v6.0.1 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2909
    • Update dependency org.ehcache:ehcache to v3.10.2 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2910
    • Update dependency org.cyclonedx:cyclonedx-maven-plugin to v2.7.2 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2917
    • Update dependency com.google.errorprone:error_prone_core to v2.16 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2924
    • Update actions/cache action to v3.0.11 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2930
    • Update dependency org.glassfish.jaxb:jaxb-runtime to v2.3.7 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2940
    • Update actions/setup-java digest to de1bb2b (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2936
    • Update dependency org.eclipse.jetty:jetty-bom to v11.0.12 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2859
    • Update dependency org.apache.maven.plugins:maven-shade-plugin to v3.4.1 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2944
    • Update dependency org.checkerframework:checker-qual to v3.27.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2947
    • Update dependency org.apache.httpcomponents.core5:httpcore5 to v5.2 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2952
    • Update dependency org.ehcache:ehcache to v3.10.3 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2955
    • Update dependency org.cyclonedx:cyclonedx-maven-plugin to v2.7.3 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2960
    • Update dependency org.apache.httpcomponents.client5:httpclient5 to v5.2 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2961
    • Update dependency org.ehcache:ehcache to v3.10.4 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2968
    • Update jmh.version to v1.36 (release/5.0.x) (minor) by @renovate in https://github.com/dropwizard/metrics/pull/2969
    • Update dependency org.ehcache:ehcache to v3.10.6 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2972
    • Add a more type safe way of registering gauges in 5.0.x by @DanyBv in https://github.com/dropwizard/metrics/pull/2792

    New Contributors

    • @DanyBv made their first contribution in https://github.com/dropwizard/metrics/pull/2792

    Full Changelog: https://github.com/dropwizard/metrics/compare/v5.0.0-rc12...v5.0.0-rc13

    Source code(tar.gz)
    Source code(zip)
  • v4.2.13(Nov 18, 2022)

    What's Changed

    • Update dependency org.glassfish.jersey:jersey-bom to v2.37 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2828
    • Update actions/setup-java digest to d854b6d (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2833
    • Update dependency com.rabbitmq:amqp-client to v5.16.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2836
    • Update dependency org.python:jython-standalone to v2.7.3 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2842
    • Update dependency org.eclipse.jetty:jetty-bom to v10.0.12 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2841
    • Update dependency org.apache.maven.plugins:maven-shade-plugin to v3.4.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2854
    • Update dependency org.apache.maven.plugins:maven-jar-plugin to v3.3.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2853
    • Update log4j2.version to v2.19.0 (release/4.2.x) (minor) by @renovate in https://github.com/dropwizard/metrics/pull/2855
    • Update logback13.version to v1.3.1 (release/4.2.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2851
    • Update jetty9.version to v9.4.49.v20220914 (release/4.2.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2850
    • Update actions/stale digest to 99b6c70 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2848
    • Update actions/stale action to v6 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2872
    • Update dependency org.jdbi:jdbi3-core to v3.33.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2878
    • Update actions/setup-java digest to a18c333 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2877
    • Update actions/cache action to v3.0.9 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2882
    • Update dependency org.jdbi:jdbi3-core to v3.34.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2894
    • Update dependency org.checkerframework:checker-qual to v3.26.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2893
    • Update logback13.version to v1.3.3 (release/4.2.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2892
    • Update actions/cache action to v3.0.10 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2891
    • Update actions/stale digest to 5ebf00e (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2906
    • Update dependency org.ehcache:ehcache to v3.10.2 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2907
    • Update logback13.version to v1.3.4 (release/4.2.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2908
    • Update dependency org.cyclonedx:cyclonedx-maven-plugin to v2.7.2 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2914
    • Update actions/checkout digest to 93ea575 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2922
    • Update dependency com.google.errorprone:error_prone_core to v2.16 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2923
    • Update jackson.version (release/4.2.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2926
    • Bump actions/cache from 3.0.10 to 3.0.11 by @dependabot in https://github.com/dropwizard/metrics/pull/2927
    • Update actions/cache action to v3.0.11 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2929
    • Update actions/setup-java digest to de1bb2b (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2935
    • Update dependency org.glassfish.jaxb:jaxb-runtime to v2.3.7 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2939
    • Update logback14.version to v1.4.4 (release/4.2.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2852
    • Update dependency org.eclipse.jetty:jetty-bom to v11.0.12 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2849
    • Update dependency org.apache.maven.plugins:maven-shade-plugin to v3.4.1 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2943
    • Update dependency org.checkerframework:checker-qual to v3.27.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2946
    • Update dependency org.apache.httpcomponents.core5:httpcore5 to v5.2 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2951
    • Update dependency org.ehcache:ehcache to v3.10.3 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2954
    • Update dependency org.cyclonedx:cyclonedx-maven-plugin to v2.7.3 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2958
    • Update dependency org.apache.httpcomponents.client5:httpclient5 to v5.2 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2959
    • Bump jackson-databind to version 2.12.7.1 by @joschi in https://github.com/dropwizard/metrics/pull/2963
    • Update dependency org.ehcache:ehcache to v3.10.4 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2966
    • Update jmh.version to v1.36 (release/4.2.x) (minor) by @renovate in https://github.com/dropwizard/metrics/pull/2967
    • Update dependency org.ehcache:ehcache to v3.10.6 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2971

    Full Changelog: https://github.com/dropwizard/metrics/compare/v4.2.12...v4.2.13

    Source code(tar.gz)
    Source code(zip)
  • v4.1.34(Nov 18, 2022)

    What's Changed

    • Update actions/cache action to v3.0.6 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2774
    • Update actions/cache action to v3.0.7 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2779
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.4.1 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2787
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.4.1 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2786
    • Update actions/cache action to v3.0.8 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2798
    • Update dependency org.ehcache:ehcache to v3.10.1 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2799
    • Update dependency org.apache.maven.plugins:maven-checkstyle-plugin to v3.2.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2800
    • GitHub Workflows security hardening by @joschi in https://github.com/dropwizard/metrics/pull/2811
    • Update dependency org.checkerframework:checker-qual to v3.25.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2815
    • Update dependency org.glassfish.jersey:jersey-bom to v2.37 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2827
    • Update actions/setup-java digest to d854b6d (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2832
    • Update dependency com.rabbitmq:amqp-client to v5.16.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2835
    • Update dependency org.python:jython-standalone to v2.7.3 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2838
    • Update jetty9.version to v9.4.49.v20220914 (release/4.1.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2840
    • Update dependency org.apache.maven.plugins:maven-shade-plugin to v3.4.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2845
    • Update dependency org.apache.maven.plugins:maven-jar-plugin to v3.3.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2844
    • Update log4j2.version to v2.19.0 (release/4.1.x) (minor) by @renovate in https://github.com/dropwizard/metrics/pull/2846
    • Update actions/stale action to v5.2.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2843
    • Update actions/stale action to v6 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2871
    • Update dependency org.jdbi:jdbi3-core to v3.33.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2876
    • Update actions/setup-java digest to a18c333 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2875
    • Update actions/cache action to v3.0.9 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2881
    • Update dependency org.jdbi:jdbi3-core to v3.34.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2889
    • Update dependency org.checkerframework:checker-qual to v3.26.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2888
    • Update actions/cache action to v3.0.10 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2886
    • Update actions/checkout action to v3.1.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2887
    • Update actions/stale action to v6.0.1 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2904
    • Update dependency org.ehcache:ehcache to v3.10.2 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2905
    • Update dependency org.cyclonedx:cyclonedx-maven-plugin to v2.7.2 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2912
    • Update actions/cache action to v3.0.11 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2928
    • Update actions/setup-java digest to de1bb2b (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2934
    • Update dependency org.glassfish.jaxb:jaxb-runtime to v2.3.7 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2938
    • Update dependency org.apache.maven.plugins:maven-shade-plugin to v3.4.1 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2942
    • Update dependency org.checkerframework:checker-qual to v3.27.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2945
    • Update dependency org.apache.httpcomponents.core5:httpcore5 to v5.2 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2950
    • Update dependency org.ehcache:ehcache to v3.10.3 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2953
    • Update dependency org.cyclonedx:cyclonedx-maven-plugin to v2.7.3 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2956
    • Update dependency org.apache.httpcomponents.client5:httpclient5 to v5.2 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2957
    • Update dependency org.ehcache:ehcache to v3.10.4 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2964
    • Update jmh.version to v1.36 (release/4.1.x) (minor) by @renovate in https://github.com/dropwizard/metrics/pull/2965
    • Update dependency org.ehcache:ehcache to v3.10.6 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2970

    Full Changelog: https://github.com/dropwizard/metrics/compare/v4.1.33...v4.1.34

    Source code(tar.gz)
    Source code(zip)
  • v5.0.0-rc12(Sep 4, 2022)

    What's Changed

    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.2.1 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2433
    • Update jetty9.version to v9.4.45.v20220203 (release/5.0.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2440
    • Update dependency org.eclipse.jetty:jetty-bom to v11.0.8 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2439
    • Update dependency org.eclipse.jetty:jetty-bom to v10.0.8 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2438
    • Update dependency org.codehaus.plexus:plexus-compiler-javac-errorprone to v2.10.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2441
    • Update slf4j.version (release/5.0.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2428
    • Update dependency org.glassfish.jersey:jersey-bom to v3.0.4 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2448
    • Update dependency com.rabbitmq:amqp-client to v5.14.2 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2447
    • Update dependency org.sonatype.plugins:nexus-staging-maven-plugin to v1.6.9 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2454
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.3.2 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2453
    • Update dependency org.apache.maven.plugins:maven-compiler-plugin to v3.10.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2458
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.11.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2467
    • Update dependency org.sonatype.plugins:nexus-staging-maven-plugin to v1.6.11 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2466
    • Update dependency com.google.errorprone:error_prone_core to v2.11.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2432
    • Update dependency org.jdbi:jdbi3-core to v3.27.2 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2472
    • Update dependency org.sonatype.plugins:nexus-staging-maven-plugin to v1.6.12 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2475
    • Update actions/setup-java action to v3 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2478
    • Update log4j2.version to v2.17.2 (release/5.0.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2484
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.2.2 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2483
    • Update actions/checkout action to v3 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2492
    • Update dependency org.checkerframework:checker-qual to v3.21.3 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2491
    • Update actions/stale action to v5 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2493
    • Update dependency org.awaitility:awaitility to v4.2.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2496
    • Update dependency ch.qos.logback:logback-classic to v1.2.11 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2499
    • Update dependency org.codehaus.plexus:plexus-compiler-javac-errorprone to v2.11.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2500
    • Update dependency org.codehaus.plexus:plexus-compiler-javac-errorprone to v2.11.1 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2501
    • Update dependency org.mockito:mockito-core to v4.4.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2504
    • Update dependency org.jdbi:jdbi3-core to v3.28.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2507
    • Update dependency org.glassfish.jaxb:jaxb-runtime to v2.3.6 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2420
    • Update dependency org.apache.maven.plugins:maven-compiler-plugin to v3.10.1 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2515
    • Update dependency org.apache.maven.plugins:maven-dependency-plugin to v3.3.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2516
    • Update dependency com.github.ben-manes.caffeine:caffeine to v3.0.6 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2521
    • Update actions/cache action to v3 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2525
    • Update jmh.version to v1.35 (release/5.0.x) (minor) by @renovate in https://github.com/dropwizard/metrics/pull/2535
    • Update dependency org.apache.maven.plugins:maven-shade-plugin to v3.3.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2541
    • Update actions/cache action to v3.0.1 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2540
    • Update dependency org.checkerframework:checker-qual to v3.21.4 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2550
    • Update jetty9.version to v9.4.46.v20220331 (release/5.0.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2553
    • Update dependency org.eclipse.jetty:jetty-bom to v10.0.9 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2551
    • Update dependency org.eclipse.jetty:jetty-bom to v11.0.9 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2552
    • Update slf4j.version to v2.0.0-alpha6 in metrics-jetty10 by @joschi in https://github.com/dropwizard/metrics/pull/2554
    • Update dependency org.ehcache:ehcache to v3.10.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2517
    • Update dependency jakarta.annotation:jakarta.annotation-api to v2.1.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2543
    • Update dependency com.google.errorprone:error_prone_core to v2.12.1 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2562
    • Update dependency org.jacoco:jacoco-maven-plugin to v0.8.8 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2561
    • Update actions/cache action to v3.0.2 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2567
    • Update dependency com.google.errorprone:error_prone_core to v2.13.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2572
    • Update actions/checkout action to v3.0.1 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2571
    • Update dependency com.google.errorprone:error_prone_core to v2.13.1 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2575
    • Update dependency org.mockito:mockito-core to v4.5.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2579
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.4.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2593
    • Update actions/checkout action to v3.0.2 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2590
    • Update dependency org.sonatype.plugins:nexus-staging-maven-plugin to v1.6.13 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2592
    • Update dependency org.mockito:mockito-core to v4.5.1 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2591
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.12.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2594
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.3.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2598
    • Update dependency com.github.ben-manes.caffeine:caffeine to v3.1.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2599
    • Update dependency org.apache.felix:maven-bundle-plugin to v5.1.5 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2602
    • Update dependency org.codehaus.plexus:plexus-compiler-javac-errorprone to v2.12.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2604
    • Update dependency org.checkerframework:checker-qual to v3.22.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2608
    • Update dependency org.apache.felix:maven-bundle-plugin to v5.1.6 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2612
    • Update dependency org.jdbi:jdbi3-core to v3.29.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2617
    • Update dependency com.google.errorprone:error_prone_core to v2.14.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2620
    • Update dependency com.github.ben-manes.caffeine:caffeine to v3.1.1 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2624
    • Update dependency org.mockito:mockito-core to v4.6.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2626
    • Update dependency org.assertj:assertj-core to v3.23.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2631
    • Update actions/cache action to v3.0.3 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2637
    • Update dependency org.assertj:assertj-core to v3.23.1 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2638
    • Update dependency org.checkerframework:checker-qual to v3.22.1 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2647
    • Update dependency org.jdbi:jdbi3-core to v3.30.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2649
    • Update dependency org.mockito:mockito-core to v4.6.1 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2648
    • Update actions/cache action to v3.0.4 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2663
    • Update dependency jakarta.annotation:jakarta.annotation-api to v2.1.1 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2673
    • Update dependency org.glassfish.jersey:jersey-bom to v2.36 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2677
    • Update dependency com.rabbitmq:amqp-client to v5.15.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2676
    • Update dependency org.checkerframework:checker-qual to v3.22.2 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2674
    • Update dependency org.glassfish.jersey:jersey-bom to v3.0.5 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2675
    • Pin dependencies (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2680
    • Update dependency org.eclipse.jetty:jetty-bom to v10.0.10 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2689
    • Update dependency org.eclipse.jetty:jetty-bom to v11.0.10 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2690
    • Update jetty9.version to v9.4.47.v20220610 (release/5.0.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2691
    • Update actions/setup-java digest to 16cca54 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2701
    • Update dependency org.eclipse.jetty:jetty-bom to v10.0.11 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2702
    • Update dependency org.eclipse.jetty:jetty-bom to v11.0.11 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2703
    • Update jetty9.version to v9.4.48.v20220622 (release/5.0.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2704
    • Update log4j2.version to v2.18.0 (release/5.0.x) (minor) by @renovate in https://github.com/dropwizard/metrics/pull/2709
    • Update dependency org.apache.httpcomponents.core5:httpcore5 to v5.1.4 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2712
    • Update dependency org.checkerframework:checker-qual to v3.23.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2716
    • Update actions/setup-java digest to 2c7a487 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2719
    • Update actions/cache action to v3.0.5 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2723
    • Update dependency org.apache.felix:maven-bundle-plugin to v5.1.7 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2731
    • Update actions/stale action to v5.1.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2732
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.4.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2733
    • Update dependency org.jdbi:jdbi3-core to v3.31.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2734
    • Update dependency org.codehaus.plexus:plexus-compiler-javac-errorprone to v2.12.1 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2736
    • Update dependency org.cyclonedx:cyclonedx-maven-plugin to v2.7.1 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2741
    • Update dependency org.apache.maven.plugins:maven-deploy-plugin to v3 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2742
    • Update dependency org.apache.maven.plugins:maven-resources-plugin to v3.3.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2748
    • Update dependency org.jdbi:jdbi3-core to v3.32.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2746
    • Update actions/stale action to v5.1.1 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2755
    • Update dependency org.apache.felix:maven-bundle-plugin to v5.1.8 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2760
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.12.1 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2768
    • Update dependency org.checkerframework:checker-qual to v3.24.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2769
    • Update dependency org.glassfish.jersey:jersey-bom to v3.0.6 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2778
    • Update actions/cache action to v3.0.6 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2777
    • Update actions/cache action to v3.0.7 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2781
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.4.1 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2791
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.4.1 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2790
    • Update actions/cache action to v3.0.8 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2804
    • Update dependency org.ehcache:ehcache to v3.10.1 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2805
    • Update dependency org.apache.maven.plugins:maven-checkstyle-plugin to v3.2.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2806
    • GitHub Workflows security hardening by @joschi in https://github.com/dropwizard/metrics/pull/2812
    • Update dependency org.glassfish.jersey:jersey-bom to v3.0.7 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2814
    • Update dependency org.glassfish.jersey:jersey-bom to v3.0.8 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2818
    • Update dependency org.checkerframework:checker-qual to v3.25.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2819
    • Add support for Logback 1.3.x and 1.4.x by @joschi in https://github.com/dropwizard/metrics/pull/2821
    • Update dependency com.google.errorprone:error_prone_core to v2.15.0 (release/5.0.x) by @renovate in https://github.com/dropwizard/metrics/pull/2765

    Full Changelog: https://github.com/dropwizard/metrics/compare/v5.0.0-rc11...v5.0.0-rc12

    Source code(tar.gz)
    Source code(zip)
  • v4.2.12(Sep 4, 2022)

    What's Changed

    • Update actions/cache action to v3.0.6 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2775
    • Update dependency org.glassfish.jersey:jersey-bom to v3.0.6 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2776
    • Update actions/cache action to v3.0.7 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2780
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.4.1 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2789
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.4.1 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2788
    • Update actions/cache action to v3.0.8 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2801
    • Update dependency org.ehcache:ehcache to v3.10.1 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2802
    • Update dependency org.apache.maven.plugins:maven-checkstyle-plugin to v3.2.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2803
    • GitHub Workflows security hardening by @sashashura in https://github.com/dropwizard/metrics/pull/2810
    • Update dependency org.glassfish.jersey:jersey-bom to v3.0.7 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2813
    • Update dependency org.glassfish.jersey:jersey-bom to v3.0.8 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2816
    • Update dependency org.checkerframework:checker-qual to v3.25.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2817
    • Add support for Logback 1.3.x and 1.4.x by @joschi in https://github.com/dropwizard/metrics/pull/2820

    New Contributors

    • @sashashura made their first contribution in https://github.com/dropwizard/metrics/pull/2810

    Full Changelog: https://github.com/dropwizard/metrics/compare/v4.2.11...v4.2.12

    Source code(tar.gz)
    Source code(zip)
  • v4.2.11(Aug 4, 2022)

    What's Changed

    • Update dependency org.eclipse.jetty:jetty-bom to v10.0.10 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2686
    • Update jetty9.version to v9.4.47.v20220610 (release/4.2.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2688
    • Update dependency org.eclipse.jetty:jetty-bom to v11.0.10 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2687
    • Bump actions/setup-java from 3.3.0 to 3.4.0 by @dependabot in https://github.com/dropwizard/metrics/pull/2692
    • Update actions/setup-java digest to 860f600 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2694
    • Update actions/setup-java digest to 16cca54 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2697
    • Update dependency org.eclipse.jetty:jetty-bom to v10.0.11 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2698
    • Update dependency org.eclipse.jetty:jetty-bom to v11.0.11 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2699
    • Update jetty9.version to v9.4.48.v20220622 (release/4.2.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2700
    • Update log4j2.version to v2.18.0 (release/4.2.x) (minor) by @renovate in https://github.com/dropwizard/metrics/pull/2706
    • Update dependency org.apache.httpcomponents.core5:httpcore5 to v5.1.4 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2711
    • Update dependency org.checkerframework:checker-qual to v3.23.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2715
    • Update actions/setup-java digest to 2c7a487 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2718
    • Update actions/cache action to v3.0.5 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2722
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.4.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2729
    • Update dependency org.apache.felix:maven-bundle-plugin to v5.1.7 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2728
    • Update dependency org.jdbi:jdbi3-core to v3.31.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2730
    • Update dependency org.cyclonedx:cyclonedx-maven-plugin to v2.7.1 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2740
    • Update dependency org.apache.maven.plugins:maven-deploy-plugin to v3 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2738
    • Update dependency org.apache.maven.plugins:maven-resources-plugin to v3.3.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2745
    • Update dependency org.jdbi:jdbi3-core to v3.32.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2747
    • Bump actions/stale from 5.0.0 to 5.1.0 by @dependabot in https://github.com/dropwizard/metrics/pull/2735
    • Update actions/stale digest to 3cc1237 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2749
    • Update actions/stale digest to 9c1b1c6 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2752
    • Update dependency org.apache.felix:maven-bundle-plugin to v5.1.8 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2759
    • Update dependency com.google.errorprone:error_prone_core to v2.15.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2763
    • Update dependency org.checkerframework:checker-qual to v3.24.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2764
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.12.1 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2767

    Full Changelog: https://github.com/dropwizard/metrics/compare/v4.2.10...v4.2.11

    Source code(tar.gz)
    Source code(zip)
  • v4.1.33(Aug 4, 2022)

    What's Changed

    • Update actions/cache action to v3.0.4 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2660
    • Update dependency org.checkerframework:checker-qual to v3.22.2 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2665
    • Update dependency com.rabbitmq:amqp-client to v5.15.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2666
    • Update dependency org.glassfish.jersey:jersey-bom to v2.36 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2667
    • Pin dependencies (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2678
    • Update jetty9.version to v9.4.47.v20220610 (release/4.1.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2685
    • Update jetty9.version to v9.4.48.v20220622 (release/4.1.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2693
    • Update actions/setup-java digest to 16cca54 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2696
    • Update log4j2.version to v2.18.0 (release/4.1.x) (minor) by @renovate in https://github.com/dropwizard/metrics/pull/2705
    • Update dependency org.apache.httpcomponents.core5:httpcore5 to v5.1.4 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2710
    • Update dependency org.checkerframework:checker-qual to v3.23.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2714
    • Update actions/setup-java digest to 2c7a487 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2717
    • Update actions/cache action to v3.0.5 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2721
    • Update dependency org.apache.felix:maven-bundle-plugin to v5.1.7 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2724
    • Update actions/stale action to v5.1.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2725
    • Update dependency org.jdbi:jdbi3-core to v3.31.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2727
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.4.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2726
    • Update dependency org.cyclonedx:cyclonedx-maven-plugin to v2.7.1 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2739
    • Update dependency org.apache.maven.plugins:maven-deploy-plugin to v3 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2737
    • Update dependency org.jdbi:jdbi3-core to v3.32.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2744
    • Update dependency org.apache.maven.plugins:maven-resources-plugin to v3.3.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2743
    • Update actions/stale action to v5.1.1 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2751
    • Update dependency org.apache.felix:maven-bundle-plugin to v5.1.8 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2758
    • Update dependency org.checkerframework:checker-qual to v3.24.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2762
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.12.1 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2766

    Full Changelog: https://github.com/dropwizard/metrics/compare/v4.1.32...v4.1.33

    Source code(tar.gz)
    Source code(zip)
  • v4.2.10(Jun 19, 2022)

    What's Changed

    • Update dependency org.apache.maven.plugins:maven-dependency-plugin to v3.3.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2513
    • Update dependency org.apache.maven.plugins:maven-compiler-plugin to v3.10.1 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2512
    • Update dependency com.github.ben-manes.caffeine:caffeine to v3.0.6 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2520
    • Update actions/cache action to v3 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2524
    • Update jackson.version (release/4.2.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2531
    • Update jmh.version to v1.35 (release/4.2.x) (minor) by @renovate in https://github.com/dropwizard/metrics/pull/2534
    • Bump actions/cache from 3.0.0 to 3.0.1 by @dependabot in https://github.com/dropwizard/metrics/pull/2536
    • Update dependency org.apache.maven.plugins:maven-shade-plugin to v3.3.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2539
    • Update dependency org.checkerframework:checker-qual to v3.21.4 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2546
    • Update dependency org.eclipse.jetty:jetty-bom to v10.0.9 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2547
    • Update jetty9.version to v9.4.46.v20220331 (release/4.2.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2549
    • Update dependency org.eclipse.jetty:jetty-bom to v11.0.9 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2548
    • Update slf4j.version to v2.0.0-alpha6 in metrics-jetty10 by @joschi in https://github.com/dropwizard/metrics/pull/2555
    • Update dependency org.ehcache:ehcache to v3.10.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2514
    • Update dependency jakarta.annotation:jakarta.annotation-api to v2.1.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2542
    • Update dependency org.jacoco:jacoco-maven-plugin to v0.8.8 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2557
    • Update dependency com.google.errorprone:error_prone_core to v2.12.1 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2560
    • Update actions/cache action to v3.0.2 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2566
    • Bump actions/cache from 3.0.1 to 3.0.2 by @dependabot in https://github.com/dropwizard/metrics/pull/2564
    • Set permissions for GitHub actions by @naveensrinivasan in https://github.com/dropwizard/metrics/pull/2563
    • Update dependency com.google.errorprone:error_prone_core to v2.13.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2570
    • Update dependency com.google.errorprone:error_prone_core to v2.13.1 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2574
    • Update dependency org.mockito:mockito-core to v4.5.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2577
    • Update dependency org.sonatype.plugins:nexus-staging-maven-plugin to v1.6.13 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2587
    • Update dependency org.mockito:mockito-core to v4.5.1 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2586
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.12.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2589
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.4.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2588
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.3.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2596
    • Update dependency com.github.ben-manes.caffeine:caffeine to v3.1.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2597
    • Update dependency org.apache.felix:maven-bundle-plugin to v5.1.5 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2601
    • Update dependency org.checkerframework:checker-qual to v3.22.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2607
    • Update dependency org.apache.felix:maven-bundle-plugin to v5.1.6 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2611
    • Update dependency org.jdbi:jdbi3-core to v3.29.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2616
    • Update dependency com.google.errorprone:error_prone_core to v2.14.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2619
    • Update dependency com.github.ben-manes.caffeine:caffeine to v3.1.1 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2622
    • Update jackson.version to v2.12.7 (release/4.2.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2623
    • Update dependency org.mockito:mockito-core to v4.6.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2625
    • Update dependency org.assertj:assertj-core to v3.23.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2630
    • Update dependency org.assertj:assertj-core to v3.23.1 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2636
    • Update actions/cache action to v3.0.3 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2635
    • Update dependency org.checkerframework:checker-qual to v3.22.1 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2641
    • Update dependency org.mockito:mockito-core to v4.6.1 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2645
    • Update dependency org.jdbi:jdbi3-core to v3.30.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2646
    • Generate SBOM using CycloneDX Maven plugin by @joschi in https://github.com/dropwizard/metrics/pull/2658
    • Update actions/cache action to v3.0.4 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2661
    • Update dependency org.glassfish.jersey:jersey-bom to v2.36 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2672
    • Update dependency jakarta.annotation:jakarta.annotation-api to v2.1.1 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2668
    • Update dependency com.rabbitmq:amqp-client to v5.15.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2671
    • Update dependency org.checkerframework:checker-qual to v3.22.2 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2669
    • Update dependency org.glassfish.jersey:jersey-bom to v3.0.5 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2670
    • chore: renovate bot setting to pin actions to a full length commit SHA by @naveensrinivasan in https://github.com/dropwizard/metrics/pull/2613
    • Add a more type safe way of registering gauges by @arteam in https://github.com/dropwizard/metrics/pull/2642
    • Pin dependencies (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2679

    New Contributors

    • @naveensrinivasan made their first contribution in https://github.com/dropwizard/metrics/pull/2563

    Full Changelog: https://github.com/dropwizard/metrics/compare/v4.2.9...v4.2.10

    Source code(tar.gz)
    Source code(zip)
  • v4.1.32(Jun 7, 2022)

    What's Changed

    • Update dependency org.apache.maven.plugins:maven-compiler-plugin to v3.10.1 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2509
    • Update dependency org.apache.maven.plugins:maven-dependency-plugin to v3.3.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2510
    • Update actions/cache action to v3 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2523
    • Update jmh.version to v1.35 (release/4.1.x) (minor) by @renovate in https://github.com/dropwizard/metrics/pull/2533
    • Update dependency org.apache.maven.plugins:maven-shade-plugin to v3.3.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2538
    • Update actions/cache action to v3.0.1 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2537
    • Update dependency org.checkerframework:checker-qual to v3.21.4 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2544
    • Update jetty9.version to v9.4.46.v20220331 (release/4.1.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2545
    • Update dependency org.ehcache:ehcache to v3.10.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2511
    • Update dependency org.jacoco:jacoco-maven-plugin to v0.8.8 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2556
    • Update actions/cache action to v3.0.2 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2565
    • Update actions/checkout action to v3.0.1 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2568
    • Update dependency org.mockito:mockito-core to v4.5.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2576
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.12.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2583
    • Update dependency org.mockito:mockito-core to v4.5.1 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2581
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.4.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2582
    • Update actions/checkout action to v3.0.2 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2584
    • Update dependency org.sonatype.plugins:nexus-staging-maven-plugin to v1.6.13 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2585
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.3.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2595
    • Update dependency org.apache.felix:maven-bundle-plugin to v5.1.5 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2600
    • Update dependency org.checkerframework:checker-qual to v3.22.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2606
    • Update dependency org.apache.felix:maven-bundle-plugin to v5.1.6 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2610
    • Update dependency org.jdbi:jdbi3-core to v3.29.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2615
    • Update dependency org.mockito:mockito-core to v4.6.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2627
    • Update dependency org.assertj:assertj-core to v3.23.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2629
    • Update dependency org.assertj:assertj-core to v3.23.1 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2634
    • Update actions/cache action to v3.0.3 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2633
    • Update dependency org.mockito:mockito-core to v4.6.1 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2643
    • Update dependency org.jdbi:jdbi3-core to v3.30.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2644
    • Update dependency org.checkerframework:checker-qual to v3.22.1 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2640
    • Generate SBOM using CycloneDX Maven plugin by @joschi in https://github.com/dropwizard/metrics/pull/2657

    Full Changelog: https://github.com/dropwizard/metrics/compare/v4.1.31...v4.1.32

    Source code(tar.gz)
    Source code(zip)
  • v4.2.9(Mar 9, 2022)

    What's Changed

    • Update actions/setup-java action to v3 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2477
    • Update actions/stale action to v5 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2490
    • Update dependency ch.qos.logback:logback-classic to v1.2.11 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2498
    • Update dependency com.google.errorprone:error_prone_core to v2.11.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2419
    • Update dependency com.rabbitmq:amqp-client to v5.14.2 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2446
    • Update dependency org.apache.maven.plugins:maven-compiler-plugin to v3.10.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2457
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.3.2 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2450
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.2.1 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2431
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.2.2 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2480
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.11.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2465
    • Update dependency org.awaitility:awaitility to v4.2.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2495
    • Update dependency org.checkerframework:checker-qual to v3.21.3 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2489
    • Update dependency org.eclipse.jetty:jetty-bom to v10.0.8 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2435
    • Update dependency org.eclipse.jetty:jetty-bom to v11.0.8 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2436
    • Update dependency org.glassfish.jaxb:jaxb-runtime to v2.3.6 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2417
    • Update dependency org.glassfish.jersey:jersey-bom to v3.0.4 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2443
    • Update dependency org.jdbi:jdbi3-core to v3.27.2 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2471
    • Update dependency org.jdbi:jdbi3-core to v3.28.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2506
    • Update dependency org.mockito:mockito-core to v4.4.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2503
    • Update dependency org.sonatype.plugins:nexus-staging-maven-plugin to v1.6.10 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2461
    • Update dependency org.sonatype.plugins:nexus-staging-maven-plugin to v1.6.11 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2464
    • Update dependency org.sonatype.plugins:nexus-staging-maven-plugin to v1.6.12 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2474
    • Update dependency org.sonatype.plugins:nexus-staging-maven-plugin to v1.6.9 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2452
    • Update jetty9.version to v9.4.45.v20220203 (release/4.2.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2437
    • Update log4j2.version to v2.17.2 (release/4.2.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2482
    • Update slf4j.version (release/4.2.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2418

    Full Changelog: https://github.com/dropwizard/metrics/compare/v4.2.8...v4.2.9

    Source code(tar.gz)
    Source code(zip)
  • v4.1.31(Mar 9, 2022)

    What's Changed

    • Update dependency ch.qos.logback:logback-classic to v1.2.11 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2497
    • Update dependency com.rabbitmq:amqp-client to v5.14.2 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2445
    • Update dependency org.apache.maven.plugins:maven-compiler-plugin to v3.10.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2456
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.3.2 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2449
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.2.1 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2430
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.2.2 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2479
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.11.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2463
    • Update dependency org.awaitility:awaitility to v4.2.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2494
    • Update dependency org.checkerframework:checker-qual to v3.21.3 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2486
    • Update dependency org.glassfish.jaxb:jaxb-runtime to v2.3.6 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2415
    • Update dependency org.jdbi:jdbi3-core to v3.27.2 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2470
    • Update dependency org.jdbi:jdbi3-core to v3.28.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2505
    • Update dependency org.mockito:mockito-core to v4.4.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2502
    • Update dependency org.sonatype.plugins:nexus-staging-maven-plugin to v1.6.10 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2459
    • Update dependency org.sonatype.plugins:nexus-staging-maven-plugin to v1.6.11 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2462
    • Update dependency org.sonatype.plugins:nexus-staging-maven-plugin to v1.6.12 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2473
    • Update dependency org.sonatype.plugins:nexus-staging-maven-plugin to v1.6.9 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2451
    • Update jetty9.version to v9.4.45.v20220203 (release/4.1.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2434
    • Update log4j2.version to v2.17.2 (release/4.1.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2481
    • Update slf4j.version to v1.7.36 (release/4.1.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2442
    • Update actions/checkout action to v3 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2487
    • Update actions/setup-java action to v3 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2476
    • Update actions/stale action to v5 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2488

    Full Changelog: https://github.com/dropwizard/metrics/compare/v4.1.30...v4.1.31

    Source code(tar.gz)
    Source code(zip)
  • v5.0.0-rc11(Feb 3, 2022)

    Improvements

    • Don't overwrite start time in InstrumentedHandler for Jetty with concurrent async requests (#2429)

    Dependency updates

    • Update dependency com.rabbitmq:amqp-client to v5.14.1 (#2399)
    • Update dependency org.apache.felix:maven-bundle-plugin to v5.1.4 (#2355)
    • Update dependency org.apache.httpcomponents.client5:httpclient5 to v5.1.3 (#2423)
    • Update dependency org.apache.httpcomponents.core5:httpcore5 to v5.1.3 (#2326)
    • Update dependency org.apache.maven.plugins:maven-compiler-plugin to v3.9.0 (#2370)
    • Update dependency org.apache.maven.plugins:maven-jar-plugin to v3.2.2 (#2362)
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.10.0 (#2335)
    • Update dependency org.assertj:assertj-core to v3.22.0 (#2347)
    • Update dependency org.checkerframework:checker-qual to v3.21.1 (#2356)
    • Update dependency org.checkerframework:checker-qual to v3.21.2 (#2426)
    • Update dependency org.codehaus.mojo:build-helper-maven-plugin to v3.3.0 (#2357)
    • Update dependency org.jdbi:jdbi3-core to v3.26.0 (#2323)
    • Update dependency org.jdbi:jdbi3-core to v3.26.1 (#2346)
    • Update dependency org.jdbi:jdbi3-core to v3.27.0 (#2358)
    • Update dependency org.jdbi:jdbi3-core to v3.27.1 (#2400)
    • Update dependency org.mockito:mockito-core to v4.3.0 (#2401)
    • Update dependency org.mockito:mockito-core to v4.3.1 (#2407)
    • Update jmh.version to v1.34 (#2332)
    • Update log4j2.version to v2.17.1 (#2341)
    • Update logback.version to v1.2.10 (#2331)
    • Update slf4j.version (#2386)
    • Update slf4j.version (#2404)

    Assorted

    • Migrate to official Maven wrapper (#2336)

    Full Changelog: https://github.com/dropwizard/metrics/compare/v5.0.0-rc10...v5.0.0-rc11

    Source code(tar.gz)
    Source code(zip)
  • v4.2.8(Feb 3, 2022)

    What's Changed

    • Update dependency org.jdbi:jdbi3-core to v3.26.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2322
    • Update dependency org.apache.httpcomponents.core5:httpcore5 to v5.1.3 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2325
    • Update logback.version to v1.2.10 (release/4.2.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2329
    • Update jmh.version to v1.34 (release/4.2.x) (minor) by @renovate in https://github.com/dropwizard/metrics/pull/2330
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.10.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2334
    • Migrate to official Maven wrapper by @joschi in https://github.com/dropwizard/metrics/pull/2337
    • Update log4j2.version to v2.17.1 (release/4.2.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2340
    • Update dependency org.assertj:assertj-core to v3.22.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2343
    • Update dependency org.jdbi:jdbi3-core to v3.26.1 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2345
    • Update dependency org.apache.felix:maven-bundle-plugin to v5.1.4 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2349
    • Update dependency org.checkerframework:checker-qual to v3.21.1 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2352
    • Update dependency org.codehaus.mojo:build-helper-maven-plugin to v3.3.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2353
    • Update dependency org.jdbi:jdbi3-core to v3.27.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2354
    • Update dependency org.apache.maven.plugins:maven-jar-plugin to v3.2.2 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2361
    • Update dependency org.apache.maven.plugins:maven-compiler-plugin to v3.9.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2369
    • Update dependency org.mockito:mockito-core to v4.3.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2393
    • Update slf4j.version (release/4.2.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2392
    • Update dependency com.rabbitmq:amqp-client to v5.14.1 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2397
    • Update dependency org.jdbi:jdbi3-core to v3.27.1 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2398
    • Update slf4j.version (release/4.2.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2403
    • Update dependency org.mockito:mockito-core to v4.3.1 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2406
    • Update dependency org.apache.httpcomponents.client5:httpclient5 to v5.1.3 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2422
    • Update dependency org.checkerframework:checker-qual to v3.21.2 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2425
    • Ensure that start times aren't overwritten by concurrent asynchronous… by @jschlather in https://github.com/dropwizard/metrics/pull/2413

    New Contributors

    • @jschlather made their first contribution in https://github.com/dropwizard/metrics/pull/2413

    Full Changelog: https://github.com/dropwizard/metrics/compare/v4.2.7...v4.2.8

    Source code(tar.gz)
    Source code(zip)
  • v4.1.30(Feb 3, 2022)

    What's Changed

    • Update dependency org.jdbi:jdbi3-core to v3.26.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2321
    • Update dependency org.apache.httpcomponents.core5:httpcore5 to v5.1.3 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2324
    • Update logback.version to v1.2.10 (release/4.1.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2327
    • Update jmh.version to v1.34 (release/4.1.x) (minor) by @renovate in https://github.com/dropwizard/metrics/pull/2328
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.10.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2333
    • Migrate to official Maven wrapper by @joschi in https://github.com/dropwizard/metrics/pull/2338
    • Update log4j2.version to v2.17.1 (release/4.1.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2339
    • Update dependency org.assertj:assertj-core to v3.22.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2342
    • Update dependency org.jdbi:jdbi3-core to v3.26.1 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2344
    • Update dependency org.jdbi:jdbi3-core to v3.27.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2351
    • Update dependency org.apache.felix:maven-bundle-plugin to v5.1.4 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2348
    • Update dependency org.codehaus.mojo:build-helper-maven-plugin to v3.3.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2350
    • Update dependency org.apache.maven.plugins:maven-jar-plugin to v3.2.2 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2359
    • Update dependency org.apache.maven.plugins:maven-compiler-plugin to v3.9.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2368
    • Update dependency org.checkerframework:checker-qual to v3.21.1 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2360
    • Update dependency com.rabbitmq:amqp-client to v5.14.1 by @renovate in https://github.com/dropwizard/metrics/pull/2377
    • Update slf4j.version to v1.7.33 (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2379
    • Update dependency org.mockito:mockito-core to v4.3.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2389
    • Update slf4j.version to v1.7.34 (release/4.1.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2391
    • Update dependency org.jdbi:jdbi3-core to v3.27.1 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2395
    • Update slf4j.version to v1.7.35 (release/4.1.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2402
    • Update dependency org.mockito:mockito-core to v4.3.1 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2405
    • Update dependency org.apache.httpcomponents.client5:httpclient5 to v5.1.3 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2421
    • Update dependency org.checkerframework:checker-qual to v3.21.2 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2424

    Full Changelog: https://github.com/dropwizard/metrics/compare/v4.1.29...v4.1.30

    Source code(tar.gz)
    Source code(zip)
  • v5.0.0-rc10(Dec 19, 2021)

    Dependency updates

    • Update dependency org.checkerframework:checker-qual to v3.21.0 (#2303)
    • Update dependency org.ehcache:ehcache to v3.9.8 (#2290)
    • Update dependency org.ehcache:ehcache to v3.9.9 (#2301)
    • Update dependency org.mockito:mockito-core to v4.2.0 (#2294)
    • Update jackson.version to v2.13.1 (#2308)
    • Update log4j2.version to v2.17.0 (#2314)
    • Update logback.version to v1.2.9 (#2302)

    Assorted

    • Update repository URLs for new OSSRH Sonatype instance (#2285)
    • Drop unnecessary config for maven-bundle-plugin 5.1.3 (#2281)
    • Enable separate minor patches and Dependency Dashboard in Renovate (#2309)
    • Remove duplicate Jackson version properties (#2310)

    Full Changelog: https://github.com/dropwizard/metrics/compare/v5.0.0-rc9...v5.0.0-rc10

    Source code(tar.gz)
    Source code(zip)
  • v4.2.7(Dec 19, 2021)

    Dependency updates

    • Update dependency org.ehcache:ehcache to v3.9.8 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2289
    • Update dependency org.mockito:mockito-core to v4.2.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2293
    • Update logback.version to v1.2.9 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2296
    • Update dependency org.checkerframework:checker-qual to v3.21.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2300
    • Update dependency org.ehcache:ehcache to v3.9.9 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2299
    • Update log4j2.version to v2.17.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2305
    • Update jackson.version to v2.12.6 (release/4.2.x) (patch) by @renovate in https://github.com/dropwizard/metrics/pull/2313

    Assorted

    • Update repository URLs for new OSSRH Sonatype instance by @joschi in https://github.com/dropwizard/metrics/pull/2287
    • Enable separate minor patches and Dependency Dashboard in Renovate by @joschi in https://github.com/dropwizard/metrics/pull/2309
    • Drop unnecessary configuration for maven-bundle-plugin 5.1.3 by @hboutemy in https://github.com/dropwizard/metrics/pull/2281

    Full Changelog: https://github.com/dropwizard/metrics/compare/v4.2.6...v4.2.7

    Source code(tar.gz)
    Source code(zip)
  • v4.1.29(Dec 19, 2021)

    Dependency updates

    • Update dependency org.ehcache:ehcache to v3.9.8 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2288
    • Update dependency org.mockito:mockito-core to v4.2.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2292
    • Update logback.version to v1.2.9 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2295
    • Update dependency org.checkerframework:checker-qual to v3.21.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2298
    • Update dependency org.ehcache:ehcache to v3.9.9 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2297
    • Update log4j2.version to v2.17.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2304
    • Update dependency com.fasterxml.jackson:jackson-bom to v2.9.10.20210106 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2312

    Assorted

    • Update repository URLs for new OSSRH Sonatype instance by @joschi in https://github.com/dropwizard/metrics/pull/2286

    Full Changelog: https://github.com/dropwizard/metrics/compare/v4.1.28...v4.1.29

    Source code(tar.gz)
    Source code(zip)
  • v5.0.0-rc9(Dec 15, 2021)

    Dependency updates

    • Update log4j2.version to v2.15.0 (#2272)
    • Update log4j2.version to v2.16.0 (#2280)
    • Update logback.version to v1.2.8 (#2284)
    • Update dependency org.apache.felix:maven-bundle-plugin to v5.1.3 (#2279)
    • Update dependency org.apache.httpcomponents:httpasyncclient to v4.1.5 (#2270)
    • Update actions/stale action to v4.1.0 (#2271)
    Source code(tar.gz)
    Source code(zip)
  • v4.2.6(Dec 15, 2021)

    Dependency updates

    • Update dependency org.apache.httpcomponents:httpasyncclient to v4.1.5 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2274
    • Update log4j2.version to v2.15.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2269
    • Update log4j2.version to v2.16.0 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2278
    • Update logback.version to v1.2.8 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2283
    • Update dependency org.apache.felix:maven-bundle-plugin to v5.1.3 (release/4.2.x) by @renovate in https://github.com/dropwizard/metrics/pull/2277

    Full Changelog: https://github.com/dropwizard/metrics/compare/v4.2.5...v4.2.6

    Source code(tar.gz)
    Source code(zip)
  • v4.1.28(Dec 15, 2021)

    Dependency updates

    • Update dependency org.apache.httpcomponents:httpasyncclient to v4.1.5 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2267
    • Update log4j2.version to v2.15.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2273
    • Update log4j2.version to v2.16.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2276
    • Update logback.version to v1.2.8 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2282
    • Update dependency org.apache.felix:maven-bundle-plugin to v5.1.3 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2275
    • Update actions/stale action to v4.1.0 (release/4.1.x) by @renovate in https://github.com/dropwizard/metrics/pull/2268

    Full Changelog: https://github.com/dropwizard/metrics/compare/v4.1.27...v4.1.28

    Source code(tar.gz)
    Source code(zip)
  • v5.0.0-rc8(Dec 9, 2021)

    Dependency updates

    • Build with Java 17 (#2179)
    • Bump Maven to version 3.8.2 (#2120)
    • Bump Maven to version 3.8.3
    • Bump Maven to version 3.8.4
    • Update actions/cache action to v2.1.7 (#2245)
    • Update actions/checkout action to v2.3.5 (#2204)
    • Update actions/checkout action to v2.4.0 (#2219)
    • Update dependency com.github.ben-manes.caffeine:caffeine to v2.9.3 (#2251)
    • Update dependency com.github.ben-manes.caffeine:caffeine to v3.0.4 (#2162)
    • Update dependency com.github.ben-manes.caffeine:caffeine to v3.0.5 (#2253)
    • Update dependency com.google.errorprone:error_prone_core to v2.10.0 (#2223)
    • Update dependency com.google.errorprone:error_prone_core to v2.8.0 (#2099)
    • Update dependency com.google.errorprone:error_prone_core to v2.8.1 (#2112)
    • Update dependency com.google.errorprone:error_prone_core to v2.9.0 (#2128)
    • Update dependency com.rabbitmq:amqp-client to v5.13.1 (#2144)
    • Update dependency com.rabbitmq:amqp-client to v5.14.0 (#2232)
    • Update dependency org.apache.httpcomponents.client5:httpclient5 to v5.1.1 (#2212)
    • Update dependency org.apache.httpcomponents.client5:httpclient5 to v5.1.2 (#2237)
    • Update dependency org.apache.httpcomponents.core5:httpcore5 to v5.1.2 (#2176)
    • Update dependency org.apache.httpcomponents:httpcore to v4.4.15 (#2263)
    • Update dependency org.apache.httpcomponents:httpcore-nio to v4.4.15 (#2264)
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.3.1 (#2154)
    • Update dependency org.assertj:assertj-core to v3.21.0 (#2168)
    • Update dependency org.awaitility:awaitility to v4.1.1 (#2213)
    • Update dependency org.checkerframework:checker-qual to v3.17.0 (#2115)
    • Update dependency org.checkerframework:checker-qual to v3.18.0 (#2148)
    • Update dependency org.checkerframework:checker-qual to v3.18.1 (#2185)
    • Update dependency org.checkerframework:checker-qual to v3.19.0 (#2220)
    • Update dependency org.checkerframework:checker-qual to v3.20.0 (#2256)
    • Update dependency org.codehaus.plexus:plexus-compiler-javac-errorprone to v2.9.0 (#2206)
    • Update dependency org.eclipse.jetty:jetty-bom to v10.0.7 (#2196)
    • Update dependency org.eclipse.jetty:jetty-bom to v11.0.7 (#2197)
    • Update dependency org.ehcache:ehcache to v3.9.5 (#2113)
    • Update dependency org.ehcache:ehcache to v3.9.6 (#2134)
    • Update dependency org.ehcache:ehcache to v3.9.7 (#2205)
    • Update dependency org.glassfish.jaxb:jaxb-runtime to v2.3.5 (#2114)
    • Update dependency org.jdbi:jdbi3-core to v3.22.0 (#2161)
    • Update dependency org.jdbi:jdbi3-core to v3.23.0 (#2192)
    • Update dependency org.jdbi:jdbi3-core to v3.24.0 (#2226)
    • Update dependency org.jdbi:jdbi3-core to v3.24.1 (#2238)
    • Update dependency org.jdbi:jdbi3-core to v3.25.0 (#2265)
    • Update dependency org.mockito:mockito-core to v3.12.1 (#2127)
    • Update dependency org.mockito:mockito-core to v3.12.4 (#2137)
    • Update dependency org.mockito:mockito-core to v4 (#2189)
    • Update dependency org.mockito:mockito-core to v4.1.0 (#2241)
    • Update dependency org.openjdk.jcstress:jcstress-core to v0.15 (#2252)
    • Update jackson.version to v2.12.5 (#2138)
    • Update jackson.version to v2.13.0 (#2178)
    • Update jersey.version (#2151)
    • Update jetty9.version to v9.4.44.v20210927 (#2177)
    • Update jmh.version to v1.33 (#2118)
    • Update logback.version to v1.2.4 (#2092)
    • Update logback.version to v1.2.5 (#2098)
    • Update logback.version to v1.2.6 (#2157)
    • Update logback.version to v1.2.7 (#2229)
    • Update slf4j.version (#2062)

    Full Changelog: https://github.com/dropwizard/metrics/compare/v5.0.0-rc7...v5.0.0-rc8

    Source code(tar.gz)
    Source code(zip)
  • v4.2.5(Dec 9, 2021)

    Bugfixes

    • Add missing modules to metrics-bom by @zUniQueX in https://github.com/dropwizard/metrics/pull/2182

    Dependency updates

    • Update dependency org.checkerframework:checker-qual to v3.18.1 by @renovate in https://github.com/dropwizard/metrics/pull/2184
    • Update dependency org.jdbi:jdbi3-core to v3.23.0 by @renovate in https://github.com/dropwizard/metrics/pull/2191
    • Update dependency org.mockito:mockito-core to v4 by @renovate in https://github.com/dropwizard/metrics/pull/2188
    • Update dependency org.eclipse.jetty:jetty-bom to v10.0.7 by @renovate in https://github.com/dropwizard/metrics/pull/2194
    • Update dependency org.eclipse.jetty:jetty-bom to v11.0.7 by @renovate in https://github.com/dropwizard/metrics/pull/2195
    • Update dependency org.ehcache:ehcache to v3.9.7 by @renovate in https://github.com/dropwizard/metrics/pull/2203
    • Update actions/checkout action to v2.3.5 by @renovate in https://github.com/dropwizard/metrics/pull/2202
    • Update dependency org.awaitility:awaitility to v4.1.1 by @renovate in https://github.com/dropwizard/metrics/pull/2211
    • Update dependency org.apache.httpcomponents.client5:httpclient5 to v5.1.1 by @renovate in https://github.com/dropwizard/metrics/pull/2210
    • Update actions/checkout action to v2.4.0 by @renovate in https://github.com/dropwizard/metrics/pull/2217
    • Update dependency org.checkerframework:checker-qual to v3.19.0 by @renovate in https://github.com/dropwizard/metrics/pull/2218
    • Update dependency com.google.errorprone:error_prone_core to v2.10.0 by @renovate in https://github.com/dropwizard/metrics/pull/2222
    • Update dependency org.jdbi:jdbi3-core to v3.24.0 by @renovate in https://github.com/dropwizard/metrics/pull/2225
    • Update logback.version to v1.2.7 by @renovate in https://github.com/dropwizard/metrics/pull/2228
    • Update dependency com.rabbitmq:amqp-client to v5.14.0 by @renovate in https://github.com/dropwizard/metrics/pull/2231
    • Update dependency org.apache.httpcomponents.client5:httpclient5 to v5.1.2 by @renovate in https://github.com/dropwizard/metrics/pull/2235
    • Update dependency org.jdbi:jdbi3-core to v3.24.1 by @renovate in https://github.com/dropwizard/metrics/pull/2236
    • Update dependency org.mockito:mockito-core to v4.1.0 by @renovate in https://github.com/dropwizard/metrics/pull/2240
    • Update actions/cache action to v2.1.7 by @renovate in https://github.com/dropwizard/metrics/pull/2244
    • Update dependency org.openjdk.jcstress:jcstress-core to v0.15 by @renovate in https://github.com/dropwizard/metrics/pull/2247
    • Update dependency com.github.ben-manes.caffeine:caffeine to v2.9.3 by @renovate in https://github.com/dropwizard/metrics/pull/2249
    • Update dependency com.github.ben-manes.caffeine:caffeine to v3.0.5 by @renovate in https://github.com/dropwizard/metrics/pull/2250
    • Update dependency org.checkerframework:checker-qual to v3.20.0 by @renovate in https://github.com/dropwizard/metrics/pull/2255
    • Update dependency org.apache.httpcomponents:httpcore-nio to v4.4.15 by @renovate in https://github.com/dropwizard/metrics/pull/2261
    • Update dependency org.apache.httpcomponents:httpcore to v4.4.15 by @renovate in https://github.com/dropwizard/metrics/pull/2260
    • Update dependency org.jdbi:jdbi3-core to v3.25.0 by @renovate in https://github.com/dropwizard/metrics/pull/2262
    • Build with Java 17 by @joschi in https://github.com/dropwizard/metrics/pull/2180

    New Contributors

    • @zUniQueX made their first contribution in https://github.com/dropwizard/metrics/pull/2182

    Full Changelog: https://github.com/dropwizard/metrics/compare/v4.2.4...v4.2.5

    Source code(tar.gz)
    Source code(zip)
  • v4.1.27(Dec 9, 2021)

    Dependency updates

    • Update dependency org.checkerframework:checker-qual to v3.18.1 by @renovate in https://github.com/dropwizard/metrics/pull/2183
    • Update dependency org.jdbi:jdbi3-core to v3.23.0 by @renovate in https://github.com/dropwizard/metrics/pull/2190
    • Update dependency org.mockito:mockito-core to v4 by @renovate in https://github.com/dropwizard/metrics/pull/2187
    • Update dependency org.ehcache:ehcache to v3.9.7 by @renovate in https://github.com/dropwizard/metrics/pull/2201
    • Update actions/checkout action to v2.3.5 by @renovate in https://github.com/dropwizard/metrics/pull/2200
    • Update dependency org.awaitility:awaitility to v4.1.1 by @renovate in https://github.com/dropwizard/metrics/pull/2209
    • Update dependency org.apache.httpcomponents.client5:httpclient5 to v5.1.1 by @renovate in https://github.com/dropwizard/metrics/pull/2208
    • Update actions/checkout action to v2.4.0 by @renovate in https://github.com/dropwizard/metrics/pull/2214
    • Update dependency org.checkerframework:checker-qual to v3.19.0 by @renovate in https://github.com/dropwizard/metrics/pull/2215
    • Update dependency com.google.errorprone:error_prone_core to v2.10.0 by @renovate in https://github.com/dropwizard/metrics/pull/2221
    • Update dependency org.jdbi:jdbi3-core to v3.24.0 by @renovate in https://github.com/dropwizard/metrics/pull/2224
    • Update logback.version to v1.2.7 by @renovate in https://github.com/dropwizard/metrics/pull/2227
    • Update dependency com.rabbitmq:amqp-client to v5.14.0 by @renovate in https://github.com/dropwizard/metrics/pull/2230
    • Update dependency org.jdbi:jdbi3-core to v3.24.1 by @renovate in https://github.com/dropwizard/metrics/pull/2234
    • Update dependency org.apache.httpcomponents.client5:httpclient5 to v5.1.2 by @renovate in https://github.com/dropwizard/metrics/pull/2233
    • Update dependency org.mockito:mockito-core to v4.1.0 by @renovate in https://github.com/dropwizard/metrics/pull/2239
    • Update actions/cache action to v2.1.7 by @renovate in https://github.com/dropwizard/metrics/pull/2243
    • Update dependency com.github.ben-manes.caffeine:caffeine to v2.9.3 by @renovate in https://github.com/dropwizard/metrics/pull/2248
    • Update dependency org.openjdk.jcstress:jcstress-core to v0.15 by @renovate in https://github.com/dropwizard/metrics/pull/2246
    • Update dependency org.checkerframework:checker-qual to v3.20.0 by @renovate in https://github.com/dropwizard/metrics/pull/2254
    • Update dependency org.apache.httpcomponents:httpcore to v4.4.15 by @renovate in https://github.com/dropwizard/metrics/pull/2257
    • Update dependency org.apache.httpcomponents:httpcore-nio to v4.4.15 by @renovate in https://github.com/dropwizard/metrics/pull/2258
    • Update dependency org.jdbi:jdbi3-core to v3.25.0 by @renovate in https://github.com/dropwizard/metrics/pull/2259
    • Bump Maven to version 3.8.4

    Full Changelog: https://github.com/dropwizard/metrics/compare/v4.1.26...v4.1.27

    Source code(tar.gz)
    Source code(zip)
  • v4.2.4(Oct 4, 2021)

    Dependency updates

    • Update dependency com.github.ben-manes.caffeine:caffeine to v3.0.4 (#2160)
    • Update dependency com.google.errorprone:error_prone_core to v2.9.0 (#2097, #2110, #2125)
    • Update dependency com.rabbitmq:amqp-client to v5.13.1 (#2142)
    • Update dependency org.apache.httpcomponents.core5:httpcore5 to v5.1.2 (#2173)
    • Update dependency org.checkerframework:checker-qual to v3.18.0 (#2107, #2147)
    • Update dependency org.ehcache:ehcache to v3.9.6 (#2106, #2132)
    • Update dependency org.glassfish.jaxb:jaxb-runtime to v2.3.5 (#2111)
    • Update dependency org.jdbi:jdbi3-core to v3.22.0 (#2159)
    • Update jackson.version to v2.12.5 (#2136)
    • Update jersey.version to 2.35, 3.0.3 (#2150)
    • Update jetty9.version to v9.4.44.v20210927 (#2174)
    • Update logback.version to v1.2.6 (#2090, #2096, #2156)
    • Update slf4j.version (release/4.2.x) (#2059)
    • Update dependency org.assertj:assertj-core to v3.21.0 (#2166)
    • Update dependency org.mockito:mockito-core to v3.12.4 (#2126, #2133)
    • Update jmh.version to v1.33 (release/4.2.x) (#2117)
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.3.1 (#2153)
    • Bump Maven to version 3.8.2 (#2120)
    Source code(tar.gz)
    Source code(zip)
  • v4.1.26(Oct 4, 2021)

    Dependency updates

    • Update dependency com.google.errorprone:error_prone_core to v2.9.0 (#2095, #2108, #2122)
    • Update dependency com.rabbitmq:amqp-client to v5.13.1 (#2140)
    • Update dependency org.apache.httpcomponents.core5:httpcore5 to v5.1.2 (#2170)
    • Update dependency org.checkerframework:checker-qual to v3.18.0 (#2105, #2146)
    • Update dependency org.ehcache:ehcache to v3.9.6 (#2104, #2129)
    • Update dependency org.glassfish.jaxb:jaxb-runtime to v2.3.5 (#2109)
    • Update dependency org.glassfish.jersey:jersey-bom to v2.35 (#2149)
    • Update dependency org.jdbi:jdbi3-core to v3.22.0 (#2158)
    • Update jetty9.version to v9.4.44.v20210927 (#2171)
    • Update logback.version to v1.2.6 (#2087, #2094, #2155)
    • Update slf4j.version to v1.7.32 (#2089)
    • Update dependency org.assertj:assertj-core to v3.21.0 (#2165)
    • Update dependency org.mockito:mockito-core to v3.12.4 (#2123, #2124, #2130, #2131)
    • Update jmh.version to v1.33 (#2116)
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.3.1 (#2152)
    • Bump Maven to version 3.8.2 (#2120)
    Source code(tar.gz)
    Source code(zip)
Get inside your JVM

nudge4j Β· nudge4j is a tiny piece of code to help great developers understand code better, debug less, have more fun. Overview With nudge4j you can: c

lorenzo puccetti 151 Nov 4, 2022
Prometheus instrumentation library for JVM applications

Prometheus JVM Client It supports Java, Clojure, Scala, JRuby, and anything else that runs on the JVM. Table of Contents Using Assets Javadocs Instrum

Prometheus 1.9k Jan 5, 2023
Automon combines the power of AOP (AspectJ) with monitoring or logging tools you already use to declaratively monitor your Java code, the JDK, and 3rd party libraries.

Automon Automon combines the power of AOP (AspectJ) with monitoring tools or logging tools that you already use to declaratively monitor the following

Steve Souza 561 Nov 27, 2022
APM, (Application Performance Management) tool for large-scale distributed systems.

Visit our official web site for more information and Latest updates on Pinpoint. Latest Release (2020/01/21) We're happy to announce the release of Pi

null 12.6k Jan 4, 2023
an open source solution to application performance monitoring for java server applications

Stagemonitor is a Java monitoring agent that tightly integrates with time series databases like Elasticsearch, Graphite and InfluxDB to analyze graphe

stagemonitor 1.7k Dec 30, 2022
inspectIT is the leading Open Source APM (Application Performance Management) tool for analyzing your Java (EE) applications.

?? inspectIT OpenCensus Edition has been released ?? The inspectIT OCE project provides an improved Java agent newly developed from scratch focusing o

inspectIT 531 Dec 13, 2022
Sentry is cross-platform application monitoring, with a focus on error reporting.

Users and logs provide clues. Sentry provides answers. What's Sentry? Sentry is a developer-first error tracking and performance monitoring platform t

Sentry 33k Jan 9, 2023
:chart_with_upwards_trend: Capturing JVM- and application-level metrics. So you know what's going on.

Metrics ?? Capturing JVM- and application-level metrics. So you know what's going on. For more information, please see the documentation Versions Vers

Dropwizard 7.7k Dec 30, 2022
An application metrics facade for the most popular monitoring tools. Think SLF4J, but for metrics.

Micrometer Application Metrics An application metrics facade for the most popular monitoring tools. Instrument your code with dimensional metrics with

Micrometer Metrics 3.7k Dec 30, 2022
Publish Jenkins performances metrics to an OpenTelemetry endpoint, including distributed traces of job executions and health metrics of the controller.

OpenTelemetry Introduction Architecture Features Getting Started Examples Configuration as Code Contributing Introduction Collect Jenkins monitoring d

Jenkins 73 Dec 26, 2022
Distributed Tracing, Metrics and Context Propagation for application running on the JVM

Kamon Kamon is a set of tools for instrumenting applications running on the JVM. The best way to get started is to go to our official Get Started Page

Kamon Open Source Project 1.4k Dec 25, 2022
You want to go to a cafe but don't know where to go. Let cafe hub support you. Ok let's go

cafe-hub You want to go to a cafe but don't know where to go. Let cafe hub support you. Ok let's go Architecture: Domain Driven Design (DDD) LDM Insta

Khoa 1 Nov 12, 2022
Some anti afk bot which prevents you from getting punished for going afk in games. Way of stopping the bot is slightly flawed but we'll ignore that.

AntiAFK Some anti afk bot which prevents you from getting punished for going afk in games. Gui mode coming soon... Installation Install Java 17. Downl

flasky 1 Jan 13, 2022
Automatically discover and tag PII data across BigQuery tables and apply column-level access controls based on confidentiality level.

Automatically discover and tag PII data across BigQuery tables and apply column-level access controls based on confidentiality level.

Google Cloud Platform 18 Dec 29, 2022
Simple JVM Profiler Using StatsD and Other Metrics Backends

statsd-jvm-profiler statsd-jvm-profiler is a JVM agent profiler that sends profiling data to StatsD. Inspired by riemann-jvm-profiler, it was primaril

Etsy, Inc. 330 Oct 30, 2022
JVM Profiler Sending Metrics to Kafka, Console Output or Custom Reporter

Uber JVM Profiler Uber JVM Profiler provides a Java Agent to collect various metrics and stacktraces for Hadoop/Spark JVM processes in a distributed w

Uber Common 1.7k Dec 22, 2022
This repository contains example codes which will help you to know how to use selenium webdriver.

❓ What is this Repository about? This repo has example codes with Selenium 4 features. Websites used for testing are: automationpractice.com, saucedem

Mohammad Faisal Khatri 86 Dec 30, 2022
Ever wondered how a baloon feels in a dangerous place? Now you know.

Dont-Pop Description Ever wondered how a balloon feels in a dangerous place? Now you know. This game belongs to the category of Survival Games: the pl

Michele Ravaioli 9 Oct 24, 2022