domain_exporter
domain_exporter copied to clipboard
fix(deps): update module github.com/prometheus/client_golang to v1.17.0
This PR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
github.com/prometheus/client_golang | require | minor | v1.15.1 -> v1.17.0 |
Release Notes
prometheus/client_golang (github.com/prometheus/client_golang)
v1.17.0
What's Changed
- [CHANGE] Minimum required go version is now 1.19 (we also test client_golang against new 1.21 version). #1325
- [FEATURE] Add support for Created Timestamps in Counters, Summaries and Historams. #1313
- [ENHANCEMENT] Enable detection of a native histogram without observations. #1314
Commits
- Merge v1.16.0 to main by @bwplotka in https://github.com/prometheus/client_golang/pull/1293
- Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/1297
- ci: define minimal permissions to GitHub workflows by @diogoteles08 in https://github.com/prometheus/client_golang/pull/1295
- Do not allocate memory when there's no constraints by @Okhoshi in https://github.com/prometheus/client_golang/pull/1296
- Bump golang.org/x/sys from 0.8.0 to 0.9.0 by @dependabot in https://github.com/prometheus/client_golang/pull/1306
- Bump google.golang.org/grpc from 1.45.0 to 1.53.0 in /tutorial/whatsup by @dependabot in https://github.com/prometheus/client_golang/pull/1307
- histogram: Enable detection of a native histogram without observations by @beorn7 in https://github.com/prometheus/client_golang/pull/1314
- Bump github.com/prometheus/procfs from 0.10.1 to 0.11.0 by @dependabot in https://github.com/prometheus/client_golang/pull/1305
- Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/1302
- Fix data-race in metric without
code
andmethod
but withWithLabelFromCtx
by @tigrato in https://github.com/prometheus/client_golang/pull/1318 - Add missing tick "`" in README by @ZiViZiViZ in https://github.com/prometheus/client_golang/pull/1321
- Bump golang.org/x/sys from 0.9.0 to 0.10.0 by @dependabot in https://github.com/prometheus/client_golang/pull/1320
- Bump github.com/prometheus/procfs from 0.11.0 to 0.11.1 by @dependabot in https://github.com/prometheus/client_golang/pull/1319
- docs: trivial grammar fixes to improve readability in promauto Godoc by @sengi in https://github.com/prometheus/client_golang/pull/1322
- Add Go 1.21 support by @kakkoyun in https://github.com/prometheus/client_golang/pull/1325
- Bump client_model by @ArthurSens in https://github.com/prometheus/client_golang/pull/1323
- histogram docs: Fixed minor nit. by @bwplotka in https://github.com/prometheus/client_golang/pull/1324
- Update building by @SuperQ in https://github.com/prometheus/client_golang/pull/1326
- Bump golang.org/x/sys from 0.10.0 to 0.11.0 by @dependabot in https://github.com/prometheus/client_golang/pull/1331
- Bump github.com/prometheus/client_golang from 1.15.1-0.20230416215738-0963f595c689 to 1.16.0 in /tutorial/whatsup by @dependabot in https://github.com/prometheus/client_golang/pull/1329
- Bump github.com/prometheus/client_golang from 1.13.1 to 1.16.0 in /examples/middleware by @dependabot in https://github.com/prometheus/client_golang/pull/1328
- Bump github.com/prometheus/common from 0.42.0 to 0.44.0 by @dependabot in https://github.com/prometheus/client_golang/pull/1284
- Bump github.com/prometheus/common from 0.42.0 to 0.44.0 in /tutorial/whatsup by @dependabot in https://github.com/prometheus/client_golang/pull/1330
- Bump google.golang.org/protobuf from 1.30.0 to 1.31.0 by @dependabot in https://github.com/prometheus/client_golang/pull/1304
- Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/1332
- Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/1338
- Cleanup golangci-lint errcheck by @SuperQ in https://github.com/prometheus/client_golang/pull/1339
- Add go_godebug_non_default_behavior_tlsmaxrsasize_events_total by @alexandear in https://github.com/prometheus/client_golang/pull/1348
- Extend Counters, Summaries and Histograms with creation timestamp by @ArthurSens in https://github.com/prometheus/client_golang/pull/1313
- Fix typos in comments, tests, and errors by @alexandear in https://github.com/prometheus/client_golang/pull/1346
- Deprecated comment should begin with "Deprecated:" by @alexandear in https://github.com/prometheus/client_golang/pull/1347
- Add changelog entry for 1.17 by @ArthurSens in https://github.com/prometheus/client_golang/pull/1352
New Contributors
- @diogoteles08 made their first contributihttps://github.com/prometheus/client_golang/pull/1295l/1295
- @tigrato made their first contributihttps://github.com/prometheus/client_golang/pull/1318l/1318
- @ZiViZiViZ made their first contributihttps://github.com/prometheus/client_golang/pull/1321l/1321
- @sengi made their first contributihttps://github.com/prometheus/client_golang/pull/1322l/1322
- @ArthurSens made their first contributihttps://github.com/prometheus/client_golang/pull/1323l/1323
- @alexandear made their first contributihttps://github.com/prometheus/client_golang/pull/1348l/1348
Full Changelog: https://github.com/prometheus/client_golang/compare/v1.16.0...v1.17.0
v1.16.0
What's Changed
- [BUGFIX] api: Switch to POST for LabelNames, Series, and QueryExemplars. #1252
- [BUGFIX] api: Fix undefined execution order in return statements. #1260
- [BUGFIX] native histograms: Fix bug in bucket key calculation. #1279
- [ENHANCEMENT] Reduce constrainLabels allocations for all metrics. #1272
- [ENHANCEMENT] promhttp: Add process start time header for scrape efficiency. #1278
- [ENHANCEMENT] promlint: Improve metricUnits runtime. #1286
Commits
- Merge v1.15 to main by @bwplotka in https://github.com/prometheus/client_golang/pull/1250
- Switch to POST for LabelNames, Series, and QueryExemplars to DoGetFallback by @jacksontj in https://github.com/prometheus/client_golang/pull/1252
- ✏️ [collectors]: fix typo in test assertion by @vegerot in https://github.com/prometheus/client_golang/pull/1153
- Added interactive tutorial [kubeCon] by @bwplotka in https://github.com/prometheus/client_golang/pull/1255
- Fixed tutorial. by @bwplotka in https://github.com/prometheus/client_golang/pull/1256
- Bump golang.org/x/sys from 0.6.0 to 0.7.0 by @dependabot in https://github.com/prometheus/client_golang/pull/1265
- Cleanup proto use in tests by @SuperQ in https://github.com/prometheus/client_golang/pull/1264
- Fix tutorial on WSL-based systems by @marevers in https://github.com/prometheus/client_golang/pull/1257
- Fix undefined execution order in return statements by @PiotrLewandowski323 in https://github.com/prometheus/client_golang/pull/1260
- Merge release 1.15.1 to main by @bwplotka in https://github.com/prometheus/client_golang/pull/1267
- GitHub Workflows security hardening by @sashashura in https://github.com/prometheus/client_golang/pull/1180
- add process start time header to client_golang prometheus by @logicalhan in https://github.com/prometheus/client_golang/pull/1278
- Fix bug in bucket key calculation by @beorn7 in https://github.com/prometheus/client_golang/pull/1279
- Bump github.com/prometheus/procfs from 0.9.0 to 0.10.1 by @dependabot in https://github.com/prometheus/client_golang/pull/1283
- Reduce constrainLabels allocations by @khasanovbi in https://github.com/prometheus/client_golang/pull/1272
- added circleci as gh action YAML by @krishnaduttPanchagnula in https://github.com/prometheus/client_golang/pull/1281
- Improve metricUnits runtime by @avlitman in https://github.com/prometheus/client_golang/pull/1286
- Moving fully to GH actions. by @bwplotka in https://github.com/prometheus/client_golang/pull/1288
- Fix docstring references to renamed native histogram fields / functions. by @juliusv in https://github.com/prometheus/client_golang/pull/1290
- Fixed README & CHANGELOG; Added fmt makefile command (+bingo) for easier contributions. by @bwplotka in https://github.com/prometheus/client_golang/pull/1289
New Contributors
- @vegerot made their first contributihttps://github.com/prometheus/client_golang/pull/1153l/1153
- @marevers made their first contributihttps://github.com/prometheus/client_golang/pull/1257l/1257
- @PiotrLewandowski323 made their first contributihttps://github.com/prometheus/client_golang/pull/1260l/1260
- @sashashura made their first contributihttps://github.com/prometheus/client_golang/pull/1180l/1180
- @logicalhan made their first contributihttps://github.com/prometheus/client_golang/pull/1278l/1278
- @khasanovbi made their first contributihttps://github.com/prometheus/client_golang/pull/1272l/1272
- @krishnaduttPanchagnula made their first contributihttps://github.com/prometheus/client_golang/pull/1281l/1281
- @avlitman made their first contributihttps://github.com/prometheus/client_golang/pull/1286l/1286
Full Changelog: https://github.com/prometheus/client_golang/compare/v1.15.1...v1.16.0
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
- [ ] If you want to rebase/retry this PR, check this box
This PR has been generated by Mend Renovate. View repository job log here.
Edited/Blocked Notification
Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.
You can manually request rebase by checking the rebase/retry box above.
⚠️ Warning: custom changes will be lost.