dependabot[bot] opened a new pull request, #6082:
URL: https://github.com/apache/camel-k/pull/6082

   Bumps 
[github.com/prometheus/client_golang](https://github.com/prometheus/client_golang)
 from 1.20.5 to 1.21.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/prometheus/client_golang/releases";>github.com/prometheus/client_golang's
 releases</a>.</em></p>
   <blockquote>
   <h2>v1.21.0 / 2025-02-19</h2>
   <p>:warning: This release contains potential breaking change if you upgrade 
<code>github.com/prometheus/common</code> to 0.62+ together with client_golang 
(and depend on the strict, legacy validation for the label names). New common 
version <a 
href="https://redirect.github.com/prometheus/common/pull/724";>changes 
<code>model.NameValidationScheme</code> global variable</a>, which relaxes the 
validation of label names and metric name, allowing all UTF-8 characters. 
Typically, this should not break any user, unless your test or usage expects 
strict certain names to panic/fail on client_golang metric registration, 
gathering or scrape. In case of problems change 
<code>model.NameValidationScheme</code> to old 
<code>model.LegacyValidation</code> value in your project <code>init</code> 
function. :warning:</p>
   <ul>
   <li>[BUGFIX] gocollector: Fix help message for runtime/metric metrics. <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1583";>#1583</a></li>
   <li>[BUGFIX] prometheus: Fix <code>Desc.String()</code> method for no labels 
case. <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1687";>#1687</a></li>
   <li>[PERF] prometheus: Optimize popular <code>prometheus.BuildFQName</code> 
function; now up to 30% faster. <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1665";>#1665</a></li>
   <li>[PERF] prometheus: Optimize <code>Inc</code>, <code>Add</code> and 
<code>Observe</code> cumulative metrics; now up to 50% faster under high 
concurrent contention. <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1661";>#1661</a></li>
   <li>[CHANGE] Upgrade prometheus/common to 0.62.0 which changes 
<code>model.NameValidationScheme</code> global variable. <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1712";>#1712</a></li>
   <li>[CHANGE] Add support for Go 1.23. <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1602";>#1602</a></li>
   <li>[FEATURE] process_collector: Add support for Darwin systems. <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1600";>#1600</a>
 <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1616";>#1616</a>
 <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1625";>#1625</a>
 <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1675";>#1675</a>
 <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1715";>#1715</a></li>
   <li>[FEATURE] api: Add ability to invoke <code>CloseIdleConnections</code> 
on api.Client using <code>api.Client.(CloseIdler).CloseIdleConnections()</code> 
casting. <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1513";>#1513</a></li>
   <li>[FEATURE] promhttp: Add 
<code>promhttp.HandlerOpts.EnableOpenMetricsTextCreatedSamples</code> option to 
create OpenMetrics _created lines. Not recommended unless you want to use 
opt-in Created Timestamp feature. Community works on OpenMetrics 2.0 format 
that should make those lines obsolete (they increase cardinality 
significantly). <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1408";>#1408</a></li>
   <li>[FEATURE] prometheus: Add <code>NewConstNativeHistogram</code> function. 
<a 
href="https://redirect.github.com/prometheus/client_golang/issues/1654";>#1654</a></li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md";>github.com/prometheus/client_golang's
 changelog</a>.</em></p>
   <blockquote>
   <h2>1.21.0 / 2025-02-17</h2>
   <p>:warning: This release contains potential breaking change if you upgrade 
<code>github.com/prometheus/common</code> to 0.62+ together with client_golang. 
:warning:</p>
   <p>New common version <a 
href="https://redirect.github.com/prometheus/common/pull/724";>changes 
<code>model.NameValidationScheme</code> global variable</a>, which relaxes the 
validation of label names and metric name, allowing all UTF-8 characters. 
Typically, this should not break any user, unless your test or usage expects 
strict certain names to panic/fail on client_golang metric registration, 
gathering or scrape. In case of problems change 
<code>model.NameValidationScheme</code> to old 
<code>model.LegacyValidation</code> value in your project <code>init</code> 
function.</p>
   <ul>
   <li>[BUGFIX] gocollector: Fix help message for runtime/metric metrics. <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1583";>#1583</a></li>
   <li>[BUGFIX] prometheus: Fix <code>Desc.String()</code> method for no labels 
case. <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1687";>#1687</a></li>
   <li>[ENHANCEMENT] prometheus: Optimize popular 
<code>prometheus.BuildFQName</code> function; now up to 30% faster. <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1665";>#1665</a></li>
   <li>[ENHANCEMENT] prometheus: Optimize <code>Inc</code>, <code>Add</code> 
and <code>Observe</code> cumulative metrics; now up to 50% faster under high 
concurrent contention. <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1661";>#1661</a></li>
   <li>[CHANGE] Upgrade prometheus/common to 0.62.0 which changes 
<code>model.NameValidationScheme</code> global variable. <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1712";>#1712</a></li>
   <li>[CHANGE] Add support for Go 1.23. <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1602";>#1602</a></li>
   <li>[FEATURE] process_collector: Add support for Darwin systems. <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1600";>#1600</a>
 <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1616";>#1616</a>
 <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1625";>#1625</a>
 <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1675";>#1675</a>
 <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1715";>#1715</a></li>
   <li>[FEATURE] api: Add ability to invoke <code>CloseIdleConnections</code> 
on api.Client using <code>api.Client.(CloseIdler).CloseIdleConnections()</code> 
casting. <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1513";>#1513</a></li>
   <li>[FEATURE] promhttp: Add 
<code>promhttp.HandlerOpts.EnableOpenMetricsTextCreatedSamples</code> option to 
create OpenMetrics _created lines. Not recommended unless you want to use 
opt-in Created Timestamp feature. Community works on OpenMetrics 2.0 format 
that should make those lines obsolete (they increase cardinality 
significantly). <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1408";>#1408</a></li>
   <li>[FEATURE] prometheus: Add <code>NewConstNativeHistogram</code> function. 
<a 
href="https://redirect.github.com/prometheus/client_golang/issues/1654";>#1654</a></li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/prometheus/client_golang/commit/eaf03ef9509cf7e0e56a7d0eda1f11a05506f045";><code>eaf03ef</code></a>
 Cut 1.21.0 (<a 
href="https://redirect.github.com/prometheus/client_golang/issues/1737";>#1737</a>)</li>
   <li><a 
href="https://github.com/prometheus/client_golang/commit/f1f89dc6c527ddf1e80b49c4f56b2c52b164105c";><code>f1f89dc</code></a>
 Cut 1.21.0-rc.0 (<a 
href="https://redirect.github.com/prometheus/client_golang/issues/1718";>#1718</a>)</li>
   <li><a 
href="https://github.com/prometheus/client_golang/commit/c923f7c8e40301ccf857e28f655a241695c470d7";><code>c923f7c</code></a>
 Revert &quot;ci: daggerize test and lint pipelines (<a 
href="https://redirect.github.com/prometheus/client_golang/issues/1534";>#1534</a>)&quot;
 (<a 
href="https://redirect.github.com/prometheus/client_golang/issues/1717";>#1717</a>)</li>
   <li><a 
href="https://github.com/prometheus/client_golang/commit/1bcda802c13d6334110e088bbef96d32c1c05db7";><code>1bcda80</code></a>
 process collector: Fixed pedantic registry failures on darwin with cgo. (<a 
href="https://redirect.github.com/prometheus/client_golang/issues/1715";>#1715</a>)</li>
   <li><a 
href="https://github.com/prometheus/client_golang/commit/038b37aea518190a66e2d4df5d231e549eed7759";><code>038b37a</code></a>
 tutorials/whatsup: Updated deps (<a 
href="https://redirect.github.com/prometheus/client_golang/issues/1716";>#1716</a>)</li>
   <li><a 
href="https://github.com/prometheus/client_golang/commit/56a24311d5ef75b4c198516ed1c4555318ec729a";><code>56a2431</code></a>
 docs: Add RELEASE.md for the release process (<a 
href="https://redirect.github.com/prometheus/client_golang/issues/1690";>#1690</a>)</li>
   <li><a 
href="https://github.com/prometheus/client_golang/commit/cbd9526e6ddc36b3cec0407b70e86e8249edf4ed";><code>cbd9526</code></a>
 Merge pull request <a 
href="https://redirect.github.com/prometheus/client_golang/issues/1713";>#1713</a>
 from prometheus/dependabot/go_modules/tutorials/what...</li>
   <li><a 
href="https://github.com/prometheus/client_golang/commit/80b5a2a705c6cf39bf08260d06fd130024affbd5";><code>80b5a2a</code></a>
 build(deps): bump golang.org/x/net in /tutorials/whatsup</li>
   <li><a 
href="https://github.com/prometheus/client_golang/commit/1a822a841f0ae8c1b93d6cbd3748d881e9023e05";><code>1a822a8</code></a>
 Upgrade to prometheus/common 0.62.0 with breaking change (<a 
href="https://redirect.github.com/prometheus/client_golang/issues/1712";>#1712</a>)</li>
   <li><a 
href="https://github.com/prometheus/client_golang/commit/7b39d0144166aa94cc8ce4125bcb3b0da89aad5e";><code>7b39d01</code></a>
 Update common Prometheus files (<a 
href="https://redirect.github.com/prometheus/client_golang/issues/1708";>#1708</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/prometheus/client_golang/compare/v1.20.5...v1.21.0";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/prometheus/client_golang&package-manager=go_modules&previous-version=1.20.5&new-version=1.21.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show <dependency name> ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to