Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the actions-deps group with 11 updates #161

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 23, 2024

Bumps the actions-deps group with 11 updates:

Package From To
github.com/enriquebris/goconcurrentqueue 0.6.0 0.7.0
github.com/prometheus/client_golang 1.14.0 1.20.5
github.com/prometheus/common 0.42.0 0.55.0
github.com/prometheus/prometheus 0.43.0 0.300.1
github.com/spf13/viper 1.7.1 1.19.0
github.com/urfave/cli/v2 2.3.0 2.27.5
go.uber.org/automaxprocs 1.5.1 1.6.0
golang.org/x/mod 0.17.0 0.21.0
google.golang.org/grpc 1.65.0 1.67.1
google.golang.org/protobuf 1.34.2 1.36.0
k8s.io/apimachinery 0.26.2 0.31.1

Updates github.com/enriquebris/goconcurrentqueue from 0.6.0 to 0.7.0

Release notes

Sourced from github.com/enriquebris/goconcurrentqueue's releases.

Prevents FIFO.DequeueOrWaitForNextElement to keep waiting for a waitChan while internal queue contains items

  • Prevents FIFO.DequeueOrWaitForNextElement to keep waiting for a waitChan while internal queue contains items

Prevents FIFO.DequeueOrWaitForNextElement to add useless wait channels

  • Prevents FIFO.DequeueOrWaitForNextElement to add useless wait channels

Prevents FIFO.DequeueOrWaitForNextElement to gets blocked when waiting for an enqueued element.

Unblocking FixedFifo.Enqueue

FixedFifo.Enqueue prevents to gets blocked trying to send the item over an invalid waitForNextElementChan channel

Commits

Updates github.com/prometheus/client_golang from 1.14.0 to 1.20.5

Release notes

Sourced from github.com/prometheus/client_golang's releases.

v1.20.5 / 2024-10-15

We decided to revert the testutil change that made our util functions less error-prone, but created a lot of work for our downstream users. Apologies for the pain! This revert should not cause any major breaking change, even if you already did the work--unless you depend on the exact error message.

Going forward, we plan to reinforce our release testing strategy [1],[2] and deliver an enhanced testutil package/module with more flexible and safer APIs.

Thanks to @​dashpole @​dgrisonnet @​kakkoyun @​ArthurSens @​vesari @​logicalhan @​krajorama @​bwplotka who helped in this patch release! 🤗

Changelog

[BUGFIX] testutil: Reverted #1424; functions using compareMetricFamilies are (again) only failing if filtered metricNames are in the expected input. #1645

v1.20.4

  • [BUGFIX] histograms: Fix a possible data race when appending exemplars vs metrics gather. #1623

v1.20.3

  • [BUGFIX] histograms: Fix possible data race when appending exemplars. #1608

v1.20.2

  • [BUGFIX] promhttp: Unset Content-Encoding header when data is uncompressed. #1596

v1.20.1

This release contains the critical fix for the issue. Thanks to @​geberl, @​CubicrootXYZ, @​zetaab and @​timofurrer for helping us with the investigation!

  • [BUGFIX] process-collector: Fixed unregistered descriptor error when using process collector with PedanticRegistry on Linux machines. #1587

v1.20.0

Thanks everyone for contributions!

⚠️ In this release we remove one (broken anyway, given Go runtime changes) metric and add three new (representing GOGC, GOMEMLIMIT and GOMAXPROCS flags) to the default collectors.NewGoCollector() collector. Given its popular usage, expect your binary to expose two additional metric.

Changes

  • [CHANGE] ⚠️ go-collector: Remove go_memstat_lookups_total metric which was always 0; Go runtime stopped sharing pointer lookup statistics. #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. #1559
  • [FEATURE] go-collector: Add more information to all metrics' HELP e.g. the exact runtime/metrics sourcing each metric (if relevant). #1568 #1578
  • [FEATURE] testutil: Add CollectAndFormat method. #1503
  • [FEATURE] histograms: Add support for exemplars in native histograms. #1471
  • [FEATURE] promhttp: Add experimental support for zstd on scrape, controlled by the request Accept-Encoding header. #1496
  • [FEATURE] api/v1: Add WithLimit parameter to all API methods that supports it. #1544
  • [FEATURE] prometheus: Add support for created timestamps in constant histograms and constant summaries. #1537
  • [FEATURE] process-collectors: Add network usage metrics: process_network_receive_bytes_total and process_network_transmit_bytes_total. #1555
  • [FEATURE] promlint: Add duplicated metric lint rule. #1472
  • [BUGFIX] promlint: Relax metric type in name linter rule. #1455
  • [BUGFIX] promhttp: Make sure server instrumentation wrapping supports new and future extra responseWriter methods. #1480
  • [BUGFIX] testutil: Functions using compareMetricFamilies are now failing if filtered metricNames are not in the input. #1424

... (truncated)

Changelog

Sourced from github.com/prometheus/client_golang's changelog.

1.20.5 / 2024-10-15

  • [BUGFIX] testutil: Reverted #1424; functions using compareMetricFamilies are (again) only failing if filtered metricNames are in the expected input.

1.20.4 / 2024-09-07

  • [BUGFIX] histograms: Fix possible data race when appending exemplars vs metrics gather. #1623

1.20.3 / 2024-09-05

  • [BUGFIX] histograms: Fix possible data race when appending exemplars. #1608

1.20.2 / 2024-08-23

  • [BUGFIX] promhttp: Unset Content-Encoding header when data is uncompressed. #1596

1.20.1 / 2024-08-20

  • [BUGFIX] process-collector: Fixed unregistered descriptor error when using process collector with PedanticRegistry on linux machines. #1587

1.20.0 / 2024-08-14

  • [CHANGE] ⚠️ go-collector: Remove go_memstat_lookups_total metric which was always 0; Go runtime stopped sharing pointer lookup statistics. #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. #1559
  • [FEATURE] go-collector: Add more information to all metrics' HELP e.g. the exact runtime/metrics sourcing each metric (if relevant). #1568 #1578
  • [FEATURE] testutil: Add CollectAndFormat method. #1503
  • [FEATURE] histograms: Add support for exemplars in native histograms. #1471
  • [FEATURE] promhttp: Add experimental support for zstd on scrape, controlled by the request Accept-Encoding header. #1496
  • [FEATURE] api/v1: Add WithLimit parameter to all API methods that supports it. #1544
  • [FEATURE] prometheus: Add support for created timestamps in constant histograms and constant summaries. #1537
  • [FEATURE] process-collector: Add network usage metrics: process_network_receive_bytes_total and process_network_transmit_bytes_total. #1555
  • [FEATURE] promlint: Add duplicated metric lint rule. #1472
  • [BUGFIX] promlint: Relax metric type in name linter rule. #1455
  • [BUGFIX] promhttp: Make sure server instrumentation wrapping supports new and future extra responseWriter methods. #1480
  • [BUGFIX] breaking testutil: Functions using compareMetricFamilies are now failing if filtered metricNames are not in the input. #1424 (reverted in 1.20.5)

1.19.0 / 2024-02-27

The module prometheus/common v0.48.0 introduced an incompatibility when used together with client_golang (See prometheus/client_golang#1448 for more details). If your project uses client_golang and you want to use prometheus/common v0.48.0 or higher, please update client_golang to v1.19.0.

  • [CHANGE] Minimum required go version is now 1.20 (we also test client_golang against new 1.22 version). #1445 #1449
  • [FEATURE] collectors: Add version collector. #1422 #1427

1.18.0 / 2023-12-22

  • [FEATURE] promlint: Allow creation of custom metric validations. #1311
  • [FEATURE] Go programs using client_golang can be built in wasip1 OS. #1350
  • [BUGFIX] histograms: Add timer to reset ASAP after bucket limiting has happened. #1367
  • [BUGFIX] testutil: Fix comparison of metrics with empty Help strings. #1378
  • [ENHANCEMENT] Improved performance of MetricVec.WithLabelValues(...). #1360

... (truncated)

Commits
  • 48e12a1 Merge pull request #1645 from prometheus/cut-1204-pr1424
  • 504ad9b Cut 1.20.5; update comments.
  • 584a7ce Revert "testutil compareMetricFamilies: make less error-prone (#1424)"
  • 05fcde9 Merge pull request #1623 from krajorama/data-race-in-histogram-write
  • 209f4c0 Add changelog
  • 1e398cc native histogram: Fix race between Write and addExemplar
  • ef2f87e Merge pull request #1620 from prometheus/arthursens/prepare-1.20.3
  • 937ac63 Add changelog entry for 1.20.3
  • 6e9914d Merge pull request #1608 from krajorama/index-out-of-range-native-histogram-e...
  • d6b8c89 Update comments with more explanations
  • Additional commits viewable in compare view

Updates github.com/prometheus/common from 0.42.0 to 0.55.0

Release notes

Sourced from github.com/prometheus/common's releases.

v0.55.0

What's Changed

New Contributors

Full Changelog: prometheus/common@v0.54.0...v0.55.0

v0.54.0

What's Changed

New Contributors

Full Changelog: prometheus/common@v0.53.0...v0.54.0

v0.53.0

What's Changed

... (truncated)

Commits
  • 0c7b585 Merge pull request #649 from rajagopalanand/13364
  • 804fbbe Update common Prometheus files (#660)
  • 3f20456 Bump golang.org/x/net from 0.25.0 to 0.26.0 (#657)
  • e31eeaa Bump google.golang.org/protobuf from 1.34.1 to 1.34.2 (#658)
  • 3236a12 Bump golang.org/x/oauth2 from 0.20.0 to 0.21.0 (#656)
  • 1cfb464 Bump github.com/aws/aws-sdk-go from 1.53.14 to 1.54.7 in /sigv4 (#659)
  • ab322ea chore: add HumanizeTimestamp; make ConvertToFloat exportable (#654)
  • 04635d2 Merge pull request #655 from yeya24/change-omit-empty
  • c4974e5 fix test
  • 43f0db5 set http_headers to be omit empty
  • Additional commits viewable in compare view

Updates github.com/prometheus/prometheus from 0.43.0 to 0.300.1

Commits
  • 1f56e84 Merge pull request #15478 from jan--f/prep-release-3.0.1
  • 67d4be7 prepare release 3.0.1
  • c5c222e Merge pull request #15399 from prometheus/labels-utf8-fix
  • 12577e3 Add support for values unescaping on /v1/label/:name/values endpoint
  • 8867571 Add support for utf8 names on /v1/label/:name/values endpoint
  • fee61fb Merge pull request #15434 from tjhop/fix/query-logger-compounding-keys
  • 3e24e84 fix!: stop unbounded memory usage from query log
  • bafb4d6 Merge pull request #15431 from prometheus/beorn7/promql2
  • 4b573e0 promql: Fix subqueries to be really left-open
  • c5d009d Merge pull request #15393 from jan--f/prep-release-3.0.0
  • Additional commits viewable in compare view

Updates github.com/spf13/viper from 1.7.1 to 1.19.0

Release notes

Sourced from github.com/spf13/viper's releases.

v1.19.0

What's Changed

Bug Fixes 🐛

Dependency Updates ⬆️

... (truncated)

Commits
  • b9733f0 build(deps): bump actions/checkout from 4.1.4 to 4.1.6
  • 6ecc5c8 build(deps): bump cachix/install-nix-action from 26 to 27
  • 248c6fd build(deps): bump github/codeql-action from 3.25.4 to 3.25.7
  • abea773 Update references to bketelsen/crypt
  • f17acb4 build(deps): bump golangci/golangci-lint-action from 4.0.0 to 6.0.1
  • 8e285a5 build(deps): bump github/codeql-action from 3.25.2 to 3.25.4
  • 4017620 build(deps): bump actions/setup-go from 5.0.0 to 5.0.1
  • b67e814 build(deps): bump github.com/pelletier/go-toml/v2 from 2.2.1 to 2.2.2
  • 4a182c7 build(deps): bump actions/dependency-review-action from 4.2.5 to 4.3.2
  • 45a0e12 build(deps): bump mheap/github-action-required-labels
  • Additional commits viewable in compare view

Updates github.com/urfave/cli/v2 from 2.3.0 to 2.27.5

Release notes

Sourced from github.com/urfave/cli/v2's releases.

v2.27.5

What's Changed

Full Changelog: urfave/cli@v2.27.4...v2.27.5

v2.27.4

What's Changed

Full Changelog: urfave/cli@v2.27.3...v2.27.4

v2.27.3

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.27.2...v2.27.3

v2.27.2

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.27.1...v2.27.2

v2.27.1

What's Changed

Full Changelog: urfave/cli@v2.27.0...v2.27.1

... (truncated)

Commits
  • f035ffa Merge pull request #1980 from urfave/v2-update-deps
  • 6b0d484 Adjust test data doc to use current md2man format
  • 6227bb0 Update dependencies to latest
  • bcc6869 Merge pull request #1970 from asahasrabuddhe/backport-issue-1884
  • e3ff573 fix: /bin/zsh env variable to retrieve current active shell
  • 9114559 Merge pull request #1956 from BlackHole1/improve-flags-docs
  • 584e28a Merge branch 'v2-maint' into improve-flags-docs
  • 376a256 Update docs/v2/examples/flags.md
  • f21e902 Merge pull request #1963 from dearchap/issue_1962
  • 2a37495 uintt64 -> unint64
  • Additional commits viewable in compare view

Updates go.uber.org/automaxprocs from 1.5.1 to 1.6.0

Release notes

Sourced from go.uber.org/automaxprocs's releases.

v1.6.0

  • Add RoundQuotaFunc option that allows configuration of rounding behavior for floating point CPU quota.

v1.5.3

  • Fix mountinfo parsing when super options have fields with spaces.
  • Fix division by zero while parsing cgroups.

v1.5.2

  • Support child control cgroups
  • Fix file descriptor leak
  • Update dependencies
Changelog

Sourced from go.uber.org/automaxprocs's changelog.

v1.6.0 (2024-07-24)

  • Add RoundQuotaFunc option that allows configuration of rounding behavior for floating point CPU quota.

v1.5.3 (2023-07-19)

  • Fix mountinfo parsing when super options have fields with spaces.
  • Fix division by zero while parsing cgroups.

v1.5.2 (2023-03-16)

  • Support child control cgroups
  • Fix file descriptor leak
  • Update dependencies
Commits

Updates golang.org/x/mod from 0.17.0 to 0.21.0

Commits
  • 46a3137 zip: set GIT_DIR in test when using bare repositories
  • 3afcd4e go.mod: set go version to 1.22.0
  • b1d336c go.mod: update required go version to go1.22
  • bc151c4 README: fix link to x/tools
  • d1f873e modfile: fix Cleanup clobbering Line reference
  • b56a28f modfile: Add support for tool lines
  • 79169e9 LICENSE: update per Google Legal
  • d58be1c sumdb/tlog: set the hash of the empty tree according to RFC 6962
  • 232e49f Revert "module: add COM0 and LPT0 to badWindowsNames"
  • c0bdc7b modfile: add API for godebug lines
  • Additional commits viewable in compare view

Updates google.golang.org/grpc from 1.65.0 to 1.67.1

Release notes

Sourced from google.golang.org/grpc's releases.

Release 1.67.1

Bug Fixes

  • transport: Fix a bug causing stream failures due to miscalculation of the flow control window in both clients and servers. (#7667)
  • xds/server: Fix xDS Server memory leak. (#7681)

Release 1.67.0

Bug Fixes

  • ringhash: when used with multiple EDS priorities, fix bug that could prevent a higher priority from recovering from transient failure. (#7364)

Behavior Changes

  • In accordance with RFC 7540, clients and servers will now reject TLS connections that don't support ALPN. This can be disabled by setting the environment variable GRPC_ENFORCE_ALPN_ENABLED to false (case insensitive). Please file a bug if you encounter any issues with this behavior. The environment variable to revert this behavior will be removed in an upcoming release. (#7535)

Release 1.66.3

Bug Fixes

  • transport: Fix a bug causing stream failures due to miscalculation of the flow control window in both clients and servers. (#7667)
  • xds/server: Fix xDS Server memory leak. (#7681)

Release 1.66.2

Dependencies

  • Remove unintentional dependency on the testing package (#7579)
  • Remove unintentional dependency on the flate package (#7595)

Bug Fixes

  • client: fix a bug that prevented memory reuse after handling unary RPCs (#7571)

Release 1.66.0

New Features

  • metadata: stabilize ValueFromIncomingContext (#7368)
  • client: stabilize the WaitForStateChange and GetState methods, which were previously experimental. (#7425)
  • xds: Implement ADS flow control mechanism (#7458)
  • balancer/rls: Add metrics for data cache and picker internals (#7484, #7495)
  • xds: LRS load reports now include the total_issued_requests field. (#7544)

Bug Fixes

  • grpc: Clients now return status code INTERNAL instead of UNIMPLEMENTED when the server uses an unsupported compressor. This is consistent with the gRPC compression spec. (#7461)

... (truncated)

Commits

Bumps the actions-deps group with 11 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/enriquebris/goconcurrentqueue](https://github.com/enriquebris/goconcurrentqueue) | `0.6.0` | `0.7.0` |
| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.14.0` | `1.20.5` |
| [github.com/prometheus/common](https://github.com/prometheus/common) | `0.42.0` | `0.55.0` |
| [github.com/prometheus/prometheus](https://github.com/prometheus/prometheus) | `0.43.0` | `0.300.1` |
| [github.com/spf13/viper](https://github.com/spf13/viper) | `1.7.1` | `1.19.0` |
| [github.com/urfave/cli/v2](https://github.com/urfave/cli) | `2.3.0` | `2.27.5` |
| [go.uber.org/automaxprocs](https://github.com/uber-go/automaxprocs) | `1.5.1` | `1.6.0` |
| [golang.org/x/mod](https://github.com/golang/mod) | `0.17.0` | `0.21.0` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.65.0` | `1.67.1` |
| google.golang.org/protobuf | `1.34.2` | `1.36.0` |
| [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery) | `0.26.2` | `0.31.1` |


Updates `github.com/enriquebris/goconcurrentqueue` from 0.6.0 to 0.7.0
- [Release notes](https://github.com/enriquebris/goconcurrentqueue/releases)
- [Commits](enriquebris/goconcurrentqueue@v0.6.0...v0.7.0)

Updates `github.com/prometheus/client_golang` from 1.14.0 to 1.20.5
- [Release notes](https://github.com/prometheus/client_golang/releases)
- [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md)
- [Commits](prometheus/client_golang@v1.14.0...v1.20.5)

Updates `github.com/prometheus/common` from 0.42.0 to 0.55.0
- [Release notes](https://github.com/prometheus/common/releases)
- [Changelog](https://github.com/prometheus/common/blob/main/RELEASE.md)
- [Commits](prometheus/common@v0.42.0...v0.55.0)

Updates `github.com/prometheus/prometheus` from 0.43.0 to 0.300.1
- [Release notes](https://github.com/prometheus/prometheus/releases)
- [Changelog](https://github.com/prometheus/prometheus/blob/main/CHANGELOG.md)
- [Commits](prometheus/prometheus@v0.43.0...v0.300.1)

Updates `github.com/spf13/viper` from 1.7.1 to 1.19.0
- [Release notes](https://github.com/spf13/viper/releases)
- [Commits](spf13/viper@v1.7.1...v1.19.0)

Updates `github.com/urfave/cli/v2` from 2.3.0 to 2.27.5
- [Release notes](https://github.com/urfave/cli/releases)
- [Changelog](https://github.com/urfave/cli/blob/main/docs/CHANGELOG.md)
- [Commits](urfave/cli@v2.3.0...v2.27.5)

Updates `go.uber.org/automaxprocs` from 1.5.1 to 1.6.0
- [Release notes](https://github.com/uber-go/automaxprocs/releases)
- [Changelog](https://github.com/uber-go/automaxprocs/blob/master/CHANGELOG.md)
- [Commits](uber-go/automaxprocs@v1.5.1...v1.6.0)

Updates `golang.org/x/mod` from 0.17.0 to 0.21.0
- [Commits](golang/mod@v0.17.0...v0.21.0)

Updates `google.golang.org/grpc` from 1.65.0 to 1.67.1
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.65.0...v1.67.1)

Updates `google.golang.org/protobuf` from 1.34.2 to 1.36.0

Updates `k8s.io/apimachinery` from 0.26.2 to 0.31.1
- [Commits](kubernetes/apimachinery@v0.26.2...v0.31.1)

---
updated-dependencies:
- dependency-name: github.com/enriquebris/goconcurrentqueue
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions-deps
- dependency-name: github.com/prometheus/client_golang
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions-deps
- dependency-name: github.com/prometheus/common
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions-deps
- dependency-name: github.com/prometheus/prometheus
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions-deps
- dependency-name: github.com/spf13/viper
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions-deps
- dependency-name: github.com/urfave/cli/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions-deps
- dependency-name: go.uber.org/automaxprocs
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions-deps
- dependency-name: golang.org/x/mod
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions-deps
- dependency-name: google.golang.org/grpc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions-deps
- dependency-name: google.golang.org/protobuf
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions-deps
- dependency-name: k8s.io/apimachinery
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 23, 2024
@kezhenxu94
Copy link
Member

@dependabot ignore github.com/prometheus/prometheus

Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 23, 2024

OK, I won't notify you about github.com/prometheus/prometheus again, unless you unignore it.

Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 23, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Dec 23, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/actions-deps-b7f4bf2e33 branch December 23, 2024 13:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant