Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

ci: Remove hardcoded supported Go versions from go.yml#1489

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
ArthurSens merged 2 commits intoprometheus:mainfromSachinSahu431:update-go-yml
Apr 2, 2024

Conversation

@SachinSahu431
Copy link
Contributor

Currently, go.yml file contains hardcoded list ofsupported Go versions. This needs to be manually updated when a new Go version is available.

With this PR, this list will be fetched fromsupprted_go_versions.txt (only the latest 3 Go versions).

Related PR:#1481

Signed-off-by: Sachin Sahu <75629410+SachinSahu431@users.noreply.github.com>
Copy link
Member

@ArthurSensArthurSens left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Nice job! I just have one suggestion about thesupported_go_versions file.

I'd remove the logic that selects only the 3 first lines, and one a separate PR we can make sure there's only 3 supported versions on that file

SachinSahu431 reacted with thumbs up emoji
Signed-off-by: Sachin Sahu <75629410+SachinSahu431@users.noreply.github.com>
Copy link
Member

@ArthurSensArthurSens left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Awesome job :)

SachinSahu431 reacted with hooray emoji
@ArthurSensArthurSens merged commite3bea8a intoprometheus:mainApr 2, 2024
@SachinSahu431SachinSahu431 deleted the update-go-yml branchApril 2, 2024 13:30
yurishkuro referenced this pull request in jaegertracing/jaegerAug 14, 2024
[![MendRenovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)This PR contains the following updates:| Package | Change | Age | Adoption | Passing | Confidence ||---|---|---|---|---|---||[github.com/prometheus/client_golang](https://togithub.com/prometheus/client_golang)| `v1.19.1` -> `v1.20.0` |[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_golang/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fprometheus%2fclient_golang/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fprometheus%2fclient_golang/v1.19.1/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fprometheus%2fclient_golang/v1.19.1/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|---### Release Notes<details><summary>prometheus/client_golang(github.com/prometheus/client_golang)</summary>###[`v1.20.0`](https://togithub.com/prometheus/client_golang/releases/tag/v1.20.0)[CompareSource](https://togithub.com/prometheus/client_golang/compare/v1.19.1...v1.20.0)Thanks everyone for contributions!:warning: In this release we remove one (broken anyway, given Go runtimechanges) metric and add three new (representing GOGC, GOMEMLIMIT andGOMAXPROCS flags) to the default `collectors.NewGoCollector()`collector. Given its popular usage, expect your binary to expose twoadditional metric.#### Changes- \[CHANGE] :warning: go-collector: Remove `go_memstat_lookups_total`metric which was always 0; Go runtime stopped sharing pointer lookupstatistics.[#&#8203;1577](https://togithub.com/prometheus/client_golang/issues/1577)- \[FEATURE]⚠️ go-collector: Add 3 default metrics:`go_gc_gogc_percent`, `go_gc_gomemlimit_bytes` and`go_sched_gomaxprocs_threads` as those are recommended by the Go team.[#&#8203;1559](https://togithub.com/prometheus/client_golang/issues/1559)- \[FEATURE] go-collector: Add more information to all metrics' HELPe.g. the exact `runtime/metrics` sourcing each metric (if relevant).[#&#8203;1568](https://togithub.com/prometheus/client_golang/issues/1568)[#&#8203;1578](https://togithub.com/prometheus/client_golang/issues/1578)- \[FEATURE] testutil: Add CollectAndFormat method.[#&#8203;1503](https://togithub.com/prometheus/client_golang/issues/1503)- \[FEATURE] histograms: Add support for exemplars in native histograms.[#&#8203;1471](https://togithub.com/prometheus/client_golang/issues/1471)- \[FEATURE] promhttp: Add experimental support for `zstd` on scrape,controlled by the request `Accept-Encoding` header.[#&#8203;1496](https://togithub.com/prometheus/client_golang/issues/1496)- \[FEATURE] api/v1: Add `WithLimit` parameter to all API methods thatsupports it.[#&#8203;1544](https://togithub.com/prometheus/client_golang/issues/1544)- \[FEATURE] prometheus: Add support for created timestamps in constanthistograms and constant summaries.[#&#8203;1537](https://togithub.com/prometheus/client_golang/issues/1537)- \[FEATURE] process-collectors: Add network usage metrics:`process_network_receive_bytes_total` and`process_network_transmit_bytes_total`.[#&#8203;1555](https://togithub.com/prometheus/client_golang/issues/1555)- \[FEATURE] promlint: Add duplicated metric lint rule.[#&#8203;1472](https://togithub.com/prometheus/client_golang/issues/1472)- \[BUGFIX] promlint: Relax metric type in name linter rule.[#&#8203;1455](https://togithub.com/prometheus/client_golang/issues/1455)-   \[BUGFIX] promhttp: Make sure serverinstrumentation wrapping supports new and future extra responseWritermethods.[#&#8203;1480](https://togithub.com/prometheus/client_golang/issues/1480)- \[BUGFIX] testutil: Functions using compareMetricFamilies are nowfailing if filtered metricNames are not in the input.[#&#8203;1424](https://togithub.com/prometheus/client_golang/issues/1424)<details>  <summary>All commits</summary>- feat(prometheus/testutil/promlint/validations): refine lintMetricType…by [@&#8203;foehammer127](https://togithub.com/foehammer127) in[https://github.com/prometheus/client_golang/pull/1455](https://togithub.com/prometheus/client_golang/pull/1455)- Bump github.com/prometheus/client_golang from 1.18.0 to 1.19.0 in/examples/middleware by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1457](https://togithub.com/prometheus/client_golang/pull/1457)- Bump github.com/prometheus/client_model from 0.5.0 to 0.6.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1458](https://togithub.com/prometheus/client_golang/pull/1458)- Bump golang.org/x/sys from 0.16.0 to 0.17.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1459](https://togithub.com/prometheus/client_golang/pull/1459)- Bump github.com/prometheus/client_golang from 1.18.0 to 1.19.0 in/tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1461](https://togithub.com/prometheus/client_golang/pull/1461)- Merge Release 1.19 back to main by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1462](https://togithub.com/prometheus/client_golang/pull/1462)- Bump the github-actions group with 2 updates by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1456](https://togithub.com/prometheus/client_golang/pull/1456)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1466](https://togithub.com/prometheus/client_golang/pull/1466)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in/examples/middleware by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1467](https://togithub.com/prometheus/client_golang/pull/1467)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in/tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1469](https://togithub.com/prometheus/client_golang/pull/1469)- Add LintDuplicateMetric to promlint by[@&#8203;bboreham](https://togithub.com/bboreham) in[https://github.com/prometheus/client_golang/pull/1472](https://togithub.com/prometheus/client_golang/pull/1472)- Auto-update Go Collector Metrics for new Go versions by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1476](https://togithub.com/prometheus/client_golang/pull/1476)- Implement Unwrap() for responseWriterDelegator by[@&#8203;igor-drozdov](https://togithub.com/igor-drozdov) in[https://github.com/prometheus/client_golang/pull/1480](https://togithub.com/prometheus/client_golang/pull/1480)- Bump golang.org/x/sys from 0.17.0 to 0.18.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1485](https://togithub.com/prometheus/client_golang/pull/1485)- Bump github.com/prometheus/procfs from 0.12.0 to 0.13.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1486](https://togithub.com/prometheus/client_golang/pull/1486)- ci: Remove hardcoded supported Go versions from go.yml by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1489](https://togithub.com/prometheus/client_golang/pull/1489)- feat: metrics generation workflow by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1481](https://togithub.com/prometheus/client_golang/pull/1481)- fix: remove redundant go module in middleware example by[@&#8203;majolo](https://togithub.com/majolo) in[https://github.com/prometheus/client_golang/pull/1492](https://togithub.com/prometheus/client_golang/pull/1492)- chore: Refactor how base metrics are added to Sched metrics by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1483](https://togithub.com/prometheus/client_golang/pull/1483)- gocollector: Add regex option to allow collection of debug runtimemetrics by [@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1389](https://togithub.com/prometheus/client_golang/pull/1389)- Bump github.com/prometheus/common from 0.48.0 to 0.52.3 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1498](https://togithub.com/prometheus/client_golang/pull/1498)- chore: fix function name in comment by[@&#8203;oftenoccur](https://togithub.com/oftenoccur) in[https://github.com/prometheus/client_golang/pull/1497](https://togithub.com/prometheus/client_golang/pull/1497)- build(deps): bump golang.org/x/net from 0.20.0 to 0.23.0 in/tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1501](https://togithub.com/prometheus/client_golang/pull/1501)- build(deps): bump golang.org/x/net from 0.22.0 to 0.23.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1502](https://togithub.com/prometheus/client_golang/pull/1502)- feat(dependency): replace go-spew package by[@&#8203;dongjiang1989](https://togithub.com/dongjiang1989) in[https://github.com/prometheus/client_golang/pull/1499](https://togithub.com/prometheus/client_golang/pull/1499)- build(deps): bump github.com/prometheus/common from 0.52.3 to 0.53.0by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1504](https://togithub.com/prometheus/client_golang/pull/1504)- build(deps): bump github.com/cespare/xxhash/v2 from 2.2.0 to 2.3.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1505](https://togithub.com/prometheus/client_golang/pull/1505)- build(deps): bump google.golang.org/protobuf from 1.33.0 to 1.34.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1506](https://togithub.com/prometheus/client_golang/pull/1506)- build(deps): bump golang.org/x/sys from 0.18.0 to 0.19.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1507](https://togithub.com/prometheus/client_golang/pull/1507)- build(deps): bump github.com/prometheus/client_model from 0.6.0 to0.6.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1508](https://togithub.com/prometheus/client_golang/pull/1508)- build(deps): bump github.com/prometheus/common from 0.48.0 to 0.53.0in /tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1509](https://togithub.com/prometheus/client_golang/pull/1509)- improved code more clean by[@&#8203;lilijreey](https://togithub.com/lilijreey) in[https://github.com/prometheus/client_golang/pull/1511](https://togithub.com/prometheus/client_golang/pull/1511)- build(deps): bump the github-actions group with 3 updates by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1510](https://togithub.com/prometheus/client_golang/pull/1510)- \[CI]: Add Concurrency Grouping to GitHub Workflows by[@&#8203;Ishani217](https://togithub.com/Ishani217) in[https://github.com/prometheus/client_golang/pull/1444](https://togithub.com/prometheus/client_golang/pull/1444)- Add CollectAndFormat to testutil, allowing caller to assert as theywant to on the exported metric by[@&#8203;jcass8695](https://togithub.com/jcass8695) in[https://github.com/prometheus/client_golang/pull/1503](https://togithub.com/prometheus/client_golang/pull/1503)- testutil compareMetricFamilies: make less error-prone by[@&#8203;leonnicolas](https://togithub.com/leonnicolas) in[https://github.com/prometheus/client_golang/pull/1424](https://togithub.com/prometheus/client_golang/pull/1424)- improved code more clean use time.IsZero() replace t = time.Time{} by[@&#8203;lilijreey](https://togithub.com/lilijreey) in[https://github.com/prometheus/client_golang/pull/1515](https://togithub.com/prometheus/client_golang/pull/1515)- add native histogram exemplar support by[@&#8203;fatsheep9146](https://togithub.com/fatsheep9146) in[https://github.com/prometheus/client_golang/pull/1471](https://togithub.com/prometheus/client_golang/pull/1471)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1514](https://togithub.com/prometheus/client_golang/pull/1514)- build(deps): bump golang.org/x/sys from 0.19.0 to 0.20.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1523](https://togithub.com/prometheus/client_golang/pull/1523)- build(deps): bump google.golang.org/protobuf from 1.34.0 to 1.34.1 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1522](https://togithub.com/prometheus/client_golang/pull/1522)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1524](https://togithub.com/prometheus/client_golang/pull/1524)- Add PR template for changelog automation by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1517](https://togithub.com/prometheus/client_golang/pull/1517)- Auto label PRs by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1518](https://togithub.com/prometheus/client_golang/pull/1518)- Fix: Auto label PRs[#&#8203;1518](https://togithub.com/prometheus/client_golang/issues/1518)by [@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1525](https://togithub.com/prometheus/client_golang/pull/1525)- build(deps): bump github.com/prometheus/procfs from 0.13.0 to 0.15.1by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1527](https://togithub.com/prometheus/client_golang/pull/1527)- ci: Group all changelog-related CI jobs into single one by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1526](https://togithub.com/prometheus/client_golang/pull/1526)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1530](https://togithub.com/prometheus/client_golang/pull/1530)- Remove synchronize trigger from changelog workflow by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1532](https://togithub.com/prometheus/client_golang/pull/1532)- feat: Support zstd compression by[@&#8203;mrueg](https://togithub.com/mrueg) in[https://github.com/prometheus/client_golang/pull/1496](https://togithub.com/prometheus/client_golang/pull/1496)- Fix golangci-lint config by[@&#8203;SuperQ](https://togithub.com/SuperQ) in[https://github.com/prometheus/client_golang/pull/1536](https://togithub.com/prometheus/client_golang/pull/1536)- build(deps): bump github.com/prometheus/client_golang from 1.19.0 to1.19.1 in /tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1529](https://togithub.com/prometheus/client_golang/pull/1529)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1531](https://togithub.com/prometheus/client_golang/pull/1531)- Cleanup NOTICE file by [@&#8203;SuperQ](https://togithub.com/SuperQ)in[https://github.com/prometheus/client_golang/pull/1541](https://togithub.com/prometheus/client_golang/pull/1541)- Remove inlined upstream code by[@&#8203;SuperQ](https://togithub.com/SuperQ) in[https://github.com/prometheus/client_golang/pull/1539](https://togithub.com/prometheus/client_golang/pull/1539)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1545](https://togithub.com/prometheus/client_golang/pull/1545)- client: Add Option to provide limit query param for APIs that supportit by [@&#8203;abbyssoul](https://togithub.com/abbyssoul) in[https://github.com/prometheus/client_golang/pull/1544](https://togithub.com/prometheus/client_golang/pull/1544)- Allow creating constant histogram and summary metrics with a createdtimestamp by [@&#8203;swar8080](https://togithub.com/swar8080) in[https://github.com/prometheus/client_golang/pull/1537](https://togithub.com/prometheus/client_golang/pull/1537)- Update README.md by [@&#8203;bwplotka](https://togithub.com/bwplotka)in[https://github.com/prometheus/client_golang/pull/1556](https://togithub.com/prometheus/client_golang/pull/1556)- Temporarily remove required CI job for changelog. by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1560](https://togithub.com/prometheus/client_golang/pull/1560)- build(deps): bump github.com/prometheus/common from 0.53.0 to 0.55.0in /tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1549](https://togithub.com/prometheus/client_golang/pull/1549)- build(deps): bump golang.org/x/sys from 0.20.0 to 0.21.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1552](https://togithub.com/prometheus/client_golang/pull/1552)- build(deps): bump github.com/klauspost/compress from 1.17.8 to 1.17.9by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1553](https://togithub.com/prometheus/client_golang/pull/1553)- fix: Update Go tests by [@&#8203;SuperQ](https://togithub.com/SuperQ)in[https://github.com/prometheus/client_golang/pull/1562](https://togithub.com/prometheus/client_golang/pull/1562)- process_collector: collect received/transmitted bytes by[@&#8203;huwcbjones](https://togithub.com/huwcbjones) in[https://github.com/prometheus/client_golang/pull/1555](https://togithub.com/prometheus/client_golang/pull/1555)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1561](https://togithub.com/prometheus/client_golang/pull/1561)- chore: Remove half-implemented changelog automation by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1564](https://togithub.com/prometheus/client_golang/pull/1564)- build(deps): bump the github-actions group across 1 directory with 3updates by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1565](https://togithub.com/prometheus/client_golang/pull/1565)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1563](https://togithub.com/prometheus/client_golang/pull/1563)- build(deps): bump google.golang.org/protobuf from 1.34.1 to 1.34.2 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1551](https://togithub.com/prometheus/client_golang/pull/1551)- deps: Updated to prometheus/common to 0.55 by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1566](https://togithub.com/prometheus/client_golang/pull/1566)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1567](https://togithub.com/prometheus/client_golang/pull/1567)- tutorials: Renamed tutorial -> tutorials for consistency + fixedtutorial code. by [@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1569](https://togithub.com/prometheus/client_golang/pull/1569)- go collector: add default metrics acceptance tests; adding morecontext to HELP by [@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1568](https://togithub.com/prometheus/client_golang/pull/1568)- build(deps): bump golang.org/x/sys from 0.21.0 to 0.22.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1570](https://togithub.com/prometheus/client_golang/pull/1570)- build(deps): bump the github-actions group with 3 updates by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1571](https://togithub.com/prometheus/client_golang/pull/1571)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1572](https://togithub.com/prometheus/client_golang/pull/1572)- ci: daggerize test and lint pipelines by[@&#8203;marcosnils](https://togithub.com/marcosnils) in[https://github.com/prometheus/client_golang/pull/1534](https://togithub.com/prometheus/client_golang/pull/1534)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1573](https://togithub.com/prometheus/client_golang/pull/1573)- Add default Go runtime metrics for /gc/gogc:percent,/gc/gomemlimit:bytes, /sched/gomaxprocs:threads by[@&#8203;vesari](https://togithub.com/vesari) in[https://github.com/prometheus/client_golang/pull/1559](https://togithub.com/prometheus/client_golang/pull/1559)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1576](https://togithub.com/prometheus/client_golang/pull/1576)- Remove go_memstat_lookups_total; added runtime/metrics calculation tomemstat metric's help. by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1577](https://togithub.com/prometheus/client_golang/pull/1577)- gocollector: Attach original runtime/metrics metric name to help. by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1578](https://togithub.com/prometheus/client_golang/pull/1578)</details>#### New Contributors* @&#8203;foehammer127 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1455](https://togithub.com/prometheus/client_golang/pull/1455)l/1455* @&#8203;SachinSahu431 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1476](https://togithub.com/prometheus/client_golang/pull/1476)l/1476* @&#8203;igor-drozdov made their firstcontributi[https://github.com/prometheus/client_golang/pull/1480](https://togithub.com/prometheus/client_golang/pull/1480)l/1480* @&#8203;majolo made their firstcontributi[https://github.com/prometheus/client_golang/pull/1492](https://togithub.com/prometheus/client_golang/pull/1492)l/1492* @&#8203;oftenoccur made their firstcontributi[https://github.com/prometheus/client_golang/pull/1497](https://togithub.com/prometheus/client_golang/pull/1497)l/1497* @&#8203;dongjiang1989 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1499](https://togithub.com/prometheus/client_golang/pull/1499)l/1499* @&#8203;lilijreey made their firstcontributi[https://github.com/prometheus/client_golang/pull/1511](https://togithub.com/prometheus/client_golang/pull/1511)l/1511* @&#8203;Ishani217 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1444](https://togithub.com/prometheus/client_golang/pull/1444)l/1444* @&#8203;jcass8695 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1503](https://togithub.com/prometheus/client_golang/pull/1503)l/1503* @&#8203;leonnicolas made their firstcontributi[https://github.com/prometheus/client_golang/pull/1424](https://togithub.com/prometheus/client_golang/pull/1424)l/1424* @&#8203;fatsheep9146 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1471](https://togithub.com/prometheus/client_golang/pull/1471)l/1471* @&#8203;abbyssoul made their firstcontributi[https://github.com/prometheus/client_golang/pull/1544](https://togithub.com/prometheus/client_golang/pull/1544)l/1544* @&#8203;swar8080 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1537](https://togithub.com/prometheus/client_golang/pull/1537)l/1537* @&#8203;huwcbjones made their firstcontributi[https://github.com/prometheus/client_golang/pull/1555](https://togithub.com/prometheus/client_golang/pull/1555)l/1555* @&#8203;marcosnils made their firstcontributi[https://github.com/prometheus/client_golang/pull/1534](https://togithub.com/prometheus/client_golang/pull/1534)l/1534* @&#8203;vesari made their firstcontributi[https://github.com/prometheus/client_golang/pull/1559](https://togithub.com/prometheus/client_golang/pull/1559)l/1559**Full Changelog**:prometheus/client_golang@v1.19.1...v1.20.0</details>---### Configuration📅 **Schedule**: Branch creation - At any time (no schedule defined),Automerge - At any time (no schedule defined).🚦 **Automerge**: Disabled by config. Please merge this manually once youare satisfied.♻ **Rebasing**: Whenever PR becomes conflicted, or you tick therebase/retry checkbox.🔕 **Ignore**: Close this PR and you won't be reminded about this updateagain.---- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, checkthis box---This PR was generated by [MendRenovate](https://www.mend.io/free-developer-tools/renovate/). View the[repository joblog](https://developer.mend.io/github/jaegertracing/jaeger).<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguMjYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiY2hhbmdlbG9nOmRlcGVuZGVuY2llcyJdfQ==-->Signed-off-by: Mend Renovate <bot@renovateapp.com>
jooola referenced this pull request in hetznercloud/hcloud-cloud-controller-managerAug 15, 2024
)[![MendRenovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)This PR contains the following updates:| Package | Change | Age | Adoption | Passing | Confidence ||---|---|---|---|---|---||[github.com/prometheus/client_golang](https://togithub.com/prometheus/client_golang)| `v1.19.1` -> `v1.20.0` |[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_golang/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fprometheus%2fclient_golang/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fprometheus%2fclient_golang/v1.19.1/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fprometheus%2fclient_golang/v1.19.1/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|---### Release Notes<details><summary>prometheus/client_golang(github.com/prometheus/client_golang)</summary>###[`v1.20.0`](https://togithub.com/prometheus/client_golang/releases/tag/v1.20.0)[CompareSource](https://togithub.com/prometheus/client_golang/compare/v1.19.1...v1.20.0)Thanks everyone for contributions!:warning: In this release we remove one (broken anyway, given Go runtimechanges) metric and add three new (representing GOGC, GOMEMLIMIT andGOMAXPROCS flags) to the default `collectors.NewGoCollector()`collector. Given its popular usage, expect your binary to expose twoadditional metric.#### Changes- \[CHANGE] :warning: go-collector: Remove `go_memstat_lookups_total`metric which was always 0; Go runtime stopped sharing pointer lookupstatistics.[#&#8203;1577](https://togithub.com/prometheus/client_golang/issues/1577)- \[FEATURE]⚠️ go-collector: Add 3 default metrics:`go_gc_gogc_percent`, `go_gc_gomemlimit_bytes` and`go_sched_gomaxprocs_threads` as those are recommended by the Go team.[#&#8203;1559](https://togithub.com/prometheus/client_golang/issues/1559)- \[FEATURE] go-collector: Add more information to all metrics' HELPe.g. the exact `runtime/metrics` sourcing each metric (if relevant).[#&#8203;1568](https://togithub.com/prometheus/client_golang/issues/1568)[#&#8203;1578](https://togithub.com/prometheus/client_golang/issues/1578)- \[FEATURE] testutil: Add CollectAndFormat method.[#&#8203;1503](https://togithub.com/prometheus/client_golang/issues/1503)- \[FEATURE] histograms: Add support for exemplars in native histograms.[#&#8203;1471](https://togithub.com/prometheus/client_golang/issues/1471)- \[FEATURE] promhttp: Add experimental support for `zstd` on scrape,controlled by the request `Accept-Encoding` header.[#&#8203;1496](https://togithub.com/prometheus/client_golang/issues/1496)- \[FEATURE] api/v1: Add `WithLimit` parameter to all API methods thatsupports it.[#&#8203;1544](https://togithub.com/prometheus/client_golang/issues/1544)- \[FEATURE] prometheus: Add support for created timestamps in constanthistograms and constant summaries.[#&#8203;1537](https://togithub.com/prometheus/client_golang/issues/1537)- \[FEATURE] process-collectors: Add network usage metrics:`process_network_receive_bytes_total` and`process_network_transmit_bytes_total`.[#&#8203;1555](https://togithub.com/prometheus/client_golang/issues/1555)- \[FEATURE] promlint: Add duplicated metric lint rule.[#&#8203;1472](https://togithub.com/prometheus/client_golang/issues/1472)- \[BUGFIX] promlint: Relax metric type in name linter rule.[#&#8203;1455](https://togithub.com/prometheus/client_golang/issues/1455)-   \[BUGFIX] promhttp: Make sure serverinstrumentation wrapping supports new and future extra responseWritermethods.[#&#8203;1480](https://togithub.com/prometheus/client_golang/issues/1480)- \[BUGFIX] testutil: Functions using compareMetricFamilies are nowfailing if filtered metricNames are not in the input.[#&#8203;1424](https://togithub.com/prometheus/client_golang/issues/1424)<details>  <summary>All commits</summary>- feat(prometheus/testutil/promlint/validations): refine lintMetricType…by [@&#8203;foehammer127](https://togithub.com/foehammer127) in[https://github.com/prometheus/client_golang/pull/1455](https://togithub.com/prometheus/client_golang/pull/1455)- Bump github.com/prometheus/client_golang from 1.18.0 to 1.19.0 in/examples/middleware by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1457](https://togithub.com/prometheus/client_golang/pull/1457)- Bump github.com/prometheus/client_model from 0.5.0 to 0.6.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1458](https://togithub.com/prometheus/client_golang/pull/1458)- Bump golang.org/x/sys from 0.16.0 to 0.17.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1459](https://togithub.com/prometheus/client_golang/pull/1459)- Bump github.com/prometheus/client_golang from 1.18.0 to 1.19.0 in/tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1461](https://togithub.com/prometheus/client_golang/pull/1461)- Merge Release 1.19 back to main by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1462](https://togithub.com/prometheus/client_golang/pull/1462)- Bump the github-actions group with 2 updates by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1456](https://togithub.com/prometheus/client_golang/pull/1456)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1466](https://togithub.com/prometheus/client_golang/pull/1466)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in/examples/middleware by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1467](https://togithub.com/prometheus/client_golang/pull/1467)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in/tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1469](https://togithub.com/prometheus/client_golang/pull/1469)- Add LintDuplicateMetric to promlint by[@&#8203;bboreham](https://togithub.com/bboreham) in[https://github.com/prometheus/client_golang/pull/1472](https://togithub.com/prometheus/client_golang/pull/1472)- Auto-update Go Collector Metrics for new Go versions by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1476](https://togithub.com/prometheus/client_golang/pull/1476)- Implement Unwrap() for responseWriterDelegator by[@&#8203;igor-drozdov](https://togithub.com/igor-drozdov) in[https://github.com/prometheus/client_golang/pull/1480](https://togithub.com/prometheus/client_golang/pull/1480)- Bump golang.org/x/sys from 0.17.0 to 0.18.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1485](https://togithub.com/prometheus/client_golang/pull/1485)- Bump github.com/prometheus/procfs from 0.12.0 to 0.13.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1486](https://togithub.com/prometheus/client_golang/pull/1486)- ci: Remove hardcoded supported Go versions from go.yml by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1489](https://togithub.com/prometheus/client_golang/pull/1489)- feat: metrics generation workflow by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1481](https://togithub.com/prometheus/client_golang/pull/1481)- fix: remove redundant go module in middleware example by[@&#8203;majolo](https://togithub.com/majolo) in[https://github.com/prometheus/client_golang/pull/1492](https://togithub.com/prometheus/client_golang/pull/1492)- chore: Refactor how base metrics are added to Sched metrics by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1483](https://togithub.com/prometheus/client_golang/pull/1483)- gocollector: Add regex option to allow collection of debug runtimemetrics by [@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1389](https://togithub.com/prometheus/client_golang/pull/1389)- Bump github.com/prometheus/common from 0.48.0 to 0.52.3 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1498](https://togithub.com/prometheus/client_golang/pull/1498)- chore: fix function name in comment by[@&#8203;oftenoccur](https://togithub.com/oftenoccur) in[https://github.com/prometheus/client_golang/pull/1497](https://togithub.com/prometheus/client_golang/pull/1497)- build(deps): bump golang.org/x/net from 0.20.0 to 0.23.0 in/tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1501](https://togithub.com/prometheus/client_golang/pull/1501)- build(deps): bump golang.org/x/net from 0.22.0 to 0.23.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1502](https://togithub.com/prometheus/client_golang/pull/1502)- feat(dependency): replace go-spew package by[@&#8203;dongjiang1989](https://togithub.com/dongjiang1989) in[https://github.com/prometheus/client_golang/pull/1499](https://togithub.com/prometheus/client_golang/pull/1499)- build(deps): bump github.com/prometheus/common from 0.52.3 to 0.53.0by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1504](https://togithub.com/prometheus/client_golang/pull/1504)- build(deps): bump github.com/cespare/xxhash/v2 from 2.2.0 to 2.3.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1505](https://togithub.com/prometheus/client_golang/pull/1505)- build(deps): bump google.golang.org/protobuf from 1.33.0 to 1.34.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1506](https://togithub.com/prometheus/client_golang/pull/1506)- build(deps): bump golang.org/x/sys from 0.18.0 to 0.19.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1507](https://togithub.com/prometheus/client_golang/pull/1507)- build(deps): bump github.com/prometheus/client_model from 0.6.0 to0.6.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1508](https://togithub.com/prometheus/client_golang/pull/1508)- build(deps): bump github.com/prometheus/common from 0.48.0 to 0.53.0in /tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1509](https://togithub.com/prometheus/client_golang/pull/1509)- improved code more clean by[@&#8203;lilijreey](https://togithub.com/lilijreey) in[https://github.com/prometheus/client_golang/pull/1511](https://togithub.com/prometheus/client_golang/pull/1511)- build(deps): bump the github-actions group with 3 updates by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1510](https://togithub.com/prometheus/client_golang/pull/1510)- \[CI]: Add Concurrency Grouping to GitHub Workflows by[@&#8203;Ishani217](https://togithub.com/Ishani217) in[https://github.com/prometheus/client_golang/pull/1444](https://togithub.com/prometheus/client_golang/pull/1444)- Add CollectAndFormat to testutil, allowing caller to assert as theywant to on the exported metric by[@&#8203;jcass8695](https://togithub.com/jcass8695) in[https://github.com/prometheus/client_golang/pull/1503](https://togithub.com/prometheus/client_golang/pull/1503)- testutil compareMetricFamilies: make less error-prone by[@&#8203;leonnicolas](https://togithub.com/leonnicolas) in[https://github.com/prometheus/client_golang/pull/1424](https://togithub.com/prometheus/client_golang/pull/1424)- improved code more clean use time.IsZero() replace t = time.Time{} by[@&#8203;lilijreey](https://togithub.com/lilijreey) in[https://github.com/prometheus/client_golang/pull/1515](https://togithub.com/prometheus/client_golang/pull/1515)- add native histogram exemplar support by[@&#8203;fatsheep9146](https://togithub.com/fatsheep9146) in[https://github.com/prometheus/client_golang/pull/1471](https://togithub.com/prometheus/client_golang/pull/1471)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1514](https://togithub.com/prometheus/client_golang/pull/1514)- build(deps): bump golang.org/x/sys from 0.19.0 to 0.20.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1523](https://togithub.com/prometheus/client_golang/pull/1523)- build(deps): bump google.golang.org/protobuf from 1.34.0 to 1.34.1 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1522](https://togithub.com/prometheus/client_golang/pull/1522)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1524](https://togithub.com/prometheus/client_golang/pull/1524)- Add PR template for changelog automation by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1517](https://togithub.com/prometheus/client_golang/pull/1517)- Auto label PRs by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1518](https://togithub.com/prometheus/client_golang/pull/1518)- Fix: Auto label PRs[#&#8203;1518](https://togithub.com/prometheus/client_golang/issues/1518)by [@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1525](https://togithub.com/prometheus/client_golang/pull/1525)- build(deps): bump github.com/prometheus/procfs from 0.13.0 to 0.15.1by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1527](https://togithub.com/prometheus/client_golang/pull/1527)- ci: Group all changelog-related CI jobs into single one by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1526](https://togithub.com/prometheus/client_golang/pull/1526)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1530](https://togithub.com/prometheus/client_golang/pull/1530)- Remove synchronize trigger from changelog workflow by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1532](https://togithub.com/prometheus/client_golang/pull/1532)- feat: Support zstd compression by[@&#8203;mrueg](https://togithub.com/mrueg) in[https://github.com/prometheus/client_golang/pull/1496](https://togithub.com/prometheus/client_golang/pull/1496)- Fix golangci-lint config by[@&#8203;SuperQ](https://togithub.com/SuperQ) in[https://github.com/prometheus/client_golang/pull/1536](https://togithub.com/prometheus/client_golang/pull/1536)- build(deps): bump github.com/prometheus/client_golang from 1.19.0 to1.19.1 in /tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1529](https://togithub.com/prometheus/client_golang/pull/1529)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1531](https://togithub.com/prometheus/client_golang/pull/1531)- Cleanup NOTICE file by [@&#8203;SuperQ](https://togithub.com/SuperQ)in[https://github.com/prometheus/client_golang/pull/1541](https://togithub.com/prometheus/client_golang/pull/1541)- Remove inlined upstream code by[@&#8203;SuperQ](https://togithub.com/SuperQ) in[https://github.com/prometheus/client_golang/pull/1539](https://togithub.com/prometheus/client_golang/pull/1539)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1545](https://togithub.com/prometheus/client_golang/pull/1545)- client: Add Option to provide limit query param for APIs that supportit by [@&#8203;abbyssoul](https://togithub.com/abbyssoul) in[https://github.com/prometheus/client_golang/pull/1544](https://togithub.com/prometheus/client_golang/pull/1544)- Allow creating constant histogram and summary metrics with a createdtimestamp by [@&#8203;swar8080](https://togithub.com/swar8080) in[https://github.com/prometheus/client_golang/pull/1537](https://togithub.com/prometheus/client_golang/pull/1537)- Update README.md by [@&#8203;bwplotka](https://togithub.com/bwplotka)in[https://github.com/prometheus/client_golang/pull/1556](https://togithub.com/prometheus/client_golang/pull/1556)- Temporarily remove required CI job for changelog. by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1560](https://togithub.com/prometheus/client_golang/pull/1560)- build(deps): bump github.com/prometheus/common from 0.53.0 to 0.55.0in /tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1549](https://togithub.com/prometheus/client_golang/pull/1549)- build(deps): bump golang.org/x/sys from 0.20.0 to 0.21.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1552](https://togithub.com/prometheus/client_golang/pull/1552)- build(deps): bump github.com/klauspost/compress from 1.17.8 to 1.17.9by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1553](https://togithub.com/prometheus/client_golang/pull/1553)- fix: Update Go tests by [@&#8203;SuperQ](https://togithub.com/SuperQ)in[https://github.com/prometheus/client_golang/pull/1562](https://togithub.com/prometheus/client_golang/pull/1562)- process_collector: collect received/transmitted bytes by[@&#8203;huwcbjones](https://togithub.com/huwcbjones) in[https://github.com/prometheus/client_golang/pull/1555](https://togithub.com/prometheus/client_golang/pull/1555)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1561](https://togithub.com/prometheus/client_golang/pull/1561)- chore: Remove half-implemented changelog automation by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1564](https://togithub.com/prometheus/client_golang/pull/1564)- build(deps): bump the github-actions group across 1 directory with 3updates by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1565](https://togithub.com/prometheus/client_golang/pull/1565)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1563](https://togithub.com/prometheus/client_golang/pull/1563)- build(deps): bump google.golang.org/protobuf from 1.34.1 to 1.34.2 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1551](https://togithub.com/prometheus/client_golang/pull/1551)- deps: Updated to prometheus/common to 0.55 by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1566](https://togithub.com/prometheus/client_golang/pull/1566)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1567](https://togithub.com/prometheus/client_golang/pull/1567)- tutorials: Renamed tutorial -> tutorials for consistency + fixedtutorial code. by [@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1569](https://togithub.com/prometheus/client_golang/pull/1569)- go collector: add default metrics acceptance tests; adding morecontext to HELP by [@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1568](https://togithub.com/prometheus/client_golang/pull/1568)- build(deps): bump golang.org/x/sys from 0.21.0 to 0.22.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1570](https://togithub.com/prometheus/client_golang/pull/1570)- build(deps): bump the github-actions group with 3 updates by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1571](https://togithub.com/prometheus/client_golang/pull/1571)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1572](https://togithub.com/prometheus/client_golang/pull/1572)- ci: daggerize test and lint pipelines by[@&#8203;marcosnils](https://togithub.com/marcosnils) in[https://github.com/prometheus/client_golang/pull/1534](https://togithub.com/prometheus/client_golang/pull/1534)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1573](https://togithub.com/prometheus/client_golang/pull/1573)- Add default Go runtime metrics for /gc/gogc:percent,/gc/gomemlimit:bytes, /sched/gomaxprocs:threads by[@&#8203;vesari](https://togithub.com/vesari) in[https://github.com/prometheus/client_golang/pull/1559](https://togithub.com/prometheus/client_golang/pull/1559)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1576](https://togithub.com/prometheus/client_golang/pull/1576)- Remove go_memstat_lookups_total; added runtime/metrics calculation tomemstat metric's help. by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1577](https://togithub.com/prometheus/client_golang/pull/1577)- gocollector: Attach original runtime/metrics metric name to help. by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1578](https://togithub.com/prometheus/client_golang/pull/1578)</details>#### New Contributors* @&#8203;foehammer127 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1455](https://togithub.com/prometheus/client_golang/pull/1455)l/1455* @&#8203;SachinSahu431 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1476](https://togithub.com/prometheus/client_golang/pull/1476)l/1476* @&#8203;igor-drozdov made their firstcontributi[https://github.com/prometheus/client_golang/pull/1480](https://togithub.com/prometheus/client_golang/pull/1480)l/1480* @&#8203;majolo made their firstcontributi[https://github.com/prometheus/client_golang/pull/1492](https://togithub.com/prometheus/client_golang/pull/1492)l/1492* @&#8203;oftenoccur made their firstcontributi[https://github.com/prometheus/client_golang/pull/1497](https://togithub.com/prometheus/client_golang/pull/1497)l/1497* @&#8203;dongjiang1989 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1499](https://togithub.com/prometheus/client_golang/pull/1499)l/1499* @&#8203;lilijreey made their firstcontributi[https://github.com/prometheus/client_golang/pull/1511](https://togithub.com/prometheus/client_golang/pull/1511)l/1511* @&#8203;Ishani217 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1444](https://togithub.com/prometheus/client_golang/pull/1444)l/1444* @&#8203;jcass8695 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1503](https://togithub.com/prometheus/client_golang/pull/1503)l/1503* @&#8203;leonnicolas made their firstcontributi[https://github.com/prometheus/client_golang/pull/1424](https://togithub.com/prometheus/client_golang/pull/1424)l/1424* @&#8203;fatsheep9146 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1471](https://togithub.com/prometheus/client_golang/pull/1471)l/1471* @&#8203;abbyssoul made their firstcontributi[https://github.com/prometheus/client_golang/pull/1544](https://togithub.com/prometheus/client_golang/pull/1544)l/1544* @&#8203;swar8080 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1537](https://togithub.com/prometheus/client_golang/pull/1537)l/1537* @&#8203;huwcbjones made their firstcontributi[https://github.com/prometheus/client_golang/pull/1555](https://togithub.com/prometheus/client_golang/pull/1555)l/1555* @&#8203;marcosnils made their firstcontributi[https://github.com/prometheus/client_golang/pull/1534](https://togithub.com/prometheus/client_golang/pull/1534)l/1534* @&#8203;vesari made their firstcontributi[https://github.com/prometheus/client_golang/pull/1559](https://togithub.com/prometheus/client_golang/pull/1559)l/1559**Full Changelog**:prometheus/client_golang@v1.19.1...v1.20.0</details>---### Configuration📅 **Schedule**: Branch creation - At any time (no schedule defined),Automerge - At any time (no schedule defined).🚦 **Automerge**: Disabled by config. Please merge this manually once youare satisfied.♻ **Rebasing**: Whenever PR becomes conflicted, or you tick therebase/retry checkbox.🔕 **Ignore**: Close this PR and you won't be reminded about this updateagain.---- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, checkthis box---This PR was generated by [MendRenovate](https://www.mend.io/free-developer-tools/renovate/). View the[repository joblog](https://developer.mend.io/github/hetznercloud/hcloud-cloud-controller-manager).<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMTIuMCIsInVwZGF0ZWRJblZlciI6IjM4LjI2LjEiLCJ0YXJnZXRCcmFuY2giOiJtYWluIn0=-->Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovaterenovatebot mentioned this pull requestAug 19, 2024
1 task
dmathieu referenced this pull request in open-telemetry/opentelemetry-go-contribAug 19, 2024
….0 (#6011)[![MendRenovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)This PR contains the following updates:| Package | Change | Age | Adoption | Passing | Confidence ||---|---|---|---|---|---||[github.com/prometheus/client_golang](https://togithub.com/prometheus/client_golang)| `v1.19.1` -> `v1.20.0` |[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_golang/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fprometheus%2fclient_golang/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fprometheus%2fclient_golang/v1.19.1/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fprometheus%2fclient_golang/v1.19.1/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|---### Release Notes<details><summary>prometheus/client_golang(github.com/prometheus/client_golang)</summary>###[`v1.20.0`](https://togithub.com/prometheus/client_golang/releases/tag/v1.20.0)[CompareSource](https://togithub.com/prometheus/client_golang/compare/v1.19.1...v1.20.0)Thanks everyone for contributions!:warning: In this release we remove one (broken anyway, given Go runtimechanges) metric and add three new (representing GOGC, GOMEMLIMIT andGOMAXPROCS flags) to the default `collectors.NewGoCollector()`collector. Given its popular usage, expect your binary to expose twoadditional metric.#### Changes- \[CHANGE] :warning: go-collector: Remove `go_memstat_lookups_total`metric which was always 0; Go runtime stopped sharing pointer lookupstatistics.[#&#8203;1577](https://togithub.com/prometheus/client_golang/issues/1577)- \[FEATURE]⚠️ go-collector: Add 3 default metrics:`go_gc_gogc_percent`, `go_gc_gomemlimit_bytes` and`go_sched_gomaxprocs_threads` as those are recommended by the Go team.[#&#8203;1559](https://togithub.com/prometheus/client_golang/issues/1559)- \[FEATURE] go-collector: Add more information to all metrics' HELPe.g. the exact `runtime/metrics` sourcing each metric (if relevant).[#&#8203;1568](https://togithub.com/prometheus/client_golang/issues/1568)[#&#8203;1578](https://togithub.com/prometheus/client_golang/issues/1578)- \[FEATURE] testutil: Add CollectAndFormat method.[#&#8203;1503](https://togithub.com/prometheus/client_golang/issues/1503)- \[FEATURE] histograms: Add support for exemplars in native histograms.[#&#8203;1471](https://togithub.com/prometheus/client_golang/issues/1471)- \[FEATURE] promhttp: Add experimental support for `zstd` on scrape,controlled by the request `Accept-Encoding` header.[#&#8203;1496](https://togithub.com/prometheus/client_golang/issues/1496)- \[FEATURE] api/v1: Add `WithLimit` parameter to all API methods thatsupports it.[#&#8203;1544](https://togithub.com/prometheus/client_golang/issues/1544)- \[FEATURE] prometheus: Add support for created timestamps in constanthistograms and constant summaries.[#&#8203;1537](https://togithub.com/prometheus/client_golang/issues/1537)- \[FEATURE] process-collectors: Add network usage metrics:`process_network_receive_bytes_total` and`process_network_transmit_bytes_total`.[#&#8203;1555](https://togithub.com/prometheus/client_golang/issues/1555)- \[FEATURE] promlint: Add duplicated metric lint rule.[#&#8203;1472](https://togithub.com/prometheus/client_golang/issues/1472)- \[BUGFIX] promlint: Relax metric type in name linter rule.[#&#8203;1455](https://togithub.com/prometheus/client_golang/issues/1455)-   \[BUGFIX] promhttp: Make sure serverinstrumentation wrapping supports new and future extra responseWritermethods.[#&#8203;1480](https://togithub.com/prometheus/client_golang/issues/1480)- \[BUGFIX] testutil: Functions using compareMetricFamilies are nowfailing if filtered metricNames are not in the input.[#&#8203;1424](https://togithub.com/prometheus/client_golang/issues/1424)<details>  <summary>All commits</summary>- feat(prometheus/testutil/promlint/validations): refine lintMetricType…by [@&#8203;foehammer127](https://togithub.com/foehammer127) in[https://github.com/prometheus/client_golang/pull/1455](https://togithub.com/prometheus/client_golang/pull/1455)- Bump github.com/prometheus/client_golang from 1.18.0 to 1.19.0 in/examples/middleware by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1457](https://togithub.com/prometheus/client_golang/pull/1457)- Bump github.com/prometheus/client_model from 0.5.0 to 0.6.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1458](https://togithub.com/prometheus/client_golang/pull/1458)- Bump golang.org/x/sys from 0.16.0 to 0.17.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1459](https://togithub.com/prometheus/client_golang/pull/1459)- Bump github.com/prometheus/client_golang from 1.18.0 to 1.19.0 in/tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1461](https://togithub.com/prometheus/client_golang/pull/1461)- Merge Release 1.19 back to main by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1462](https://togithub.com/prometheus/client_golang/pull/1462)- Bump the github-actions group with 2 updates by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1456](https://togithub.com/prometheus/client_golang/pull/1456)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1466](https://togithub.com/prometheus/client_golang/pull/1466)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in/examples/middleware by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1467](https://togithub.com/prometheus/client_golang/pull/1467)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in/tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1469](https://togithub.com/prometheus/client_golang/pull/1469)- Add LintDuplicateMetric to promlint by[@&#8203;bboreham](https://togithub.com/bboreham) in[https://github.com/prometheus/client_golang/pull/1472](https://togithub.com/prometheus/client_golang/pull/1472)- Auto-update Go Collector Metrics for new Go versions by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1476](https://togithub.com/prometheus/client_golang/pull/1476)- Implement Unwrap() for responseWriterDelegator by[@&#8203;igor-drozdov](https://togithub.com/igor-drozdov) in[https://github.com/prometheus/client_golang/pull/1480](https://togithub.com/prometheus/client_golang/pull/1480)- Bump golang.org/x/sys from 0.17.0 to 0.18.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1485](https://togithub.com/prometheus/client_golang/pull/1485)- Bump github.com/prometheus/procfs from 0.12.0 to 0.13.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1486](https://togithub.com/prometheus/client_golang/pull/1486)- ci: Remove hardcoded supported Go versions from go.yml by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1489](https://togithub.com/prometheus/client_golang/pull/1489)- feat: metrics generation workflow by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1481](https://togithub.com/prometheus/client_golang/pull/1481)- fix: remove redundant go module in middleware example by[@&#8203;majolo](https://togithub.com/majolo) in[https://github.com/prometheus/client_golang/pull/1492](https://togithub.com/prometheus/client_golang/pull/1492)- chore: Refactor how base metrics are added to Sched metrics by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1483](https://togithub.com/prometheus/client_golang/pull/1483)- gocollector: Add regex option to allow collection of debug runtimemetrics by [@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1389](https://togithub.com/prometheus/client_golang/pull/1389)- Bump github.com/prometheus/common from 0.48.0 to 0.52.3 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1498](https://togithub.com/prometheus/client_golang/pull/1498)- chore: fix function name in comment by[@&#8203;oftenoccur](https://togithub.com/oftenoccur) in[https://github.com/prometheus/client_golang/pull/1497](https://togithub.com/prometheus/client_golang/pull/1497)- build(deps): bump golang.org/x/net from 0.20.0 to 0.23.0 in/tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1501](https://togithub.com/prometheus/client_golang/pull/1501)- build(deps): bump golang.org/x/net from 0.22.0 to 0.23.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1502](https://togithub.com/prometheus/client_golang/pull/1502)- feat(dependency): replace go-spew package by[@&#8203;dongjiang1989](https://togithub.com/dongjiang1989) in[https://github.com/prometheus/client_golang/pull/1499](https://togithub.com/prometheus/client_golang/pull/1499)- build(deps): bump github.com/prometheus/common from 0.52.3 to 0.53.0by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1504](https://togithub.com/prometheus/client_golang/pull/1504)- build(deps): bump github.com/cespare/xxhash/v2 from 2.2.0 to 2.3.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1505](https://togithub.com/prometheus/client_golang/pull/1505)- build(deps): bump google.golang.org/protobuf from 1.33.0 to 1.34.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1506](https://togithub.com/prometheus/client_golang/pull/1506)- build(deps): bump golang.org/x/sys from 0.18.0 to 0.19.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1507](https://togithub.com/prometheus/client_golang/pull/1507)- build(deps): bump github.com/prometheus/client_model from 0.6.0 to0.6.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1508](https://togithub.com/prometheus/client_golang/pull/1508)- build(deps): bump github.com/prometheus/common from 0.48.0 to 0.53.0in /tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1509](https://togithub.com/prometheus/client_golang/pull/1509)- improved code more clean by[@&#8203;lilijreey](https://togithub.com/lilijreey) in[https://github.com/prometheus/client_golang/pull/1511](https://togithub.com/prometheus/client_golang/pull/1511)- build(deps): bump the github-actions group with 3 updates by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1510](https://togithub.com/prometheus/client_golang/pull/1510)- \[CI]: Add Concurrency Grouping to GitHub Workflows by[@&#8203;Ishani217](https://togithub.com/Ishani217) in[https://github.com/prometheus/client_golang/pull/1444](https://togithub.com/prometheus/client_golang/pull/1444)- Add CollectAndFormat to testutil, allowing caller to assert as theywant to on the exported metric by[@&#8203;jcass8695](https://togithub.com/jcass8695) in[https://github.com/prometheus/client_golang/pull/1503](https://togithub.com/prometheus/client_golang/pull/1503)- testutil compareMetricFamilies: make less error-prone by[@&#8203;leonnicolas](https://togithub.com/leonnicolas) in[https://github.com/prometheus/client_golang/pull/1424](https://togithub.com/prometheus/client_golang/pull/1424)- improved code more clean use time.IsZero() replace t = time.Time{} by[@&#8203;lilijreey](https://togithub.com/lilijreey) in[https://github.com/prometheus/client_golang/pull/1515](https://togithub.com/prometheus/client_golang/pull/1515)- add native histogram exemplar support by[@&#8203;fatsheep9146](https://togithub.com/fatsheep9146) in[https://github.com/prometheus/client_golang/pull/1471](https://togithub.com/prometheus/client_golang/pull/1471)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1514](https://togithub.com/prometheus/client_golang/pull/1514)- build(deps): bump golang.org/x/sys from 0.19.0 to 0.20.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1523](https://togithub.com/prometheus/client_golang/pull/1523)- build(deps): bump google.golang.org/protobuf from 1.34.0 to 1.34.1 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1522](https://togithub.com/prometheus/client_golang/pull/1522)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1524](https://togithub.com/prometheus/client_golang/pull/1524)- Add PR template for changelog automation by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1517](https://togithub.com/prometheus/client_golang/pull/1517)- Auto label PRs by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1518](https://togithub.com/prometheus/client_golang/pull/1518)- Fix: Auto label PRs[#&#8203;1518](https://togithub.com/prometheus/client_golang/issues/1518)by [@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1525](https://togithub.com/prometheus/client_golang/pull/1525)- build(deps): bump github.com/prometheus/procfs from 0.13.0 to 0.15.1by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1527](https://togithub.com/prometheus/client_golang/pull/1527)- ci: Group all changelog-related CI jobs into single one by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1526](https://togithub.com/prometheus/client_golang/pull/1526)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1530](https://togithub.com/prometheus/client_golang/pull/1530)- Remove synchronize trigger from changelog workflow by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1532](https://togithub.com/prometheus/client_golang/pull/1532)- feat: Support zstd compression by[@&#8203;mrueg](https://togithub.com/mrueg) in[https://github.com/prometheus/client_golang/pull/1496](https://togithub.com/prometheus/client_golang/pull/1496)- Fix golangci-lint config by[@&#8203;SuperQ](https://togithub.com/SuperQ) in[https://github.com/prometheus/client_golang/pull/1536](https://togithub.com/prometheus/client_golang/pull/1536)- build(deps): bump github.com/prometheus/client_golang from 1.19.0 to1.19.1 in /tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1529](https://togithub.com/prometheus/client_golang/pull/1529)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1531](https://togithub.com/prometheus/client_golang/pull/1531)- Cleanup NOTICE file by [@&#8203;SuperQ](https://togithub.com/SuperQ)in[https://github.com/prometheus/client_golang/pull/1541](https://togithub.com/prometheus/client_golang/pull/1541)- Remove inlined upstream code by[@&#8203;SuperQ](https://togithub.com/SuperQ) in[https://github.com/prometheus/client_golang/pull/1539](https://togithub.com/prometheus/client_golang/pull/1539)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1545](https://togithub.com/prometheus/client_golang/pull/1545)- client: Add Option to provide limit query param for APIs that supportit by [@&#8203;abbyssoul](https://togithub.com/abbyssoul) in[https://github.com/prometheus/client_golang/pull/1544](https://togithub.com/prometheus/client_golang/pull/1544)- Allow creating constant histogram and summary metrics with a createdtimestamp by [@&#8203;swar8080](https://togithub.com/swar8080) in[https://github.com/prometheus/client_golang/pull/1537](https://togithub.com/prometheus/client_golang/pull/1537)- Update README.md by [@&#8203;bwplotka](https://togithub.com/bwplotka)in[https://github.com/prometheus/client_golang/pull/1556](https://togithub.com/prometheus/client_golang/pull/1556)- Temporarily remove required CI job for changelog. by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1560](https://togithub.com/prometheus/client_golang/pull/1560)- build(deps): bump github.com/prometheus/common from 0.53.0 to 0.55.0in /tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1549](https://togithub.com/prometheus/client_golang/pull/1549)- build(deps): bump golang.org/x/sys from 0.20.0 to 0.21.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1552](https://togithub.com/prometheus/client_golang/pull/1552)- build(deps): bump github.com/klauspost/compress from 1.17.8 to 1.17.9by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1553](https://togithub.com/prometheus/client_golang/pull/1553)- fix: Update Go tests by [@&#8203;SuperQ](https://togithub.com/SuperQ)in[https://github.com/prometheus/client_golang/pull/1562](https://togithub.com/prometheus/client_golang/pull/1562)- process_collector: collect received/transmitted bytes by[@&#8203;huwcbjones](https://togithub.com/huwcbjones) in[https://github.com/prometheus/client_golang/pull/1555](https://togithub.com/prometheus/client_golang/pull/1555)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1561](https://togithub.com/prometheus/client_golang/pull/1561)- chore: Remove half-implemented changelog automation by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1564](https://togithub.com/prometheus/client_golang/pull/1564)- build(deps): bump the github-actions group across 1 directory with 3updates by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1565](https://togithub.com/prometheus/client_golang/pull/1565)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1563](https://togithub.com/prometheus/client_golang/pull/1563)- build(deps): bump google.golang.org/protobuf from 1.34.1 to 1.34.2 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1551](https://togithub.com/prometheus/client_golang/pull/1551)- deps: Updated to prometheus/common to 0.55 by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1566](https://togithub.com/prometheus/client_golang/pull/1566)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1567](https://togithub.com/prometheus/client_golang/pull/1567)- tutorials: Renamed tutorial -> tutorials for consistency + fixedtutorial code. by [@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1569](https://togithub.com/prometheus/client_golang/pull/1569)- go collector: add default metrics acceptance tests; adding morecontext to HELP by [@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1568](https://togithub.com/prometheus/client_golang/pull/1568)- build(deps): bump golang.org/x/sys from 0.21.0 to 0.22.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1570](https://togithub.com/prometheus/client_golang/pull/1570)- build(deps): bump the github-actions group with 3 updates by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1571](https://togithub.com/prometheus/client_golang/pull/1571)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1572](https://togithub.com/prometheus/client_golang/pull/1572)- ci: daggerize test and lint pipelines by[@&#8203;marcosnils](https://togithub.com/marcosnils) in[https://github.com/prometheus/client_golang/pull/1534](https://togithub.com/prometheus/client_golang/pull/1534)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1573](https://togithub.com/prometheus/client_golang/pull/1573)- Add default Go runtime metrics for /gc/gogc:percent,/gc/gomemlimit:bytes, /sched/gomaxprocs:threads by[@&#8203;vesari](https://togithub.com/vesari) in[https://github.com/prometheus/client_golang/pull/1559](https://togithub.com/prometheus/client_golang/pull/1559)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1576](https://togithub.com/prometheus/client_golang/pull/1576)- Remove go_memstat_lookups_total; added runtime/metrics calculation tomemstat metric's help. by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1577](https://togithub.com/prometheus/client_golang/pull/1577)- gocollector: Attach original runtime/metrics metric name to help. by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1578](https://togithub.com/prometheus/client_golang/pull/1578)</details>#### New Contributors* @&#8203;foehammer127 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1455](https://togithub.com/prometheus/client_golang/pull/1455)l/1455* @&#8203;SachinSahu431 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1476](https://togithub.com/prometheus/client_golang/pull/1476)l/1476* @&#8203;igor-drozdov made their firstcontributi[https://github.com/prometheus/client_golang/pull/1480](https://togithub.com/prometheus/client_golang/pull/1480)l/1480* @&#8203;majolo made their firstcontributi[https://github.com/prometheus/client_golang/pull/1492](https://togithub.com/prometheus/client_golang/pull/1492)l/1492* @&#8203;oftenoccur made their firstcontributi[https://github.com/prometheus/client_golang/pull/1497](https://togithub.com/prometheus/client_golang/pull/1497)l/1497* @&#8203;dongjiang1989 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1499](https://togithub.com/prometheus/client_golang/pull/1499)l/1499* @&#8203;lilijreey made their firstcontributi[https://github.com/prometheus/client_golang/pull/1511](https://togithub.com/prometheus/client_golang/pull/1511)l/1511* @&#8203;Ishani217 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1444](https://togithub.com/prometheus/client_golang/pull/1444)l/1444* @&#8203;jcass8695 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1503](https://togithub.com/prometheus/client_golang/pull/1503)l/1503* @&#8203;leonnicolas made their firstcontributi[https://github.com/prometheus/client_golang/pull/1424](https://togithub.com/prometheus/client_golang/pull/1424)l/1424* @&#8203;fatsheep9146 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1471](https://togithub.com/prometheus/client_golang/pull/1471)l/1471* @&#8203;abbyssoul made their firstcontributi[https://github.com/prometheus/client_golang/pull/1544](https://togithub.com/prometheus/client_golang/pull/1544)l/1544* @&#8203;swar8080 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1537](https://togithub.com/prometheus/client_golang/pull/1537)l/1537* @&#8203;huwcbjones made their firstcontributi[https://github.com/prometheus/client_golang/pull/1555](https://togithub.com/prometheus/client_golang/pull/1555)l/1555* @&#8203;marcosnils made their firstcontributi[https://github.com/prometheus/client_golang/pull/1534](https://togithub.com/prometheus/client_golang/pull/1534)l/1534* @&#8203;vesari made their firstcontributi[https://github.com/prometheus/client_golang/pull/1559](https://togithub.com/prometheus/client_golang/pull/1559)l/1559**Full Changelog**:prometheus/client_golang@v1.19.1...v1.20.0</details>---### Configuration📅 **Schedule**: Branch creation - At any time (no schedule defined),Automerge - At any time (no schedule defined).🚦 **Automerge**: Disabled by config. Please merge this manually once youare satisfied.♻ **Rebasing**: Whenever PR becomes conflicted, or you tick therebase/retry checkbox.🔕 **Ignore**: Close this PR and you won't be reminded about this updateagain.---- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, checkthis box---This PR was generated by [MendRenovate](https://www.mend.io/free-developer-tools/renovate/). View the[repository joblog](https://developer.mend.io/github/open-telemetry/opentelemetry-go-contrib).<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguMjYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
charithe referenced this pull request in cerbos/cerbosAug 19, 2024
[![MendRenovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)This PR contains the following updates:| Package | Change | Age | Adoption | Passing | Confidence | Type |Update ||---|---|---|---|---|---|---|---||[github.com/aws/aws-sdk-go-v2/config](https://togithub.com/aws/aws-sdk-go-v2)| `v1.27.27` -> `v1.27.28` |[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.28?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.28?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.27/v1.27.28?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.27/v1.27.28?slim=true)](https://docs.renovatebot.com/merge-confidence/)| require | patch ||[github.com/aws/aws-sdk-go-v2/service/marketplacemetering](https://togithub.com/aws/aws-sdk-go-v2)| `v1.23.3` -> `v1.23.4` |[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fmarketplacemetering/v1.23.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fmarketplacemetering/v1.23.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fmarketplacemetering/v1.23.3/v1.23.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fservice%2fmarketplacemetering/v1.23.3/v1.23.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)| require | patch || [github.com/aws/smithy-go](https://togithub.com/aws/smithy-go) |`v1.20.3` -> `v1.20.4` |[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2fsmithy-go/v1.20.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2fsmithy-go/v1.20.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2fsmithy-go/v1.20.3/v1.20.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2fsmithy-go/v1.20.3/v1.20.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)| require | patch || [github.com/bufbuild/buf](https://togithub.com/bufbuild/buf) |`v1.36.0` -> `v1.37.0` |[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fbufbuild%2fbuf/v1.37.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fbufbuild%2fbuf/v1.37.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fbufbuild%2fbuf/v1.36.0/v1.37.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fbufbuild%2fbuf/v1.36.0/v1.37.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)| require | minor ||[github.com/bufbuild/protovalidate-go](https://togithub.com/bufbuild/protovalidate-go)| `v0.6.3` -> `v0.6.4` |[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fbufbuild%2fprotovalidate-go/v0.6.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fbufbuild%2fprotovalidate-go/v0.6.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fbufbuild%2fprotovalidate-go/v0.6.3/v0.6.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fbufbuild%2fprotovalidate-go/v0.6.3/v0.6.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)| require | patch || [github.com/dadav/helm-schema](https://togithub.com/dadav/helm-schema)| `82590e8` -> `4e067df` |[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fdadav%2fhelm-schema/v0.0.0-20240817173722-4e067df209ea?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fdadav%2fhelm-schema/v0.0.0-20240817173722-4e067df209ea?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fdadav%2fhelm-schema/v0.0.0-20240808173306-82590e886026/v0.0.0-20240817173722-4e067df209ea?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fdadav%2fhelm-schema/v0.0.0-20240808173306-82590e886026/v0.0.0-20240817173722-4e067df209ea?slim=true)](https://docs.renovatebot.com/merge-confidence/)| require | digest ||[github.com/golangci/golangci-lint](https://togithub.com/golangci/golangci-lint)| `v1.59.1` -> `v1.60.1` |[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgolangci%2fgolangci-lint/v1.60.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgolangci%2fgolangci-lint/v1.60.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgolangci%2fgolangci-lint/v1.59.1/v1.60.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgolangci%2fgolangci-lint/v1.59.1/v1.60.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)| require | minor ||[github.com/goreleaser/goreleaser/v2](https://togithub.com/goreleaser/goreleaser)| `v2.1.0` -> `v2.2.0` |[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgoreleaser%2fgoreleaser%2fv2/v2.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgoreleaser%2fgoreleaser%2fv2/v2.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgoreleaser%2fgoreleaser%2fv2/v2.1.0/v2.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgoreleaser%2fgoreleaser%2fv2/v2.1.0/v2.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)| require | minor ||[github.com/grpc-ecosystem/grpc-gateway/v2](https://togithub.com/grpc-ecosystem/grpc-gateway)| `v2.21.0` -> `v2.22.0` |[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.21.0/v2.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgrpc-ecosystem%2fgrpc-gateway%2fv2/v2.21.0/v2.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)| require | minor || [github.com/minio/minio-go/v7](https://togithub.com/minio/minio-go) |`v7.0.74` -> `v7.0.75` |[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fminio%2fminio-go%2fv7/v7.0.75?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fminio%2fminio-go%2fv7/v7.0.75?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fminio%2fminio-go%2fv7/v7.0.74/v7.0.75?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fminio%2fminio-go%2fv7/v7.0.74/v7.0.75?slim=true)](https://docs.renovatebot.com/merge-confidence/)| require | patch || [github.com/ory/dockertest/v3](https://togithub.com/ory/dockertest) |`v3.10.0` -> `v3.11.0` |[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fory%2fdockertest%2fv3/v3.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fory%2fdockertest%2fv3/v3.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fory%2fdockertest%2fv3/v3.10.0/v3.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fory%2fdockertest%2fv3/v3.10.0/v3.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)| require | minor ||[github.com/prometheus/client_golang](https://togithub.com/prometheus/client_golang)| `v1.19.1` -> `v1.20.0` |[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_golang/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fprometheus%2fclient_golang/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fprometheus%2fclient_golang/v1.19.1/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fprometheus%2fclient_golang/v1.19.1/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)| require | minor || [github.com/rivo/tview](https://togithub.com/rivo/tview) | `e4c497c`-> `fd649db` |[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2frivo%2ftview/v0.0.0-20240818110301-fd649dbf1223?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2frivo%2ftview/v0.0.0-20240818110301-fd649dbf1223?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2frivo%2ftview/v0.0.0-20240807205129-e4c497cc59ed/v0.0.0-20240818110301-fd649dbf1223?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2frivo%2ftview/v0.0.0-20240807205129-e4c497cc59ed/v0.0.0-20240818110301-fd649dbf1223?slim=true)](https://docs.renovatebot.com/merge-confidence/)| require | digest || [github.com/vektra/mockery/v2](https://togithub.com/vektra/mockery) |`v2.44.1` -> `v2.44.2` |[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fvektra%2fmockery%2fv2/v2.44.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fvektra%2fmockery%2fv2/v2.44.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fvektra%2fmockery%2fv2/v2.44.1/v2.44.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fvektra%2fmockery%2fv2/v2.44.1/v2.44.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)| require | patch || [go](https://go.dev/) ([source](https://togithub.com/golang/go)) |`1.22.6` -> `1.23.0` |[![age](https://developer.mend.io/api/mc/badges/age/golang-version/go/1.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/golang-version/go/1.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/golang-version/go/1.22.6/1.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/golang-version/go/1.22.6/1.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)| toolchain | minor || gonum.org/v1/gonum | `v0.15.0` -> `v0.15.1` |[![age](https://developer.mend.io/api/mc/badges/age/go/gonum.org%2fv1%2fgonum/v0.15.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/gonum.org%2fv1%2fgonum/v0.15.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/gonum.org%2fv1%2fgonum/v0.15.0/v0.15.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/gonum.org%2fv1%2fgonum/v0.15.0/v0.15.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)| require | patch ||[google.golang.org/genproto/googleapis/api](https://togithub.com/googleapis/go-genproto)| `573a115` -> `ddb44da` |[![age](https://developer.mend.io/api/mc/badges/age/go/google.golang.org%2fgenproto%2fgoogleapis%2fapi/v0.0.0-20240814211410-ddb44dafa142?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/google.golang.org%2fgenproto%2fgoogleapis%2fapi/v0.0.0-20240814211410-ddb44dafa142?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/google.golang.org%2fgenproto%2fgoogleapis%2fapi/v0.0.0-20240808171019-573a1156607a/v0.0.0-20240814211410-ddb44dafa142?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/google.golang.org%2fgenproto%2fgoogleapis%2fapi/v0.0.0-20240808171019-573a1156607a/v0.0.0-20240814211410-ddb44dafa142?slim=true)](https://docs.renovatebot.com/merge-confidence/)| require | digest || [helm.sh/helm/v3](https://togithub.com/helm/helm) | `v3.15.3` ->`v3.15.4` |[![age](https://developer.mend.io/api/mc/badges/age/go/helm.sh%2fhelm%2fv3/v3.15.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/helm.sh%2fhelm%2fv3/v3.15.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/helm.sh%2fhelm%2fv3/v3.15.3/v3.15.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/helm.sh%2fhelm%2fv3/v3.15.3/v3.15.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)| require | patch |---### Release Notes<details><summary>aws/aws-sdk-go-v2(github.com/aws/aws-sdk-go-v2/service/marketplacemetering)</summary>###[`v1.23.4`](https://togithub.com/aws/aws-sdk-go-v2/compare/v1.23.3...v1.23.4)</details><details><summary>aws/smithy-go (github.com/aws/smithy-go)</summary>###[`v1.20.4`](https://togithub.com/aws/smithy-go/compare/v1.20.3...v1.20.4)[CompareSource](https://togithub.com/aws/smithy-go/compare/v1.20.3...v1.20.4)</details><details><summary>bufbuild/buf (github.com/bufbuild/buf)</summary>###[`v1.37.0`](https://togithub.com/bufbuild/buf/blob/HEAD/CHANGELOG.md#v1370---2024-08-16)[CompareSource](https://togithub.com/bufbuild/buf/compare/v1.36.0...v1.37.0)- Add `STABLE_PACKAGE_NO_IMPORT_UNSTABLE` lint rule which disallowsfiles from stable packages    to import files from unstable packages.- Fix plugin push failures when pushing an image built with containerdimage store.</details><details><summary>bufbuild/protovalidate-go(github.com/bufbuild/protovalidate-go)</summary>###[`v0.6.4`](https://togithub.com/bufbuild/protovalidate-go/releases/tag/v0.6.4)[CompareSource](https://togithub.com/bufbuild/protovalidate-go/compare/v0.6.3...v0.6.4)This release adds support for Protobuf Editions features.#### What's Changed- Always treat groups as message fields by[@&#8203;jchadwick-buf](https://togithub.com/jchadwick-buf) in[https://github.com/bufbuild/protovalidate-go/pull/132](https://togithub.com/bufbuild/protovalidate-go/pull/132)**Full Changelog**:https://github.com/bufbuild/protovalidate-go/compare/v0.6.3...v0.6.4</details><details><summary>golangci/golangci-lint(github.com/golangci/golangci-lint)</summary>###[`v1.60.1`](https://togithub.com/golangci/golangci-lint/compare/v1.60.0...v1.60.1)[CompareSource](https://togithub.com/golangci/golangci-lint/compare/v1.60.0...v1.60.1)###[`v1.60.0`](https://togithub.com/golangci/golangci-lint/compare/v1.59.1...v1.60.0)[CompareSource](https://togithub.com/golangci/golangci-lint/compare/v1.59.1...v1.60.0)</details><details><summary>goreleaser/goreleaser(github.com/goreleaser/goreleaser/v2)</summary>###[`v2.2.0`](https://togithub.com/goreleaser/goreleaser/releases/tag/v2.2.0)[CompareSource](https://togithub.com/goreleaser/goreleaser/compare/v2.1.0...v2.2.0)#### Changelog##### New Features-[`a8916c0`](https://togithub.com/goreleaser/goreleaser/commit/a8916c080ea52afbb8bdd31404ae8de637fc247a):feat: binary signs([#&#8203;5018](https://togithub.com/goreleaser/goreleaser/issues/5018))([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`2de792c`](https://togithub.com/goreleaser/goreleaser/commit/2de792c31da0823d88e049bd83b450f3d878326b):feat: rename snapshot.name_template -> snapshot.version_template([#&#8203;5019](https://togithub.com/goreleaser/goreleaser/issues/5019))([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`b6f9c8b`](https://togithub.com/goreleaser/goreleaser/commit/b6f9c8b9ca520d7fa6f01a087a1534e01f0bb032):feat: when --clean, remove dist before checking git state([#&#8203;5057](https://togithub.com/goreleaser/goreleaser/issues/5057))([@&#8203;caarlos0](https://togithub.com/caarlos0))##### Bug fixes-[`893562c`](https://togithub.com/goreleaser/goreleaser/commit/893562ca734d81db781c638cce4dfe5bcd985754):fix(gitlab): release file URL broken([#&#8203;5035](https://togithub.com/goreleaser/goreleaser/issues/5035))([@&#8203;abemedia](https://togithub.com/abemedia))-[`569295d`](https://togithub.com/goreleaser/goreleaser/commit/569295d43f6b91d01a8464e98574c6910cd694db):fix(jsonschema): missing ipk in nfpm.formats([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`ce4f2ed`](https://togithub.com/goreleaser/goreleaser/commit/ce4f2ed4316eb0441d7aae9afd71a23ba2dcd32f):fix(ko): rework error message for relative path for .go suffix([#&#8203;5005](https://togithub.com/goreleaser/goreleaser/issues/5005))([@&#8203;Dentrax](https://togithub.com/Dentrax))-[`bab28eb`](https://togithub.com/goreleaser/goreleaser/commit/bab28ebf88fa7f76c9dd68ebd570b1f54f7e4edd):fix(nix): do not install go on macos([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`c9398ee`](https://togithub.com/goreleaser/goreleaser/commit/c9398ee88cd493ea7c6b074fac0d44ca12512d40):fix: consistent logging of source archive path([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`3ae3a09`](https://togithub.com/goreleaser/goreleaser/commit/3ae3a098e7bd127aef36125116ec88b9411b57cc):fix: isEnvSet and envOrDefault not working sometimes([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`1e5a240`](https://togithub.com/goreleaser/goreleaser/commit/1e5a2402f91b210d636257ec660ee60a24ba455c):fix: snapcraft nix package not available on darwin([@&#8203;caarlos0](https://togithub.com/caarlos0))##### Dependency updates-[`b167098`](https://togithub.com/goreleaser/goreleaser/commit/b16709859fdefd5413cbf9759530579945fdda4f):Revert "chore(deps): bump gocloud.dev from 0.37.0 to 0.38.0([#&#8203;5028](https://togithub.com/goreleaser/goreleaser/issues/5028))"([#&#8203;5034](https://togithub.com/goreleaser/goreleaser/issues/5034))([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`9012e8f`](https://togithub.com/goreleaser/goreleaser/commit/9012e8fe3ce4b5dd6b55b783ce29733092eddf6c):Revert "chore(deps): bump gocloud.dev from 0.37.0 to 0.38.0([#&#8203;5028](https://togithub.com/goreleaser/goreleaser/issues/5028))"([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`1c3f3a1`](https://togithub.com/goreleaser/goreleaser/commit/1c3f3a1aa226cbf29b7dd97ebdf36454bbbc215e):chore(deps): bump anchore/sbom-action from 0.16.1 to 0.17.0([#&#8203;4999](https://togithub.com/goreleaser/goreleaser/issues/4999))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`1fc1a45`](https://togithub.com/goreleaser/goreleaser/commit/1fc1a45e9efc2516819353691d80ee4741fa162e):chore(deps): bump anchore/sbom-action from 0.17.0 to 0.17.1([#&#8203;5078](https://togithub.com/goreleaser/goreleaser/issues/5078))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`15f1f42`](https://togithub.com/goreleaser/goreleaser/commit/15f1f42db29eef871a0d0270c86754e75128787a):chore(deps): bump benc-uk/workflow-dispatch from 1.2.3 to 1.2.4([#&#8203;5047](https://togithub.com/goreleaser/goreleaser/issues/5047))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`9cbf1b3`](https://togithub.com/goreleaser/goreleaser/commit/9cbf1b3af20c84595dcacea5537f41317895b929):chore(deps): bump code.gitea.io/sdk/gitea from 0.18.0 to 0.19.0([#&#8203;5033](https://togithub.com/goreleaser/goreleaser/issues/5033))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`76d3047`](https://togithub.com/goreleaser/goreleaser/commit/76d3047763cbfddb93507151a2ef587ad2fdded0):chore(deps): bump dependabot/fetch-metadata from 1.6.0 to 2.2.0([#&#8203;5072](https://togithub.com/goreleaser/goreleaser/issues/5072))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`f6bee6f`](https://togithub.com/goreleaser/goreleaser/commit/f6bee6f61460d08c29ab4235883399a897b47506):chore(deps): bump docker/login-action from 3.2.0 to 3.3.0([#&#8203;5013](https://togithub.com/goreleaser/goreleaser/issues/5013))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`e79d262`](https://togithub.com/goreleaser/goreleaser/commit/e79d262e72f8cca60e8d201e3deaf9cf136aeb75):chore(deps): bump docker/setup-buildx-action from 3.4.0 to 3.5.0([#&#8203;5012](https://togithub.com/goreleaser/goreleaser/issues/5012))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`9c27aab`](https://togithub.com/goreleaser/goreleaser/commit/9c27aabaffe2950718fad90b172325061f264c4f):chore(deps): bump docker/setup-buildx-action from 3.5.0 to 3.6.1([#&#8203;5037](https://togithub.com/goreleaser/goreleaser/issues/5037))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`3d3817c`](https://togithub.com/goreleaser/goreleaser/commit/3d3817c57ee87c49cd591fd53b931f0c5df48969):chore(deps): bump docker/setup-qemu-action from 3.1.0 to 3.2.0([#&#8203;5011](https://togithub.com/goreleaser/goreleaser/issues/5011))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`b89d872`](https://togithub.com/goreleaser/goreleaser/commit/b89d872ef64b04f6f8279b663bb1493099174e5f):chore(deps): bump github.com/atc0005/go-teams-notify/v2 from 2.10.0 to2.11.0([#&#8203;5049](https://togithub.com/goreleaser/goreleaser/issues/5049))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`e909803`](https://togithub.com/goreleaser/goreleaser/commit/e909803a6102e186d016b1d75200daa77b245d41):chore(deps): bump github.com/aws/aws-sdk-go from 1.54.18 to 1.55.0([#&#8203;5014](https://togithub.com/goreleaser/goreleaser/issues/5014))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`9b239bc`](https://togithub.com/goreleaser/goreleaser/commit/9b239bcffebaafa257b93f42222784a8c2b71190):chore(deps): bump github.com/aws/aws-sdk-go from 1.55.0 to 1.55.1([#&#8203;5021](https://togithub.com/goreleaser/goreleaser/issues/5021))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`608bce4`](https://togithub.com/goreleaser/goreleaser/commit/608bce4147c9e3d1675805a27b4fcd7643c42290):chore(deps): bump github.com/aws/aws-sdk-go from 1.55.1 to 1.55.2([#&#8203;5025](https://togithub.com/goreleaser/goreleaser/issues/5025))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`4a7c2ca`](https://togithub.com/goreleaser/goreleaser/commit/4a7c2ca1ad406ec46ecd8795b465b9770c184fb0):chore(deps): bump github.com/aws/aws-sdk-go from 1.55.2 to 1.55.3([#&#8203;5027](https://togithub.com/goreleaser/goreleaser/issues/5027))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`d96001c`](https://togithub.com/goreleaser/goreleaser/commit/d96001c8d05f6d8d337197acec4372308d4476da):chore(deps): bump github.com/caarlos0/env/v11 from 11.1.0 to 11.2.0([#&#8203;5050](https://togithub.com/goreleaser/goreleaser/issues/5050))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`530b251`](https://togithub.com/goreleaser/goreleaser/commit/530b251b5d3f03cf04ec91b9a14f6c254e023b1c):chore(deps): bump github.com/caarlos0/log from 0.4.5 to 0.4.6([#&#8203;4995](https://togithub.com/goreleaser/goreleaser/issues/4995))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`8089685`](https://togithub.com/goreleaser/goreleaser/commit/80896859842147b747c62084e2ce74ef7dead3ae):chore(deps): bump github.com/charmbracelet/lipgloss from 0.12.0 to0.12.1([#&#8203;4994](https://togithub.com/goreleaser/goreleaser/issues/4994))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`68dac47`](https://togithub.com/goreleaser/goreleaser/commit/68dac47f92e6ab4e82749ea5e2f46b6cf841781a):chore(deps): bump github.com/docker/docker from 26.1.3+incompatible to26.1.4+incompatible([#&#8203;5040](https://togithub.com/goreleaser/goreleaser/issues/5040))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`0a6405b`](https://togithub.com/goreleaser/goreleaser/commit/0a6405b34d3ac0a91d1a6833011a01cedc3cceda):chore(deps): bump github.com/docker/docker from 26.1.4+incompatible to26.1.5+incompatible([#&#8203;5064](https://togithub.com/goreleaser/goreleaser/issues/5064))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`1378559`](https://togithub.com/goreleaser/goreleaser/commit/137855902e33dfcf6f1fa470833b0028ab5440b9):chore(deps): bump github.com/google/go-containerregistry from 0.20.0 to0.20.1([#&#8203;5002](https://togithub.com/goreleaser/goreleaser/issues/5002))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`32e676f`](https://togithub.com/goreleaser/goreleaser/commit/32e676fbe84b58fdc6d26f5f4b6649c3cb76fbf2):chore(deps): bump github.com/ory/dockertest/v3 from 3.10.0 to 3.11.0([#&#8203;5070](https://togithub.com/goreleaser/goreleaser/issues/5070))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`f5af23d`](https://togithub.com/goreleaser/goreleaser/commit/f5af23df6e56bb0c8f2bd7016831ebc73e1f3749):chore(deps): bump github.com/slack-go/slack from 0.13.0 to 0.13.1([#&#8203;5003](https://togithub.com/goreleaser/goreleaser/issues/5003))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`3f90247`](https://togithub.com/goreleaser/goreleaser/commit/3f902476fb06b0760991302be876626f82f20be3):chore(deps): bump github.com/xanzy/go-gitlab from 0.106.0 to 0.107.0([#&#8203;5000](https://togithub.com/goreleaser/goreleaser/issues/5000))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`ca061c2`](https://togithub.com/goreleaser/goreleaser/commit/ca061c20c3cae6e6e2e739e69377dbbdb6e1dc35):chore(deps): bump github/codeql-action from 3.25.11 to 3.25.12([#&#8203;4996](https://togithub.com/goreleaser/goreleaser/issues/4996))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`be9747b`](https://togithub.com/goreleaser/goreleaser/commit/be9747be913da29c4205b5d2dc82bb03c5bf4aa0):chore(deps): bump github/codeql-action from 3.25.12 to 3.25.13([#&#8203;5009](https://togithub.com/goreleaser/goreleaser/issues/5009))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`4a0659c`](https://togithub.com/goreleaser/goreleaser/commit/4a0659c958cd463139110f99b9a9dacdec5b2e37):chore(deps): bump github/codeql-action from 3.25.13 to 3.25.14([#&#8203;5026](https://togithub.com/goreleaser/goreleaser/issues/5026))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`482a489`](https://togithub.com/goreleaser/goreleaser/commit/482a48958f66fbb21e6131c574a02e38c8ad0d6a):chore(deps): bump github/codeql-action from 3.25.14 to 3.25.15([#&#8203;5032](https://togithub.com/goreleaser/goreleaser/issues/5032))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`ff2daa4`](https://togithub.com/goreleaser/goreleaser/commit/ff2daa45d33cdd38516245aa763c5886f9f51b33):chore(deps): bump github/codeql-action from 3.25.15 to 3.26.0([#&#8203;5053](https://togithub.com/goreleaser/goreleaser/issues/5053))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`58838fd`](https://togithub.com/goreleaser/goreleaser/commit/58838fd1d36a160a53d7bf6a1cbaa5f761e85b66):chore(deps): bump github/codeql-action from 3.26.0 to 3.26.1([#&#8203;5077](https://togithub.com/goreleaser/goreleaser/issues/5077))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`de17e5e`](https://togithub.com/goreleaser/goreleaser/commit/de17e5e0f4d4a42282d56a3e0c751b545ce9f0f5):chore(deps): bump gocloud.dev from 0.37.0 to 0.38.0([#&#8203;5028](https://togithub.com/goreleaser/goreleaser/issues/5028))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`79ad2af`](https://togithub.com/goreleaser/goreleaser/commit/79ad2afb2d43391ef12003eb99548fa49f497492):chore(deps): bump golang from 1.22.5-alpine to 1.22.6-alpine([#&#8203;5054](https://togithub.com/goreleaser/goreleaser/issues/5054))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`242021e`](https://togithub.com/goreleaser/goreleaser/commit/242021e912b61ba3336405287dd46e3757226592):chore(deps): bump golang from 1.22.6-alpine to 1.23.0-alpine([#&#8203;5076](https://togithub.com/goreleaser/goreleaser/issues/5076))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`5f016a3`](https://togithub.com/goreleaser/goreleaser/commit/5f016a366c9bbd175f20708a062a648b7cc520cc):chore(deps): bump golang from `8c9183f` to `ff45d87`([#&#8203;5010](https://togithub.com/goreleaser/goreleaser/issues/5010))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`c087a4c`](https://togithub.com/goreleaser/goreleaser/commit/c087a4c191aac47c1110720df3631381c83fad50):chore(deps): bump golang from `ff45d87` to `0d3653d`([#&#8203;5022](https://togithub.com/goreleaser/goreleaser/issues/5022))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`e1f1843`](https://togithub.com/goreleaser/goreleaser/commit/e1f1843c010bcf6014c5ce83aaae7289f89bb15b):chore(deps): bump golang.org/x/oauth2 from 0.21.0 to 0.22.0([#&#8203;5052](https://togithub.com/goreleaser/goreleaser/issues/5052))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`3aee244`](https://togithub.com/goreleaser/goreleaser/commit/3aee244efe762ca7ce4ba0198cd227f08182edd4):chore(deps): bump golang.org/x/sync from 0.7.0 to 0.8.0([#&#8203;5048](https://togithub.com/goreleaser/goreleaser/issues/5048))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`282ae59`](https://togithub.com/goreleaser/goreleaser/commit/282ae599d898f282a15ef1eafd9314bf3be8dc3e):chore(deps): bump golang.org/x/text from 0.16.0 to 0.17.0([#&#8203;5055](https://togithub.com/goreleaser/goreleaser/issues/5055))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`35f75ce`](https://togithub.com/goreleaser/goreleaser/commit/35f75cefab5f492c1d358eb3d121818b64cd1955):chore(deps): bump golang.org/x/tools from 0.23.0 to 0.24.0([#&#8203;5060](https://togithub.com/goreleaser/goreleaser/issues/5060))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`f301a10`](https://togithub.com/goreleaser/goreleaser/commit/f301a10d9625885a2d8c87890c40d1bd70058939):chore(deps): bump golangci/golangci-lint-action from 6.0.1 to 6.1.0([#&#8203;5036](https://togithub.com/goreleaser/goreleaser/issues/5036))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`c1d2d61`](https://togithub.com/goreleaser/goreleaser/commit/c1d2d61f4a5bda85645290840af264a753eaabf7):chore(deps): bump sigstore/cosign-installer from 3.5.0 to 3.6.0([#&#8203;5058](https://togithub.com/goreleaser/goreleaser/issues/5058))([@&#8203;dependabot](https://togithub.com/dependabot)\[bot])-[`f65ff02`](https://togithub.com/goreleaser/goreleaser/commit/f65ff027aec73eae25c398d5f504f99081356e37):chore(deps): update env and lipgloss([#&#8203;5066](https://togithub.com/goreleaser/goreleaser/issues/5066))([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`111121b`](https://togithub.com/goreleaser/goreleaser/commit/111121bbd98df17cc5d81888aa94a8d3694bc157):chore(deps): update nfpm([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`47ff67b`](https://togithub.com/goreleaser/goreleaser/commit/47ff67b2521f9f7716e2a0b48bf069b2df5ac654):feat(deps): update ko and gocloud.dev([#&#8203;5063](https://togithub.com/goreleaser/goreleaser/issues/5063))([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`65195c0`](https://togithub.com/goreleaser/goreleaser/commit/65195c06ecd225856316cc7927565c23bb8b83b8):sec(deps): update docker/docker and google/go-containerregistry([#&#8203;5065](https://togithub.com/goreleaser/goreleaser/issues/5065))([@&#8203;caarlos0](https://togithub.com/caarlos0))##### Documentation updates-[`e9453ac`](https://togithub.com/goreleaser/goreleaser/commit/e9453ac3c06ef77fa63b59f521c03dab362deab8):docs: clean ([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`2e88163`](https://togithub.com/goreleaser/goreleaser/commit/2e88163095c4c9acfc8ef3ee90ca527cf38280ff):docs: fix ([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`8c451c2`](https://togithub.com/goreleaser/goreleaser/commit/8c451c256940147918bc9881e9851fdc79ff3a8d):docs: improve dirty.md([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`6b64592`](https://togithub.com/goreleaser/goreleaser/commit/6b645926a82f208ca83ba780aeda23e9187c886f):docs: improve docs([#&#8203;5006](https://togithub.com/goreleaser/goreleaser/issues/5006))([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`f9fc0b8`](https://togithub.com/goreleaser/goreleaser/commit/f9fc0b8e9cb841805b38ae8692309102bfb9c4ab):docs: improve menus ([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`9bddf2b`](https://togithub.com/goreleaser/goreleaser/commit/9bddf2bb50a6505ab3f45fcd32995aa3785f619a):docs: improvements ([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`519ce53`](https://togithub.com/goreleaser/goreleaser/commit/519ce53ecb3f3e5aa77f9b7b135daddf3d009cf7):docs: update ([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`d38e793`](https://togithub.com/goreleaser/goreleaser/commit/d38e7939d8b82d9277ed72c800fc434abace602a):docs: update ([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`5ac0498`](https://togithub.com/goreleaser/goreleaser/commit/5ac049812542fcd43acc84f3f4facd1713868fad):docs: update ([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`033f1d3`](https://togithub.com/goreleaser/goreleaser/commit/033f1d36169e8d6fc60fd49f42c180dcf4d5a917):docs: update ([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`50ee54a`](https://togithub.com/goreleaser/goreleaser/commit/50ee54ac6ea8d924adf6eafffda6e85535cb59ef):docs: update ([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`f291f55`](https://togithub.com/goreleaser/goreleaser/commit/f291f55785a0945689ebea921e4cc0317cadae0a):docs: update sponsors page([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`b06a33a`](https://togithub.com/goreleaser/goreleaser/commit/b06a33a3928e5b8c5df789eb8572c627c1c8951b):docs: updates ([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`f924466`](https://togithub.com/goreleaser/goreleaser/commit/f924466a81c74e2047966335b38d176e921fe214):docs: use "~> v2" in GitHub actions docs([#&#8203;5067](https://togithub.com/goreleaser/goreleaser/issues/5067))([@&#8203;idebeijer](https://togithub.com/idebeijer))-[`e059beb`](https://togithub.com/goreleaser/goreleaser/commit/e059beb7770da7c1265e2704000707210eefe458):docs: users update ([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`379edd4`](https://togithub.com/goreleaser/goreleaser/commit/379edd4532287d7d71221c5c5ad8148ef12555dc):docs: v2.1 announcement([#&#8203;4987](https://togithub.com/goreleaser/goreleaser/issues/4987))([@&#8203;caarlos0](https://togithub.com/caarlos0))##### Build process updates-[`e728c9d`](https://togithub.com/goreleaser/goreleaser/commit/e728c9df78db7e98b3202ca73b3a1914ae15c0e0):build: name template ([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`a624fd3`](https://togithub.com/goreleaser/goreleaser/commit/a624fd3e738a3acbc1f3c131f302e7d0990bfedf):ci: auto approve dependency prs([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`6407d40`](https://togithub.com/goreleaser/goreleaser/commit/6407d405e02c7ac4f3b5e6fd1dbd5e89b50c71a2):ci: git pull before auto commit([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`e4cfcf5`](https://togithub.com/goreleaser/goreleaser/commit/e4cfcf54461b6f3699194640847d81f28a678e7d):ci: htmltest config update([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`3baffa7`](https://togithub.com/goreleaser/goreleaser/commit/3baffa7296dcb1d9146b6a7f8ff5e514ee9f11b2):ci: notify nightly builds on discord([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`9e169e4`](https://togithub.com/goreleaser/goreleaser/commit/9e169e47a591165fcb9b87ab52407805c2351fab):ci: split test and check jobs([#&#8203;5062](https://togithub.com/goreleaser/goreleaser/issues/5062))([@&#8203;caarlos0](https://togithub.com/caarlos0))##### Other work-[`c3ea906`](https://togithub.com/goreleaser/goreleaser/commit/c3ea906db834a7c9fc3f189537f9cbe741243bd6):chore: auto-update generated files([@&#8203;actions-user](https://togithub.com/actions-user))-[`2c5188d`](https://togithub.com/goreleaser/goreleaser/commit/2c5188d4923dd3b217d7d6bd9b6b125ab42f8c60):chore: auto-update generated files([@&#8203;actions-user](https://togithub.com/actions-user))-[`42d614d`](https://togithub.com/goreleaser/goreleaser/commit/42d614dd62ef67b812b2eb57920f534c84da919f):chore: crlf ([@&#8203;caarlos0](https://togithub.com/caarlos0))-[`607ccc4`](https://togithub.com/goreleaser/goreleaser/commit/607ccc4b8496c652c63553bc64be6b6d597626c9):chore: improv msg ([@&#8203;caarlos0](https://togithub.com/caarlos0))**Full Changelog**:https://github.com/goreleaser/goreleaser/compare/v2.1.0...v2.2.0#### Helping outThis release is only possible thanks to **all** the support of some**awesome people**!Want to be one of them?You can [sponsor](https://goreleaser.com/sponsors/), get a [ProLicense](https://goreleaser.com/pro) or [contribute withcode](https://goreleaser.com/contributing).#### Where to go next?- Find examples and commented usage of all options in our[website](https://goreleaser.com/intro/).- Reach out on [Discord](https://discord.gg/RGEBtg8vQ6) and[Twitter](https://twitter.com/goreleaser)!<a href="https://goreleaser.com"><imgsrc="https://raw.githubusercontent.com/goreleaser/artwork/master/opencollective-header.png"with="100%" alt="GoReleaser logo"></a></details><details><summary>grpc-ecosystem/grpc-gateway(github.com/grpc-ecosystem/grpc-gateway/v2)</summary>###[`v2.22.0`](https://togithub.com/grpc-ecosystem/grpc-gateway/releases/tag/v2.22.0)[CompareSource](https://togithub.com/grpc-ecosystem/grpc-gateway/compare/v2.21.0...v2.22.0)#### What's Changed- docs: add example to fully override http responses by[@&#8203;nguyentranbao-ct](https://togithub.com/nguyentranbao-ct) in[https://github.com/grpc-ecosystem/grpc-gateway/pull/4564](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4564)- stop printing error logs in handleForwardResponseOptions by[@&#8203;taichimaeda](https://togithub.com/taichimaeda) in[https://github.com/grpc-ecosystem/grpc-gateway/pull/4594](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4594)- Add some documenation for CustomQueryParser with examples by[@&#8203;texzone](https://togithub.com/texzone) in[https://github.com/grpc-ecosystem/grpc-gateway/pull/4602](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4602)- Fix[#&#8203;4614](https://togithub.com/grpc-ecosystem/grpc-gateway/issues/4614)Unique Items placement by[@&#8203;sebaraj](https://togithub.com/sebaraj) in[https://github.com/grpc-ecosystem/grpc-gateway/pull/4619](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4619)- all: fix test lint warnings by[@&#8203;johanbrandhorst](https://togithub.com/johanbrandhorst) in[https://github.com/grpc-ecosystem/grpc-gateway/pull/4632](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4632)- ci: update go versions supported by[@&#8203;johanbrandhorst](https://togithub.com/johanbrandhorst) in[https://github.com/grpc-ecosystem/grpc-gateway/pull/4634](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4634)- feat: Add WithForwardResponseRewriter to allow easier/more usefulresponse control by [@&#8203;nkcmr](https://togithub.com/nkcmr) in[https://github.com/grpc-ecosystem/grpc-gateway/pull/4622](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4622)#### New Contributors- [@&#8203;nguyentranbao-ct](https://togithub.com/nguyentranbao-ct) madetheir first contribution in[https://github.com/grpc-ecosystem/grpc-gateway/pull/4564](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4564)- [@&#8203;taichimaeda](https://togithub.com/taichimaeda) made theirfirst contribution in[https://github.com/grpc-ecosystem/grpc-gateway/pull/4594](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4594)- [@&#8203;texzone](https://togithub.com/texzone) made their firstcontribution in[https://github.com/grpc-ecosystem/grpc-gateway/pull/4602](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4602)- [@&#8203;sebaraj](https://togithub.com/sebaraj) made their firstcontribution in[https://github.com/grpc-ecosystem/grpc-gateway/pull/4619](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4619)- [@&#8203;nkcmr](https://togithub.com/nkcmr) made their firstcontribution in[https://github.com/grpc-ecosystem/grpc-gateway/pull/4622](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/4622)**Full Changelog**:https://github.com/grpc-ecosystem/grpc-gateway/compare/v2.21.0...v2.22.0</details><details><summary>minio/minio-go (github.com/minio/minio-go/v7)</summary>###[`v7.0.75`](https://togithub.com/minio/minio-go/releases/tag/v7.0.75):Bugfix Release[CompareSource](https://togithub.com/minio/minio-go/compare/v7.0.74...v7.0.75)#### What's Changed- [#&#8203;1552](https://togithub.com/minio/minio-go/issues/1552) addfunctional tests for bucket tagging by[@&#8203;romanchechyotkin](https://togithub.com/romanchechyotkin) in[https://github.com/minio/minio-go/pull/1986](https://togithub.com/minio/minio-go/pull/1986)- API methods and functional tests for bucket-level CORS configurationsettings by[@&#8203;marktheunissen](https://togithub.com/marktheunissen) in[https://github.com/minio/minio-go/pull/1987](https://togithub.com/minio/minio-go/pull/1987)- Add DisableContentSha256 to PutObjectPartOptions by[@&#8203;klauspost](https://togithub.com/klauspost) in[https://github.com/minio/minio-go/pull/1988](https://togithub.com/minio/minio-go/pull/1988)#### New Contributors- [@&#8203;romanchechyotkin](https://togithub.com/romanchechyotkin) madetheir first contribution in[https://github.com/minio/minio-go/pull/1986](https://togithub.com/minio/minio-go/pull/1986)**Full Changelog**:https://github.com/minio/minio-go/compare/v7.0.74...v7.0.75</details><details><summary>ory/dockertest (github.com/ory/dockertest/v3)</summary>###[`v3.11.0`](https://togithub.com/ory/dockertest/releases/tag/v3.11.0)[CompareSource](https://togithub.com/ory/dockertest/compare/v3.10.0...v3.11.0)#### What's Changed- chore(deps): bump github.com/opencontainers/runc from 1.1.5 to 1.1.6by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/ory/dockertest/pull/435](https://togithub.com/ory/dockertest/pull/435)- chore(deps): bump github.com/Microsoft/go-winio from 0.6.0 to 0.6.1 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/ory/dockertest/pull/437](https://togithub.com/ory/dockertest/pull/437)- chore(deps): bump github.com/lib/pq from0.0.0-20180327071824-d34b9ff171c2 to 1.10.8 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/ory/dockertest/pull/438](https://togithub.com/ory/dockertest/pull/438)- chore(deps): bump github.com/docker/docker from 20.10.7+incompatibleto 20.10.24+incompatible by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/ory/dockertest/pull/426](https://togithub.com/ory/dockertest/pull/426)- chore(deps): bump actions/checkout from 2 to 3 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/ory/dockertest/pull/427](https://togithub.com/ory/dockertest/pull/427)- chore(deps): bump github.com/sirupsen/logrus from 1.9.0 to 1.9.2 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/ory/dockertest/pull/450](https://togithub.com/ory/dockertest/pull/450)- chore(deps): bump github.com/containerd/continuity from 0.3.0 to 0.4.1by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/ory/dockertest/pull/451](https://togithub.com/ory/dockertest/pull/451)- chore(deps): bump github.com/stretchr/testify from 1.8.0 to 1.8.3 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/ory/dockertest/pull/449](https://togithub.com/ory/dockertest/pull/449)- chore(deps): bump github.com/opencontainers/runc from 1.1.6 to 1.1.7by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/ory/dockertest/pull/442](https://togithub.com/ory/dockertest/pull/442)- chore(deps): bump golang.org/x/sys from 0.7.0 to 0.8.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/ory/dockertest/pull/445](https://togithub.com/ory/dockertest/pull/445)- chore(deps): bump github.com/moby/term from0.0.0-20201216013528-df9cb8a40635 to 0.5.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/ory/dockertest/pull/446](https://togithub.com/ory/dockertest/pull/446)- chore(deps): bump github.com/docker/cli from 20.10.17+incompatible to24.0.1+incompatible by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/ory/dockertest/pull/448](https://togithub.com/ory/dockertest/pull/448)- chore: bump dependencies and fix some lint by[@&#8203;alnr](https://togithub.com/alnr) in[https://github.com/ory/dockertest/pull/499](https://togithub.com/ory/dockertest/pull/499)- chore(deps): bump golang.org/x/sys from 0.19.0 to 0.21.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/ory/dockertest/pull/501](https://togithub.com/ory/dockertest/pull/501)- chore(deps): bump actions/checkout from 2 to 4 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/ory/dockertest/pull/475](https://togithub.com/ory/dockertest/pull/475)- feat: fall back to podman if available by[@&#8203;SoMuchForSubtlety](https://togithub.com/SoMuchForSubtlety) in[https://github.com/ory/dockertest/pull/452](https://togithub.com/ory/dockertest/pull/452)- test: refactor asserts by[@&#8203;alexandear](https://togithub.com/alexandear) in[https://github.com/ory/dockertest/pull/497](https://togithub.com/ory/dockertest/pull/497)- use defer instead of os.Exit(m.Run()) by[@&#8203;pmenglund](https://togithub.com/pmenglund) in[https://github.com/ory/dockertest/pull/493](https://togithub.com/ory/dockertest/pull/493)- docs: remove outdated dep install instruction by[@&#8203;alexandear](https://togithub.com/alexandear) in[https://github.com/ory/dockertest/pull/505](https://togithub.com/ory/dockertest/pull/505)- chore: remove direct dependency on gotest.tools/v3 by[@&#8203;alexandear](https://togithub.com/alexandear) in[https://github.com/ory/dockertest/pull/504](https://togithub.com/ory/dockertest/pull/504)- chore: replace deprecated ioutil.TempDir with os.MkdirTemp by[@&#8203;alexandear](https://togithub.com/alexandear) in[https://github.com/ory/dockertest/pull/506](https://togithub.com/ory/dockertest/pull/506)- chore(deps): bump github.com/opencontainers/runc from 1.1.12 to 1.1.13by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/ory/dockertest/pull/509](https://togithub.com/ory/dockertest/pull/509)- move tests to dockertest_test package by[@&#8203;siraj-mx51](https://togithub.com/siraj-mx51) in[https://github.com/ory/dockertest/pull/490](https://togithub.com/ory/dockertest/pull/490)- chore(deps): bump github.com/opencontainers/image-spec from 1.0.2 to1.1.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/ory/dockertest/pull/510](https://togithub.com/ory/dockertest/pull/510)- chore(deps): bump actions/setup-node from 2.pre.beta to 4.0.2 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/ory/dockertest/pull/503](https://togithub.com/ory/dockertest/pull/503)- chore(deps): bump actions/setup-go from 4 to 5 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/ory/dockertest/pull/508](https://togithub.com/ory/dockertest/pull/508)- chore(deps): bump actions/stale from 4 to 9 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/ory/dockertest/pull/507](https://togithub.com/ory/dockertest/pull/507)- feat: introduce cve scanners by[@&#8203;Demonsthere](https://togithub.com/Demonsthere) in[https://github.com/ory/dockertest/pull/500](https://togithub.com/ory/dockertest/pull/500)- chore: update docker to v27.1.1 by[@&#8203;adamwalach](https://togithub.com/adamwalach) in[https://github.com/ory/dockertest/pull/522](https://togithub.com/ory/dockertest/pull/522)#### New Contributors- [@&#8203;alnr](https://togithub.com/alnr) made their firstcontribution in[https://github.com/ory/dockertest/pull/499](https://togithub.com/ory/dockertest/pull/499)- [@&#8203;SoMuchForSubtlety](https://togithub.com/SoMuchForSubtlety)made their first contribution in[https://github.com/ory/dockertest/pull/452](https://togithub.com/ory/dockertest/pull/452)- [@&#8203;siraj-mx51](https://togithub.com/siraj-mx51) made their firstcontribution in[https://github.com/ory/dockertest/pull/490](https://togithub.com/ory/dockertest/pull/490)- [@&#8203;Demonsthere](https://togithub.com/Demonsthere) made theirfirst contribution in[https://github.com/ory/dockertest/pull/500](https://togithub.com/ory/dockertest/pull/500)- [@&#8203;adamwalach](https://togithub.com/adamwalach) made their firstcontribution in[https://github.com/ory/dockertest/pull/522](https://togithub.com/ory/dockertest/pull/522)**Full Changelog**:https://github.com/ory/dockertest/compare/v3.10.0...v3.11.0</details><details><summary>prometheus/client_golang(github.com/prometheus/client_golang)</summary>###[`v1.20.0`](https://togithub.com/prometheus/client_golang/releases/tag/v1.20.0)[CompareSource](https://togithub.com/prometheus/client_golang/compare/v1.19.1...v1.20.0)Thanks everyone for contributions!:warning: In this release we remove one (broken anyway, given Go runtimechanges) metric and add three new (representing GOGC, GOMEMLIMIT andGOMAXPROCS flags) to the default `collectors.NewGoCollector()`collector. Given its popular usage, expect your binary to expose twoadditional metric.#### Changes- \[CHANGE] :warning: go-collector: Remove `go_memstat_lookups_total`metric which was always 0; Go runtime stopped sharing pointer lookupstatistics.[#&#8203;1577](https://togithub.com/prometheus/client_golang/issues/1577)- \[FEATURE] :warning: go-collector: Add 3 default metrics:`go_gc_gogc_percent`, `go_gc_gomemlimit_bytes` and`go_sched_gomaxprocs_threads` as those are recommended by the Go team.[#&#8203;1559](https://togithub.com/prometheus/client_golang/issues/1559)- \[FEATURE] go-collector: Add more information to all metrics' HELPe.g. the exact `runtime/metrics` sourcing each metric (if relevant).[#&#8203;1568](https://togithub.com/prometheus/client_golang/issues/1568)[#&#8203;1578](https://togithub.com/prometheus/client_golang/issues/1578)- \[FEATURE] testutil: Add CollectAndFormat method.[#&#8203;1503](https://togithub.com/prometheus/client_golang/issues/1503)- \[FEATURE] histograms: Add support for exemplars in native histograms.[#&#8203;1471](https://togithub.com/prometheus/client_golang/issues/1471)- \[FEATURE] promhttp: Add experimental support for `zstd` on scrape,controlled by the request `Accept-Encoding` header.[#&#8203;1496](https://togithub.com/prometheus/client_golang/issues/1496)- \[FEATURE] api/v1: Add `WithLimit` parameter to all API methods thatsupports it.[#&#8203;1544](https://togithub.com/prometheus/client_golang/issues/1544)- \[FEATURE] prometheus: Add support for created timestamps in constanthistograms and constant summaries.[#&#8203;1537](https://togithub.com/prometheus/client_golang/issues/1537)- \[FEATURE] process-collectors: Add network usage metrics:`process_network_receive_bytes_total` and`process_network_transmit_bytes_total`.[#&#8203;1555](https://togithub.com/prometheus/client_golang/issues/1555)- \[FEATURE] promlint: Add duplicated metric lint rule.[#&#8203;1472](https://togithub.com/prometheus/client_golang/issues/1472)- \[BUGFIX] promlint: Relax metric type in name linter rule.[#&#8203;1455](https://togithub.com/prometheus/client_golang/issues/1455)-   \[BUGFIX] promhttp: Make sure serverinstrumentation wrapping supports new and future extra responseWritermethods.[#&#8203;1480](https://togithub.com/prometheus/client_golang/issues/1480)- \[BUGFIX] testutil: Functions using compareMetricFamilies are nowfailing if filtered metricNames are not in the input.[#&#8203;1424](https://togithub.com/prometheus/client_golang/issues/1424)<details>  <summary>All commits</summary>- feat(prometheus/testutil/promlint/validations): refine lintMetricType…by [@&#8203;foehammer127](https://togithub.com/foehammer127) in[https://github.com/prometheus/client_golang/pull/1455](https://togithub.com/prometheus/client_golang/pull/1455)- Bump github.com/prometheus/client_golang from 1.18.0 to 1.19.0 in/examples/middleware by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1457](https://togithub.com/prometheus/client_golang/pull/1457)- Bump github.com/prometheus/client_model from 0.5.0 to 0.6.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1458](https://togithub.com/prometheus/client_golang/pull/1458)- Bump golang.org/x/sys from 0.16.0 to 0.17.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1459](https://togithub.com/prometheus/client_golang/pull/1459)- Bump github.com/prometheus/client_golang from 1.18.0 to 1.19.0 in/tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1461](https://togithub.com/prometheus/client_golang/pull/1461)- Merge Release 1.19 back to main by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1462](https://togithub.com/prometheus/client_golang/pull/1462)- Bump the github-actions group with 2 updates by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1456](https://togithub.com/prometheus/client_golang/pull/1456)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1466](https://togithub.com/prometheus/client_golang/pull/1466)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in/examples/middleware by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1467](https://togithub.com/prometheus/client_golang/pull/1467)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in/tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1469](https://togithub.com/prometheus/client_golang/pull/1469)- Add LintDuplicateMetric to promlint by[@&#8203;bboreham](https://togithub.com/bboreham) in[https://github.com/prometheus/client_golang/pull/1472](https://togithub.com/prometheus/client_golang/pull/1472)- Auto-update Go Collector Metrics for new Go versions by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1476](https://togithub.com/prometheus/client_golang/pull/1476)- Implement Unwrap() for responseWriterDelegator by[@&#8203;igor-drozdov](https://togithub.com/igor-drozdov) in[https://github.com/prometheus/client_golang/pull/1480](https://togithub.com/prometheus/client_golang/pull/1480)- Bump golang.org/x/sys from 0.17.0 to 0.18.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1485](https://togithub.com/prometheus/client_golang/pull/1485)- Bump github.com/prometheus/procfs from 0.12.0 to 0.13.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1486](https://togithub.com/prometheus/client_golang/pull/1486)- ci: Remove hardcoded supported Go versions from go.yml by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1489](https://togithub.com/promethe</details>---### Configuration📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC),Automerge - At any time (no schedule defined).🚦 **Automerge**: Disabled by config. Please merge this manually once youare satisfied.♻ **Rebasing**: Whenever PR becomes conflicted, or you tick therebase/retry checkbox.👻 **Immortal**: This PR will be recreated if closed unmerged. Get[config help](https://togithub.com/renovatebot/renovate/discussions) ifthat's undesired.---- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, checkthis box---This PR was generated by [MendRenovate](https://www.mend.io/free-developer-tools/renovate/). View the[repository job log](https://developer.mend.io/github/cerbos/cerbos).<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguMjYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXJlYS9kZXBlbmRlbmNpZXMiLCJib3RzIiwia2luZC9jaG9yZSJdfQ==-->---------Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>Signed-off-by: Charith Ellawala <charith@cerbos.dev>Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>Co-authored-by: Charith Ellawala <charith@cerbos.dev>
dmathieu referenced this pull request in open-telemetry/opentelemetry-goAug 19, 2024
….0 (#5713)[![MendRenovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)This PR contains the following updates:| Package | Change | Age | Adoption | Passing | Confidence ||---|---|---|---|---|---||[github.com/prometheus/client_golang](https://togithub.com/prometheus/client_golang)| `v1.19.1` -> `v1.20.0` |[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_golang/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fprometheus%2fclient_golang/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fprometheus%2fclient_golang/v1.19.1/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fprometheus%2fclient_golang/v1.19.1/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|---### Release Notes<details><summary>prometheus/client_golang(github.com/prometheus/client_golang)</summary>###[`v1.20.0`](https://togithub.com/prometheus/client_golang/releases/tag/v1.20.0)[CompareSource](https://togithub.com/prometheus/client_golang/compare/v1.19.1...v1.20.0)Thanks everyone for contributions!:warning: In this release we remove one (broken anyway, given Go runtimechanges) metric and add three new (representing GOGC, GOMEMLIMIT andGOMAXPROCS flags) to the default `collectors.NewGoCollector()`collector. Given its popular usage, expect your binary to expose twoadditional metric.#### Changes- \[CHANGE] :warning: go-collector: Remove `go_memstat_lookups_total`metric which was always 0; Go runtime stopped sharing pointer lookupstatistics.[#&#8203;1577](https://togithub.com/prometheus/client_golang/issues/1577)- \[FEATURE]⚠️ go-collector: Add 3 default metrics:`go_gc_gogc_percent`, `go_gc_gomemlimit_bytes` and`go_sched_gomaxprocs_threads` as those are recommended by the Go team.[#&#8203;1559](https://togithub.com/prometheus/client_golang/issues/1559)- \[FEATURE] go-collector: Add more information to all metrics' HELPe.g. the exact `runtime/metrics` sourcing each metric (if relevant).[#&#8203;1568](https://togithub.com/prometheus/client_golang/issues/1568)[#&#8203;1578](https://togithub.com/prometheus/client_golang/issues/1578)- \[FEATURE] testutil: Add CollectAndFormat method.[#&#8203;1503](https://togithub.com/prometheus/client_golang/issues/1503)- \[FEATURE] histograms: Add support for exemplars in native histograms.[#&#8203;1471](https://togithub.com/prometheus/client_golang/issues/1471)- \[FEATURE] promhttp: Add experimental support for `zstd` on scrape,controlled by the request `Accept-Encoding` header.[#&#8203;1496](https://togithub.com/prometheus/client_golang/issues/1496)- \[FEATURE] api/v1: Add `WithLimit` parameter to all API methods thatsupports it.[#&#8203;1544](https://togithub.com/prometheus/client_golang/issues/1544)- \[FEATURE] prometheus: Add support for created timestamps in constanthistograms and constant summaries.[#&#8203;1537](https://togithub.com/prometheus/client_golang/issues/1537)- \[FEATURE] process-collectors: Add network usage metrics:`process_network_receive_bytes_total` and`process_network_transmit_bytes_total`.[#&#8203;1555](https://togithub.com/prometheus/client_golang/issues/1555)- \[FEATURE] promlint: Add duplicated metric lint rule.[#&#8203;1472](https://togithub.com/prometheus/client_golang/issues/1472)- \[BUGFIX] promlint: Relax metric type in name linter rule.[#&#8203;1455](https://togithub.com/prometheus/client_golang/issues/1455)-   \[BUGFIX] promhttp: Make sure serverinstrumentation wrapping supports new and future extra responseWritermethods.[#&#8203;1480](https://togithub.com/prometheus/client_golang/issues/1480)- \[BUGFIX] testutil: Functions using compareMetricFamilies are nowfailing if filtered metricNames are not in the input.[#&#8203;1424](https://togithub.com/prometheus/client_golang/issues/1424)<details>  <summary>All commits</summary>- feat(prometheus/testutil/promlint/validations): refine lintMetricType…by [@&#8203;foehammer127](https://togithub.com/foehammer127) in[https://github.com/prometheus/client_golang/pull/1455](https://togithub.com/prometheus/client_golang/pull/1455)- Bump github.com/prometheus/client_golang from 1.18.0 to 1.19.0 in/examples/middleware by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1457](https://togithub.com/prometheus/client_golang/pull/1457)- Bump github.com/prometheus/client_model from 0.5.0 to 0.6.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1458](https://togithub.com/prometheus/client_golang/pull/1458)- Bump golang.org/x/sys from 0.16.0 to 0.17.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1459](https://togithub.com/prometheus/client_golang/pull/1459)- Bump github.com/prometheus/client_golang from 1.18.0 to 1.19.0 in/tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1461](https://togithub.com/prometheus/client_golang/pull/1461)- Merge Release 1.19 back to main by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1462](https://togithub.com/prometheus/client_golang/pull/1462)- Bump the github-actions group with 2 updates by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1456](https://togithub.com/prometheus/client_golang/pull/1456)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1466](https://togithub.com/prometheus/client_golang/pull/1466)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in/examples/middleware by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1467](https://togithub.com/prometheus/client_golang/pull/1467)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in/tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1469](https://togithub.com/prometheus/client_golang/pull/1469)- Add LintDuplicateMetric to promlint by[@&#8203;bboreham](https://togithub.com/bboreham) in[https://github.com/prometheus/client_golang/pull/1472](https://togithub.com/prometheus/client_golang/pull/1472)- Auto-update Go Collector Metrics for new Go versions by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1476](https://togithub.com/prometheus/client_golang/pull/1476)- Implement Unwrap() for responseWriterDelegator by[@&#8203;igor-drozdov](https://togithub.com/igor-drozdov) in[https://github.com/prometheus/client_golang/pull/1480](https://togithub.com/prometheus/client_golang/pull/1480)- Bump golang.org/x/sys from 0.17.0 to 0.18.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1485](https://togithub.com/prometheus/client_golang/pull/1485)- Bump github.com/prometheus/procfs from 0.12.0 to 0.13.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1486](https://togithub.com/prometheus/client_golang/pull/1486)- ci: Remove hardcoded supported Go versions from go.yml by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1489](https://togithub.com/prometheus/client_golang/pull/1489)- feat: metrics generation workflow by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1481](https://togithub.com/prometheus/client_golang/pull/1481)- fix: remove redundant go module in middleware example by[@&#8203;majolo](https://togithub.com/majolo) in[https://github.com/prometheus/client_golang/pull/1492](https://togithub.com/prometheus/client_golang/pull/1492)- chore: Refactor how base metrics are added to Sched metrics by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1483](https://togithub.com/prometheus/client_golang/pull/1483)- gocollector: Add regex option to allow collection of debug runtimemetrics by [@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1389](https://togithub.com/prometheus/client_golang/pull/1389)- Bump github.com/prometheus/common from 0.48.0 to 0.52.3 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1498](https://togithub.com/prometheus/client_golang/pull/1498)- chore: fix function name in comment by[@&#8203;oftenoccur](https://togithub.com/oftenoccur) in[https://github.com/prometheus/client_golang/pull/1497](https://togithub.com/prometheus/client_golang/pull/1497)- build(deps): bump golang.org/x/net from 0.20.0 to 0.23.0 in/tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1501](https://togithub.com/prometheus/client_golang/pull/1501)- build(deps): bump golang.org/x/net from 0.22.0 to 0.23.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1502](https://togithub.com/prometheus/client_golang/pull/1502)- feat(dependency): replace go-spew package by[@&#8203;dongjiang1989](https://togithub.com/dongjiang1989) in[https://github.com/prometheus/client_golang/pull/1499](https://togithub.com/prometheus/client_golang/pull/1499)- build(deps): bump github.com/prometheus/common from 0.52.3 to 0.53.0by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1504](https://togithub.com/prometheus/client_golang/pull/1504)- build(deps): bump github.com/cespare/xxhash/v2 from 2.2.0 to 2.3.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1505](https://togithub.com/prometheus/client_golang/pull/1505)- build(deps): bump google.golang.org/protobuf from 1.33.0 to 1.34.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1506](https://togithub.com/prometheus/client_golang/pull/1506)- build(deps): bump golang.org/x/sys from 0.18.0 to 0.19.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1507](https://togithub.com/prometheus/client_golang/pull/1507)- build(deps): bump github.com/prometheus/client_model from 0.6.0 to0.6.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1508](https://togithub.com/prometheus/client_golang/pull/1508)- build(deps): bump github.com/prometheus/common from 0.48.0 to 0.53.0in /tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1509](https://togithub.com/prometheus/client_golang/pull/1509)- improved code more clean by[@&#8203;lilijreey](https://togithub.com/lilijreey) in[https://github.com/prometheus/client_golang/pull/1511](https://togithub.com/prometheus/client_golang/pull/1511)- build(deps): bump the github-actions group with 3 updates by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1510](https://togithub.com/prometheus/client_golang/pull/1510)- \[CI]: Add Concurrency Grouping to GitHub Workflows by[@&#8203;Ishani217](https://togithub.com/Ishani217) in[https://github.com/prometheus/client_golang/pull/1444](https://togithub.com/prometheus/client_golang/pull/1444)- Add CollectAndFormat to testutil, allowing caller to assert as theywant to on the exported metric by[@&#8203;jcass8695](https://togithub.com/jcass8695) in[https://github.com/prometheus/client_golang/pull/1503](https://togithub.com/prometheus/client_golang/pull/1503)- testutil compareMetricFamilies: make less error-prone by[@&#8203;leonnicolas](https://togithub.com/leonnicolas) in[https://github.com/prometheus/client_golang/pull/1424](https://togithub.com/prometheus/client_golang/pull/1424)- improved code more clean use time.IsZero() replace t = time.Time{} by[@&#8203;lilijreey](https://togithub.com/lilijreey) in[https://github.com/prometheus/client_golang/pull/1515](https://togithub.com/prometheus/client_golang/pull/1515)- add native histogram exemplar support by[@&#8203;fatsheep9146](https://togithub.com/fatsheep9146) in[https://github.com/prometheus/client_golang/pull/1471](https://togithub.com/prometheus/client_golang/pull/1471)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1514](https://togithub.com/prometheus/client_golang/pull/1514)- build(deps): bump golang.org/x/sys from 0.19.0 to 0.20.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1523](https://togithub.com/prometheus/client_golang/pull/1523)- build(deps): bump google.golang.org/protobuf from 1.34.0 to 1.34.1 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1522](https://togithub.com/prometheus/client_golang/pull/1522)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1524](https://togithub.com/prometheus/client_golang/pull/1524)- Add PR template for changelog automation by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1517](https://togithub.com/prometheus/client_golang/pull/1517)- Auto label PRs by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1518](https://togithub.com/prometheus/client_golang/pull/1518)- Fix: Auto label PRs[#&#8203;1518](https://togithub.com/prometheus/client_golang/issues/1518)by [@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1525](https://togithub.com/prometheus/client_golang/pull/1525)- build(deps): bump github.com/prometheus/procfs from 0.13.0 to 0.15.1by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1527](https://togithub.com/prometheus/client_golang/pull/1527)- ci: Group all changelog-related CI jobs into single one by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1526](https://togithub.com/prometheus/client_golang/pull/1526)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1530](https://togithub.com/prometheus/client_golang/pull/1530)- Remove synchronize trigger from changelog workflow by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1532](https://togithub.com/prometheus/client_golang/pull/1532)- feat: Support zstd compression by[@&#8203;mrueg](https://togithub.com/mrueg) in[https://github.com/prometheus/client_golang/pull/1496](https://togithub.com/prometheus/client_golang/pull/1496)- Fix golangci-lint config by[@&#8203;SuperQ](https://togithub.com/SuperQ) in[https://github.com/prometheus/client_golang/pull/1536](https://togithub.com/prometheus/client_golang/pull/1536)- build(deps): bump github.com/prometheus/client_golang from 1.19.0 to1.19.1 in /tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1529](https://togithub.com/prometheus/client_golang/pull/1529)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1531](https://togithub.com/prometheus/client_golang/pull/1531)- Cleanup NOTICE file by [@&#8203;SuperQ](https://togithub.com/SuperQ)in[https://github.com/prometheus/client_golang/pull/1541](https://togithub.com/prometheus/client_golang/pull/1541)- Remove inlined upstream code by[@&#8203;SuperQ](https://togithub.com/SuperQ) in[https://github.com/prometheus/client_golang/pull/1539](https://togithub.com/prometheus/client_golang/pull/1539)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1545](https://togithub.com/prometheus/client_golang/pull/1545)- client: Add Option to provide limit query param for APIs that supportit by [@&#8203;abbyssoul](https://togithub.com/abbyssoul) in[https://github.com/prometheus/client_golang/pull/1544](https://togithub.com/prometheus/client_golang/pull/1544)- Allow creating constant histogram and summary metrics with a createdtimestamp by [@&#8203;swar8080](https://togithub.com/swar8080) in[https://github.com/prometheus/client_golang/pull/1537](https://togithub.com/prometheus/client_golang/pull/1537)- Update README.md by [@&#8203;bwplotka](https://togithub.com/bwplotka)in[https://github.com/prometheus/client_golang/pull/1556](https://togithub.com/prometheus/client_golang/pull/1556)- Temporarily remove required CI job for changelog. by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1560](https://togithub.com/prometheus/client_golang/pull/1560)- build(deps): bump github.com/prometheus/common from 0.53.0 to 0.55.0in /tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1549](https://togithub.com/prometheus/client_golang/pull/1549)- build(deps): bump golang.org/x/sys from 0.20.0 to 0.21.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1552](https://togithub.com/prometheus/client_golang/pull/1552)- build(deps): bump github.com/klauspost/compress from 1.17.8 to 1.17.9by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1553](https://togithub.com/prometheus/client_golang/pull/1553)- fix: Update Go tests by [@&#8203;SuperQ](https://togithub.com/SuperQ)in[https://github.com/prometheus/client_golang/pull/1562](https://togithub.com/prometheus/client_golang/pull/1562)- process_collector: collect received/transmitted bytes by[@&#8203;huwcbjones](https://togithub.com/huwcbjones) in[https://github.com/prometheus/client_golang/pull/1555](https://togithub.com/prometheus/client_golang/pull/1555)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1561](https://togithub.com/prometheus/client_golang/pull/1561)- chore: Remove half-implemented changelog automation by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1564](https://togithub.com/prometheus/client_golang/pull/1564)- build(deps): bump the github-actions group across 1 directory with 3updates by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1565](https://togithub.com/prometheus/client_golang/pull/1565)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1563](https://togithub.com/prometheus/client_golang/pull/1563)- build(deps): bump google.golang.org/protobuf from 1.34.1 to 1.34.2 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1551](https://togithub.com/prometheus/client_golang/pull/1551)- deps: Updated to prometheus/common to 0.55 by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1566](https://togithub.com/prometheus/client_golang/pull/1566)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1567](https://togithub.com/prometheus/client_golang/pull/1567)- tutorials: Renamed tutorial -> tutorials for consistency + fixedtutorial code. by [@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1569](https://togithub.com/prometheus/client_golang/pull/1569)- go collector: add default metrics acceptance tests; adding morecontext to HELP by [@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1568](https://togithub.com/prometheus/client_golang/pull/1568)- build(deps): bump golang.org/x/sys from 0.21.0 to 0.22.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1570](https://togithub.com/prometheus/client_golang/pull/1570)- build(deps): bump the github-actions group with 3 updates by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1571](https://togithub.com/prometheus/client_golang/pull/1571)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1572](https://togithub.com/prometheus/client_golang/pull/1572)- ci: daggerize test and lint pipelines by[@&#8203;marcosnils](https://togithub.com/marcosnils) in[https://github.com/prometheus/client_golang/pull/1534](https://togithub.com/prometheus/client_golang/pull/1534)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1573](https://togithub.com/prometheus/client_golang/pull/1573)- Add default Go runtime metrics for /gc/gogc:percent,/gc/gomemlimit:bytes, /sched/gomaxprocs:threads by[@&#8203;vesari](https://togithub.com/vesari) in[https://github.com/prometheus/client_golang/pull/1559](https://togithub.com/prometheus/client_golang/pull/1559)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1576](https://togithub.com/prometheus/client_golang/pull/1576)- Remove go_memstat_lookups_total; added runtime/metrics calculation tomemstat metric's help. by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1577](https://togithub.com/prometheus/client_golang/pull/1577)- gocollector: Attach original runtime/metrics metric name to help. by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1578](https://togithub.com/prometheus/client_golang/pull/1578)</details>#### New Contributors* @&#8203;foehammer127 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1455](https://togithub.com/prometheus/client_golang/pull/1455)l/1455* @&#8203;SachinSahu431 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1476](https://togithub.com/prometheus/client_golang/pull/1476)l/1476* @&#8203;igor-drozdov made their firstcontributi[https://github.com/prometheus/client_golang/pull/1480](https://togithub.com/prometheus/client_golang/pull/1480)l/1480* @&#8203;majolo made their firstcontributi[https://github.com/prometheus/client_golang/pull/1492](https://togithub.com/prometheus/client_golang/pull/1492)l/1492* @&#8203;oftenoccur made their firstcontributi[https://github.com/prometheus/client_golang/pull/1497](https://togithub.com/prometheus/client_golang/pull/1497)l/1497* @&#8203;dongjiang1989 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1499](https://togithub.com/prometheus/client_golang/pull/1499)l/1499* @&#8203;lilijreey made their firstcontributi[https://github.com/prometheus/client_golang/pull/1511](https://togithub.com/prometheus/client_golang/pull/1511)l/1511* @&#8203;Ishani217 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1444](https://togithub.com/prometheus/client_golang/pull/1444)l/1444* @&#8203;jcass8695 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1503](https://togithub.com/prometheus/client_golang/pull/1503)l/1503* @&#8203;leonnicolas made their firstcontributi[https://github.com/prometheus/client_golang/pull/1424](https://togithub.com/prometheus/client_golang/pull/1424)l/1424* @&#8203;fatsheep9146 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1471](https://togithub.com/prometheus/client_golang/pull/1471)l/1471* @&#8203;abbyssoul made their firstcontributi[https://github.com/prometheus/client_golang/pull/1544](https://togithub.com/prometheus/client_golang/pull/1544)l/1544* @&#8203;swar8080 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1537](https://togithub.com/prometheus/client_golang/pull/1537)l/1537* @&#8203;huwcbjones made their firstcontributi[https://github.com/prometheus/client_golang/pull/1555](https://togithub.com/prometheus/client_golang/pull/1555)l/1555* @&#8203;marcosnils made their firstcontributi[https://github.com/prometheus/client_golang/pull/1534](https://togithub.com/prometheus/client_golang/pull/1534)l/1534* @&#8203;vesari made their firstcontributi[https://github.com/prometheus/client_golang/pull/1559](https://togithub.com/prometheus/client_golang/pull/1559)l/1559**Full Changelog**:prometheus/client_golang@v1.19.1...v1.20.0</details>---### Configuration📅 **Schedule**: Branch creation - At any time (no schedule defined),Automerge - At any time (no schedule defined).🚦 **Automerge**: Disabled by config. Please merge this manually once youare satisfied.♻ **Rebasing**: Whenever PR becomes conflicted, or you tick therebase/retry checkbox.🔕 **Ignore**: Close this PR and you won't be reminded about this updateagain.---- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, checkthis box---This PR was generated by [MendRenovate](https://www.mend.io/free-developer-tools/renovate/). View the[repository joblog](https://developer.mend.io/github/open-telemetry/opentelemetry-go).<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguMjYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
codeboten referenced this pull request in open-telemetry/opentelemetry-collectorAug 20, 2024
….0 (#10918)[![MendRenovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)This PR contains the following updates:| Package | Change | Age | Adoption | Passing | Confidence ||---|---|---|---|---|---||[github.com/prometheus/client_golang](https://togithub.com/prometheus/client_golang)| `v1.19.1` -> `v1.20.0` |[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_golang/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fprometheus%2fclient_golang/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fprometheus%2fclient_golang/v1.19.1/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fprometheus%2fclient_golang/v1.19.1/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|---> [!WARNING]> Some dependencies could not be looked up. Check the DependencyDashboard for more information.---### Release Notes<details><summary>prometheus/client_golang(github.com/prometheus/client_golang)</summary>###[`v1.20.0`](https://togithub.com/prometheus/client_golang/releases/tag/v1.20.0)[CompareSource](https://togithub.com/prometheus/client_golang/compare/v1.19.1...v1.20.0)Thanks everyone for contributions!:warning: In this release we remove one (broken anyway, given Go runtimechanges) metric and add three new (representing GOGC, GOMEMLIMIT andGOMAXPROCS flags) to the default `collectors.NewGoCollector()`collector. Given its popular usage, expect your binary to expose twoadditional metric.#### Changes- \[CHANGE] :warning: go-collector: Remove `go_memstat_lookups_total`metric which was always 0; Go runtime stopped sharing pointer lookupstatistics.[#&#8203;1577](https://togithub.com/prometheus/client_golang/issues/1577)- \[FEATURE]⚠️ go-collector: Add 3 default metrics:`go_gc_gogc_percent`, `go_gc_gomemlimit_bytes` and`go_sched_gomaxprocs_threads` as those are recommended by the Go team.[#&#8203;1559](https://togithub.com/prometheus/client_golang/issues/1559)- \[FEATURE] go-collector: Add more information to all metrics' HELPe.g. the exact `runtime/metrics` sourcing each metric (if relevant).[#&#8203;1568](https://togithub.com/prometheus/client_golang/issues/1568)[#&#8203;1578](https://togithub.com/prometheus/client_golang/issues/1578)- \[FEATURE] testutil: Add CollectAndFormat method.[#&#8203;1503](https://togithub.com/prometheus/client_golang/issues/1503)- \[FEATURE] histograms: Add support for exemplars in native histograms.[#&#8203;1471](https://togithub.com/prometheus/client_golang/issues/1471)- \[FEATURE] promhttp: Add experimental support for `zstd` on scrape,controlled by the request `Accept-Encoding` header.[#&#8203;1496](https://togithub.com/prometheus/client_golang/issues/1496)- \[FEATURE] api/v1: Add `WithLimit` parameter to all API methods thatsupports it.[#&#8203;1544](https://togithub.com/prometheus/client_golang/issues/1544)- \[FEATURE] prometheus: Add support for created timestamps in constanthistograms and constant summaries.[#&#8203;1537](https://togithub.com/prometheus/client_golang/issues/1537)- \[FEATURE] process-collectors: Add network usage metrics:`process_network_receive_bytes_total` and`process_network_transmit_bytes_total`.[#&#8203;1555](https://togithub.com/prometheus/client_golang/issues/1555)- \[FEATURE] promlint: Add duplicated metric lint rule.[#&#8203;1472](https://togithub.com/prometheus/client_golang/issues/1472)- \[BUGFIX] promlint: Relax metric type in name linter rule.[#&#8203;1455](https://togithub.com/prometheus/client_golang/issues/1455)-   \[BUGFIX] promhttp: Make sure serverinstrumentation wrapping supports new and future extra responseWritermethods.[#&#8203;1480](https://togithub.com/prometheus/client_golang/issues/1480)- \[BUGFIX] testutil: Functions using compareMetricFamilies are nowfailing if filtered metricNames are not in the input.[#&#8203;1424](https://togithub.com/prometheus/client_golang/issues/1424)<details>  <summary>All commits</summary>- feat(prometheus/testutil/promlint/validations): refine lintMetricType…by [@&#8203;foehammer127](https://togithub.com/foehammer127) in[https://github.com/prometheus/client_golang/pull/1455](https://togithub.com/prometheus/client_golang/pull/1455)- Bump github.com/prometheus/client_golang from 1.18.0 to 1.19.0 in/examples/middleware by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1457](https://togithub.com/prometheus/client_golang/pull/1457)- Bump github.com/prometheus/client_model from 0.5.0 to 0.6.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1458](https://togithub.com/prometheus/client_golang/pull/1458)- Bump golang.org/x/sys from 0.16.0 to 0.17.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1459](https://togithub.com/prometheus/client_golang/pull/1459)- Bump github.com/prometheus/client_golang from 1.18.0 to 1.19.0 in/tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1461](https://togithub.com/prometheus/client_golang/pull/1461)- Merge Release 1.19 back to main by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1462](https://togithub.com/prometheus/client_golang/pull/1462)- Bump the github-actions group with 2 updates by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1456](https://togithub.com/prometheus/client_golang/pull/1456)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1466](https://togithub.com/prometheus/client_golang/pull/1466)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in/examples/middleware by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1467](https://togithub.com/prometheus/client_golang/pull/1467)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in/tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1469](https://togithub.com/prometheus/client_golang/pull/1469)- Add LintDuplicateMetric to promlint by[@&#8203;bboreham](https://togithub.com/bboreham) in[https://github.com/prometheus/client_golang/pull/1472](https://togithub.com/prometheus/client_golang/pull/1472)- Auto-update Go Collector Metrics for new Go versions by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1476](https://togithub.com/prometheus/client_golang/pull/1476)- Implement Unwrap() for responseWriterDelegator by[@&#8203;igor-drozdov](https://togithub.com/igor-drozdov) in[https://github.com/prometheus/client_golang/pull/1480](https://togithub.com/prometheus/client_golang/pull/1480)- Bump golang.org/x/sys from 0.17.0 to 0.18.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1485](https://togithub.com/prometheus/client_golang/pull/1485)- Bump github.com/prometheus/procfs from 0.12.0 to 0.13.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1486](https://togithub.com/prometheus/client_golang/pull/1486)- ci: Remove hardcoded supported Go versions from go.yml by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1489](https://togithub.com/prometheus/client_golang/pull/1489)- feat: metrics generation workflow by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1481](https://togithub.com/prometheus/client_golang/pull/1481)- fix: remove redundant go module in middleware example by[@&#8203;majolo](https://togithub.com/majolo) in[https://github.com/prometheus/client_golang/pull/1492](https://togithub.com/prometheus/client_golang/pull/1492)- chore: Refactor how base metrics are added to Sched metrics by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1483](https://togithub.com/prometheus/client_golang/pull/1483)- gocollector: Add regex option to allow collection of debug runtimemetrics by [@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1389](https://togithub.com/prometheus/client_golang/pull/1389)- Bump github.com/prometheus/common from 0.48.0 to 0.52.3 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1498](https://togithub.com/prometheus/client_golang/pull/1498)- chore: fix function name in comment by[@&#8203;oftenoccur](https://togithub.com/oftenoccur) in[https://github.com/prometheus/client_golang/pull/1497](https://togithub.com/prometheus/client_golang/pull/1497)- build(deps): bump golang.org/x/net from 0.20.0 to 0.23.0 in/tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1501](https://togithub.com/prometheus/client_golang/pull/1501)- build(deps): bump golang.org/x/net from 0.22.0 to 0.23.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1502](https://togithub.com/prometheus/client_golang/pull/1502)- feat(dependency): replace go-spew package by[@&#8203;dongjiang1989](https://togithub.com/dongjiang1989) in[https://github.com/prometheus/client_golang/pull/1499](https://togithub.com/prometheus/client_golang/pull/1499)- build(deps): bump github.com/prometheus/common from 0.52.3 to 0.53.0by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1504](https://togithub.com/prometheus/client_golang/pull/1504)- build(deps): bump github.com/cespare/xxhash/v2 from 2.2.0 to 2.3.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1505](https://togithub.com/prometheus/client_golang/pull/1505)- build(deps): bump google.golang.org/protobuf from 1.33.0 to 1.34.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1506](https://togithub.com/prometheus/client_golang/pull/1506)- build(deps): bump golang.org/x/sys from 0.18.0 to 0.19.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1507](https://togithub.com/prometheus/client_golang/pull/1507)- build(deps): bump github.com/prometheus/client_model from 0.6.0 to0.6.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1508](https://togithub.com/prometheus/client_golang/pull/1508)- build(deps): bump github.com/prometheus/common from 0.48.0 to 0.53.0in /tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1509](https://togithub.com/prometheus/client_golang/pull/1509)- improved code more clean by[@&#8203;lilijreey](https://togithub.com/lilijreey) in[https://github.com/prometheus/client_golang/pull/1511](https://togithub.com/prometheus/client_golang/pull/1511)- build(deps): bump the github-actions group with 3 updates by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1510](https://togithub.com/prometheus/client_golang/pull/1510)- \[CI]: Add Concurrency Grouping to GitHub Workflows by[@&#8203;Ishani217](https://togithub.com/Ishani217) in[https://github.com/prometheus/client_golang/pull/1444](https://togithub.com/prometheus/client_golang/pull/1444)- Add CollectAndFormat to testutil, allowing caller to assert as theywant to on the exported metric by[@&#8203;jcass8695](https://togithub.com/jcass8695) in[https://github.com/prometheus/client_golang/pull/1503](https://togithub.com/prometheus/client_golang/pull/1503)- testutil compareMetricFamilies: make less error-prone by[@&#8203;leonnicolas](https://togithub.com/leonnicolas) in[https://github.com/prometheus/client_golang/pull/1424](https://togithub.com/prometheus/client_golang/pull/1424)- improved code more clean use time.IsZero() replace t = time.Time{} by[@&#8203;lilijreey](https://togithub.com/lilijreey) in[https://github.com/prometheus/client_golang/pull/1515](https://togithub.com/prometheus/client_golang/pull/1515)- add native histogram exemplar support by[@&#8203;fatsheep9146](https://togithub.com/fatsheep9146) in[https://github.com/prometheus/client_golang/pull/1471](https://togithub.com/prometheus/client_golang/pull/1471)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1514](https://togithub.com/prometheus/client_golang/pull/1514)- build(deps): bump golang.org/x/sys from 0.19.0 to 0.20.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1523](https://togithub.com/prometheus/client_golang/pull/1523)- build(deps): bump google.golang.org/protobuf from 1.34.0 to 1.34.1 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1522](https://togithub.com/prometheus/client_golang/pull/1522)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1524](https://togithub.com/prometheus/client_golang/pull/1524)- Add PR template for changelog automation by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1517](https://togithub.com/prometheus/client_golang/pull/1517)- Auto label PRs by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1518](https://togithub.com/prometheus/client_golang/pull/1518)- Fix: Auto label PRs[#&#8203;1518](https://togithub.com/prometheus/client_golang/issues/1518)by [@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1525](https://togithub.com/prometheus/client_golang/pull/1525)- build(deps): bump github.com/prometheus/procfs from 0.13.0 to 0.15.1by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1527](https://togithub.com/prometheus/client_golang/pull/1527)- ci: Group all changelog-related CI jobs into single one by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1526](https://togithub.com/prometheus/client_golang/pull/1526)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1530](https://togithub.com/prometheus/client_golang/pull/1530)- Remove synchronize trigger from changelog workflow by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1532](https://togithub.com/prometheus/client_golang/pull/1532)- feat: Support zstd compression by[@&#8203;mrueg](https://togithub.com/mrueg) in[https://github.com/prometheus/client_golang/pull/1496](https://togithub.com/prometheus/client_golang/pull/1496)- Fix golangci-lint config by[@&#8203;SuperQ](https://togithub.com/SuperQ) in[https://github.com/prometheus/client_golang/pull/1536](https://togithub.com/prometheus/client_golang/pull/1536)- build(deps): bump github.com/prometheus/client_golang from 1.19.0 to1.19.1 in /tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1529](https://togithub.com/prometheus/client_golang/pull/1529)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1531](https://togithub.com/prometheus/client_golang/pull/1531)- Cleanup NOTICE file by [@&#8203;SuperQ](https://togithub.com/SuperQ)in[https://github.com/prometheus/client_golang/pull/1541](https://togithub.com/prometheus/client_golang/pull/1541)- Remove inlined upstream code by[@&#8203;SuperQ](https://togithub.com/SuperQ) in[https://github.com/prometheus/client_golang/pull/1539](https://togithub.com/prometheus/client_golang/pull/1539)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1545](https://togithub.com/prometheus/client_golang/pull/1545)- client: Add Option to provide limit query param for APIs that supportit by [@&#8203;abbyssoul](https://togithub.com/abbyssoul) in[https://github.com/prometheus/client_golang/pull/1544](https://togithub.com/prometheus/client_golang/pull/1544)- Allow creating constant histogram and summary metrics with a createdtimestamp by [@&#8203;swar8080](https://togithub.com/swar8080) in[https://github.com/prometheus/client_golang/pull/1537](https://togithub.com/prometheus/client_golang/pull/1537)- Update README.md by [@&#8203;bwplotka](https://togithub.com/bwplotka)in[https://github.com/prometheus/client_golang/pull/1556](https://togithub.com/prometheus/client_golang/pull/1556)- Temporarily remove required CI job for changelog. by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1560](https://togithub.com/prometheus/client_golang/pull/1560)- build(deps): bump github.com/prometheus/common from 0.53.0 to 0.55.0in /tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1549](https://togithub.com/prometheus/client_golang/pull/1549)- build(deps): bump golang.org/x/sys from 0.20.0 to 0.21.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1552](https://togithub.com/prometheus/client_golang/pull/1552)- build(deps): bump github.com/klauspost/compress from 1.17.8 to 1.17.9by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1553](https://togithub.com/prometheus/client_golang/pull/1553)- fix: Update Go tests by [@&#8203;SuperQ](https://togithub.com/SuperQ)in[https://github.com/prometheus/client_golang/pull/1562](https://togithub.com/prometheus/client_golang/pull/1562)- process_collector: collect received/transmitted bytes by[@&#8203;huwcbjones](https://togithub.com/huwcbjones) in[https://github.com/prometheus/client_golang/pull/1555](https://togithub.com/prometheus/client_golang/pull/1555)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1561](https://togithub.com/prometheus/client_golang/pull/1561)- chore: Remove half-implemented changelog automation by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1564](https://togithub.com/prometheus/client_golang/pull/1564)- build(deps): bump the github-actions group across 1 directory with 3updates by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1565](https://togithub.com/prometheus/client_golang/pull/1565)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1563](https://togithub.com/prometheus/client_golang/pull/1563)- build(deps): bump google.golang.org/protobuf from 1.34.1 to 1.34.2 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1551](https://togithub.com/prometheus/client_golang/pull/1551)- deps: Updated to prometheus/common to 0.55 by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1566](https://togithub.com/prometheus/client_golang/pull/1566)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1567](https://togithub.com/prometheus/client_golang/pull/1567)- tutorials: Renamed tutorial -> tutorials for consistency + fixedtutorial code. by [@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1569](https://togithub.com/prometheus/client_golang/pull/1569)- go collector: add default metrics acceptance tests; adding morecontext to HELP by [@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1568](https://togithub.com/prometheus/client_golang/pull/1568)- build(deps): bump golang.org/x/sys from 0.21.0 to 0.22.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1570](https://togithub.com/prometheus/client_golang/pull/1570)- build(deps): bump the github-actions group with 3 updates by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1571](https://togithub.com/prometheus/client_golang/pull/1571)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1572](https://togithub.com/prometheus/client_golang/pull/1572)- ci: daggerize test and lint pipelines by[@&#8203;marcosnils](https://togithub.com/marcosnils) in[https://github.com/prometheus/client_golang/pull/1534](https://togithub.com/prometheus/client_golang/pull/1534)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1573](https://togithub.com/prometheus/client_golang/pull/1573)- Add default Go runtime metrics for /gc/gogc:percent,/gc/gomemlimit:bytes, /sched/gomaxprocs:threads by[@&#8203;vesari](https://togithub.com/vesari) in[https://github.com/prometheus/client_golang/pull/1559](https://togithub.com/prometheus/client_golang/pull/1559)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1576](https://togithub.com/prometheus/client_golang/pull/1576)- Remove go_memstat_lookups_total; added runtime/metrics calculation tomemstat metric's help. by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1577](https://togithub.com/prometheus/client_golang/pull/1577)- gocollector: Attach original runtime/metrics metric name to help. by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1578](https://togithub.com/prometheus/client_golang/pull/1578)</details>#### New Contributors* @&#8203;foehammer127 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1455](https://togithub.com/prometheus/client_golang/pull/1455)l/1455* @&#8203;SachinSahu431 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1476](https://togithub.com/prometheus/client_golang/pull/1476)l/1476* @&#8203;igor-drozdov made their firstcontributi[https://github.com/prometheus/client_golang/pull/1480](https://togithub.com/prometheus/client_golang/pull/1480)l/1480* @&#8203;majolo made their firstcontributi[https://github.com/prometheus/client_golang/pull/1492](https://togithub.com/prometheus/client_golang/pull/1492)l/1492* @&#8203;oftenoccur made their firstcontributi[https://github.com/prometheus/client_golang/pull/1497](https://togithub.com/prometheus/client_golang/pull/1497)l/1497* @&#8203;dongjiang1989 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1499](https://togithub.com/prometheus/client_golang/pull/1499)l/1499* @&#8203;lilijreey made their firstcontributi[https://github.com/prometheus/client_golang/pull/1511](https://togithub.com/prometheus/client_golang/pull/1511)l/1511* @&#8203;Ishani217 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1444](https://togithub.com/prometheus/client_golang/pull/1444)l/1444* @&#8203;jcass8695 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1503](https://togithub.com/prometheus/client_golang/pull/1503)l/1503* @&#8203;leonnicolas made their firstcontributi[https://github.com/prometheus/client_golang/pull/1424](https://togithub.com/prometheus/client_golang/pull/1424)l/1424* @&#8203;fatsheep9146 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1471](https://togithub.com/prometheus/client_golang/pull/1471)l/1471* @&#8203;abbyssoul made their firstcontributi[https://github.com/prometheus/client_golang/pull/1544](https://togithub.com/prometheus/client_golang/pull/1544)l/1544* @&#8203;swar8080 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1537](https://togithub.com/prometheus/client_golang/pull/1537)l/1537* @&#8203;huwcbjones made their firstcontributi[https://github.com/prometheus/client_golang/pull/1555](https://togithub.com/prometheus/client_golang/pull/1555)l/1555* @&#8203;marcosnils made their firstcontributi[https://github.com/prometheus/client_golang/pull/1534](https://togithub.com/prometheus/client_golang/pull/1534)l/1534* @&#8203;vesari made their firstcontributi[https://github.com/prometheus/client_golang/pull/1559](https://togithub.com/prometheus/client_golang/pull/1559)l/1559**Full Changelog**:prometheus/client_golang@v1.19.1...v1.20.0</details>---### Configuration📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At anytime (no schedule defined).🚦 **Automerge**: Disabled by config. Please merge this manually once youare satisfied.♻ **Rebasing**: Whenever PR becomes conflicted, or you tick therebase/retry checkbox.🔕 **Ignore**: Close this PR and you won't be reminded about this updateagain.---- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, checkthis box---This PR was generated by [MendRenovate](https://www.mend.io/free-developer-tools/renovate/). View the[repository joblog](https://developer.mend.io/github/open-telemetry/opentelemetry-collector).<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguMjYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=-->---------Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>Co-authored-by: Yang Song <songy23@users.noreply.github.com>
mx-psi referenced this pull request in open-telemetry/opentelemetry-collector-contribAug 21, 2024
….1 (#34775)[![MendRenovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)This PR contains the following updates:| Package | Change | Age | Adoption | Passing | Confidence ||---|---|---|---|---|---||[github.com/prometheus/client_golang](https://togithub.com/prometheus/client_golang)| `v1.19.1` -> `v1.20.1` |[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_golang/v1.20.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fprometheus%2fclient_golang/v1.20.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fprometheus%2fclient_golang/v1.19.1/v1.20.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fprometheus%2fclient_golang/v1.19.1/v1.20.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)|---> [!WARNING]> Some dependencies could not be looked up. Check the DependencyDashboard for more information.---### Release Notes<details><summary>prometheus/client_golang(github.com/prometheus/client_golang)</summary>###[`v1.20.1`](https://togithub.com/prometheus/client_golang/releases/tag/v1.20.1)[CompareSource](https://togithub.com/prometheus/client_golang/compare/v1.20.0...v1.20.1)- \[BUGFIX] process-collector: Fixed unregistered descriptor error whenusing process collector with PedanticRegistry on Linux machines.[#&#8203;1587](https://togithub.com/prometheus/client_golang/issues/1587)###[`v1.20.0`](https://togithub.com/prometheus/client_golang/releases/tag/v1.20.0)[CompareSource](https://togithub.com/prometheus/client_golang/compare/v1.19.1...v1.20.0)Thanks everyone for contributions!:warning: In this release we remove one (broken anyway, given Go runtimechanges) metric and add three new (representing GOGC, GOMEMLIMIT andGOMAXPROCS flags) to the default `collectors.NewGoCollector()`collector. Given its popular usage, expect your binary to expose twoadditional metric.#### Changes- \[CHANGE] :warning: go-collector: Remove `go_memstat_lookups_total`metric which was always 0; Go runtime stopped sharing pointer lookupstatistics.[#&#8203;1577](https://togithub.com/prometheus/client_golang/issues/1577)- \[FEATURE]⚠️ go-collector: Add 3 default metrics:`go_gc_gogc_percent`, `go_gc_gomemlimit_bytes` and`go_sched_gomaxprocs_threads` as those are recommended by the Go team.[#&#8203;1559](https://togithub.com/prometheus/client_golang/issues/1559)- \[FEATURE] go-collector: Add more information to all metrics' HELPe.g. the exact `runtime/metrics` sourcing each metric (if relevant).[#&#8203;1568](https://togithub.com/prometheus/client_golang/issues/1568)[#&#8203;1578](https://togithub.com/prometheus/client_golang/issues/1578)- \[FEATURE] testutil: Add CollectAndFormat method.[#&#8203;1503](https://togithub.com/prometheus/client_golang/issues/1503)- \[FEATURE] histograms: Add support for exemplars in native histograms.[#&#8203;1471](https://togithub.com/prometheus/client_golang/issues/1471)- \[FEATURE] promhttp: Add experimental support for `zstd` on scrape,controlled by the request `Accept-Encoding` header.[#&#8203;1496](https://togithub.com/prometheus/client_golang/issues/1496)- \[FEATURE] api/v1: Add `WithLimit` parameter to all API methods thatsupports it.[#&#8203;1544](https://togithub.com/prometheus/client_golang/issues/1544)- \[FEATURE] prometheus: Add support for created timestamps in constanthistograms and constant summaries.[#&#8203;1537](https://togithub.com/prometheus/client_golang/issues/1537)- \[FEATURE] process-collectors: Add network usage metrics:`process_network_receive_bytes_total` and`process_network_transmit_bytes_total`.[#&#8203;1555](https://togithub.com/prometheus/client_golang/issues/1555)- \[FEATURE] promlint: Add duplicated metric lint rule.[#&#8203;1472](https://togithub.com/prometheus/client_golang/issues/1472)- \[BUGFIX] promlint: Relax metric type in name linter rule.[#&#8203;1455](https://togithub.com/prometheus/client_golang/issues/1455)-   \[BUGFIX] promhttp: Make sure serverinstrumentation wrapping supports new and future extra responseWritermethods.[#&#8203;1480](https://togithub.com/prometheus/client_golang/issues/1480)- \[BUGFIX] testutil: Functions using compareMetricFamilies are nowfailing if filtered metricNames are not in the input.[#&#8203;1424](https://togithub.com/prometheus/client_golang/issues/1424)<details>  <summary>All commits</summary>- feat(prometheus/testutil/promlint/validations): refine lintMetricType…by [@&#8203;foehammer127](https://togithub.com/foehammer127) in[https://github.com/prometheus/client_golang/pull/1455](https://togithub.com/prometheus/client_golang/pull/1455)- Bump github.com/prometheus/client_golang from 1.18.0 to 1.19.0 in/examples/middleware by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1457](https://togithub.com/prometheus/client_golang/pull/1457)- Bump github.com/prometheus/client_model from 0.5.0 to 0.6.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1458](https://togithub.com/prometheus/client_golang/pull/1458)- Bump golang.org/x/sys from 0.16.0 to 0.17.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1459](https://togithub.com/prometheus/client_golang/pull/1459)- Bump github.com/prometheus/client_golang from 1.18.0 to 1.19.0 in/tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1461](https://togithub.com/prometheus/client_golang/pull/1461)- Merge Release 1.19 back to main by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1462](https://togithub.com/prometheus/client_golang/pull/1462)- Bump the github-actions group with 2 updates by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1456](https://togithub.com/prometheus/client_golang/pull/1456)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1466](https://togithub.com/prometheus/client_golang/pull/1466)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in/examples/middleware by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1467](https://togithub.com/prometheus/client_golang/pull/1467)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in/tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1469](https://togithub.com/prometheus/client_golang/pull/1469)- Add LintDuplicateMetric to promlint by[@&#8203;bboreham](https://togithub.com/bboreham) in[https://github.com/prometheus/client_golang/pull/1472](https://togithub.com/prometheus/client_golang/pull/1472)- Auto-update Go Collector Metrics for new Go versions by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1476](https://togithub.com/prometheus/client_golang/pull/1476)- Implement Unwrap() for responseWriterDelegator by[@&#8203;igor-drozdov](https://togithub.com/igor-drozdov) in[https://github.com/prometheus/client_golang/pull/1480](https://togithub.com/prometheus/client_golang/pull/1480)- Bump golang.org/x/sys from 0.17.0 to 0.18.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1485](https://togithub.com/prometheus/client_golang/pull/1485)- Bump github.com/prometheus/procfs from 0.12.0 to 0.13.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1486](https://togithub.com/prometheus/client_golang/pull/1486)- ci: Remove hardcoded supported Go versions from go.yml by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1489](https://togithub.com/prometheus/client_golang/pull/1489)- feat: metrics generation workflow by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1481](https://togithub.com/prometheus/client_golang/pull/1481)- fix: remove redundant go module in middleware example by[@&#8203;majolo](https://togithub.com/majolo) in[https://github.com/prometheus/client_golang/pull/1492](https://togithub.com/prometheus/client_golang/pull/1492)- chore: Refactor how base metrics are added to Sched metrics by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1483](https://togithub.com/prometheus/client_golang/pull/1483)- gocollector: Add regex option to allow collection of debug runtimemetrics by [@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1389](https://togithub.com/prometheus/client_golang/pull/1389)- Bump github.com/prometheus/common from 0.48.0 to 0.52.3 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1498](https://togithub.com/prometheus/client_golang/pull/1498)- chore: fix function name in comment by[@&#8203;oftenoccur](https://togithub.com/oftenoccur) in[https://github.com/prometheus/client_golang/pull/1497](https://togithub.com/prometheus/client_golang/pull/1497)- build(deps): bump golang.org/x/net from 0.20.0 to 0.23.0 in/tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1501](https://togithub.com/prometheus/client_golang/pull/1501)- build(deps): bump golang.org/x/net from 0.22.0 to 0.23.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1502](https://togithub.com/prometheus/client_golang/pull/1502)- feat(dependency): replace go-spew package by[@&#8203;dongjiang1989](https://togithub.com/dongjiang1989) in[https://github.com/prometheus/client_golang/pull/1499](https://togithub.com/prometheus/client_golang/pull/1499)- build(deps): bump github.com/prometheus/common from 0.52.3 to 0.53.0by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1504](https://togithub.com/prometheus/client_golang/pull/1504)- build(deps): bump github.com/cespare/xxhash/v2 from 2.2.0 to 2.3.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1505](https://togithub.com/prometheus/client_golang/pull/1505)- build(deps): bump google.golang.org/protobuf from 1.33.0 to 1.34.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1506](https://togithub.com/prometheus/client_golang/pull/1506)- build(deps): bump golang.org/x/sys from 0.18.0 to 0.19.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1507](https://togithub.com/prometheus/client_golang/pull/1507)- build(deps): bump github.com/prometheus/client_model from 0.6.0 to0.6.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1508](https://togithub.com/prometheus/client_golang/pull/1508)- build(deps): bump github.com/prometheus/common from 0.48.0 to 0.53.0in /tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1509](https://togithub.com/prometheus/client_golang/pull/1509)- improved code more clean by[@&#8203;lilijreey](https://togithub.com/lilijreey) in[https://github.com/prometheus/client_golang/pull/1511](https://togithub.com/prometheus/client_golang/pull/1511)- build(deps): bump the github-actions group with 3 updates by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1510](https://togithub.com/prometheus/client_golang/pull/1510)- \[CI]: Add Concurrency Grouping to GitHub Workflows by[@&#8203;Ishani217](https://togithub.com/Ishani217) in[https://github.com/prometheus/client_golang/pull/1444](https://togithub.com/prometheus/client_golang/pull/1444)- Add CollectAndFormat to testutil, allowing caller to assert as theywant to on the exported metric by[@&#8203;jcass8695](https://togithub.com/jcass8695) in[https://github.com/prometheus/client_golang/pull/1503](https://togithub.com/prometheus/client_golang/pull/1503)- testutil compareMetricFamilies: make less error-prone by[@&#8203;leonnicolas](https://togithub.com/leonnicolas) in[https://github.com/prometheus/client_golang/pull/1424](https://togithub.com/prometheus/client_golang/pull/1424)- improved code more clean use time.IsZero() replace t = time.Time{} by[@&#8203;lilijreey](https://togithub.com/lilijreey) in[https://github.com/prometheus/client_golang/pull/1515](https://togithub.com/prometheus/client_golang/pull/1515)- add native histogram exemplar support by[@&#8203;fatsheep9146](https://togithub.com/fatsheep9146) in[https://github.com/prometheus/client_golang/pull/1471](https://togithub.com/prometheus/client_golang/pull/1471)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1514](https://togithub.com/prometheus/client_golang/pull/1514)- build(deps): bump golang.org/x/sys from 0.19.0 to 0.20.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1523](https://togithub.com/prometheus/client_golang/pull/1523)- build(deps): bump google.golang.org/protobuf from 1.34.0 to 1.34.1 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1522](https://togithub.com/prometheus/client_golang/pull/1522)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1524](https://togithub.com/prometheus/client_golang/pull/1524)- Add PR template for changelog automation by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1517](https://togithub.com/prometheus/client_golang/pull/1517)- Auto label PRs by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1518](https://togithub.com/prometheus/client_golang/pull/1518)- Fix: Auto label PRs[#&#8203;1518](https://togithub.com/prometheus/client_golang/issues/1518)by [@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1525](https://togithub.com/prometheus/client_golang/pull/1525)- build(deps): bump github.com/prometheus/procfs from 0.13.0 to 0.15.1by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1527](https://togithub.com/prometheus/client_golang/pull/1527)- ci: Group all changelog-related CI jobs into single one by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1526](https://togithub.com/prometheus/client_golang/pull/1526)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1530](https://togithub.com/prometheus/client_golang/pull/1530)- Remove synchronize trigger from changelog workflow by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1532](https://togithub.com/prometheus/client_golang/pull/1532)- feat: Support zstd compression by[@&#8203;mrueg](https://togithub.com/mrueg) in[https://github.com/prometheus/client_golang/pull/1496](https://togithub.com/prometheus/client_golang/pull/1496)- Fix golangci-lint config by[@&#8203;SuperQ](https://togithub.com/SuperQ) in[https://github.com/prometheus/client_golang/pull/1536](https://togithub.com/prometheus/client_golang/pull/1536)- build(deps): bump github.com/prometheus/client_golang from 1.19.0 to1.19.1 in /tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1529](https://togithub.com/prometheus/client_golang/pull/1529)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1531](https://togithub.com/prometheus/client_golang/pull/1531)- Cleanup NOTICE file by [@&#8203;SuperQ](https://togithub.com/SuperQ)in[https://github.com/prometheus/client_golang/pull/1541](https://togithub.com/prometheus/client_golang/pull/1541)- Remove inlined upstream code by[@&#8203;SuperQ](https://togithub.com/SuperQ) in[https://github.com/prometheus/client_golang/pull/1539](https://togithub.com/prometheus/client_golang/pull/1539)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1545](https://togithub.com/prometheus/client_golang/pull/1545)- client: Add Option to provide limit query param for APIs that supportit by [@&#8203;abbyssoul](https://togithub.com/abbyssoul) in[https://github.com/prometheus/client_golang/pull/1544](https://togithub.com/prometheus/client_golang/pull/1544)- Allow creating constant histogram and summary metrics with a createdtimestamp by [@&#8203;swar8080](https://togithub.com/swar8080) in[https://github.com/prometheus/client_golang/pull/1537](https://togithub.com/prometheus/client_golang/pull/1537)- Update README.md by [@&#8203;bwplotka](https://togithub.com/bwplotka)in[https://github.com/prometheus/client_golang/pull/1556](https://togithub.com/prometheus/client_golang/pull/1556)- Temporarily remove required CI job for changelog. by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1560](https://togithub.com/prometheus/client_golang/pull/1560)- build(deps): bump github.com/prometheus/common from 0.53.0 to 0.55.0in /tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1549](https://togithub.com/prometheus/client_golang/pull/1549)- build(deps): bump golang.org/x/sys from 0.20.0 to 0.21.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1552](https://togithub.com/prometheus/client_golang/pull/1552)- build(deps): bump github.com/klauspost/compress from 1.17.8 to 1.17.9by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1553](https://togithub.com/prometheus/client_golang/pull/1553)- fix: Update Go tests by [@&#8203;SuperQ](https://togithub.com/SuperQ)in[https://github.com/prometheus/client_golang/pull/1562](https://togithub.com/prometheus/client_golang/pull/1562)- process_collector: collect received/transmitted bytes by[@&#8203;huwcbjones](https://togithub.com/huwcbjones) in[https://github.com/prometheus/client_golang/pull/1555](https://togithub.com/prometheus/client_golang/pull/1555)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1561](https://togithub.com/prometheus/client_golang/pull/1561)- chore: Remove half-implemented changelog automation by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1564](https://togithub.com/prometheus/client_golang/pull/1564)- build(deps): bump the github-actions group across 1 directory with 3updates by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1565](https://togithub.com/prometheus/client_golang/pull/1565)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1563](https://togithub.com/prometheus/client_golang/pull/1563)- build(deps): bump google.golang.org/protobuf from 1.34.1 to 1.34.2 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1551](https://togithub.com/prometheus/client_golang/pull/1551)- deps: Updated to prometheus/common to 0.55 by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1566](https://togithub.com/prometheus/client_golang/pull/1566)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1567](https://togithub.com/prometheus/client_golang/pull/1567)- tutorials: Renamed tutorial -> tutorials for consistency + fixedtutorial code. by [@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1569](https://togithub.com/prometheus/client_golang/pull/1569)- go collector: add default metrics acceptance tests; adding morecontext to HELP by [@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1568](https://togithub.com/prometheus/client_golang/pull/1568)- build(deps): bump golang.org/x/sys from 0.21.0 to 0.22.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1570](https://togithub.com/prometheus/client_golang/pull/1570)- build(deps): bump the github-actions group with 3 updates by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1571](https://togithub.com/prometheus/client_golang/pull/1571)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1572](https://togithub.com/prometheus/client_golang/pull/1572)- ci: daggerize test and lint pipelines by[@&#8203;marcosnils](https://togithub.com/marcosnils) in[https://github.com/prometheus/client_golang/pull/1534](https://togithub.com/prometheus/client_golang/pull/1534)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1573](https://togithub.com/prometheus/client_golang/pull/1573)- Add default Go runtime metrics for /gc/gogc:percent,/gc/gomemlimit:bytes, /sched/gomaxprocs:threads by[@&#8203;vesari](https://togithub.com/vesari) in[https://github.com/prometheus/client_golang/pull/1559](https://togithub.com/prometheus/client_golang/pull/1559)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1576](https://togithub.com/prometheus/client_golang/pull/1576)- Remove go_memstat_lookups_total; added runtime/metrics calculation tomemstat metric's help. by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1577](https://togithub.com/prometheus/client_golang/pull/1577)- gocollector: Attach original runtime/metrics metric name to help. by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1578](https://togithub.com/prometheus/client_golang/pull/1578)</details>#### New Contributors* @&#8203;foehammer127 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1455](https://togithub.com/prometheus/client_golang/pull/1455)l/1455* @&#8203;SachinSahu431 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1476](https://togithub.com/prometheus/client_golang/pull/1476)l/1476* @&#8203;igor-drozdov made their firstcontributi[https://github.com/prometheus/client_golang/pull/1480](https://togithub.com/prometheus/client_golang/pull/1480)l/1480* @&#8203;majolo made their firstcontributi[https://github.com/prometheus/client_golang/pull/1492](https://togithub.com/prometheus/client_golang/pull/1492)l/1492* @&#8203;oftenoccur made their firstcontributi[https://github.com/prometheus/client_golang/pull/1497](https://togithub.com/prometheus/client_golang/pull/1497)l/1497* @&#8203;dongjiang1989 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1499](https://togithub.com/prometheus/client_golang/pull/1499)l/1499* @&#8203;lilijreey made their firstcontributi[https://github.com/prometheus/client_golang/pull/1511](https://togithub.com/prometheus/client_golang/pull/1511)l/1511* @&#8203;Ishani217 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1444](https://togithub.com/prometheus/client_golang/pull/1444)l/1444* @&#8203;jcass8695 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1503](https://togithub.com/prometheus/client_golang/pull/1503)l/1503* @&#8203;leonnicolas made their firstcontributi[https://github.com/prometheus/client_golang/pull/1424](https://togithub.com/prometheus/client_golang/pull/1424)l/1424* @&#8203;fatsheep9146 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1471](https://togithub.com/prometheus/client_golang/pull/1471)l/1471* @&#8203;abbyssoul made their firstcontributi[https://github.com/prometheus/client_golang/pull/1544](https://togithub.com/prometheus/client_golang/pull/1544)l/1544* @&#8203;swar8080 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1537](https://togithub.com/prometheus/client_golang/pull/1537)l/1537* @&#8203;huwcbjones made their firstcontributi[https://github.com/prometheus/client_golang/pull/1555](https://togithub.com/prometheus/client_golang/pull/1555)l/1555* @&#8203;marcosnils made their firstcontributi[https://github.com/prometheus/client_golang/pull/1534](https://togithub.com/prometheus/client_golang/pull/1534)l/1534* @&#8203;vesari made their firstcontributi[https://github.com/prometheus/client_golang/pull/1559](https://togithub.com/prometheus/client_golang/pull/1559)l/1559**Full Changelog**:prometheus/client_golang@v1.19.1...v1.20.0</details>---### Configuration📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At anytime (no schedule defined).🚦 **Automerge**: Disabled by config. Please merge this manually once youare satisfied.♻ **Rebasing**: Whenever PR becomes conflicted, or you tick therebase/retry checkbox.🔕 **Ignore**: Close this PR and you won't be reminded about this updateagain.---- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, checkthis box---This PR was generated by [MendRenovate](https://www.mend.io/free-developer-tools/renovate/). View the[repository joblog](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguMjYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=-->---------Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>Co-authored-by: Yang Song <songy23@users.noreply.github.com>
JaredTan95 referenced this pull request in JaredTan95/jaegerAug 28, 2024
…racing#5849)[![MendRenovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)This PR contains the following updates:| Package | Change | Age | Adoption | Passing | Confidence ||---|---|---|---|---|---||[github.com/prometheus/client_golang](https://togithub.com/prometheus/client_golang)| `v1.19.1` -> `v1.20.0` |[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_golang/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fprometheus%2fclient_golang/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fprometheus%2fclient_golang/v1.19.1/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fprometheus%2fclient_golang/v1.19.1/v1.20.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)|---### Release Notes<details><summary>prometheus/client_golang(github.com/prometheus/client_golang)</summary>###[`v1.20.0`](https://togithub.com/prometheus/client_golang/releases/tag/v1.20.0)[CompareSource](https://togithub.com/prometheus/client_golang/compare/v1.19.1...v1.20.0)Thanks everyone for contributions!:warning: In this release we remove one (broken anyway, given Go runtimechanges) metric and add three new (representing GOGC, GOMEMLIMIT andGOMAXPROCS flags) to the default `collectors.NewGoCollector()`collector. Given its popular usage, expect your binary to expose twoadditional metric.#### Changes- \[CHANGE] :warning: go-collector: Remove `go_memstat_lookups_total`metric which was always 0; Go runtime stopped sharing pointer lookupstatistics.[#&#8203;1577](https://togithub.com/prometheus/client_golang/issues/1577)- \[FEATURE]⚠️ go-collector: Add 3 default metrics:`go_gc_gogc_percent`, `go_gc_gomemlimit_bytes` and`go_sched_gomaxprocs_threads` as those are recommended by the Go team.[#&#8203;1559](https://togithub.com/prometheus/client_golang/issues/1559)- \[FEATURE] go-collector: Add more information to all metrics' HELPe.g. the exact `runtime/metrics` sourcing each metric (if relevant).[#&#8203;1568](https://togithub.com/prometheus/client_golang/issues/1568)[#&#8203;1578](https://togithub.com/prometheus/client_golang/issues/1578)- \[FEATURE] testutil: Add CollectAndFormat method.[#&#8203;1503](https://togithub.com/prometheus/client_golang/issues/1503)- \[FEATURE] histograms: Add support for exemplars in native histograms.[#&#8203;1471](https://togithub.com/prometheus/client_golang/issues/1471)- \[FEATURE] promhttp: Add experimental support for `zstd` on scrape,controlled by the request `Accept-Encoding` header.[#&#8203;1496](https://togithub.com/prometheus/client_golang/issues/1496)- \[FEATURE] api/v1: Add `WithLimit` parameter to all API methods thatsupports it.[#&#8203;1544](https://togithub.com/prometheus/client_golang/issues/1544)- \[FEATURE] prometheus: Add support for created timestamps in constanthistograms and constant summaries.[#&#8203;1537](https://togithub.com/prometheus/client_golang/issues/1537)- \[FEATURE] process-collectors: Add network usage metrics:`process_network_receive_bytes_total` and`process_network_transmit_bytes_total`.[#&#8203;1555](https://togithub.com/prometheus/client_golang/issues/1555)- \[FEATURE] promlint: Add duplicated metric lint rule.[#&#8203;1472](https://togithub.com/prometheus/client_golang/issues/1472)- \[BUGFIX] promlint: Relax metric type in name linter rule.[#&#8203;1455](https://togithub.com/prometheus/client_golang/issues/1455)-   \[BUGFIX] promhttp: Make sure serverinstrumentation wrapping supports new and future extra responseWritermethods.[#&#8203;1480](https://togithub.com/prometheus/client_golang/issues/1480)- \[BUGFIX] testutil: Functions using compareMetricFamilies are nowfailing if filtered metricNames are not in the input.[#&#8203;1424](https://togithub.com/prometheus/client_golang/issues/1424)<details>  <summary>All commits</summary>- feat(prometheus/testutil/promlint/validations): refine lintMetricType…by [@&#8203;foehammer127](https://togithub.com/foehammer127) in[https://github.com/prometheus/client_golang/pull/1455](https://togithub.com/prometheus/client_golang/pull/1455)- Bump github.com/prometheus/client_golang from 1.18.0 to 1.19.0 in/examples/middleware by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1457](https://togithub.com/prometheus/client_golang/pull/1457)- Bump github.com/prometheus/client_model from 0.5.0 to 0.6.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1458](https://togithub.com/prometheus/client_golang/pull/1458)- Bump golang.org/x/sys from 0.16.0 to 0.17.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1459](https://togithub.com/prometheus/client_golang/pull/1459)- Bump github.com/prometheus/client_golang from 1.18.0 to 1.19.0 in/tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1461](https://togithub.com/prometheus/client_golang/pull/1461)- Merge Release 1.19 back to main by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1462](https://togithub.com/prometheus/client_golang/pull/1462)- Bump the github-actions group with 2 updates by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1456](https://togithub.com/prometheus/client_golang/pull/1456)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1466](https://togithub.com/prometheus/client_golang/pull/1466)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in/examples/middleware by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1467](https://togithub.com/prometheus/client_golang/pull/1467)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in/tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1469](https://togithub.com/prometheus/client_golang/pull/1469)- Add LintDuplicateMetric to promlint by[@&#8203;bboreham](https://togithub.com/bboreham) in[https://github.com/prometheus/client_golang/pull/1472](https://togithub.com/prometheus/client_golang/pull/1472)- Auto-update Go Collector Metrics for new Go versions by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1476](https://togithub.com/prometheus/client_golang/pull/1476)- Implement Unwrap() for responseWriterDelegator by[@&#8203;igor-drozdov](https://togithub.com/igor-drozdov) in[https://github.com/prometheus/client_golang/pull/1480](https://togithub.com/prometheus/client_golang/pull/1480)- Bump golang.org/x/sys from 0.17.0 to 0.18.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1485](https://togithub.com/prometheus/client_golang/pull/1485)- Bump github.com/prometheus/procfs from 0.12.0 to 0.13.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1486](https://togithub.com/prometheus/client_golang/pull/1486)- ci: Remove hardcoded supported Go versions from go.yml by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1489](https://togithub.com/prometheus/client_golang/pull/1489)- feat: metrics generation workflow by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1481](https://togithub.com/prometheus/client_golang/pull/1481)- fix: remove redundant go module in middleware example by[@&#8203;majolo](https://togithub.com/majolo) in[https://github.com/prometheus/client_golang/pull/1492](https://togithub.com/prometheus/client_golang/pull/1492)- chore: Refactor how base metrics are added to Sched metrics by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1483](https://togithub.com/prometheus/client_golang/pull/1483)- gocollector: Add regex option to allow collection of debug runtimemetrics by [@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1389](https://togithub.com/prometheus/client_golang/pull/1389)- Bump github.com/prometheus/common from 0.48.0 to 0.52.3 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1498](https://togithub.com/prometheus/client_golang/pull/1498)- chore: fix function name in comment by[@&#8203;oftenoccur](https://togithub.com/oftenoccur) in[https://github.com/prometheus/client_golang/pull/1497](https://togithub.com/prometheus/client_golang/pull/1497)- build(deps): bump golang.org/x/net from 0.20.0 to 0.23.0 in/tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1501](https://togithub.com/prometheus/client_golang/pull/1501)- build(deps): bump golang.org/x/net from 0.22.0 to 0.23.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1502](https://togithub.com/prometheus/client_golang/pull/1502)- feat(dependency): replace go-spew package by[@&#8203;dongjiang1989](https://togithub.com/dongjiang1989) in[https://github.com/prometheus/client_golang/pull/1499](https://togithub.com/prometheus/client_golang/pull/1499)- build(deps): bump github.com/prometheus/common from 0.52.3 to 0.53.0by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1504](https://togithub.com/prometheus/client_golang/pull/1504)- build(deps): bump github.com/cespare/xxhash/v2 from 2.2.0 to 2.3.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1505](https://togithub.com/prometheus/client_golang/pull/1505)- build(deps): bump google.golang.org/protobuf from 1.33.0 to 1.34.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1506](https://togithub.com/prometheus/client_golang/pull/1506)- build(deps): bump golang.org/x/sys from 0.18.0 to 0.19.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1507](https://togithub.com/prometheus/client_golang/pull/1507)- build(deps): bump github.com/prometheus/client_model from 0.6.0 to0.6.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1508](https://togithub.com/prometheus/client_golang/pull/1508)- build(deps): bump github.com/prometheus/common from 0.48.0 to 0.53.0in /tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1509](https://togithub.com/prometheus/client_golang/pull/1509)- improved code more clean by[@&#8203;lilijreey](https://togithub.com/lilijreey) in[https://github.com/prometheus/client_golang/pull/1511](https://togithub.com/prometheus/client_golang/pull/1511)- build(deps): bump the github-actions group with 3 updates by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1510](https://togithub.com/prometheus/client_golang/pull/1510)- \[CI]: Add Concurrency Grouping to GitHub Workflows by[@&#8203;Ishani217](https://togithub.com/Ishani217) in[https://github.com/prometheus/client_golang/pull/1444](https://togithub.com/prometheus/client_golang/pull/1444)- Add CollectAndFormat to testutil, allowing caller to assert as theywant to on the exported metric by[@&#8203;jcass8695](https://togithub.com/jcass8695) in[https://github.com/prometheus/client_golang/pull/1503](https://togithub.com/prometheus/client_golang/pull/1503)- testutil compareMetricFamilies: make less error-prone by[@&#8203;leonnicolas](https://togithub.com/leonnicolas) in[https://github.com/prometheus/client_golang/pull/1424](https://togithub.com/prometheus/client_golang/pull/1424)- improved code more clean use time.IsZero() replace t = time.Time{} by[@&#8203;lilijreey](https://togithub.com/lilijreey) in[https://github.com/prometheus/client_golang/pull/1515](https://togithub.com/prometheus/client_golang/pull/1515)- add native histogram exemplar support by[@&#8203;fatsheep9146](https://togithub.com/fatsheep9146) in[https://github.com/prometheus/client_golang/pull/1471](https://togithub.com/prometheus/client_golang/pull/1471)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1514](https://togithub.com/prometheus/client_golang/pull/1514)- build(deps): bump golang.org/x/sys from 0.19.0 to 0.20.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1523](https://togithub.com/prometheus/client_golang/pull/1523)- build(deps): bump google.golang.org/protobuf from 1.34.0 to 1.34.1 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1522](https://togithub.com/prometheus/client_golang/pull/1522)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1524](https://togithub.com/prometheus/client_golang/pull/1524)- Add PR template for changelog automation by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1517](https://togithub.com/prometheus/client_golang/pull/1517)- Auto label PRs by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1518](https://togithub.com/prometheus/client_golang/pull/1518)- Fix: Auto label PRs[#&#8203;1518](https://togithub.com/prometheus/client_golang/issues/1518)by [@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1525](https://togithub.com/prometheus/client_golang/pull/1525)- build(deps): bump github.com/prometheus/procfs from 0.13.0 to 0.15.1by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1527](https://togithub.com/prometheus/client_golang/pull/1527)- ci: Group all changelog-related CI jobs into single one by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1526](https://togithub.com/prometheus/client_golang/pull/1526)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1530](https://togithub.com/prometheus/client_golang/pull/1530)- Remove synchronize trigger from changelog workflow by[@&#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1532](https://togithub.com/prometheus/client_golang/pull/1532)- feat: Support zstd compression by[@&#8203;mrueg](https://togithub.com/mrueg) in[https://github.com/prometheus/client_golang/pull/1496](https://togithub.com/prometheus/client_golang/pull/1496)- Fix golangci-lint config by[@&#8203;SuperQ](https://togithub.com/SuperQ) in[https://github.com/prometheus/client_golang/pull/1536](https://togithub.com/prometheus/client_golang/pull/1536)- build(deps): bump github.com/prometheus/client_golang from 1.19.0 to1.19.1 in /tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1529](https://togithub.com/prometheus/client_golang/pull/1529)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1531](https://togithub.com/prometheus/client_golang/pull/1531)- Cleanup NOTICE file by [@&#8203;SuperQ](https://togithub.com/SuperQ)in[https://github.com/prometheus/client_golang/pull/1541](https://togithub.com/prometheus/client_golang/pull/1541)- Remove inlined upstream code by[@&#8203;SuperQ](https://togithub.com/SuperQ) in[https://github.com/prometheus/client_golang/pull/1539](https://togithub.com/prometheus/client_golang/pull/1539)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1545](https://togithub.com/prometheus/client_golang/pull/1545)- client: Add Option to provide limit query param for APIs that supportit by [@&#8203;abbyssoul](https://togithub.com/abbyssoul) in[https://github.com/prometheus/client_golang/pull/1544](https://togithub.com/prometheus/client_golang/pull/1544)- Allow creating constant histogram and summary metrics with a createdtimestamp by [@&#8203;swar8080](https://togithub.com/swar8080) in[https://github.com/prometheus/client_golang/pull/1537](https://togithub.com/prometheus/client_golang/pull/1537)- Update README.md by [@&#8203;bwplotka](https://togithub.com/bwplotka)in[https://github.com/prometheus/client_golang/pull/1556](https://togithub.com/prometheus/client_golang/pull/1556)- Temporarily remove required CI job for changelog. by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1560](https://togithub.com/prometheus/client_golang/pull/1560)- build(deps): bump github.com/prometheus/common from 0.53.0 to 0.55.0in /tutorial/whatsup by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1549](https://togithub.com/prometheus/client_golang/pull/1549)- build(deps): bump golang.org/x/sys from 0.20.0 to 0.21.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1552](https://togithub.com/prometheus/client_golang/pull/1552)- build(deps): bump github.com/klauspost/compress from 1.17.8 to 1.17.9by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1553](https://togithub.com/prometheus/client_golang/pull/1553)- fix: Update Go tests by [@&#8203;SuperQ](https://togithub.com/SuperQ)in[https://github.com/prometheus/client_golang/pull/1562](https://togithub.com/prometheus/client_golang/pull/1562)- process_collector: collect received/transmitted bytes by[@&#8203;huwcbjones](https://togithub.com/huwcbjones) in[https://github.com/prometheus/client_golang/pull/1555](https://togithub.com/prometheus/client_golang/pull/1555)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1561](https://togithub.com/prometheus/client_golang/pull/1561)- chore: Remove half-implemented changelog automation by[@&#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1564](https://togithub.com/prometheus/client_golang/pull/1564)- build(deps): bump the github-actions group across 1 directory with 3updates by [@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1565](https://togithub.com/prometheus/client_golang/pull/1565)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1563](https://togithub.com/prometheus/client_golang/pull/1563)- build(deps): bump google.golang.org/protobuf from 1.34.1 to 1.34.2 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1551](https://togithub.com/prometheus/client_golang/pull/1551)- deps: Updated to prometheus/common to 0.55 by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1566](https://togithub.com/prometheus/client_golang/pull/1566)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1567](https://togithub.com/prometheus/client_golang/pull/1567)- tutorials: Renamed tutorial -> tutorials for consistency + fixedtutorial code. by [@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1569](https://togithub.com/prometheus/client_golang/pull/1569)- go collector: add default metrics acceptance tests; adding morecontext to HELP by [@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1568](https://togithub.com/prometheus/client_golang/pull/1568)- build(deps): bump golang.org/x/sys from 0.21.0 to 0.22.0 by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1570](https://togithub.com/prometheus/client_golang/pull/1570)- build(deps): bump the github-actions group with 3 updates by[@&#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1571](https://togithub.com/prometheus/client_golang/pull/1571)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1572](https://togithub.com/prometheus/client_golang/pull/1572)- ci: daggerize test and lint pipelines by[@&#8203;marcosnils](https://togithub.com/marcosnils) in[https://github.com/prometheus/client_golang/pull/1534](https://togithub.com/prometheus/client_golang/pull/1534)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1573](https://togithub.com/prometheus/client_golang/pull/1573)- Add default Go runtime metrics for /gc/gogc:percent,/gc/gomemlimit:bytes, /sched/gomaxprocs:threads by[@&#8203;vesari](https://togithub.com/vesari) in[https://github.com/prometheus/client_golang/pull/1559](https://togithub.com/prometheus/client_golang/pull/1559)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1576](https://togithub.com/prometheus/client_golang/pull/1576)- Remove go_memstat_lookups_total; added runtime/metrics calculation tomemstat metric's help. by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1577](https://togithub.com/prometheus/client_golang/pull/1577)- gocollector: Attach original runtime/metrics metric name to help. by[@&#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1578](https://togithub.com/prometheus/client_golang/pull/1578)</details>#### New Contributors* @&#8203;foehammer127 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1455](https://togithub.com/prometheus/client_golang/pull/1455)l/1455* @&#8203;SachinSahu431 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1476](https://togithub.com/prometheus/client_golang/pull/1476)l/1476* @&#8203;igor-drozdov made their firstcontributi[https://github.com/prometheus/client_golang/pull/1480](https://togithub.com/prometheus/client_golang/pull/1480)l/1480* @&#8203;majolo made their firstcontributi[https://github.com/prometheus/client_golang/pull/1492](https://togithub.com/prometheus/client_golang/pull/1492)l/1492* @&#8203;oftenoccur made their firstcontributi[https://github.com/prometheus/client_golang/pull/1497](https://togithub.com/prometheus/client_golang/pull/1497)l/1497* @&#8203;dongjiang1989 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1499](https://togithub.com/prometheus/client_golang/pull/1499)l/1499* @&#8203;lilijreey made their firstcontributi[https://github.com/prometheus/client_golang/pull/1511](https://togithub.com/prometheus/client_golang/pull/1511)l/1511* @&#8203;Ishani217 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1444](https://togithub.com/prometheus/client_golang/pull/1444)l/1444* @&#8203;jcass8695 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1503](https://togithub.com/prometheus/client_golang/pull/1503)l/1503* @&#8203;leonnicolas made their firstcontributi[https://github.com/prometheus/client_golang/pull/1424](https://togithub.com/prometheus/client_golang/pull/1424)l/1424* @&#8203;fatsheep9146 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1471](https://togithub.com/prometheus/client_golang/pull/1471)l/1471* @&#8203;abbyssoul made their firstcontributi[https://github.com/prometheus/client_golang/pull/1544](https://togithub.com/prometheus/client_golang/pull/1544)l/1544* @&#8203;swar8080 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1537](https://togithub.com/prometheus/client_golang/pull/1537)l/1537* @&#8203;huwcbjones made their firstcontributi[https://github.com/prometheus/client_golang/pull/1555](https://togithub.com/prometheus/client_golang/pull/1555)l/1555* @&#8203;marcosnils made their firstcontributi[https://github.com/prometheus/client_golang/pull/1534](https://togithub.com/prometheus/client_golang/pull/1534)l/1534* @&#8203;vesari made their firstcontributi[https://github.com/prometheus/client_golang/pull/1559](https://togithub.com/prometheus/client_golang/pull/1559)l/1559**Full Changelog**:prometheus/client_golang@v1.19.1...v1.20.0</details>---### Configuration📅 **Schedule**: Branch creation - At any time (no schedule defined),Automerge - At any time (no schedule defined).🚦 **Automerge**: Disabled by config. Please merge this manually once youare satisfied.♻ **Rebasing**: Whenever PR becomes conflicted, or you tick therebase/retry checkbox.🔕 **Ignore**: Close this PR and you won't be reminded about this updateagain.---- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, checkthis box---This PR was generated by [MendRenovate](https://www.mend.io/free-developer-tools/renovate/). View the[repository joblog](https://developer.mend.io/github/jaegertracing/jaeger).<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguMjYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiY2hhbmdlbG9nOmRlcGVuZGVuY2llcyJdfQ==-->Signed-off-by: Mend Renovate <bot@renovateapp.com>Signed-off-by: Jared Tan <jian.tan@daocloud.io>
renovatebot referenced this pull request in open-feature/flagdSep 5, 2024
….3 (#1384)This PR contains the following updates:| Package | Change | Age | Adoption | Passing | Confidence ||---|---|---|---|---|---||[github.com/prometheus/client_golang](https://redirect.github.com/prometheus/client_golang)| `v1.19.1` -> `v1.20.3` |[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_golang/v1.20.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fprometheus%2fclient_golang/v1.20.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fprometheus%2fclient_golang/v1.19.1/v1.20.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fprometheus%2fclient_golang/v1.19.1/v1.20.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)|---### Release Notes<details><summary>prometheus/client_golang(github.com/prometheus/client_golang)</summary>###[`v1.20.3`](https://redirect.github.com/prometheus/client_golang/releases/tag/v1.20.3)[CompareSource](https://redirect.github.com/prometheus/client_golang/compare/v1.20.2...v1.20.3)- \[BUGFIX] histograms: Fix possible data race when appending exemplars.[#&#8203;1608](https://redirect.github.com/prometheus/client_golang/issues/1608)###[`v1.20.2`](https://redirect.github.com/prometheus/client_golang/releases/tag/v1.20.2)[CompareSource](https://redirect.github.com/prometheus/client_golang/compare/v1.20.1...v1.20.2)- \[BUGFIX] promhttp: Unset Content-Encoding header when data isuncompressed.[#&#8203;1596](https://redirect.github.com/prometheus/client_golang/issues/1596)###[`v1.20.1`](https://redirect.github.com/prometheus/client_golang/releases/tag/v1.20.1)[CompareSource](https://redirect.github.com/prometheus/client_golang/compare/v1.20.0...v1.20.1)- \[BUGFIX] process-collector: Fixed unregistered descriptor error whenusing process collector with PedanticRegistry on Linux machines.[#&#8203;1587](https://redirect.github.com/prometheus/client_golang/issues/1587)###[`v1.20.0`](https://redirect.github.com/prometheus/client_golang/releases/tag/v1.20.0)[CompareSource](https://redirect.github.com/prometheus/client_golang/compare/v1.19.1...v1.20.0)Thanks everyone for contributions!:warning: In this release we remove one (broken anyway, given Go runtimechanges) metric and add three new (representing GOGC, GOMEMLIMIT andGOMAXPROCS flags) to the default `collectors.NewGoCollector()`collector. Given its popular usage, expect your binary to expose twoadditional metric.#### Changes- \[CHANGE] :warning: go-collector: Remove `go_memstat_lookups_total`metric which was always 0; Go runtime stopped sharing pointer lookupstatistics.[#&#8203;1577](https://redirect.github.com/prometheus/client_golang/issues/1577)- \[FEATURE]⚠️ go-collector: Add 3 default metrics:`go_gc_gogc_percent`, `go_gc_gomemlimit_bytes` and`go_sched_gomaxprocs_threads` as those are recommended by the Go team.[#&#8203;1559](https://redirect.github.com/prometheus/client_golang/issues/1559)- \[FEATURE] go-collector: Add more information to all metrics' HELPe.g. the exact `runtime/metrics` sourcing each metric (if relevant).[#&#8203;1568](https://redirect.github.com/prometheus/client_golang/issues/1568)[#&#8203;1578](https://redirect.github.com/prometheus/client_golang/issues/1578)- \[FEATURE] testutil: Add CollectAndFormat method.[#&#8203;1503](https://redirect.github.com/prometheus/client_golang/issues/1503)- \[FEATURE] histograms: Add support for exemplars in native histograms.[#&#8203;1471](https://redirect.github.com/prometheus/client_golang/issues/1471)- \[FEATURE] promhttp: Add experimental support for `zstd` on scrape,controlled by the request `Accept-Encoding` header.[#&#8203;1496](https://redirect.github.com/prometheus/client_golang/issues/1496)- \[FEATURE] api/v1: Add `WithLimit` parameter to all API methods thatsupports it.[#&#8203;1544](https://redirect.github.com/prometheus/client_golang/issues/1544)- \[FEATURE] prometheus: Add support for created timestamps in constanthistograms and constant summaries.[#&#8203;1537](https://redirect.github.com/prometheus/client_golang/issues/1537)- \[FEATURE] process-collectors: Add network usage metrics:`process_network_receive_bytes_total` and`process_network_transmit_bytes_total`.[#&#8203;1555](https://redirect.github.com/prometheus/client_golang/issues/1555)- \[FEATURE] promlint: Add duplicated metric lint rule.[#&#8203;1472](https://redirect.github.com/prometheus/client_golang/issues/1472)- \[BUGFIX] promlint: Relax metric type in name linter rule.[#&#8203;1455](https://redirect.github.com/prometheus/client_golang/issues/1455)-   \[BUGFIX] promhttp: Make sure serverinstrumentation wrapping supports new and future extra responseWritermethods.[#&#8203;1480](https://redirect.github.com/prometheus/client_golang/issues/1480)- \[BUGFIX] testutil: Functions using compareMetricFamilies are nowfailing if filtered metricNames are not in the input.[#&#8203;1424](https://redirect.github.com/prometheus/client_golang/issues/1424)<details>  <summary>All commits</summary>- feat(prometheus/testutil/promlint/validations): refine lintMetricType…by [@&#8203;foehammer127](https://redirect.github.com/foehammer127) in[https://github.com/prometheus/client_golang/pull/1455](https://redirect.github.com/prometheus/client_golang/pull/1455)- Bump github.com/prometheus/client_golang from 1.18.0 to 1.19.0 in/examples/middleware by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1457](https://redirect.github.com/prometheus/client_golang/pull/1457)- Bump github.com/prometheus/client_model from 0.5.0 to 0.6.0 by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1458](https://redirect.github.com/prometheus/client_golang/pull/1458)- Bump golang.org/x/sys from 0.16.0 to 0.17.0 by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1459](https://redirect.github.com/prometheus/client_golang/pull/1459)- Bump github.com/prometheus/client_golang from 1.18.0 to 1.19.0 in/tutorial/whatsup by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1461](https://redirect.github.com/prometheus/client_golang/pull/1461)- Merge Release 1.19 back to main by[@&#8203;ArthurSens](https://redirect.github.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1462](https://redirect.github.com/prometheus/client_golang/pull/1462)- Bump the github-actions group with 2 updates by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1456](https://redirect.github.com/prometheus/client_golang/pull/1456)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1466](https://redirect.github.com/prometheus/client_golang/pull/1466)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in/examples/middleware by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1467](https://redirect.github.com/prometheus/client_golang/pull/1467)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in/tutorial/whatsup by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1469](https://redirect.github.com/prometheus/client_golang/pull/1469)- Add LintDuplicateMetric to promlint by[@&#8203;bboreham](https://redirect.github.com/bboreham) in[https://github.com/prometheus/client_golang/pull/1472](https://redirect.github.com/prometheus/client_golang/pull/1472)- Auto-update Go Collector Metrics for new Go versions by[@&#8203;SachinSahu431](https://redirect.github.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1476](https://redirect.github.com/prometheus/client_golang/pull/1476)- Implement Unwrap() for responseWriterDelegator by[@&#8203;igor-drozdov](https://redirect.github.com/igor-drozdov) in[https://github.com/prometheus/client_golang/pull/1480](https://redirect.github.com/prometheus/client_golang/pull/1480)- Bump golang.org/x/sys from 0.17.0 to 0.18.0 by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1485](https://redirect.github.com/prometheus/client_golang/pull/1485)- Bump github.com/prometheus/procfs from 0.12.0 to 0.13.0 by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1486](https://redirect.github.com/prometheus/client_golang/pull/1486)- ci: Remove hardcoded supported Go versions from go.yml by[@&#8203;SachinSahu431](https://redirect.github.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1489](https://redirect.github.com/prometheus/client_golang/pull/1489)- feat: metrics generation workflow by[@&#8203;SachinSahu431](https://redirect.github.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1481](https://redirect.github.com/prometheus/client_golang/pull/1481)- fix: remove redundant go module in middleware example by[@&#8203;majolo](https://redirect.github.com/majolo) in[https://github.com/prometheus/client_golang/pull/1492](https://redirect.github.com/prometheus/client_golang/pull/1492)- chore: Refactor how base metrics are added to Sched metrics by[@&#8203;ArthurSens](https://redirect.github.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1483](https://redirect.github.com/prometheus/client_golang/pull/1483)- gocollector: Add regex option to allow collection of debug runtimemetrics by [@&#8203;ArthurSens](https://redirect.github.com/ArthurSens)in[https://github.com/prometheus/client_golang/pull/1389](https://redirect.github.com/prometheus/client_golang/pull/1389)- Bump github.com/prometheus/common from 0.48.0 to 0.52.3 by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1498](https://redirect.github.com/prometheus/client_golang/pull/1498)- chore: fix function name in comment by[@&#8203;oftenoccur](https://redirect.github.com/oftenoccur) in[https://github.com/prometheus/client_golang/pull/1497](https://redirect.github.com/prometheus/client_golang/pull/1497)- build(deps): bump golang.org/x/net from 0.20.0 to 0.23.0 in/tutorial/whatsup by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1501](https://redirect.github.com/prometheus/client_golang/pull/1501)- build(deps): bump golang.org/x/net from 0.22.0 to 0.23.0 by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1502](https://redirect.github.com/prometheus/client_golang/pull/1502)- feat(dependency): replace go-spew package by[@&#8203;dongjiang1989](https://redirect.github.com/dongjiang1989) in[https://github.com/prometheus/client_golang/pull/1499](https://redirect.github.com/prometheus/client_golang/pull/1499)- build(deps): bump github.com/prometheus/common from 0.52.3 to 0.53.0by [@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1504](https://redirect.github.com/prometheus/client_golang/pull/1504)- build(deps): bump github.com/cespare/xxhash/v2 from 2.2.0 to 2.3.0 by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1505](https://redirect.github.com/prometheus/client_golang/pull/1505)- build(deps): bump google.golang.org/protobuf from 1.33.0 to 1.34.0 by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1506](https://redirect.github.com/prometheus/client_golang/pull/1506)- build(deps): bump golang.org/x/sys from 0.18.0 to 0.19.0 by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1507](https://redirect.github.com/prometheus/client_golang/pull/1507)- build(deps): bump github.com/prometheus/client_model from 0.6.0 to0.6.1 by [@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1508](https://redirect.github.com/prometheus/client_golang/pull/1508)- build(deps): bump github.com/prometheus/common from 0.48.0 to 0.53.0in /tutorial/whatsup by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1509](https://redirect.github.com/prometheus/client_golang/pull/1509)- improved code more clean by[@&#8203;lilijreey](https://redirect.github.com/lilijreey) in[https://github.com/prometheus/client_golang/pull/1511](https://redirect.github.com/prometheus/client_golang/pull/1511)- build(deps): bump the github-actions group with 3 updates by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1510](https://redirect.github.com/prometheus/client_golang/pull/1510)- \[CI]: Add Concurrency Grouping to GitHub Workflows by[@&#8203;Ishani217](https://redirect.github.com/Ishani217) in[https://github.com/prometheus/client_golang/pull/1444](https://redirect.github.com/prometheus/client_golang/pull/1444)- Add CollectAndFormat to testutil, allowing caller to assert as theywant to on the exported metric by[@&#8203;jcass8695](https://redirect.github.com/jcass8695) in[https://github.com/prometheus/client_golang/pull/1503](https://redirect.github.com/prometheus/client_golang/pull/1503)- testutil compareMetricFamilies: make less error-prone by[@&#8203;leonnicolas](https://redirect.github.com/leonnicolas) in[https://github.com/prometheus/client_golang/pull/1424](https://redirect.github.com/prometheus/client_golang/pull/1424)- improved code more clean use time.IsZero() replace t = time.Time{} by[@&#8203;lilijreey](https://redirect.github.com/lilijreey) in[https://github.com/prometheus/client_golang/pull/1515](https://redirect.github.com/prometheus/client_golang/pull/1515)- add native histogram exemplar support by[@&#8203;fatsheep9146](https://redirect.github.com/fatsheep9146) in[https://github.com/prometheus/client_golang/pull/1471](https://redirect.github.com/prometheus/client_golang/pull/1471)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://redirect.github.com/prombot) in[https://github.com/prometheus/client_golang/pull/1514](https://redirect.github.com/prometheus/client_golang/pull/1514)- build(deps): bump golang.org/x/sys from 0.19.0 to 0.20.0 by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1523](https://redirect.github.com/prometheus/client_golang/pull/1523)- build(deps): bump google.golang.org/protobuf from 1.34.0 to 1.34.1 by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1522](https://redirect.github.com/prometheus/client_golang/pull/1522)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://redirect.github.com/prombot) in[https://github.com/prometheus/client_golang/pull/1524](https://redirect.github.com/prometheus/client_golang/pull/1524)- Add PR template for changelog automation by[@&#8203;SachinSahu431](https://redirect.github.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1517](https://redirect.github.com/prometheus/client_golang/pull/1517)- Auto label PRs by[@&#8203;SachinSahu431](https://redirect.github.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1518](https://redirect.github.com/prometheus/client_golang/pull/1518)- Fix: Auto label PRs[#&#8203;1518](https://redirect.github.com/prometheus/client_golang/issues/1518)by [@&#8203;SachinSahu431](https://redirect.github.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1525](https://redirect.github.com/prometheus/client_golang/pull/1525)- build(deps): bump github.com/prometheus/procfs from 0.13.0 to 0.15.1by [@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1527](https://redirect.github.com/prometheus/client_golang/pull/1527)- ci: Group all changelog-related CI jobs into single one by[@&#8203;ArthurSens](https://redirect.github.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1526](https://redirect.github.com/prometheus/client_golang/pull/1526)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://redirect.github.com/prombot) in[https://github.com/prometheus/client_golang/pull/1530](https://redirect.github.com/prometheus/client_golang/pull/1530)- Remove synchronize trigger from changelog workflow by[@&#8203;SachinSahu431](https://redirect.github.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1532](https://redirect.github.com/prometheus/client_golang/pull/1532)- feat: Support zstd compression by[@&#8203;mrueg](https://redirect.github.com/mrueg) in[https://github.com/prometheus/client_golang/pull/1496](https://redirect.github.com/prometheus/client_golang/pull/1496)- Fix golangci-lint config by[@&#8203;SuperQ](https://redirect.github.com/SuperQ) in[https://github.com/prometheus/client_golang/pull/1536](https://redirect.github.com/prometheus/client_golang/pull/1536)- build(deps): bump github.com/prometheus/client_golang from 1.19.0 to1.19.1 in /tutorial/whatsup by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1529](https://redirect.github.com/prometheus/client_golang/pull/1529)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://redirect.github.com/prombot) in[https://github.com/prometheus/client_golang/pull/1531](https://redirect.github.com/prometheus/client_golang/pull/1531)- Cleanup NOTICE file by[@&#8203;SuperQ](https://redirect.github.com/SuperQ) in[https://github.com/prometheus/client_golang/pull/1541](https://redirect.github.com/prometheus/client_golang/pull/1541)- Remove inlined upstream code by[@&#8203;SuperQ](https://redirect.github.com/SuperQ) in[https://github.com/prometheus/client_golang/pull/1539](https://redirect.github.com/prometheus/client_golang/pull/1539)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://redirect.github.com/prombot) in[https://github.com/prometheus/client_golang/pull/1545](https://redirect.github.com/prometheus/client_golang/pull/1545)- client: Add Option to provide limit query param for APIs that supportit by [@&#8203;abbyssoul](https://redirect.github.com/abbyssoul) in[https://github.com/prometheus/client_golang/pull/1544](https://redirect.github.com/prometheus/client_golang/pull/1544)- Allow creating constant histogram and summary metrics with a createdtimestamp by [@&#8203;swar8080](https://redirect.github.com/swar8080) in[https://github.com/prometheus/client_golang/pull/1537](https://redirect.github.com/prometheus/client_golang/pull/1537)- Update README.md by[@&#8203;bwplotka](https://redirect.github.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1556](https://redirect.github.com/prometheus/client_golang/pull/1556)- Temporarily remove required CI job for changelog. by[@&#8203;bwplotka](https://redirect.github.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1560](https://redirect.github.com/prometheus/client_golang/pull/1560)- build(deps): bump github.com/prometheus/common from 0.53.0 to 0.55.0in /tutorial/whatsup by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1549](https://redirect.github.com/prometheus/client_golang/pull/1549)- build(deps): bump golang.org/x/sys from 0.20.0 to 0.21.0 by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1552](https://redirect.github.com/prometheus/client_golang/pull/1552)- build(deps): bump github.com/klauspost/compress from 1.17.8 to 1.17.9by [@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1553](https://redirect.github.com/prometheus/client_golang/pull/1553)- fix: Update Go tests by[@&#8203;SuperQ](https://redirect.github.com/SuperQ) in[https://github.com/prometheus/client_golang/pull/1562](https://redirect.github.com/prometheus/client_golang/pull/1562)- process_collector: collect received/transmitted bytes by[@&#8203;huwcbjones](https://redirect.github.com/huwcbjones) in[https://github.com/prometheus/client_golang/pull/1555](https://redirect.github.com/prometheus/client_golang/pull/1555)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://redirect.github.com/prombot) in[https://github.com/prometheus/client_golang/pull/1561](https://redirect.github.com/prometheus/client_golang/pull/1561)- chore: Remove half-implemented changelog automation by[@&#8203;ArthurSens](https://redirect.github.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1564](https://redirect.github.com/prometheus/client_golang/pull/1564)- build(deps): bump the github-actions group across 1 directory with 3updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)in[https://github.com/prometheus/client_golang/pull/1565](https://redirect.github.com/prometheus/client_golang/pull/1565)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://redirect.github.com/prombot) in[https://github.com/prometheus/client_golang/pull/1563](https://redirect.github.com/prometheus/client_golang/pull/1563)- build(deps): bump google.golang.org/protobuf from 1.34.1 to 1.34.2 by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1551](https://redirect.github.com/prometheus/client_golang/pull/1551)- deps: Updated to prometheus/common to 0.55 by[@&#8203;bwplotka](https://redirect.github.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1566](https://redirect.github.com/prometheus/client_golang/pull/1566)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://redirect.github.com/prombot) in[https://github.com/prometheus/client_golang/pull/1567](https://redirect.github.com/prometheus/client_golang/pull/1567)- tutorials: Renamed tutorial -> tutorials for consistency + fixedtutorial code. by[@&#8203;bwplotka](https://redirect.github.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1569](https://redirect.github.com/prometheus/client_golang/pull/1569)- go collector: add default metrics acceptance tests; adding morecontext to HELP by[@&#8203;bwplotka](https://redirect.github.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1568](https://redirect.github.com/prometheus/client_golang/pull/1568)- build(deps): bump golang.org/x/sys from 0.21.0 to 0.22.0 by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1570](https://redirect.github.com/prometheus/client_golang/pull/1570)- build(deps): bump the github-actions group with 3 updates by[@&#8203;dependabot](https://redirect.github.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1571](https://redirect.github.com/prometheus/client_golang/pull/1571)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://redirect.github.com/prombot) in[https://github.com/prometheus/client_golang/pull/1572](https://redirect.github.com/prometheus/client_golang/pull/1572)- ci: daggerize test and lint pipelines by[@&#8203;marcosnils](https://redirect.github.com/marcosnils) in[https://github.com/prometheus/client_golang/pull/1534](https://redirect.github.com/prometheus/client_golang/pull/1534)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://redirect.github.com/prombot) in[https://github.com/prometheus/client_golang/pull/1573](https://redirect.github.com/prometheus/client_golang/pull/1573)- Add default Go runtime metrics for /gc/gogc:percent,/gc/gomemlimit:bytes, /sched/gomaxprocs:threads by[@&#8203;vesari](https://redirect.github.com/vesari) in[https://github.com/prometheus/client_golang/pull/1559](https://redirect.github.com/prometheus/client_golang/pull/1559)- Synchronize common files from prometheus/prometheus by[@&#8203;prombot](https://redirect.github.com/prombot) in[https://github.com/prometheus/client_golang/pull/1576](https://redirect.github.com/prometheus/client_golang/pull/1576)- Remove go_memstat_lookups_total; added runtime/metrics calculation tomemstat metric's help. by[@&#8203;bwplotka](https://redirect.github.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1577](https://redirect.github.com/prometheus/client_golang/pull/1577)- gocollector: Attach original runtime/metrics metric name to help. by[@&#8203;bwplotka](https://redirect.github.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1578](https://redirect.github.com/prometheus/client_golang/pull/1578)</details>#### New Contributors* @&#8203;foehammer127 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1455](https://redirect.github.com/prometheus/client_golang/pull/1455)l/1455* @&#8203;SachinSahu431 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1476](https://redirect.github.com/prometheus/client_golang/pull/1476)l/1476* @&#8203;igor-drozdov made their firstcontributi[https://github.com/prometheus/client_golang/pull/1480](https://redirect.github.com/prometheus/client_golang/pull/1480)l/1480* @&#8203;majolo made their firstcontributi[https://github.com/prometheus/client_golang/pull/1492](https://redirect.github.com/prometheus/client_golang/pull/1492)l/1492* @&#8203;oftenoccur made their firstcontributi[https://github.com/prometheus/client_golang/pull/1497](https://redirect.github.com/prometheus/client_golang/pull/1497)l/1497* @&#8203;dongjiang1989 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1499](https://redirect.github.com/prometheus/client_golang/pull/1499)l/1499* @&#8203;lilijreey made their firstcontributi[https://github.com/prometheus/client_golang/pull/1511](https://redirect.github.com/prometheus/client_golang/pull/1511)l/1511* @&#8203;Ishani217 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1444](https://redirect.github.com/prometheus/client_golang/pull/1444)l/1444* @&#8203;jcass8695 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1503](https://redirect.github.com/prometheus/client_golang/pull/1503)l/1503* @&#8203;leonnicolas made their firstcontributi[https://github.com/prometheus/client_golang/pull/1424](https://redirect.github.com/prometheus/client_golang/pull/1424)l/1424* @&#8203;fatsheep9146 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1471](https://redirect.github.com/prometheus/client_golang/pull/1471)l/1471* @&#8203;abbyssoul made their firstcontributi[https://github.com/prometheus/client_golang/pull/1544](https://redirect.github.com/prometheus/client_golang/pull/1544)l/1544* @&#8203;swar8080 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1537](https://redirect.github.com/prometheus/client_golang/pull/1537)l/1537* @&#8203;huwcbjones made their firstcontributi[https://github.com/prometheus/client_golang/pull/1555](https://redirect.github.com/prometheus/client_golang/pull/1555)l/1555* @&#8203;marcosnils made their firstcontributi[https://github.com/prometheus/client_golang/pull/1534](https://redirect.github.com/prometheus/client_golang/pull/1534)l/1534* @&#8203;vesari made their firstcontributi[https://github.com/prometheus/client_golang/pull/1559](https://redirect.github.com/prometheus/client_golang/pull/1559)l/1559**Full Changelog**:prometheus/client_golang@v1.19.1...v1.20.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 therebase/retry checkbox.🔕 **Ignore**: Close this PR and you won't be reminded about this updateagain.---- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, checkthis box---This PR was generated by [Mend Renovate](https://mend.io/renovate/).View the [repository joblog](https://developer.mend.io/github/open-feature/flagd).<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguNTkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
f7o referenced this pull request in f7o/opentelemetry-collector-contribSep 12, 2024
….1 (open-telemetry#34775)[![MendRenovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)This PR contains the following updates:| Package | Change | Age | Adoption | Passing | Confidence ||---|---|---|---|---|---||[github.com/prometheus/client_golang](https://togithub.com/prometheus/client_golang)| `v1.19.1` -> `v1.20.1` |[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_golang/v1.20.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fprometheus%2fclient_golang/v1.20.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fprometheus%2fclient_golang/v1.19.1/v1.20.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)|[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fprometheus%2fclient_golang/v1.19.1/v1.20.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)|---> [!WARNING]> Some dependencies could not be looked up. Check the DependencyDashboard for more information.---### Release Notes<details><summary>prometheus/client_golang(github.com/prometheus/client_golang)</summary>###[`v1.20.1`](https://togithub.com/prometheus/client_golang/releases/tag/v1.20.1)[CompareSource](https://togithub.com/prometheus/client_golang/compare/v1.20.0...v1.20.1)- \[BUGFIX] process-collector: Fixed unregistered descriptor error whenusing process collector with PedanticRegistry on Linux machines.[#&open-telemetry#8203;1587](https://togithub.com/prometheus/client_golang/issues/1587)###[`v1.20.0`](https://togithub.com/prometheus/client_golang/releases/tag/v1.20.0)[CompareSource](https://togithub.com/prometheus/client_golang/compare/v1.19.1...v1.20.0)Thanks everyone for contributions!:warning: In this release we remove one (broken anyway, given Go runtimechanges) metric and add three new (representing GOGC, GOMEMLIMIT andGOMAXPROCS flags) to the default `collectors.NewGoCollector()`collector. Given its popular usage, expect your binary to expose twoadditional metric.#### Changes- \[CHANGE] :warning: go-collector: Remove `go_memstat_lookups_total`metric which was always 0; Go runtime stopped sharing pointer lookupstatistics.[#&open-telemetry#8203;1577](https://togithub.com/prometheus/client_golang/issues/1577)- \[FEATURE]⚠️ go-collector: Add 3 default metrics:`go_gc_gogc_percent`, `go_gc_gomemlimit_bytes` and`go_sched_gomaxprocs_threads` as those are recommended by the Go team.[#&open-telemetry#8203;1559](https://togithub.com/prometheus/client_golang/issues/1559)- \[FEATURE] go-collector: Add more information to all metrics' HELPe.g. the exact `runtime/metrics` sourcing each metric (if relevant).[#&open-telemetry#8203;1568](https://togithub.com/prometheus/client_golang/issues/1568)[#&open-telemetry#8203;1578](https://togithub.com/prometheus/client_golang/issues/1578)- \[FEATURE] testutil: Add CollectAndFormat method.[#&open-telemetry#8203;1503](https://togithub.com/prometheus/client_golang/issues/1503)- \[FEATURE] histograms: Add support for exemplars in native histograms.[#&open-telemetry#8203;1471](https://togithub.com/prometheus/client_golang/issues/1471)- \[FEATURE] promhttp: Add experimental support for `zstd` on scrape,controlled by the request `Accept-Encoding` header.[#&open-telemetry#8203;1496](https://togithub.com/prometheus/client_golang/issues/1496)- \[FEATURE] api/v1: Add `WithLimit` parameter to all API methods thatsupports it.[#&open-telemetry#8203;1544](https://togithub.com/prometheus/client_golang/issues/1544)- \[FEATURE] prometheus: Add support for created timestamps in constanthistograms and constant summaries.[#&open-telemetry#8203;1537](https://togithub.com/prometheus/client_golang/issues/1537)- \[FEATURE] process-collectors: Add network usage metrics:`process_network_receive_bytes_total` and`process_network_transmit_bytes_total`.[#&open-telemetry#8203;1555](https://togithub.com/prometheus/client_golang/issues/1555)- \[FEATURE] promlint: Add duplicated metric lint rule.[#&open-telemetry#8203;1472](https://togithub.com/prometheus/client_golang/issues/1472)- \[BUGFIX] promlint: Relax metric type in name linter rule.[#&open-telemetry#8203;1455](https://togithub.com/prometheus/client_golang/issues/1455)-   \[BUGFIX] promhttp: Make sure serverinstrumentation wrapping supports new and future extra responseWritermethods.[#&open-telemetry#8203;1480](https://togithub.com/prometheus/client_golang/issues/1480)- \[BUGFIX] testutil: Functions using compareMetricFamilies are nowfailing if filtered metricNames are not in the input.[#&open-telemetry#8203;1424](https://togithub.com/prometheus/client_golang/issues/1424)<details>  <summary>All commits</summary>- feat(prometheus/testutil/promlint/validations): refine lintMetricType…by [@&open-telemetry#8203;foehammer127](https://togithub.com/foehammer127) in[https://github.com/prometheus/client_golang/pull/1455](https://togithub.com/prometheus/client_golang/pull/1455)- Bump github.com/prometheus/client_golang from 1.18.0 to 1.19.0 in/examples/middleware by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1457](https://togithub.com/prometheus/client_golang/pull/1457)- Bump github.com/prometheus/client_model from 0.5.0 to 0.6.0 by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1458](https://togithub.com/prometheus/client_golang/pull/1458)- Bump golang.org/x/sys from 0.16.0 to 0.17.0 by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1459](https://togithub.com/prometheus/client_golang/pull/1459)- Bump github.com/prometheus/client_golang from 1.18.0 to 1.19.0 in/tutorial/whatsup by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1461](https://togithub.com/prometheus/client_golang/pull/1461)- Merge Release 1.19 back to main by[@&open-telemetry#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1462](https://togithub.com/prometheus/client_golang/pull/1462)- Bump the github-actions group with 2 updates by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1456](https://togithub.com/prometheus/client_golang/pull/1456)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1466](https://togithub.com/prometheus/client_golang/pull/1466)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in/examples/middleware by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1467](https://togithub.com/prometheus/client_golang/pull/1467)- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 in/tutorial/whatsup by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1469](https://togithub.com/prometheus/client_golang/pull/1469)- Add LintDuplicateMetric to promlint by[@&open-telemetry#8203;bboreham](https://togithub.com/bboreham) in[https://github.com/prometheus/client_golang/pull/1472](https://togithub.com/prometheus/client_golang/pull/1472)- Auto-update Go Collector Metrics for new Go versions by[@&open-telemetry#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1476](https://togithub.com/prometheus/client_golang/pull/1476)- Implement Unwrap() for responseWriterDelegator by[@&open-telemetry#8203;igor-drozdov](https://togithub.com/igor-drozdov) in[https://github.com/prometheus/client_golang/pull/1480](https://togithub.com/prometheus/client_golang/pull/1480)- Bump golang.org/x/sys from 0.17.0 to 0.18.0 by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1485](https://togithub.com/prometheus/client_golang/pull/1485)- Bump github.com/prometheus/procfs from 0.12.0 to 0.13.0 by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1486](https://togithub.com/prometheus/client_golang/pull/1486)- ci: Remove hardcoded supported Go versions from go.yml by[@&open-telemetry#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1489](https://togithub.com/prometheus/client_golang/pull/1489)- feat: metrics generation workflow by[@&open-telemetry#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1481](https://togithub.com/prometheus/client_golang/pull/1481)- fix: remove redundant go module in middleware example by[@&open-telemetry#8203;majolo](https://togithub.com/majolo) in[https://github.com/prometheus/client_golang/pull/1492](https://togithub.com/prometheus/client_golang/pull/1492)- chore: Refactor how base metrics are added to Sched metrics by[@&open-telemetry#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1483](https://togithub.com/prometheus/client_golang/pull/1483)- gocollector: Add regex option to allow collection of debug runtimemetrics by [@&open-telemetry#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1389](https://togithub.com/prometheus/client_golang/pull/1389)- Bump github.com/prometheus/common from 0.48.0 to 0.52.3 by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1498](https://togithub.com/prometheus/client_golang/pull/1498)- chore: fix function name in comment by[@&open-telemetry#8203;oftenoccur](https://togithub.com/oftenoccur) in[https://github.com/prometheus/client_golang/pull/1497](https://togithub.com/prometheus/client_golang/pull/1497)- build(deps): bump golang.org/x/net from 0.20.0 to 0.23.0 in/tutorial/whatsup by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1501](https://togithub.com/prometheus/client_golang/pull/1501)- build(deps): bump golang.org/x/net from 0.22.0 to 0.23.0 by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1502](https://togithub.com/prometheus/client_golang/pull/1502)- feat(dependency): replace go-spew package by[@&open-telemetry#8203;dongjiang1989](https://togithub.com/dongjiang1989) in[https://github.com/prometheus/client_golang/pull/1499](https://togithub.com/prometheus/client_golang/pull/1499)- build(deps): bump github.com/prometheus/common from 0.52.3 to 0.53.0by [@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1504](https://togithub.com/prometheus/client_golang/pull/1504)- build(deps): bump github.com/cespare/xxhash/v2 from 2.2.0 to 2.3.0 by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1505](https://togithub.com/prometheus/client_golang/pull/1505)- build(deps): bump google.golang.org/protobuf from 1.33.0 to 1.34.0 by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1506](https://togithub.com/prometheus/client_golang/pull/1506)- build(deps): bump golang.org/x/sys from 0.18.0 to 0.19.0 by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1507](https://togithub.com/prometheus/client_golang/pull/1507)- build(deps): bump github.com/prometheus/client_model from 0.6.0 to0.6.1 by [@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1508](https://togithub.com/prometheus/client_golang/pull/1508)- build(deps): bump github.com/prometheus/common from 0.48.0 to 0.53.0in /tutorial/whatsup by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1509](https://togithub.com/prometheus/client_golang/pull/1509)- improved code more clean by[@&open-telemetry#8203;lilijreey](https://togithub.com/lilijreey) in[https://github.com/prometheus/client_golang/pull/1511](https://togithub.com/prometheus/client_golang/pull/1511)- build(deps): bump the github-actions group with 3 updates by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1510](https://togithub.com/prometheus/client_golang/pull/1510)- \[CI]: Add Concurrency Grouping to GitHub Workflows by[@&open-telemetry#8203;Ishani217](https://togithub.com/Ishani217) in[https://github.com/prometheus/client_golang/pull/1444](https://togithub.com/prometheus/client_golang/pull/1444)- Add CollectAndFormat to testutil, allowing caller to assert as theywant to on the exported metric by[@&open-telemetry#8203;jcass8695](https://togithub.com/jcass8695) in[https://github.com/prometheus/client_golang/pull/1503](https://togithub.com/prometheus/client_golang/pull/1503)- testutil compareMetricFamilies: make less error-prone by[@&open-telemetry#8203;leonnicolas](https://togithub.com/leonnicolas) in[https://github.com/prometheus/client_golang/pull/1424](https://togithub.com/prometheus/client_golang/pull/1424)- improved code more clean use time.IsZero() replace t = time.Time{} by[@&open-telemetry#8203;lilijreey](https://togithub.com/lilijreey) in[https://github.com/prometheus/client_golang/pull/1515](https://togithub.com/prometheus/client_golang/pull/1515)- add native histogram exemplar support by[@&open-telemetry#8203;fatsheep9146](https://togithub.com/fatsheep9146) in[https://github.com/prometheus/client_golang/pull/1471](https://togithub.com/prometheus/client_golang/pull/1471)- Synchronize common files from prometheus/prometheus by[@&open-telemetry#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1514](https://togithub.com/prometheus/client_golang/pull/1514)- build(deps): bump golang.org/x/sys from 0.19.0 to 0.20.0 by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1523](https://togithub.com/prometheus/client_golang/pull/1523)- build(deps): bump google.golang.org/protobuf from 1.34.0 to 1.34.1 by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1522](https://togithub.com/prometheus/client_golang/pull/1522)- Synchronize common files from prometheus/prometheus by[@&open-telemetry#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1524](https://togithub.com/prometheus/client_golang/pull/1524)- Add PR template for changelog automation by[@&open-telemetry#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1517](https://togithub.com/prometheus/client_golang/pull/1517)- Auto label PRs by[@&open-telemetry#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1518](https://togithub.com/prometheus/client_golang/pull/1518)- Fix: Auto label PRs[#&open-telemetry#8203;1518](https://togithub.com/prometheus/client_golang/issues/1518)by [@&open-telemetry#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1525](https://togithub.com/prometheus/client_golang/pull/1525)- build(deps): bump github.com/prometheus/procfs from 0.13.0 to 0.15.1by [@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1527](https://togithub.com/prometheus/client_golang/pull/1527)- ci: Group all changelog-related CI jobs into single one by[@&open-telemetry#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1526](https://togithub.com/prometheus/client_golang/pull/1526)- Synchronize common files from prometheus/prometheus by[@&open-telemetry#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1530](https://togithub.com/prometheus/client_golang/pull/1530)- Remove synchronize trigger from changelog workflow by[@&open-telemetry#8203;SachinSahu431](https://togithub.com/SachinSahu431) in[https://github.com/prometheus/client_golang/pull/1532](https://togithub.com/prometheus/client_golang/pull/1532)- feat: Support zstd compression by[@&open-telemetry#8203;mrueg](https://togithub.com/mrueg) in[https://github.com/prometheus/client_golang/pull/1496](https://togithub.com/prometheus/client_golang/pull/1496)- Fix golangci-lint config by[@&open-telemetry#8203;SuperQ](https://togithub.com/SuperQ) in[https://github.com/prometheus/client_golang/pull/1536](https://togithub.com/prometheus/client_golang/pull/1536)- build(deps): bump github.com/prometheus/client_golang from 1.19.0 to1.19.1 in /tutorial/whatsup by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1529](https://togithub.com/prometheus/client_golang/pull/1529)- Synchronize common files from prometheus/prometheus by[@&open-telemetry#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1531](https://togithub.com/prometheus/client_golang/pull/1531)- Cleanup NOTICE file by [@&open-telemetry#8203;SuperQ](https://togithub.com/SuperQ)in[https://github.com/prometheus/client_golang/pull/1541](https://togithub.com/prometheus/client_golang/pull/1541)- Remove inlined upstream code by[@&open-telemetry#8203;SuperQ](https://togithub.com/SuperQ) in[https://github.com/prometheus/client_golang/pull/1539](https://togithub.com/prometheus/client_golang/pull/1539)- Synchronize common files from prometheus/prometheus by[@&open-telemetry#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1545](https://togithub.com/prometheus/client_golang/pull/1545)- client: Add Option to provide limit query param for APIs that supportit by [@&open-telemetry#8203;abbyssoul](https://togithub.com/abbyssoul) in[https://github.com/prometheus/client_golang/pull/1544](https://togithub.com/prometheus/client_golang/pull/1544)- Allow creating constant histogram and summary metrics with a createdtimestamp by [@&open-telemetry#8203;swar8080](https://togithub.com/swar8080) in[https://github.com/prometheus/client_golang/pull/1537](https://togithub.com/prometheus/client_golang/pull/1537)- Update README.md by [@&open-telemetry#8203;bwplotka](https://togithub.com/bwplotka)in[https://github.com/prometheus/client_golang/pull/1556](https://togithub.com/prometheus/client_golang/pull/1556)- Temporarily remove required CI job for changelog. by[@&open-telemetry#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1560](https://togithub.com/prometheus/client_golang/pull/1560)- build(deps): bump github.com/prometheus/common from 0.53.0 to 0.55.0in /tutorial/whatsup by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1549](https://togithub.com/prometheus/client_golang/pull/1549)- build(deps): bump golang.org/x/sys from 0.20.0 to 0.21.0 by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1552](https://togithub.com/prometheus/client_golang/pull/1552)- build(deps): bump github.com/klauspost/compress from 1.17.8 to 1.17.9by [@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1553](https://togithub.com/prometheus/client_golang/pull/1553)- fix: Update Go tests by [@&open-telemetry#8203;SuperQ](https://togithub.com/SuperQ)in[https://github.com/prometheus/client_golang/pull/1562](https://togithub.com/prometheus/client_golang/pull/1562)- process_collector: collect received/transmitted bytes by[@&open-telemetry#8203;huwcbjones](https://togithub.com/huwcbjones) in[https://github.com/prometheus/client_golang/pull/1555](https://togithub.com/prometheus/client_golang/pull/1555)- Synchronize common files from prometheus/prometheus by[@&open-telemetry#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1561](https://togithub.com/prometheus/client_golang/pull/1561)- chore: Remove half-implemented changelog automation by[@&open-telemetry#8203;ArthurSens](https://togithub.com/ArthurSens) in[https://github.com/prometheus/client_golang/pull/1564](https://togithub.com/prometheus/client_golang/pull/1564)- build(deps): bump the github-actions group across 1 directory with 3updates by [@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1565](https://togithub.com/prometheus/client_golang/pull/1565)- Synchronize common files from prometheus/prometheus by[@&open-telemetry#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1563](https://togithub.com/prometheus/client_golang/pull/1563)- build(deps): bump google.golang.org/protobuf from 1.34.1 to 1.34.2 by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1551](https://togithub.com/prometheus/client_golang/pull/1551)- deps: Updated to prometheus/common to 0.55 by[@&open-telemetry#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1566](https://togithub.com/prometheus/client_golang/pull/1566)- Synchronize common files from prometheus/prometheus by[@&open-telemetry#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1567](https://togithub.com/prometheus/client_golang/pull/1567)- tutorials: Renamed tutorial -> tutorials for consistency + fixedtutorial code. by [@&open-telemetry#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1569](https://togithub.com/prometheus/client_golang/pull/1569)- go collector: add default metrics acceptance tests; adding morecontext to HELP by [@&open-telemetry#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1568](https://togithub.com/prometheus/client_golang/pull/1568)- build(deps): bump golang.org/x/sys from 0.21.0 to 0.22.0 by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1570](https://togithub.com/prometheus/client_golang/pull/1570)- build(deps): bump the github-actions group with 3 updates by[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in[https://github.com/prometheus/client_golang/pull/1571](https://togithub.com/prometheus/client_golang/pull/1571)- Synchronize common files from prometheus/prometheus by[@&open-telemetry#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1572](https://togithub.com/prometheus/client_golang/pull/1572)- ci: daggerize test and lint pipelines by[@&open-telemetry#8203;marcosnils](https://togithub.com/marcosnils) in[https://github.com/prometheus/client_golang/pull/1534](https://togithub.com/prometheus/client_golang/pull/1534)- Synchronize common files from prometheus/prometheus by[@&open-telemetry#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1573](https://togithub.com/prometheus/client_golang/pull/1573)- Add default Go runtime metrics for /gc/gogc:percent,/gc/gomemlimit:bytes, /sched/gomaxprocs:threads by[@&open-telemetry#8203;vesari](https://togithub.com/vesari) in[https://github.com/prometheus/client_golang/pull/1559](https://togithub.com/prometheus/client_golang/pull/1559)- Synchronize common files from prometheus/prometheus by[@&open-telemetry#8203;prombot](https://togithub.com/prombot) in[https://github.com/prometheus/client_golang/pull/1576](https://togithub.com/prometheus/client_golang/pull/1576)- Remove go_memstat_lookups_total; added runtime/metrics calculation tomemstat metric's help. by[@&open-telemetry#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1577](https://togithub.com/prometheus/client_golang/pull/1577)- gocollector: Attach original runtime/metrics metric name to help. by[@&open-telemetry#8203;bwplotka](https://togithub.com/bwplotka) in[https://github.com/prometheus/client_golang/pull/1578](https://togithub.com/prometheus/client_golang/pull/1578)</details>#### New Contributors* @&open-telemetry#8203;foehammer127 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1455](https://togithub.com/prometheus/client_golang/pull/1455)l/1455* @&open-telemetry#8203;SachinSahu431 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1476](https://togithub.com/prometheus/client_golang/pull/1476)l/1476* @&open-telemetry#8203;igor-drozdov made their firstcontributi[https://github.com/prometheus/client_golang/pull/1480](https://togithub.com/prometheus/client_golang/pull/1480)l/1480* @&open-telemetry#8203;majolo made their firstcontributi[https://github.com/prometheus/client_golang/pull/1492](https://togithub.com/prometheus/client_golang/pull/1492)l/1492* @&open-telemetry#8203;oftenoccur made their firstcontributi[https://github.com/prometheus/client_golang/pull/1497](https://togithub.com/prometheus/client_golang/pull/1497)l/1497* @&open-telemetry#8203;dongjiang1989 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1499](https://togithub.com/prometheus/client_golang/pull/1499)l/1499* @&open-telemetry#8203;lilijreey made their firstcontributi[https://github.com/prometheus/client_golang/pull/1511](https://togithub.com/prometheus/client_golang/pull/1511)l/1511* @&open-telemetry#8203;Ishani217 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1444](https://togithub.com/prometheus/client_golang/pull/1444)l/1444* @&open-telemetry#8203;jcass8695 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1503](https://togithub.com/prometheus/client_golang/pull/1503)l/1503* @&open-telemetry#8203;leonnicolas made their firstcontributi[https://github.com/prometheus/client_golang/pull/1424](https://togithub.com/prometheus/client_golang/pull/1424)l/1424* @&open-telemetry#8203;fatsheep9146 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1471](https://togithub.com/prometheus/client_golang/pull/1471)l/1471* @&open-telemetry#8203;abbyssoul made their firstcontributi[https://github.com/prometheus/client_golang/pull/1544](https://togithub.com/prometheus/client_golang/pull/1544)l/1544* @&open-telemetry#8203;swar8080 made their firstcontributi[https://github.com/prometheus/client_golang/pull/1537](https://togithub.com/prometheus/client_golang/pull/1537)l/1537* @&open-telemetry#8203;huwcbjones made their firstcontributi[https://github.com/prometheus/client_golang/pull/1555](https://togithub.com/prometheus/client_golang/pull/1555)l/1555* @&open-telemetry#8203;marcosnils made their firstcontributi[https://github.com/prometheus/client_golang/pull/1534](https://togithub.com/prometheus/client_golang/pull/1534)l/1534* @&open-telemetry#8203;vesari made their firstcontributi[https://github.com/prometheus/client_golang/pull/1559](https://togithub.com/prometheus/client_golang/pull/1559)l/1559**Full Changelog**:prometheus/client_golang@v1.19.1...v1.20.0</details>---### Configuration📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At anytime (no schedule defined).🚦 **Automerge**: Disabled by config. Please merge this manually once youare satisfied.♻ **Rebasing**: Whenever PR becomes conflicted, or you tick therebase/retry checkbox.🔕 **Ignore**: Close this PR and you won't be reminded about this updateagain.---- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, checkthis box---This PR was generated by [MendRenovate](https://www.mend.io/free-developer-tools/renovate/). View the[repository joblog](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguMjYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=-->---------Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>Co-authored-by: Yang Song <songy23@users.noreply.github.com>
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

@kakkoyunkakkoyunkakkoyun approved these changes

@ArthurSensArthurSensArthurSens approved these changes

Assignees

No one assigned

Labels

None yet

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

3 participants

@SachinSahu431@kakkoyun@ArthurSens

[8]ページ先頭

©2009-2025 Movatter.jp