Skip to content

Commit 043fc57

Browse files
fix(deps): update dependency io.prometheus:prometheus-metrics-bom to v1.5.0 (#1877)
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [io.prometheus:prometheus-metrics-bom](https://redirect.github.com/prometheus/client_java) | `1.5.0-SNAPSHOT` → `1.5.0` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.prometheus:prometheus-metrics-bom/1.5.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.prometheus:prometheus-metrics-bom/1.5.0-SNAPSHOT/1.5.0?slim=true) | --- ### Release Notes <details> <summary>prometheus/client_java (io.prometheus:prometheus-metrics-bom)</summary> ### [`v1.5.0`](https://redirect.github.com/prometheus/client_java/releases/tag/v1.5.0) [Compare Source](https://redirect.github.com/prometheus/client_java/compare/v1.4.3...v1.5.0) <!-- Release notes generated using configuration in .github/release.yml at main --> ##### Highlights ##### Performance - **Improve histogram/summary performance under contention** ([#&#8203;1794](https://redirect.github.com/prometheus/client_java/pull/1794)) by [@&#8203;jack-berg](https://redirect.github.com/jack-berg) — Significant throughput improvements for high-contention scenarios by striping `observationCount` across multiple instances. Benchmarks show prometheusClassic improving from \~5,126 ops/s to \~14,624 ops/s (\~185% improvement) and prometheusNative from \~3,854 ops/s to \~7,406 ops/s (\~92% improvement). ##### Configuration - **Support environment variables in properties** ([#&#8203;1828](https://redirect.github.com/prometheus/client_java/pull/1828)) by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) — Adds environment variable support for configuration (e.g., `IO_PROMETHEUS_EXPORTER_HTTP_SERVER_PORT`) while maintaining full backward compatibility. Also introduces snake\_case property naming (recommended) while keeping camelCase working. ##### API - **Allow metrics with the same name but different labels** ([#&#8203;1800](https://redirect.github.com/prometheus/client_java/pull/1800)) by [@&#8203;jaydeluca](https://redirect.github.com/jaydeluca) — Enables registration of metrics with the same name, with validation at both registration and scrape time. - **Add stable Metrics class to decouple consumers from protobuf version** ([#&#8203;1873](https://redirect.github.com/prometheus/client_java/pull/1873)) by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) — Introduces a stable `Metrics` class so consumer code no longer needs import updates on protobuf upgrades. ##### OpenTelemetry - **Add OTel support module and make examples standalone** ([#&#8203;1868](https://redirect.github.com/prometheus/client_java/pull/1868)) by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) — New `prometheus-metrics-otel-support` module that bundles the OTel SDK and Prometheus exporter as a single dependency. Examples are now standalone and can be copy-pasted directly. - **Add docs and example for OTel JVM runtime metrics** ([#&#8203;1861](https://redirect.github.com/prometheus/client_java/pull/1861)) by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) ##### Exporters - **Add metricsHandlerPath and registerHealthHandler configuration options to HTTPServer** ([#&#8203;1735](https://redirect.github.com/prometheus/client_java/pull/1735)) by [@&#8203;Donnerbart](https://redirect.github.com/Donnerbart) - **Disable compression in PrometheusScrapeHandler** ([#&#8203;1691](https://redirect.github.com/prometheus/client_java/pull/1691)) by [@&#8203;Myllyenko](https://redirect.github.com/Myllyenko) — Adds ability to disable compression in `PrometheusScrapeHandler`. - **Prevent exception in HttpServer exporter when using custom root metrics path** ([#&#8203;1772](https://redirect.github.com/prometheus/client_java/pull/1772)) by [@&#8203;Donnerbart](https://redirect.github.com/Donnerbart) ##### Instrumentation - **Add custom tags to JVM metrics** ([#&#8203;1769](https://redirect.github.com/prometheus/client_java/pull/1769)) by [@&#8203;sibasispadhi](https://redirect.github.com/sibasispadhi) - **Verify and document native histograms with custom buckets (NHCB) support** ([#&#8203;1846](https://redirect.github.com/prometheus/client_java/pull/1846)) by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) *** ##### What's Changed ##### 🏕 Features - Adding ability to disable compression in PrometheusScrapeHandler by [@&#8203;Myllyenko](https://redirect.github.com/Myllyenko) in [#&#8203;1691](https://redirect.github.com/prometheus/client_java/pull/1691) - Add metricsHandlerPath and registerHealthHandler configuration options to HTTPServer by [@&#8203;Donnerbart](https://redirect.github.com/Donnerbart) in [#&#8203;1735](https://redirect.github.com/prometheus/client_java/pull/1735) - Add custom tags to JVM metrics by [@&#8203;sibasispadhi](https://redirect.github.com/sibasispadhi) in [#&#8203;1769](https://redirect.github.com/prometheus/client_java/pull/1769) - Prevent exception in HttpServer exporter when using custom root metrics path by [@&#8203;Donnerbart](https://redirect.github.com/Donnerbart) in [#&#8203;1772](https://redirect.github.com/prometheus/client_java/pull/1772) - Allow metrics with the same name different labels by [@&#8203;jaydeluca](https://redirect.github.com/jaydeluca) in [#&#8203;1800](https://redirect.github.com/prometheus/client_java/pull/1800) - Improve histogram, summary performance under contention by striping observationCount by [@&#8203;jack-berg](https://redirect.github.com/jack-berg) in [#&#8203;1794](https://redirect.github.com/prometheus/client_java/pull/1794) - support environment variables in properties by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1828](https://redirect.github.com/prometheus/client_java/pull/1828) - Verify and document native histograms with custom buckets (NHCB) support by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1846](https://redirect.github.com/prometheus/client_java/pull/1846) - Remove help text validation by [@&#8203;jaydeluca](https://redirect.github.com/jaydeluca) in [#&#8203;1866](https://redirect.github.com/prometheus/client_java/pull/1866) - Add docs and example for OTel JVM runtime metrics by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1861](https://redirect.github.com/prometheus/client_java/pull/1861) - Add OTel support module and make examples standalone by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1868](https://redirect.github.com/prometheus/client_java/pull/1868) - Add stable Metrics class to decouple consumers from protobuf version by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1873](https://redirect.github.com/prometheus/client_java/pull/1873) ##### 🔧 Maintenance - fix native test by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1729](https://redirect.github.com/prometheus/client_java/pull/1729) - use graalvm version that renovate can update by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1733](https://redirect.github.com/prometheus/client_java/pull/1733) - fix: update build command to include 'clean' for benchmarks by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1762](https://redirect.github.com/prometheus/client_java/pull/1762) - fix blog post url by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1787](https://redirect.github.com/prometheus/client_java/pull/1787) - Add test matrix for different java versions by [@&#8203;jaydeluca](https://redirect.github.com/jaydeluca) in [#&#8203;1781](https://redirect.github.com/prometheus/client_java/pull/1781) - fix javadoc by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1809](https://redirect.github.com/prometheus/client_java/pull/1809) - pom cleanup by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1810](https://redirect.github.com/prometheus/client_java/pull/1810) - separate java update as graal is not working by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1811](https://redirect.github.com/prometheus/client_java/pull/1811) - pin super linter by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1814](https://redirect.github.com/prometheus/client_java/pull/1814) - improve code quality, part 1 by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1808](https://redirect.github.com/prometheus/client_java/pull/1808) - make tests not public by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1818](https://redirect.github.com/prometheus/client_java/pull/1818) - Make super-linter ARM friendly by [@&#8203;jaydeluca](https://redirect.github.com/jaydeluca) in [#&#8203;1817](https://redirect.github.com/prometheus/client_java/pull/1817) - Run integration tests in matrix by [@&#8203;jaydeluca](https://redirect.github.com/jaydeluca) in [#&#8203;1802](https://redirect.github.com/prometheus/client_java/pull/1802) - lint only modified links by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1819](https://redirect.github.com/prometheus/client_java/pull/1819) - Run nightly benchmarks by [@&#8203;jaydeluca](https://redirect.github.com/jaydeluca) in [#&#8203;1803](https://redirect.github.com/prometheus/client_java/pull/1803) - bundle renovate updates by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1829](https://redirect.github.com/prometheus/client_java/pull/1829) - refactor: update exception handling to use specific exception types by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1843](https://redirect.github.com/prometheus/client_java/pull/1843) - Reduce flakyness of testExemplarsClassicHistogram by [@&#8203;jaydeluca](https://redirect.github.com/jaydeluca) in [#&#8203;1842](https://redirect.github.com/prometheus/client_java/pull/1842) - fix and test gh pages by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1845](https://redirect.github.com/prometheus/client_java/pull/1845) - address todos by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1832](https://redirect.github.com/prometheus/client_java/pull/1832) - re-use super linter script by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1847](https://redirect.github.com/prometheus/client_java/pull/1847) - clean up link checking by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1850](https://redirect.github.com/prometheus/client_java/pull/1850) - add branch coverage, better javadoc lints by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1851](https://redirect.github.com/prometheus/client_java/pull/1851) - fix(renovate): enable updates for opentelemetry-instrumentation-bom-alpha by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1860](https://redirect.github.com/prometheus/client_java/pull/1860) - ignore internal poms by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1862](https://redirect.github.com/prometheus/client_java/pull/1862) ##### 🧹 Chore - add IDEA icon by [@&#8203;zeitlinger](https://redirect.github.com/zeitlinger) in [#&#8203;1676](https://redirect.github.com/prometheus/client_java/pull/1676) ##### 👒 Dependencies - fix(deps): update dependency commons-io:commons-io to v2.21.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1670](https://redirect.github.com/prometheus/client_java/pull/1670) - chore(deps): update eclipse-temurin:25-jre docker digest to [`4a26dfc`](https://redirect.github.com/prometheus/client_java/commit/4a26dfc) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1671](https://redirect.github.com/prometheus/client_java/pull/1671) - chore(deps): update eclipse-temurin:25-jre docker digest to [`dbfb525`](https://redirect.github.com/prometheus/client_java/commit/dbfb525) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1673](https://redirect.github.com/prometheus/client_java/pull/1673) - chore(deps): update eclipse-temurin docker tag to v25.0.1\_8-jre by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1672](https://redirect.github.com/prometheus/client_java/pull/1672) - chore(deps): update dependency mise to v2025.11.3 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1674](https://redirect.github.com/prometheus/client_java/pull/1674) - chore(deps): update eclipse-temurin:25.0.1\_8-jre docker digest to [`31fb090`](https://redirect.github.com/prometheus/client_java/commit/31fb090) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1675](https://redirect.github.com/prometheus/client_java/pull/1675) - chore(deps): update grafana/k6 docker digest to [`ef816d9`](https://redirect.github.com/prometheus/client_java/commit/ef816d9) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1677](https://redirect.github.com/prometheus/client_java/pull/1677) - fix(deps): update dependency org.apache.tomcat.embed:tomcat-embed-core to v11.0.14 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1678](https://redirect.github.com/prometheus/client_java/pull/1678) - chore(deps): update eclipse-temurin:25.0.1\_8-jre docker digest to [`ac6ce08`](https://redirect.github.com/prometheus/client_java/commit/ac6ce08) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1679](https://redirect.github.com/prometheus/client_java/pull/1679) - fix(deps): update jetty monorepo to v12.1.4 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1680](https://redirect.github.com/prometheus/client_java/pull/1680) - chore(deps): update jdx/mise-action action to v3.4.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1682](https://redirect.github.com/prometheus/client_java/pull/1682) - chore(deps): update eclipse-temurin:25.0.1\_8-jre docker digest to [`daeb27e`](https://redirect.github.com/prometheus/client_java/commit/daeb27e) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1683](https://redirect.github.com/prometheus/client_java/pull/1683) - fix(deps): update protobuf monorepo by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1681](https://redirect.github.com/prometheus/client_java/pull/1681) - chore(deps): update dependency org.wiremock:wiremock to v3.13.2 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1685](https://redirect.github.com/prometheus/client_java/pull/1685) - chore(deps): update eclipse-temurin:25.0.1\_8-jre docker digest to [`73fe03b`](https://redirect.github.com/prometheus/client_java/commit/73fe03b) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1687](https://redirect.github.com/prometheus/client_java/pull/1687) - chore(deps): update dependency mise to v2025.11.5 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1688](https://redirect.github.com/prometheus/client_java/pull/1688) - chore(deps): update dependency org.apache.maven.plugins:maven-jar-plugin to v3.5.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1686](https://redirect.github.com/prometheus/client_java/pull/1686) - chore(deps): update actions/checkout digest to [`93cb6ef`](https://redirect.github.com/prometheus/client_java/commit/93cb6ef) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1689](https://redirect.github.com/prometheus/client_java/pull/1689) - chore(deps): update actions/checkout action to v5.0.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1690](https://redirect.github.com/prometheus/client_java/pull/1690) - chore(deps): update grafana/grafana docker tag to v12.3.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1693](https://redirect.github.com/prometheus/client_java/pull/1693) - chore(deps): update dependency com.diffplug.spotless:spotless-maven-plugin to v3.1.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1692](https://redirect.github.com/prometheus/client_java/pull/1692) - chore(deps): update otel/opentelemetry-collector-contrib docker tag to v0.140.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1695](https://redirect.github.com/prometheus/client_java/pull/1695) - fix(deps): update dependency org.springframework.boot:spring-boot-starter-parent to v3.5.8 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1696](https://redirect.github.com/prometheus/client_java/pull/1696) - chore(deps): update grafana/k6 docker digest to [`d8e305a`](https://redirect.github.com/prometheus/client_java/commit/d8e305a) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1697](https://redirect.github.com/prometheus/client_java/pull/1697) - chore(deps): update actions/checkout action to v6 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1698](https://redirect.github.com/prometheus/client_java/pull/1698) - fix(deps): update dependency org.springframework.boot:spring-boot-starter-parent to v4 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1699](https://redirect.github.com/prometheus/client_java/pull/1699) - chore(deps): update jdx/mise-action action to v3.5.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1700](https://redirect.github.com/prometheus/client_java/pull/1700) - chore(deps): update dependency org.codehaus.mojo:versions-maven-plugin to v2.20.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1701](https://redirect.github.com/prometheus/client_java/pull/1701) - chore(deps): update dependency mise to v2025.11.7 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1702](https://redirect.github.com/prometheus/client_java/pull/1702) - chore(deps): update jdx/mise-action action to v3.5.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1703](https://redirect.github.com/prometheus/client_java/pull/1703) - chore(deps): update grafana/k6 docker digest to [`16bc234`](https://redirect.github.com/prometheus/client_java/commit/16bc234) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1704](https://redirect.github.com/prometheus/client_java/pull/1704) - chore(deps): update dependency org.codehaus.mojo:versions-maven-plugin to v2.20.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1705](https://redirect.github.com/prometheus/client_java/pull/1705) - chore(deps): update dependency com.google.errorprone:error\_prone\_core to v2.45.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1706](https://redirect.github.com/prometheus/client_java/pull/1706) - chore(deps): update module go:github.com/grafana/oats to v0.5.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1707](https://redirect.github.com/prometheus/client_java/pull/1707) - chore(deps): update dependency org.apache.maven.plugins:maven-resources-plugin to v3.4.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1709](https://redirect.github.com/prometheus/client_java/pull/1709) - chore(deps): update dependency org.apache.maven.plugins:maven-source-plugin to v3.4.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1710](https://redirect.github.com/prometheus/client_java/pull/1710) - chore(deps): update dependency mise to v2025.11.11 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1711](https://redirect.github.com/prometheus/client_java/pull/1711) - chore(deps): update dependency com.uber.nullaway:nullaway to v0.12.13 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1713](https://redirect.github.com/prometheus/client_java/pull/1713) - chore(deps): update module go:github.com/grafana/oats to v0.6.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1714](https://redirect.github.com/prometheus/client_java/pull/1714) - chore(deps): update otel/opentelemetry-collector-contrib docker tag to v0.141.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1715](https://redirect.github.com/prometheus/client_java/pull/1715) - chore(deps): update actions/checkout digest to [`8e8c483`](https://redirect.github.com/prometheus/client_java/commit/8e8c483) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1717](https://redirect.github.com/prometheus/client_java/pull/1717) - chore(deps): update actions/checkout action to v6.0.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1718](https://redirect.github.com/prometheus/client_java/pull/1718) - chore(deps): update prom/prometheus docker tag to v3.8.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1716](https://redirect.github.com/prometheus/client_java/pull/1716) - chore(deps): update otel/opentelemetry-collector-contrib:0.141.0 docker digest to [`b14234c`](https://redirect.github.com/prometheus/client_java/commit/b14234c) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1719](https://redirect.github.com/prometheus/client_java/pull/1719) - chore(deps): update actions/setup-java digest to [`f2beeb2`](https://redirect.github.com/prometheus/client_java/commit/f2beeb2) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1720](https://redirect.github.com/prometheus/client_java/pull/1720) - chore(deps): update dependency com.uber.nullaway:nullaway to v0.12.14 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1721](https://redirect.github.com/prometheus/client_java/pull/1721) - fix(deps): update jetty monorepo to v12.1.5 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1722](https://redirect.github.com/prometheus/client_java/pull/1722) - chore(deps): update dependency lychee to v0.22.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1723](https://redirect.github.com/prometheus/client_java/pull/1723) - chore(deps): update dependency mise to v2025.12.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1725](https://redirect.github.com/prometheus/client_java/pull/1725) - fix(deps): update protobuf monorepo by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1724](https://redirect.github.com/prometheus/client_java/pull/1724) - fix(deps): update dependency org.apache.tomcat.embed:tomcat-embed-core to v11.0.15 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1726](https://redirect.github.com/prometheus/client_java/pull/1726) - chore(deps): update dependency org.mockito:mockito-core to v5.21.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1731](https://redirect.github.com/prometheus/client_java/pull/1731) - chore(deps): update eclipse-temurin:25.0.1\_8-jre docker digest to [`f6b0925`](https://redirect.github.com/prometheus/client_java/commit/f6b0925) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1732](https://redirect.github.com/prometheus/client_java/pull/1732) - chore(deps): update actions/cache action to v5 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1736](https://redirect.github.com/prometheus/client_java/pull/1736) - chore(deps): update actions/cache digest to [`9255dc7`](https://redirect.github.com/prometheus/client_java/commit/9255dc7) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1737](https://redirect.github.com/prometheus/client_java/pull/1737) - chore(deps): update dependency mise to v2025.12.7 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1739](https://redirect.github.com/prometheus/client_java/pull/1739) - chore(deps): update dependency org.testcontainers:junit-jupiter to v1.21.4 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1740](https://redirect.github.com/prometheus/client_java/pull/1740) - chore(deps): update super-linter/super-linter action to v8.3.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1743](https://redirect.github.com/prometheus/client_java/pull/1743) - chore(deps): update prom/prometheus docker tag to v3.8.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1742](https://redirect.github.com/prometheus/client_java/pull/1742) - chore(deps): update otel/opentelemetry-collector-contrib docker tag to v0.142.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1741](https://redirect.github.com/prometheus/client_java/pull/1741) - chore(deps): update grafana/grafana docker tag to v12.3.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1745](https://redirect.github.com/prometheus/client_java/pull/1745) - chore(deps): update dependency maven to v3.9.12 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1744](https://redirect.github.com/prometheus/client_java/pull/1744) - fix(deps): update dependency org.springframework.boot:spring-boot-starter-parent to v4.0.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1746](https://redirect.github.com/prometheus/client_java/pull/1746) - chore(deps): update grafana/grafana:12.3.1 docker digest to [`2175aaa`](https://redirect.github.com/prometheus/client_java/commit/2175aaa) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1747](https://redirect.github.com/prometheus/client_java/pull/1747) - chore(deps): update module go:github.com/gohugoio/hugo to v0.153.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1748](https://redirect.github.com/prometheus/client_java/pull/1748) - chore(deps): update dependency com.uber.nullaway:nullaway to v0.12.15 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1749](https://redirect.github.com/prometheus/client_java/pull/1749) - chore(deps): update module go:github.com/gohugoio/hugo to v0.153.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1750](https://redirect.github.com/prometheus/client_java/pull/1750) - chore(deps): update dependency org.codehaus.mojo:exec-maven-plugin to v3.6.3 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1751](https://redirect.github.com/prometheus/client_java/pull/1751) - chore(deps): update dependency mise to v2025.12.12 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1752](https://redirect.github.com/prometheus/client_java/pull/1752) - chore(deps): update module go:github.com/gohugoio/hugo to v0.153.2 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1753](https://redirect.github.com/prometheus/client_java/pull/1753) - chore(deps): update super-linter/super-linter action to v8.3.2 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1754](https://redirect.github.com/prometheus/client_java/pull/1754) - chore(deps): update module go:github.com/gohugoio/hugo to v0.153.3 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1756](https://redirect.github.com/prometheus/client_java/pull/1756) - chore(deps): update module go:github.com/gohugoio/hugo to v0.153.4 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1757](https://redirect.github.com/prometheus/client_java/pull/1757) - chore(deps): update module go:github.com/gohugoio/hugo to v0.153.5 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1758](https://redirect.github.com/prometheus/client_java/pull/1758) - chore(deps): update module go:github.com/gohugoio/hugo to v0.154.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1759](https://redirect.github.com/prometheus/client_java/pull/1759) - chore(deps): update module go:github.com/gohugoio/hugo to v0.154.2 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1760](https://redirect.github.com/prometheus/client_java/pull/1760) - chore(deps): update dependency mise to v2025.12.13 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1761](https://redirect.github.com/prometheus/client_java/pull/1761) - chore(deps): update grafana/k6 docker digest to [`a7c79af`](https://redirect.github.com/prometheus/client_java/commit/a7c79af) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1763](https://redirect.github.com/prometheus/client_java/pull/1763) - chore(deps): update otel/opentelemetry-collector-contrib docker tag to v0.143.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1765](https://redirect.github.com/prometheus/client_java/pull/1765) - chore(deps): update otel/opentelemetry-collector-contrib docker tag to v0.143.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1767](https://redirect.github.com/prometheus/client_java/pull/1767) - fix(deps): update junit-framework monorepo to v6.0.2 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1764](https://redirect.github.com/prometheus/client_java/pull/1764) - chore(deps): update prom/prometheus docker tag to v3.9.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1768](https://redirect.github.com/prometheus/client_java/pull/1768) - chore(deps): update module go:github.com/gohugoio/hugo to v0.154.3 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1766](https://redirect.github.com/prometheus/client_java/pull/1766) - chore(deps): update prom/prometheus docker tag to v3.9.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1770](https://redirect.github.com/prometheus/client_java/pull/1770) - chore(deps): update dependency org.sonatype.central:central-publishing-maven-plugin to v0.10.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1771](https://redirect.github.com/prometheus/client_java/pull/1771) - chore(deps): update dependency com.google.errorprone:error\_prone\_core to v2.46.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1773](https://redirect.github.com/prometheus/client_java/pull/1773) - chore(deps): update module go:github.com/gohugoio/hugo to v0.154.4 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1775](https://redirect.github.com/prometheus/client_java/pull/1775) - chore(deps): update dependency mise to v2026 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1777](https://redirect.github.com/prometheus/client_java/pull/1777) - chore(deps): update module go:github.com/gohugoio/hugo to v0.154.5 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1776](https://redirect.github.com/prometheus/client_java/pull/1776) - fix(deps): update protobuf monorepo by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1774](https://redirect.github.com/prometheus/client_java/pull/1774) - chore(deps): update eclipse-temurin:25.0.1\_8-jre docker digest to [`968f191`](https://redirect.github.com/prometheus/client_java/commit/968f191) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1779](https://redirect.github.com/prometheus/client_java/pull/1779) - fix(deps): update protobuf monorepo by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1778](https://redirect.github.com/prometheus/client_java/pull/1778) - chore(deps): update eclipse-temurin:25.0.1\_8-jre docker digest to [`96bccca`](https://redirect.github.com/prometheus/client_java/commit/96bccca) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1782](https://redirect.github.com/prometheus/client_java/pull/1782) - chore(deps): update dependency org.codehaus.mojo:versions-maven-plugin to v2.21.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1786](https://redirect.github.com/prometheus/client_java/pull/1786) - chore(deps): update dependency mise to v2026.1.4 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1785](https://redirect.github.com/prometheus/client_java/pull/1785) - chore(deps): update jdx/mise-action action to v3.6.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1784](https://redirect.github.com/prometheus/client_java/pull/1784) - chore(deps): update actions/cache action to v5.0.2 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1788](https://redirect.github.com/prometheus/client_java/pull/1788) - chore(deps): update grafana/tempo docker tag to v2.9.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1789](https://redirect.github.com/prometheus/client_java/pull/1789) - chore(deps): update eclipse-temurin:25.0.1\_8-jre docker digest to [`9d1d306`](https://redirect.github.com/prometheus/client_java/commit/9d1d306) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1790](https://redirect.github.com/prometheus/client_java/pull/1790) - chore(deps): update jdx/mise-action action to v3.6.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1791](https://redirect.github.com/prometheus/client_java/pull/1791) - chore(deps): update dependency com.uber.nullaway:nullaway to v0.13.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1792](https://redirect.github.com/prometheus/client_java/pull/1792) - chore(deps): update otel/opentelemetry-collector-contrib docker tag to v0.144.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1793](https://redirect.github.com/prometheus/client_java/pull/1793) - chore(deps): update actions/setup-java digest to [`be666c2`](https://redirect.github.com/prometheus/client_java/commit/be666c2) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1796](https://redirect.github.com/prometheus/client_java/pull/1796) - fix(deps): update dependency org.springframework.boot:spring-boot-starter-parent to v4.0.2 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1797](https://redirect.github.com/prometheus/client_java/pull/1797) - chore(deps): update dependency com.diffplug.spotless:spotless-maven-plugin to v3.2.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1799](https://redirect.github.com/prometheus/client_java/pull/1799) - chore(deps): update actions/checkout action to v6.0.2 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1798](https://redirect.github.com/prometheus/client_java/pull/1798) - chore(deps): update dependency org.assertj:assertj-core to v3.27.7 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1801](https://redirect.github.com/prometheus/client_java/pull/1801) - fix(deps): update dependency io.dropwizard.metrics:metrics-core to v4.2.38 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1805](https://redirect.github.com/prometheus/client_java/pull/1805) - chore(deps): update dependency mise to v2026.1.7 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1804](https://redirect.github.com/prometheus/client_java/pull/1804) - fix(deps): update dependency io.dropwizard.metrics5:metrics-core to v5.0.6 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1806](https://redirect.github.com/prometheus/client_java/pull/1806) - chore(deps): update dependency org.assertj:assertj-core to v3.27.7 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1807](https://redirect.github.com/prometheus/client_java/pull/1807) - chore(deps): update dependency java to v25.0.2+10.0.lts by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1813](https://redirect.github.com/prometheus/client_java/pull/1813) - chore(config): migrate Renovate config by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1815](https://redirect.github.com/prometheus/client_java/pull/1815) - fix(deps): update dependency org.apache.tomcat.embed:tomcat-embed-core to v11.0.18 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1820](https://redirect.github.com/prometheus/client_java/pull/1820) - chore(deps): update grafana/tempo docker tag to v2.10.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1821](https://redirect.github.com/prometheus/client_java/pull/1821) - chore(deps): update dependency com.uber.nullaway:nullaway to v0.13.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1822](https://redirect.github.com/prometheus/client_java/pull/1822) - chore(deps): update grafana/grafana docker tag to v12.3.2 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1824](https://redirect.github.com/prometheus/client_java/pull/1824) - chore(deps): update dependency com.diffplug.spotless:spotless-maven-plugin to v3.2.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1825](https://redirect.github.com/prometheus/client_java/pull/1825) - chore(deps): update ghcr.io/super-linter/super-linter docker tag to v8.4.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1826](https://redirect.github.com/prometheus/client_java/pull/1826) - chore(deps): update module go:github.com/gohugoio/hugo to v0.155.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1831](https://redirect.github.com/prometheus/client_java/pull/1831) - chore(deps): update super-linter to v8.4.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1830](https://redirect.github.com/prometheus/client_java/pull/1830) - chore(deps): update actions/cache action to v5.0.3 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1833](https://redirect.github.com/prometheus/client_java/pull/1833) - fix(deps): update jetty monorepo to v12.1.6 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1837](https://redirect.github.com/prometheus/client_java/pull/1837) - chore(deps): update module go:github.com/gohugoio/hugo to v0.155.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1836](https://redirect.github.com/prometheus/client_java/pull/1836) - chore(deps): update dependency org.apache.maven.plugins:maven-compiler-plugin to v3.15.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1839](https://redirect.github.com/prometheus/client_java/pull/1839) - chore(deps): update dependency mise to v2026.2.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1840](https://redirect.github.com/prometheus/client_java/pull/1840) - chore(deps): update module go:github.com/gohugoio/hugo to v0.155.2 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1841](https://redirect.github.com/prometheus/client_java/pull/1841) - chore(deps): update actions/checkout digest to [`de0fac2`](https://redirect.github.com/prometheus/client_java/commit/de0fac2) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1844](https://redirect.github.com/prometheus/client_java/pull/1844) - fix(deps): update protobuf monorepo by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1835](https://redirect.github.com/prometheus/client_java/pull/1835) - chore(deps): update otel/opentelemetry-collector-contrib docker tag to v0.145.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1849](https://redirect.github.com/prometheus/client_java/pull/1849) - chore(deps): update dependency com.google.errorprone:error\_prone\_core to v2.47.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1848](https://redirect.github.com/prometheus/client_java/pull/1848) - chore(deps): update eclipse-temurin docker tag to v25.0.2\_10-jre by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1853](https://redirect.github.com/prometheus/client_java/pull/1853) - chore(deps): update ghcr.io/super-linter/super-linter docker tag to v8.5.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1856](https://redirect.github.com/prometheus/client_java/pull/1856) - chore(deps): update eclipse-temurin:25.0.2\_10-jre docker digest to [`ad53b91`](https://redirect.github.com/prometheus/client_java/commit/ad53b91) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1857](https://redirect.github.com/prometheus/client_java/pull/1857) - chore(deps): update module go:github.com/gohugoio/hugo to v0.155.3 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1858](https://redirect.github.com/prometheus/client_java/pull/1858) - chore(deps): update dependency org.apache.maven.plugins:maven-dependency-plugin to v3.10.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1859](https://redirect.github.com/prometheus/client_java/pull/1859) - fix(deps): update dependency io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha to v2.24.0-alpha by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1863](https://redirect.github.com/prometheus/client_java/pull/1863) - chore(deps): update grafana/k6 docker digest to [`1d0ddce`](https://redirect.github.com/prometheus/client_java/commit/1d0ddce) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1864](https://redirect.github.com/prometheus/client_java/pull/1864) - chore(deps): update eclipse-temurin:25.0.2\_10-jre docker digest to [`43a7b50`](https://redirect.github.com/prometheus/client_java/commit/43a7b50) by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1867](https://redirect.github.com/prometheus/client_java/pull/1867) - chore(deps): update module go:github.com/grafana/oats to v0.6.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1869](https://redirect.github.com/prometheus/client_java/pull/1869) - chore(deps): update grafana/grafana docker tag to v12.3.3 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1870](https://redirect.github.com/prometheus/client_java/pull/1870) - fix(deps): update dependency io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha to v2.25.0-alpha by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1871](https://redirect.github.com/prometheus/client_java/pull/1871) - fix(deps): update dependency io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha to v2.25.0-alpha by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;1872](https://redirect.github.com/prometheus/client_java/pull/1872) ##### New Contributors - [@&#8203;Myllyenko](https://redirect.github.com/Myllyenko) made their first contribution in [#&#8203;1691](https://redirect.github.com/prometheus/client_java/pull/1691) - [@&#8203;Donnerbart](https://redirect.github.com/Donnerbart) made their first contribution in [#&#8203;1735](https://redirect.github.com/prometheus/client_java/pull/1735) - [@&#8203;sibasispadhi](https://redirect.github.com/sibasispadhi) made their first contribution in [#&#8203;1769](https://redirect.github.com/prometheus/client_java/pull/1769) - [@&#8203;jack-berg](https://redirect.github.com/jack-berg) made their first contribution in [#&#8203;1794](https://redirect.github.com/prometheus/client_java/pull/1794) **Full Changelog**: <v1.4.3...v1.5.0> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/prometheus/client_java). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My44LjUiLCJ1cGRhdGVkSW5WZXIiOiI0My44LjUiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 4e2d6b8 commit 043fc57

File tree

11 files changed

+11
-11
lines changed
  • examples
    • example-custom-buckets
    • example-exemplars-tail-sampling
    • example-exporter-httpserver
    • example-exporter-multi-target
    • example-exporter-opentelemetry
    • example-exporter-servlet-tomcat
    • example-native-histogram
    • example-otel-jvm-runtime-metrics
    • example-prometheus-properties
    • example-simpleclient-bridge

11 files changed

+11
-11
lines changed

examples/example-custom-buckets/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<dependency>
2323
<groupId>io.prometheus</groupId>
2424
<artifactId>prometheus-metrics-bom</artifactId>
25-
<version>1.5.0-SNAPSHOT</version>
25+
<version>1.5.0</version>
2626
<type>pom</type>
2727
<scope>import</scope>
2828
</dependency>

examples/example-exemplars-tail-sampling/example-greeting-service/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<dependency>
2525
<groupId>io.prometheus</groupId>
2626
<artifactId>prometheus-metrics-bom</artifactId>
27-
<version>1.5.0-SNAPSHOT</version>
27+
<version>1.5.0</version>
2828
<type>pom</type>
2929
<scope>import</scope>
3030
</dependency>

examples/example-exemplars-tail-sampling/example-hello-world-app/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<dependency>
2525
<groupId>io.prometheus</groupId>
2626
<artifactId>prometheus-metrics-bom</artifactId>
27-
<version>1.5.0-SNAPSHOT</version>
27+
<version>1.5.0</version>
2828
<type>pom</type>
2929
<scope>import</scope>
3030
</dependency>

examples/example-exporter-httpserver/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>io.prometheus</groupId>
2525
<artifactId>prometheus-metrics-bom</artifactId>
26-
<version>1.5.0-SNAPSHOT</version>
26+
<version>1.5.0</version>
2727
<type>pom</type>
2828
<scope>import</scope>
2929
</dependency>

examples/example-exporter-multi-target/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>io.prometheus</groupId>
2525
<artifactId>prometheus-metrics-bom</artifactId>
26-
<version>1.5.0-SNAPSHOT</version>
26+
<version>1.5.0</version>
2727
<type>pom</type>
2828
<scope>import</scope>
2929
</dependency>

examples/example-exporter-opentelemetry/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>io.prometheus</groupId>
2525
<artifactId>prometheus-metrics-bom</artifactId>
26-
<version>1.5.0-SNAPSHOT</version>
26+
<version>1.5.0</version>
2727
<type>pom</type>
2828
<scope>import</scope>
2929
</dependency>

examples/example-exporter-servlet-tomcat/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<dependency>
2323
<groupId>io.prometheus</groupId>
2424
<artifactId>prometheus-metrics-bom</artifactId>
25-
<version>1.5.0-SNAPSHOT</version>
25+
<version>1.5.0</version>
2626
<type>pom</type>
2727
<scope>import</scope>
2828
</dependency>

examples/example-native-histogram/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<dependency>
2323
<groupId>io.prometheus</groupId>
2424
<artifactId>prometheus-metrics-bom</artifactId>
25-
<version>1.5.0-SNAPSHOT</version>
25+
<version>1.5.0</version>
2626
<type>pom</type>
2727
<scope>import</scope>
2828
</dependency>

examples/example-otel-jvm-runtime-metrics/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>io.prometheus</groupId>
2525
<artifactId>prometheus-metrics-bom</artifactId>
26-
<version>1.5.0-SNAPSHOT</version>
26+
<version>1.5.0</version>
2727
<type>pom</type>
2828
<scope>import</scope>
2929
</dependency>

examples/example-prometheus-properties/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<dependency>
2323
<groupId>io.prometheus</groupId>
2424
<artifactId>prometheus-metrics-bom</artifactId>
25-
<version>1.5.0-SNAPSHOT</version>
25+
<version>1.5.0</version>
2626
<type>pom</type>
2727
<scope>import</scope>
2828
</dependency>

0 commit comments

Comments
 (0)