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

change api http.client to interface #1387

Merged
merged 1 commit into from Dec 20, 2023
Merged

change api http.client to interface #1387

merged 1 commit into from Dec 20, 2023

Conversation

tsipo
Copy link

@tsipo tsipo commented Nov 22, 2023

Hi there,
The current implementation uses http.Client
The only function which is called for it is Do(req *http.Request) (*http.Response, error)
It is desirable to allow other Client implementations, e.g. github.com/hashicorp/go-retryablehttp/Client which allows retries on various HTTP status codes like 429 (it has its own Request struct but it's easy to wrap it in another struct that will implement the above-mentioned interface). Many commercial solutions implementing Prometheus API (e.g. Grafana Cloud) have rate limiting. Thank you.

@ArthurSens
Copy link
Member

Sounds like a valid use case :)

Could you sign your commit to make CI happy?

…e.g. github.com/hashicorp/go-retryablehttp)

Signed-off-by: Roy Reshef <rreshef@densify.com>
@tsipo tsipo changed the title change api client to interface change api http.client to interface Nov 22, 2023
@tsipo
Copy link
Author

tsipo commented Nov 22, 2023

@ArthurSens Apologies, I just saw the CI complaint and did that :-)

api/client.go Show resolved Hide resolved
@tsipo tsipo requested a review from kakkoyun November 27, 2023 15:34
@tsipo
Copy link
Author

tsipo commented Dec 5, 2023

Hello all, can anyone please update on the status of this one? Thanks.

Copy link
Member

@ArthurSens ArthurSens left a comment

Choose a reason for hiding this comment

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

LGTM

I believe the only way we can break this is if we end up adding new methods to the HttpClient interface. I don't think we'll need anything more than Do() in the near future though 🤔

I'll keep this open for another week just in case @kakkoyun or @bwplotka want to express a different opinion

@tsipo
Copy link
Author

tsipo commented Dec 13, 2023

LGTM

I believe the only way we can break this is if we end up adding new methods to the HttpClient interface. I don't think we'll need anything more than Do() in the near future though 🤔

I'll keep this open for another week just in case @kakkoyun or @bwplotka want to express a different opinion

Thank you @ArthurSens.

FWIW I have tested it recently quite a bit using the commit to densify-dev/retryable-prometheus-client (referred to above) and the sample code I have included in my comment on @kakkoyun 's requested change. It works just fine.

In case you need to add new functions to the HttpClient interface you are most welcome to ask for my assistance with it, shouldn't be too difficult 😄 .

@ArthurSens ArthurSens merged commit 239b123 into prometheus:main Dec 20, 2023
8 checks passed
@@ -36,14 +36,18 @@ var DefaultRoundTripper http.RoundTripper = &http.Transport{
TLSHandshakeTimeout: 10 * time.Second,
}

type HttpClient interface {
Copy link
Member

Choose a reason for hiding this comment

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

Why not using simply http.RoundTripper?

Copy link
Member

Choose a reason for hiding this comment

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

Also if anything this is not following style guide (should be HTTPClient) and does not have commentary as public interface

Copy link
Member

Choose a reason for hiding this comment

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

It's bit different method name, but still.. RoundTrip(*Request) (*Response, error)

In theory the api/http packages are experimental so we can change them with breaking changes.

Copy link
Member

Choose a reason for hiding this comment

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

But even with all of this the use case mentioned was possible without this change I believe:

There is even documentation how to do it here: github.com/hashicorp/go-retryablehttp/Client

Copy link
Author

@tsipo tsipo Dec 22, 2023

Choose a reason for hiding this comment

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

Hi @bwplotka , thanks for your comments.

Your suggested solution (sorry, somehow I missed that in hashicorp's docs) to use their StandardClient() converter to the library's http.Client works - I have just tried that out and saw retries. So the use-case is possible without this change.

In view of that, you can decide. I still don't think that adding the interface is a bad idea as this is what the Prometheus client requires (only the Do() function). It's true that hashicorp's client gives you a converter to the standard client, but you are now relying on that. I'll leave it up to you.

Copy link
Member

@bwplotka bwplotka left a comment

Choose a reason for hiding this comment

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

Hm, I think we could revert this. Additional interface is not needed, http.Client has RoundTripper which is replaceable. Plus the mentioned hashicorp project has a converter to http.Client: https://github.com/hashicorp/go-retryablehttp?tab=readme-ov-file#getting-a-stdlib-httpclient-with-retries

@@ -36,14 +36,18 @@ var DefaultRoundTripper http.RoundTripper = &http.Transport{
TLSHandshakeTimeout: 10 * time.Second,
}

type HttpClient interface {
Copy link
Member

Choose a reason for hiding this comment

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

But even with all of this the use case mentioned was possible without this change I believe:

There is even documentation how to do it here: github.com/hashicorp/go-retryablehttp/Client

@bwplotka
Copy link
Member

It's easy to miss but it's very common to create a new http (std Go) Client with Roundtripper which has the same signature as Do (just different name):

&http.Client{Transport: <round tripper with `RoundTrip(*Request) (*Response, error)` method>}

@ArthurSens
Copy link
Member

Thanks Bartek for taking a deeper look at this, and apologies for also missing that the use case was already possible 😅

I agree that having multiple ways for doing the same thing confusing, let's revert it 👍

@ArthurSens ArthurSens mentioned this pull request Dec 23, 2023
@tsipo
Copy link
Author

tsipo commented Dec 23, 2023

Thank you @bwplotka and @ArthurSens for your comments.
I think the main reason is confusion / ambiguity in the design decisions of Go HTTP client and the way these are used, in general and in this repository too.

It's true - as @bwplotka pointed out - that you can easily wrap a fully-fledged Client struct with a RoundTripper which delegates its RoundTrip() function to the Client's Do() function, and then use that RoundTripper as a new Client's Transport. That's exactly what hashicorp's StandardClient() function does BTW.

The question is - and that is maybe a bit philosophical - is that the right thing to do?

The documentation of RoundTripper.RoundTrip() says (l. 118-119):
// RoundTrip executes a single HTTP transaction, returning
// a Response for the provided Request.
Moreover, its documentation states
For control over HTTP client headers, redirect policy, and other settings, create a Client
and
For control over proxies, TLS configuration, keep-alives, compression, and other settings, create a Transport

In practice we see many cases, including in this repo, where a RoundTripper is used to set HTTP headers (e.g. various authz headers).
The retry RoundTripper takes it one step further. Should it still be considered a single HTTP transaction? From the PoV of the user probably yes, as they don't care the Client may need to retry till they get the final response. But from the PoV of the Client itself? It may be multiple HTTP requests, after each one the response is drained before the retry takes place. Question of transactions and meta-transactions, I guess.

Merry Christmas!

@bwplotka
Copy link
Member

Oh yea, I agree there might be something to improve in Go, even if it's just documentation. I read the documentation you referred differently (maybe you are right)--I read it as:

For control over HTTP client headers, redirect policy, and other settings, create a Client

Those are the things to supply via request with configurable headers and some specific implementation of Client settings. This is what you can configure on client and this is the "source" of settings.

For control over proxies, TLS configuration, keep-alives, compression, and other settings, create a Transport

This is what you can configure with specific implementation of transport.

However... we don't talk about any std mechanisms here -- we are extending the client and transport and here. I think this part of docs does not mention extensibility topic at all, only what's in std types.

The extensibility is done via RoundTripper. Historically it was used for much more than in the docs, perhaps overused, but it allowed huge innovation e.g. client side load balancing and other crazy things (e.g. hashicorp retries).

Plus if you look on http.Client implementation it only checks http.Request request, sets std headers, sets deadlines 12, calls RoundTripper and handles response, redirects.

Thus, generally it makes no point to extend client by interfacing Do(...)--in fact it will also limit extensibility as RoundTrippers are commonly chained, and http.Client creates an amazing starting point of that chain via Do, so RoundTrippers can be chained. (:

Merry Christmas!

renovate bot added a commit to open-feature/flagd that referenced this pull request Dec 28, 2023
….0 (#1110)

[![Mend
Renovate](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.17.0` -> `v1.18.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_golang/v1.18.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.18.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.17.0/v1.18.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.17.0/v1.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>prometheus/client_golang
(github.com/prometheus/client_golang)</summary>

###
[`v1.18.0`](https://togithub.com/prometheus/client_golang/releases/tag/v1.18.0):
v0.18.0

[Compare
Source](https://togithub.com/prometheus/client_golang/compare/v1.17.0...v1.18.0)

#### What's Changed

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

#### New Contributors

- [@&#8203;srenatus](https://togithub.com/srenatus) made their first
contribution in
[prometheus/client_golang#1350
- [@&#8203;jadolg](https://togithub.com/jadolg) made their first
contribution in
[prometheus/client_golang#1342
- [@&#8203;manas-rust](https://togithub.com/manas-rust) made their first
contribution in
[prometheus/client_golang#1383
- [@&#8203;bluekeyes](https://togithub.com/bluekeyes) made their first
contribution in
[prometheus/client_golang#1378
- [@&#8203;tsipo](https://togithub.com/tsipo) made their first
contribution in
[prometheus/client_golang#1387

**Full Changelog**:
prometheus/client_golang@v1.17.0...v1.18.0

</details>

---

### 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.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/open-feature/flagd).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
charithe pushed a commit to cerbos/cerbos that referenced this pull request Jan 2, 2024
[![Mend
Renovate](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](https://togithub.com/aws/aws-sdk-go) |
`v1.49.10` -> `v1.49.13` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go/v1.49.13?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go/v1.49.13?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go/v1.49.10/v1.49.13?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go/v1.49.10/v1.49.13?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
| [github.com/cerbos/cloud-api](https://togithub.com/cerbos/cloud-api) |
`v0.1.12` -> `v0.1.13` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fcerbos%2fcloud-api/v0.1.13?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fcerbos%2fcloud-api/v0.1.13?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fcerbos%2fcloud-api/v0.1.12/v0.1.13?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fcerbos%2fcloud-api/v0.1.12/v0.1.13?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
|
[github.com/prometheus/client_golang](https://togithub.com/prometheus/client_golang)
| `v1.17.0` -> `v1.18.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_golang/v1.18.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.18.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.17.0/v1.18.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.17.0/v1.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
| [github.com/pterm/pterm](https://togithub.com/pterm/pterm) |
`v0.12.72` -> `v0.12.73` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fpterm%2fpterm/v0.12.73?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fpterm%2fpterm/v0.12.73?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fpterm%2fpterm/v0.12.72/v0.12.73?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fpterm%2fpterm/v0.12.72/v0.12.73?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | patch |
| [github.com/rivo/tview](https://togithub.com/rivo/tview) | `5f07813`
-> `b3bd1aa` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2frivo%2ftview/?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2frivo%2ftview/?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-20231206124440-5f078138442e/?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-20231206124440-5f078138442e/?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | digest |
| [gocloud.dev](https://togithub.com/google/go-cloud) | `v0.35.0` ->
`v0.36.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/gocloud.dev/v0.36.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/gocloud.dev/v0.36.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/gocloud.dev/v0.35.0/v0.36.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/gocloud.dev/v0.35.0/v0.36.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>aws/aws-sdk-go (github.com/aws/aws-sdk-go)</summary>

###
[`v1.49.13`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v14913-2023-12-29)

[Compare
Source](https://togithub.com/aws/aws-sdk-go/compare/v1.49.12...v1.49.13)

\===

##### Service Client Updates

-   `service/apprunner`: Updates service API and documentation
-   `service/location`: Updates service API and documentation
-   `service/quicksight`: Updates service API and documentation
- Add LinkEntityArn support for different partitions; Add
UnsupportedUserEditionException in UpdateDashboardLinks API; Add support
for New Reader Experience Topics

###
[`v1.49.12`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v14912-2023-12-28)

[Compare
Source](https://togithub.com/aws/aws-sdk-go/compare/v1.49.11...v1.49.12)

\===

##### Service Client Updates

-   `service/codestar-connections`: Updates service API
- `service/kinesis-video-archived-media`: Updates service API and
documentation
-   `service/sagemaker`: Updates service API and documentation
- Amazon SageMaker Studio now supports Docker access from within app
container

###
[`v1.49.11`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v14911-2023-12-27)

[Compare
Source](https://togithub.com/aws/aws-sdk-go/compare/v1.49.10...v1.49.11)

\===

##### Service Client Updates

-   `service/elasticmapreduce`: Updates service API and documentation
- Add support for customers to modify cluster attribute auto-terminate
post cluster launch

</details>

<details>
<summary>cerbos/cloud-api (github.com/cerbos/cloud-api)</summary>

###
[`v0.1.13`](https://togithub.com/cerbos/cloud-api/compare/v0.1.12...v0.1.13)

[Compare
Source](https://togithub.com/cerbos/cloud-api/compare/v0.1.12...v0.1.13)

</details>

<details>
<summary>prometheus/client_golang
(github.com/prometheus/client_golang)</summary>

###
[`v1.18.0`](https://togithub.com/prometheus/client_golang/releases/tag/v1.18.0)

[Compare
Source](https://togithub.com/prometheus/client_golang/compare/v1.17.0...v1.18.0)

#### What's Changed

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

#### New Contributors

- [@&#8203;srenatus](https://togithub.com/srenatus) made their first
contribution in
[prometheus/client_golang#1350
- [@&#8203;jadolg](https://togithub.com/jadolg) made their first
contribution in
[prometheus/client_golang#1342
- [@&#8203;manas-rust](https://togithub.com/manas-rust) made their first
contribution in
[prometheus/client_golang#1383
- [@&#8203;bluekeyes](https://togithub.com/bluekeyes) made their first
contribution in
[prometheus/client_golang#1378
- [@&#8203;tsipo](https://togithub.com/tsipo) made their first
contribution in
[prometheus/client_golang#1387

**Full Changelog**:
prometheus/client_golang@v1.17.0...v1.18.0

</details>

<details>
<summary>pterm/pterm (github.com/pterm/pterm)</summary>

### [`v0.12.73`](https://togithub.com/pterm/pterm/releases/tag/v0.12.73)

[Compare
Source](https://togithub.com/pterm/pterm/compare/v0.12.72...v0.12.73)

<!-- Release notes generated using configuration in .github/release.yml
at master -->

#### What's Changed

##### Fixes 🔧

- fix(logger): `LogLevelDisabled` does no longer print anything by
[@&#8203;MarvinJWendt](https://togithub.com/MarvinJWendt) in
[pterm/pterm#601

##### Other Changes

- examples: fix typo in demo by
[@&#8203;jrschumacher](https://togithub.com/jrschumacher) in
[pterm/pterm#598

#### New Contributors

- [@&#8203;jrschumacher](https://togithub.com/jrschumacher) made their
first contribution in
[pterm/pterm#598

**Full Changelog**:
pterm/pterm@v0.12.72...v0.12.73

</details>

<details>
<summary>google/go-cloud (gocloud.dev)</summary>

###
[`v0.36.0`](https://togithub.com/google/go-cloud/releases/tag/v0.36.0)

[Compare
Source](https://togithub.com/google/go-cloud/compare/v0.35.0...v0.36.0)

**blob**

- **all**: Allow disabling of `ContentType` auto-detection during
writes.

**pubsub**

- **azuresb**: Added a new auth method to support Service
principal/kubelet identity/Workload identity auth methods.

**docstore**

-   **all**: Add in/not-in operators for Query.
- **gcpfirestore**: Added a missing resource header when running query.

**mysql**

-   Pass TLS config directly to MySQL's config

</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 you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/cerbos/cerbos).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
nono added a commit to cozy/cozy-stack that referenced this pull request Jan 2, 2024
….0 (#4277)

[![Mend
Renovate](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.17.0` -> `v1.18.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_golang/v1.18.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.18.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.17.0/v1.18.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.17.0/v1.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>prometheus/client_golang
(github.com/prometheus/client_golang)</summary>

###
[`v1.18.0`](https://togithub.com/prometheus/client_golang/releases/tag/v1.18.0)

[Compare
Source](https://togithub.com/prometheus/client_golang/compare/v1.17.0...v1.18.0)

#### What's Changed

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

#### New Contributors

- [@&#8203;srenatus](https://togithub.com/srenatus) made their first
contribution in
[prometheus/client_golang#1350
- [@&#8203;jadolg](https://togithub.com/jadolg) made their first
contribution in
[prometheus/client_golang#1342
- [@&#8203;manas-rust](https://togithub.com/manas-rust) made their first
contribution in
[prometheus/client_golang#1383
- [@&#8203;bluekeyes](https://togithub.com/bluekeyes) made their first
contribution in
[prometheus/client_golang#1378
- [@&#8203;tsipo](https://togithub.com/tsipo) made their first
contribution in
[prometheus/client_golang#1387

**Full Changelog**:
prometheus/client_golang@v1.17.0...v1.18.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 6am on Monday" in timezone
Europe/Paris, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **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.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/cozy/cozy-stack).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
jooola pushed a commit to hetznercloud/hcloud-go that referenced this pull request Jan 2, 2024
)

[![Mend
Renovate](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.17.0` -> `v1.18.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_golang/v1.18.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.18.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.17.0/v1.18.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.17.0/v1.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>prometheus/client_golang
(github.com/prometheus/client_golang)</summary>

###
[`v1.18.0`](https://togithub.com/prometheus/client_golang/releases/tag/v1.18.0):
v0.18.0

[Compare
Source](https://togithub.com/prometheus/client_golang/compare/v1.17.0...v1.18.0)

#### What's Changed

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

#### New Contributors

- [@&#8203;srenatus](https://togithub.com/srenatus) made their first
contribution in
[prometheus/client_golang#1350
- [@&#8203;jadolg](https://togithub.com/jadolg) made their first
contribution in
[prometheus/client_golang#1342
- [@&#8203;manas-rust](https://togithub.com/manas-rust) made their first
contribution in
[prometheus/client_golang#1383
- [@&#8203;bluekeyes](https://togithub.com/bluekeyes) made their first
contribution in
[prometheus/client_golang#1378
- [@&#8203;tsipo](https://togithub.com/tsipo) made their first
contribution in
[prometheus/client_golang#1387

**Full Changelog**:
prometheus/client_golang@v1.17.0...v1.18.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 you
are satisfied.

♻ **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.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/hetznercloud/hcloud-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
jooola pushed a commit to hetznercloud/hcloud-cloud-controller-manager that referenced this pull request Jan 2, 2024
)

[![Mend
Renovate](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.17.0` -> `v1.18.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_golang/v1.18.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.18.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.17.0/v1.18.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.17.0/v1.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>prometheus/client_golang
(github.com/prometheus/client_golang)</summary>

###
[`v1.18.0`](https://togithub.com/prometheus/client_golang/releases/tag/v1.18.0):
v0.18.0

[Compare
Source](https://togithub.com/prometheus/client_golang/compare/v1.17.0...v1.18.0)

#### What's Changed

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

#### New Contributors

- [@&#8203;srenatus](https://togithub.com/srenatus) made their first
contribution in
[prometheus/client_golang#1350
- [@&#8203;jadolg](https://togithub.com/jadolg) made their first
contribution in
[prometheus/client_golang#1342
- [@&#8203;manas-rust](https://togithub.com/manas-rust) made their first
contribution in
[prometheus/client_golang#1383
- [@&#8203;bluekeyes](https://togithub.com/bluekeyes) made their first
contribution in
[prometheus/client_golang#1378
- [@&#8203;tsipo](https://togithub.com/tsipo) made their first
contribution in
[prometheus/client_golang#1387

**Full Changelog**:
prometheus/client_golang@v1.17.0...v1.18.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 you
are satisfied.

♻ **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.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/hetznercloud/hcloud-cloud-controller-manager).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
jooola pushed a commit to hetznercloud/csi-driver that referenced this pull request Jan 2, 2024
)

[![Mend
Renovate](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.17.0` -> `v1.18.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_golang/v1.18.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.18.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.17.0/v1.18.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.17.0/v1.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>prometheus/client_golang
(github.com/prometheus/client_golang)</summary>

###
[`v1.18.0`](https://togithub.com/prometheus/client_golang/releases/tag/v1.18.0):
v0.18.0

[Compare
Source](https://togithub.com/prometheus/client_golang/compare/v1.17.0...v1.18.0)

#### What's Changed

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

#### New Contributors

- [@&#8203;srenatus](https://togithub.com/srenatus) made their first
contribution in
[prometheus/client_golang#1350
- [@&#8203;jadolg](https://togithub.com/jadolg) made their first
contribution in
[prometheus/client_golang#1342
- [@&#8203;manas-rust](https://togithub.com/manas-rust) made their first
contribution in
[prometheus/client_golang#1383
- [@&#8203;bluekeyes](https://togithub.com/bluekeyes) made their first
contribution in
[prometheus/client_golang#1378
- [@&#8203;tsipo](https://togithub.com/tsipo) made their first
contribution in
[prometheus/client_golang#1387

**Full Changelog**:
prometheus/client_golang@v1.17.0...v1.18.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 you
are satisfied.

♻ **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.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/hetznercloud/csi-driver).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
bogdandrutu pushed a commit to open-telemetry/opentelemetry-collector that referenced this pull request Jan 2, 2024
[![Mend
Renovate](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.17.0` -> `v1.18.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_golang/v1.18.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.18.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.17.0/v1.18.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.17.0/v1.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>prometheus/client_golang
(github.com/prometheus/client_golang)</summary>

###
[`v1.18.0`](https://togithub.com/prometheus/client_golang/releases/tag/v1.18.0)

[Compare
Source](https://togithub.com/prometheus/client_golang/compare/v1.17.0...v1.18.0)

#### What's Changed

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

#### New Contributors

- [@&#8203;srenatus](https://togithub.com/srenatus) made their first
contribution in
[prometheus/client_golang#1350
- [@&#8203;jadolg](https://togithub.com/jadolg) made their first
contribution in
[prometheus/client_golang#1342
- [@&#8203;manas-rust](https://togithub.com/manas-rust) made their first
contribution in
[prometheus/client_golang#1383
- [@&#8203;bluekeyes](https://togithub.com/bluekeyes) made their first
contribution in
[prometheus/client_golang#1378
- [@&#8203;tsipo](https://togithub.com/tsipo) made their first
contribution in
[prometheus/client_golang#1387

**Full Changelog**:
prometheus/client_golang@v1.17.0...v1.18.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any
time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **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.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
bogdandrutu pushed a commit to open-telemetry/opentelemetry-collector-contrib that referenced this pull request Jan 2, 2024
[![Mend
Renovate](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.17.0` -> `v1.18.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_golang/v1.18.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.18.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.17.0/v1.18.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.17.0/v1.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>prometheus/client_golang
(github.com/prometheus/client_golang)</summary>

###
[`v1.18.0`](https://togithub.com/prometheus/client_golang/releases/tag/v1.18.0)

[Compare
Source](https://togithub.com/prometheus/client_golang/compare/v1.17.0...v1.18.0)

#### What's Changed

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

#### New Contributors

- [@&#8203;srenatus](https://togithub.com/srenatus) made their first
contribution in
[prometheus/client_golang#1350
- [@&#8203;jadolg](https://togithub.com/jadolg) made their first
contribution in
[prometheus/client_golang#1342
- [@&#8203;manas-rust](https://togithub.com/manas-rust) made their first
contribution in
[prometheus/client_golang#1383
- [@&#8203;bluekeyes](https://togithub.com/bluekeyes) made their first
contribution in
[prometheus/client_golang#1378
- [@&#8203;tsipo](https://togithub.com/tsipo) made their first
contribution in
[prometheus/client_golang#1387

**Full Changelog**:
prometheus/client_golang@v1.17.0...v1.18.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any
time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **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.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
kakkoyun added a commit to parca-dev/parca-agent that referenced this pull request Jan 8, 2024
…18.0 (#2401)

[![Mend
Renovate](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.17.0` -> `v1.18.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_golang/v1.18.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.18.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.17.0/v1.18.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.17.0/v1.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>prometheus/client_golang
(github.com/prometheus/client_golang)</summary>

###
[`v1.18.0`](https://togithub.com/prometheus/client_golang/releases/tag/v1.18.0)

[Compare
Source](https://togithub.com/prometheus/client_golang/compare/v1.17.0...v1.18.0)

#### What's Changed

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

#### New Contributors

- [@&#8203;srenatus](https://togithub.com/srenatus) made their first
contribution in
[prometheus/client_golang#1350
- [@&#8203;jadolg](https://togithub.com/jadolg) made their first
contribution in
[prometheus/client_golang#1342
- [@&#8203;manas-rust](https://togithub.com/manas-rust) made their first
contribution in
[prometheus/client_golang#1383
- [@&#8203;bluekeyes](https://togithub.com/bluekeyes) made their first
contribution in
[prometheus/client_golang#1378
- [@&#8203;tsipo](https://togithub.com/tsipo) made their first
contribution in
[prometheus/client_golang#1387

**Full Changelog**:
prometheus/client_golang@v1.17.0...v1.18.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/parca-dev/parca-agent).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
cparkins pushed a commit to AmadeusITGroup/opentelemetry-collector-contrib that referenced this pull request Jan 10, 2024
…lemetry#30250)

[![Mend
Renovate](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.17.0` -> `v1.18.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_golang/v1.18.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.18.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.17.0/v1.18.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.17.0/v1.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>prometheus/client_golang
(github.com/prometheus/client_golang)</summary>

###
[`v1.18.0`](https://togithub.com/prometheus/client_golang/releases/tag/v1.18.0)

[Compare
Source](https://togithub.com/prometheus/client_golang/compare/v1.17.0...v1.18.0)

#### What's Changed

- \[FEATURE] promlint: Allow creation of custom metric validations.
[#&open-telemetry#8203;1311](https://togithub.com/prometheus/client_golang/issues/1311)
- \[FEATURE] Go programs using client_golang can be built in wasip1 OS.
[#&open-telemetry#8203;1350](https://togithub.com/prometheus/client_golang/issues/1350)
- \[BUGFIX] histograms: Add timer to reset ASAP after bucket limiting
has happened.
[#&open-telemetry#8203;1367](https://togithub.com/prometheus/client_golang/issues/1367)
- \[BUGFIX] testutil: Fix comparison of metrics with empty Help strings.
[#&open-telemetry#8203;1378](https://togithub.com/prometheus/client_golang/issues/1378)
- \[ENHANCEMENT] Improved performance of
`MetricVec.WithLabelValues(...)`.
[#&open-telemetry#8203;1360](https://togithub.com/prometheus/client_golang/issues/1360)

#### New Contributors

- [@&open-telemetry#8203;srenatus](https://togithub.com/srenatus) made their first
contribution in
[prometheus/client_golang#1350
- [@&open-telemetry#8203;jadolg](https://togithub.com/jadolg) made their first
contribution in
[prometheus/client_golang#1342
- [@&open-telemetry#8203;manas-rust](https://togithub.com/manas-rust) made their first
contribution in
[prometheus/client_golang#1383
- [@&open-telemetry#8203;bluekeyes](https://togithub.com/bluekeyes) made their first
contribution in
[prometheus/client_golang#1378
- [@&open-telemetry#8203;tsipo](https://togithub.com/tsipo) made their first
contribution in
[prometheus/client_golang#1387

**Full Changelog**:
prometheus/client_golang@v1.17.0...v1.18.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any
time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **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.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants