Commit 043fc57
authored
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` |

|

|
---
### 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**
([#​1794](https://redirect.github.com/prometheus/client_java/pull/1794))
by [@​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**
([#​1828](https://redirect.github.com/prometheus/client_java/pull/1828))
by [@​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**
([#​1800](https://redirect.github.com/prometheus/client_java/pull/1800))
by [@​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**
([#​1873](https://redirect.github.com/prometheus/client_java/pull/1873))
by [@​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**
([#​1868](https://redirect.github.com/prometheus/client_java/pull/1868))
by [@​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**
([#​1861](https://redirect.github.com/prometheus/client_java/pull/1861))
by [@​zeitlinger](https://redirect.github.com/zeitlinger)
##### Exporters
- **Add metricsHandlerPath and registerHealthHandler configuration
options to HTTPServer**
([#​1735](https://redirect.github.com/prometheus/client_java/pull/1735))
by [@​Donnerbart](https://redirect.github.com/Donnerbart)
- **Disable compression in PrometheusScrapeHandler**
([#​1691](https://redirect.github.com/prometheus/client_java/pull/1691))
by [@​Myllyenko](https://redirect.github.com/Myllyenko) — Adds
ability to disable compression in `PrometheusScrapeHandler`.
- **Prevent exception in HttpServer exporter when using custom root
metrics path**
([#​1772](https://redirect.github.com/prometheus/client_java/pull/1772))
by [@​Donnerbart](https://redirect.github.com/Donnerbart)
##### Instrumentation
- **Add custom tags to JVM metrics**
([#​1769](https://redirect.github.com/prometheus/client_java/pull/1769))
by [@​sibasispadhi](https://redirect.github.com/sibasispadhi)
- **Verify and document native histograms with custom buckets (NHCB)
support**
([#​1846](https://redirect.github.com/prometheus/client_java/pull/1846))
by [@​zeitlinger](https://redirect.github.com/zeitlinger)
***
##### What's Changed
##### 🏕 Features
- Adding ability to disable compression in PrometheusScrapeHandler by
[@​Myllyenko](https://redirect.github.com/Myllyenko) in
[#​1691](https://redirect.github.com/prometheus/client_java/pull/1691)
- Add metricsHandlerPath and registerHealthHandler configuration options
to HTTPServer by
[@​Donnerbart](https://redirect.github.com/Donnerbart) in
[#​1735](https://redirect.github.com/prometheus/client_java/pull/1735)
- Add custom tags to JVM metrics by
[@​sibasispadhi](https://redirect.github.com/sibasispadhi) in
[#​1769](https://redirect.github.com/prometheus/client_java/pull/1769)
- Prevent exception in HttpServer exporter when using custom root
metrics path by
[@​Donnerbart](https://redirect.github.com/Donnerbart) in
[#​1772](https://redirect.github.com/prometheus/client_java/pull/1772)
- Allow metrics with the same name different labels by
[@​jaydeluca](https://redirect.github.com/jaydeluca) in
[#​1800](https://redirect.github.com/prometheus/client_java/pull/1800)
- Improve histogram, summary performance under contention by striping
observationCount by
[@​jack-berg](https://redirect.github.com/jack-berg) in
[#​1794](https://redirect.github.com/prometheus/client_java/pull/1794)
- support environment variables in properties by
[@​zeitlinger](https://redirect.github.com/zeitlinger) in
[#​1828](https://redirect.github.com/prometheus/client_java/pull/1828)
- Verify and document native histograms with custom buckets (NHCB)
support by [@​zeitlinger](https://redirect.github.com/zeitlinger)
in
[#​1846](https://redirect.github.com/prometheus/client_java/pull/1846)
- Remove help text validation by
[@​jaydeluca](https://redirect.github.com/jaydeluca) in
[#​1866](https://redirect.github.com/prometheus/client_java/pull/1866)
- Add docs and example for OTel JVM runtime metrics by
[@​zeitlinger](https://redirect.github.com/zeitlinger) in
[#​1861](https://redirect.github.com/prometheus/client_java/pull/1861)
- Add OTel support module and make examples standalone by
[@​zeitlinger](https://redirect.github.com/zeitlinger) in
[#​1868](https://redirect.github.com/prometheus/client_java/pull/1868)
- Add stable Metrics class to decouple consumers from protobuf version
by [@​zeitlinger](https://redirect.github.com/zeitlinger) in
[#​1873](https://redirect.github.com/prometheus/client_java/pull/1873)
##### 🔧 Maintenance
- fix native test by
[@​zeitlinger](https://redirect.github.com/zeitlinger) in
[#​1729](https://redirect.github.com/prometheus/client_java/pull/1729)
- use graalvm version that renovate can update by
[@​zeitlinger](https://redirect.github.com/zeitlinger) in
[#​1733](https://redirect.github.com/prometheus/client_java/pull/1733)
- fix: update build command to include 'clean' for benchmarks by
[@​zeitlinger](https://redirect.github.com/zeitlinger) in
[#​1762](https://redirect.github.com/prometheus/client_java/pull/1762)
- fix blog post url by
[@​zeitlinger](https://redirect.github.com/zeitlinger) in
[#​1787](https://redirect.github.com/prometheus/client_java/pull/1787)
- Add test matrix for different java versions by
[@​jaydeluca](https://redirect.github.com/jaydeluca) in
[#​1781](https://redirect.github.com/prometheus/client_java/pull/1781)
- fix javadoc by
[@​zeitlinger](https://redirect.github.com/zeitlinger) in
[#​1809](https://redirect.github.com/prometheus/client_java/pull/1809)
- pom cleanup by
[@​zeitlinger](https://redirect.github.com/zeitlinger) in
[#​1810](https://redirect.github.com/prometheus/client_java/pull/1810)
- separate java update as graal is not working by
[@​zeitlinger](https://redirect.github.com/zeitlinger) in
[#​1811](https://redirect.github.com/prometheus/client_java/pull/1811)
- pin super linter by
[@​zeitlinger](https://redirect.github.com/zeitlinger) in
[#​1814](https://redirect.github.com/prometheus/client_java/pull/1814)
- improve code quality, part 1 by
[@​zeitlinger](https://redirect.github.com/zeitlinger) in
[#​1808](https://redirect.github.com/prometheus/client_java/pull/1808)
- make tests not public by
[@​zeitlinger](https://redirect.github.com/zeitlinger) in
[#​1818](https://redirect.github.com/prometheus/client_java/pull/1818)
- Make super-linter ARM friendly by
[@​jaydeluca](https://redirect.github.com/jaydeluca) in
[#​1817](https://redirect.github.com/prometheus/client_java/pull/1817)
- Run integration tests in matrix by
[@​jaydeluca](https://redirect.github.com/jaydeluca) in
[#​1802](https://redirect.github.com/prometheus/client_java/pull/1802)
- lint only modified links by
[@​zeitlinger](https://redirect.github.com/zeitlinger) in
[#​1819](https://redirect.github.com/prometheus/client_java/pull/1819)
- Run nightly benchmarks by
[@​jaydeluca](https://redirect.github.com/jaydeluca) in
[#​1803](https://redirect.github.com/prometheus/client_java/pull/1803)
- bundle renovate updates by
[@​zeitlinger](https://redirect.github.com/zeitlinger) in
[#​1829](https://redirect.github.com/prometheus/client_java/pull/1829)
- refactor: update exception handling to use specific exception types by
[@​zeitlinger](https://redirect.github.com/zeitlinger) in
[#​1843](https://redirect.github.com/prometheus/client_java/pull/1843)
- Reduce flakyness of testExemplarsClassicHistogram by
[@​jaydeluca](https://redirect.github.com/jaydeluca) in
[#​1842](https://redirect.github.com/prometheus/client_java/pull/1842)
- fix and test gh pages by
[@​zeitlinger](https://redirect.github.com/zeitlinger) in
[#​1845](https://redirect.github.com/prometheus/client_java/pull/1845)
- address todos by
[@​zeitlinger](https://redirect.github.com/zeitlinger) in
[#​1832](https://redirect.github.com/prometheus/client_java/pull/1832)
- re-use super linter script by
[@​zeitlinger](https://redirect.github.com/zeitlinger) in
[#​1847](https://redirect.github.com/prometheus/client_java/pull/1847)
- clean up link checking by
[@​zeitlinger](https://redirect.github.com/zeitlinger) in
[#​1850](https://redirect.github.com/prometheus/client_java/pull/1850)
- add branch coverage, better javadoc lints by
[@​zeitlinger](https://redirect.github.com/zeitlinger) in
[#​1851](https://redirect.github.com/prometheus/client_java/pull/1851)
- fix(renovate): enable updates for
opentelemetry-instrumentation-bom-alpha by
[@​zeitlinger](https://redirect.github.com/zeitlinger) in
[#​1860](https://redirect.github.com/prometheus/client_java/pull/1860)
- ignore internal poms by
[@​zeitlinger](https://redirect.github.com/zeitlinger) in
[#​1862](https://redirect.github.com/prometheus/client_java/pull/1862)
##### 🧹 Chore
- add IDEA icon by
[@​zeitlinger](https://redirect.github.com/zeitlinger) in
[#​1676](https://redirect.github.com/prometheus/client_java/pull/1676)
##### 👒 Dependencies
- fix(deps): update dependency commons-io:commons-io to v2.21.0 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1673](https://redirect.github.com/prometheus/client_java/pull/1673)
- chore(deps): update eclipse-temurin docker tag to v25.0.1\_8-jre by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1672](https://redirect.github.com/prometheus/client_java/pull/1672)
- chore(deps): update dependency mise to v2025.11.3 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1679](https://redirect.github.com/prometheus/client_java/pull/1679)
- fix(deps): update jetty monorepo to v12.1.4 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1680](https://redirect.github.com/prometheus/client_java/pull/1680)
- chore(deps): update jdx/mise-action action to v3.4.1 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1683](https://redirect.github.com/prometheus/client_java/pull/1683)
- fix(deps): update protobuf monorepo by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1681](https://redirect.github.com/prometheus/client_java/pull/1681)
- chore(deps): update dependency org.wiremock:wiremock to v3.13.2 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1687](https://redirect.github.com/prometheus/client_java/pull/1687)
- chore(deps): update dependency mise to v2025.11.5 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1689](https://redirect.github.com/prometheus/client_java/pull/1689)
- chore(deps): update actions/checkout action to v5.0.1 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1690](https://redirect.github.com/prometheus/client_java/pull/1690)
- chore(deps): update grafana/grafana docker tag to v12.3.0 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1692](https://redirect.github.com/prometheus/client_java/pull/1692)
- chore(deps): update otel/opentelemetry-collector-contrib docker tag to
v0.140.1 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1697](https://redirect.github.com/prometheus/client_java/pull/1697)
- chore(deps): update actions/checkout action to v6 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1698](https://redirect.github.com/prometheus/client_java/pull/1698)
- fix(deps): update dependency
org.springframework.boot:spring-boot-starter-parent to v4 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1699](https://redirect.github.com/prometheus/client_java/pull/1699)
- chore(deps): update jdx/mise-action action to v3.5.0 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1701](https://redirect.github.com/prometheus/client_java/pull/1701)
- chore(deps): update dependency mise to v2025.11.7 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1702](https://redirect.github.com/prometheus/client_java/pull/1702)
- chore(deps): update jdx/mise-action action to v3.5.1 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1706](https://redirect.github.com/prometheus/client_java/pull/1706)
- chore(deps): update module go:github.com/grafana/oats to v0.5.0 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1710](https://redirect.github.com/prometheus/client_java/pull/1710)
- chore(deps): update dependency mise to v2025.11.11 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1711](https://redirect.github.com/prometheus/client_java/pull/1711)
- chore(deps): update dependency com.uber.nullaway:nullaway to v0.12.13
by [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1713](https://redirect.github.com/prometheus/client_java/pull/1713)
- chore(deps): update module go:github.com/grafana/oats to v0.6.0 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1714](https://redirect.github.com/prometheus/client_java/pull/1714)
- chore(deps): update otel/opentelemetry-collector-contrib docker tag to
v0.141.0 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1717](https://redirect.github.com/prometheus/client_java/pull/1717)
- chore(deps): update actions/checkout action to v6.0.1 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1718](https://redirect.github.com/prometheus/client_java/pull/1718)
- chore(deps): update prom/prometheus docker tag to v3.8.0 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1720](https://redirect.github.com/prometheus/client_java/pull/1720)
- chore(deps): update dependency com.uber.nullaway:nullaway to v0.12.14
by [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1721](https://redirect.github.com/prometheus/client_java/pull/1721)
- fix(deps): update jetty monorepo to v12.1.5 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1722](https://redirect.github.com/prometheus/client_java/pull/1722)
- chore(deps): update dependency lychee to v0.22.0 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1723](https://redirect.github.com/prometheus/client_java/pull/1723)
- chore(deps): update dependency mise to v2025.12.0 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1725](https://redirect.github.com/prometheus/client_java/pull/1725)
- fix(deps): update protobuf monorepo by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1726](https://redirect.github.com/prometheus/client_java/pull/1726)
- chore(deps): update dependency org.mockito:mockito-core to v5.21.0 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1732](https://redirect.github.com/prometheus/client_java/pull/1732)
- chore(deps): update actions/cache action to v5 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1737](https://redirect.github.com/prometheus/client_java/pull/1737)
- chore(deps): update dependency mise to v2025.12.7 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1739](https://redirect.github.com/prometheus/client_java/pull/1739)
- chore(deps): update dependency org.testcontainers:junit-jupiter to
v1.21.4 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1740](https://redirect.github.com/prometheus/client_java/pull/1740)
- chore(deps): update super-linter/super-linter action to v8.3.1 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1743](https://redirect.github.com/prometheus/client_java/pull/1743)
- chore(deps): update prom/prometheus docker tag to v3.8.1 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1742](https://redirect.github.com/prometheus/client_java/pull/1742)
- chore(deps): update otel/opentelemetry-collector-contrib docker tag to
v0.142.0 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1741](https://redirect.github.com/prometheus/client_java/pull/1741)
- chore(deps): update grafana/grafana docker tag to v12.3.1 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1745](https://redirect.github.com/prometheus/client_java/pull/1745)
- chore(deps): update dependency maven to v3.9.12 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1747](https://redirect.github.com/prometheus/client_java/pull/1747)
- chore(deps): update module go:github.com/gohugoio/hugo to v0.153.0 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1748](https://redirect.github.com/prometheus/client_java/pull/1748)
- chore(deps): update dependency com.uber.nullaway:nullaway to v0.12.15
by [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1749](https://redirect.github.com/prometheus/client_java/pull/1749)
- chore(deps): update module go:github.com/gohugoio/hugo to v0.153.1 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot]
in
[#​1751](https://redirect.github.com/prometheus/client_java/pull/1751)
- chore(deps): update dependency mise to v2025.12.12 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1752](https://redirect.github.com/prometheus/client_java/pull/1752)
- chore(deps): update module go:github.com/gohugoio/hugo to v0.153.2 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1753](https://redirect.github.com/prometheus/client_java/pull/1753)
- chore(deps): update super-linter/super-linter action to v8.3.2 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1754](https://redirect.github.com/prometheus/client_java/pull/1754)
- chore(deps): update module go:github.com/gohugoio/hugo to v0.153.3 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1756](https://redirect.github.com/prometheus/client_java/pull/1756)
- chore(deps): update module go:github.com/gohugoio/hugo to v0.153.4 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1757](https://redirect.github.com/prometheus/client_java/pull/1757)
- chore(deps): update module go:github.com/gohugoio/hugo to v0.153.5 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1758](https://redirect.github.com/prometheus/client_java/pull/1758)
- chore(deps): update module go:github.com/gohugoio/hugo to v0.154.0 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1759](https://redirect.github.com/prometheus/client_java/pull/1759)
- chore(deps): update module go:github.com/gohugoio/hugo to v0.154.2 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1760](https://redirect.github.com/prometheus/client_java/pull/1760)
- chore(deps): update dependency mise to v2025.12.13 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1763](https://redirect.github.com/prometheus/client_java/pull/1763)
- chore(deps): update otel/opentelemetry-collector-contrib docker tag to
v0.143.0 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1765](https://redirect.github.com/prometheus/client_java/pull/1765)
- chore(deps): update otel/opentelemetry-collector-contrib docker tag to
v0.143.1 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1767](https://redirect.github.com/prometheus/client_java/pull/1767)
- fix(deps): update junit-framework monorepo to v6.0.2 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1764](https://redirect.github.com/prometheus/client_java/pull/1764)
- chore(deps): update prom/prometheus docker tag to v3.9.0 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1768](https://redirect.github.com/prometheus/client_java/pull/1768)
- chore(deps): update module go:github.com/gohugoio/hugo to v0.154.3 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1766](https://redirect.github.com/prometheus/client_java/pull/1766)
- chore(deps): update prom/prometheus docker tag to v3.9.1 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1773](https://redirect.github.com/prometheus/client_java/pull/1773)
- chore(deps): update module go:github.com/gohugoio/hugo to v0.154.4 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1775](https://redirect.github.com/prometheus/client_java/pull/1775)
- chore(deps): update dependency mise to v2026 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1777](https://redirect.github.com/prometheus/client_java/pull/1777)
- chore(deps): update module go:github.com/gohugoio/hugo to v0.154.5 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1776](https://redirect.github.com/prometheus/client_java/pull/1776)
- fix(deps): update protobuf monorepo by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1779](https://redirect.github.com/prometheus/client_java/pull/1779)
- fix(deps): update protobuf monorepo by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1786](https://redirect.github.com/prometheus/client_java/pull/1786)
- chore(deps): update dependency mise to v2026.1.4 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1785](https://redirect.github.com/prometheus/client_java/pull/1785)
- chore(deps): update jdx/mise-action action to v3.6.0 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1784](https://redirect.github.com/prometheus/client_java/pull/1784)
- chore(deps): update actions/cache action to v5.0.2 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1788](https://redirect.github.com/prometheus/client_java/pull/1788)
- chore(deps): update grafana/tempo docker tag to v2.9.1 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1790](https://redirect.github.com/prometheus/client_java/pull/1790)
- chore(deps): update jdx/mise-action action to v3.6.1 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1791](https://redirect.github.com/prometheus/client_java/pull/1791)
- chore(deps): update dependency com.uber.nullaway:nullaway to v0.13.0
by [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1792](https://redirect.github.com/prometheus/client_java/pull/1792)
- chore(deps): update otel/opentelemetry-collector-contrib docker tag to
v0.144.0 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1799](https://redirect.github.com/prometheus/client_java/pull/1799)
- chore(deps): update actions/checkout action to v6.0.2 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1798](https://redirect.github.com/prometheus/client_java/pull/1798)
- chore(deps): update dependency org.assertj:assertj-core to v3.27.7 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1801](https://redirect.github.com/prometheus/client_java/pull/1801)
- fix(deps): update dependency io.dropwizard.metrics:metrics-core to
v4.2.38 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1805](https://redirect.github.com/prometheus/client_java/pull/1805)
- chore(deps): update dependency mise to v2026.1.7 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1804](https://redirect.github.com/prometheus/client_java/pull/1804)
- fix(deps): update dependency io.dropwizard.metrics5:metrics-core to
v5.0.6 by [@​renovate](https://redirect.github.com/renovate)\[bot]
in
[#​1806](https://redirect.github.com/prometheus/client_java/pull/1806)
- chore(deps): update dependency org.assertj:assertj-core to v3.27.7 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1807](https://redirect.github.com/prometheus/client_java/pull/1807)
- chore(deps): update dependency java to v25.0.2+10.0.lts by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1813](https://redirect.github.com/prometheus/client_java/pull/1813)
- chore(config): migrate Renovate config by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1820](https://redirect.github.com/prometheus/client_java/pull/1820)
- chore(deps): update grafana/tempo docker tag to v2.10.0 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1821](https://redirect.github.com/prometheus/client_java/pull/1821)
- chore(deps): update dependency com.uber.nullaway:nullaway to v0.13.1
by [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1822](https://redirect.github.com/prometheus/client_java/pull/1822)
- chore(deps): update grafana/grafana docker tag to v12.3.2 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot]
in
[#​1826](https://redirect.github.com/prometheus/client_java/pull/1826)
- chore(deps): update module go:github.com/gohugoio/hugo to v0.155.0 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1831](https://redirect.github.com/prometheus/client_java/pull/1831)
- chore(deps): update super-linter to v8.4.0 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1830](https://redirect.github.com/prometheus/client_java/pull/1830)
- chore(deps): update actions/cache action to v5.0.3 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1833](https://redirect.github.com/prometheus/client_java/pull/1833)
- fix(deps): update jetty monorepo to v12.1.6 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1837](https://redirect.github.com/prometheus/client_java/pull/1837)
- chore(deps): update module go:github.com/gohugoio/hugo to v0.155.1 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1839](https://redirect.github.com/prometheus/client_java/pull/1839)
- chore(deps): update dependency mise to v2026.2.0 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1840](https://redirect.github.com/prometheus/client_java/pull/1840)
- chore(deps): update module go:github.com/gohugoio/hugo to v0.155.2 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1844](https://redirect.github.com/prometheus/client_java/pull/1844)
- fix(deps): update protobuf monorepo by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1835](https://redirect.github.com/prometheus/client_java/pull/1835)
- chore(deps): update otel/opentelemetry-collector-contrib docker tag to
v0.145.0 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1848](https://redirect.github.com/prometheus/client_java/pull/1848)
- chore(deps): update eclipse-temurin docker tag to v25.0.2\_10-jre by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot]
in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1857](https://redirect.github.com/prometheus/client_java/pull/1857)
- chore(deps): update module go:github.com/gohugoio/hugo to v0.155.3 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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 [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1867](https://redirect.github.com/prometheus/client_java/pull/1867)
- chore(deps): update module go:github.com/grafana/oats to v0.6.1 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1869](https://redirect.github.com/prometheus/client_java/pull/1869)
- chore(deps): update grafana/grafana docker tag to v12.3.3 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​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
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​1872](https://redirect.github.com/prometheus/client_java/pull/1872)
##### New Contributors
- [@​Myllyenko](https://redirect.github.com/Myllyenko) made their
first contribution in
[#​1691](https://redirect.github.com/prometheus/client_java/pull/1691)
- [@​Donnerbart](https://redirect.github.com/Donnerbart) made
their first contribution in
[#​1735](https://redirect.github.com/prometheus/client_java/pull/1735)
- [@​sibasispadhi](https://redirect.github.com/sibasispadhi) made
their first contribution in
[#​1769](https://redirect.github.com/prometheus/client_java/pull/1769)
- [@​jack-berg](https://redirect.github.com/jack-berg) made their
first contribution in
[#​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-greeting-service
- example-hello-world-app
- 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| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
| 25 | + | |
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
27 | | - | |
| 27 | + | |
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
27 | | - | |
| 27 | + | |
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
26 | | - | |
| 26 | + | |
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
26 | | - | |
| 26 | + | |
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
26 | | - | |
| 26 | + | |
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
| 25 | + | |
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
| 25 | + | |
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
26 | | - | |
| 26 | + | |
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
| 25 | + | |
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| |||
0 commit comments