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

Consistent scope name scheme #9494

Closed
codeboten opened this issue Feb 6, 2024 · 8 comments
Closed

Consistent scope name scheme #9494

codeboten opened this issue Feb 6, 2024 · 8 comments
Assignees

Comments

@codeboten
Copy link
Contributor

The meter name (that is translated into scope name) is currently inconsistent in this repository. Some components instantiate a meter with a short form like the following, which is consistent w/ the contrib repo:

otelcol/otlphttp
otelcol/ballast

While others use a fully qualified name, which is consistent w/ go instrumentations:

go.opentelemetry.io/collector/service/process_telemetry
go.opentelemetry.io/collector/exporterhelper
go.opentelemetry.io/collector/obsreport/processor
go.opentelemetry.io/collector/processor/batchprocessor

These should be consistent.

@bogdandrutu
Copy link
Member

go.opentelemetry.io/collector/service/process_telemetry

here is probably just otelcol?

go.opentelemetry.io/collector/exporterhelper

here we should calculate the scope name at runtime based on the exporter that uses the helper correct?

go.opentelemetry.io/collector/obsreport/processor

same as above.

@codeboten
Copy link
Contributor Author

@bogdandrutu are you in favour of keeping the short form or the long form scope name? or both?

here is probably just otelcol?

I guess it depends on how specific we want this scope to be. Would it make sense to scope it to the individual go modules that are published? This way it would allow a consumer of the telemetry to identify package versions and maybe if there's a problem with a specific module version, they would be able look at the scope information to narrow down their search?

@andrzej-stencel
Copy link
Member

I like the fully qualified name a bit more, as it is more descriptive. We also have some components of different types that have the same name, which would result in same short scope name, for example:

I lean towards the opinion that e.g. exporterhelper should use the scope of the exporter that it is embedded in. I'm not convinced that we should surface Go module names in the metrics exposed to users - this feels like an implementation detail. We don't want the metrics to change when we move functionality from one module to another, which might otherwise be a purely non-functional refactoring.

@dashpole
Copy link
Contributor

dashpole commented Feb 7, 2024

I've liked when the scope name is actually a link to the godocs for the package (e.g. go.opentelemetry.io/collector/exporter/exporterhelper). It removes any ambiguity for someone trying to figure out where the metric is defined, or what it is about.

@bogdandrutu
Copy link
Member

I've liked when the scope name is actually a link to the godocs for the package (e.g. go.opentelemetry.io/collector/exporter/exporterhelper). It removes any ambiguity for someone trying to figure out where the metric is defined, or what it is about.

The problem with this, is that we need also a attribute to describe the component (exporter name) for which you record the metric when is a shared library like exporterhelper. I do understand that using go.opentelemetry.io/collector/exporter/exporterhelper may help but comes with that downside, which we may be fine.

codeboten pushed a commit to codeboten/opentelemetry-collector that referenced this issue Feb 12, 2024
This is part of open-telemetry#9494

Signed-off-by: Alex Boten <aboten@lightstep.com>
codeboten pushed a commit that referenced this issue Feb 14, 2024
This is part of #9494

---------

Signed-off-by: Alex Boten <aboten@lightstep.com>
@dmitryax
Copy link
Member

dmitryax commented Mar 5, 2024

Looks like this is resolved for the core repo. We still use short version in contrib, e.g. otelcol/countconnector. We need to update that as well. I see 3 options:

  1. Keep the same prefix: go.opentelemetry.io/collector/connector/countconnector
  2. Use current repo address: github.com/open-telemetry/opentelemetry-collector-contrib/connector/countconnector
  3. Use go.opentelemetry.io/collector-contrib/connector/countconnector assuming we are going to migrate the modules to vanity URLs in contrib Migrate the modules to use vanity url go.opentelemetry.io/collector-contrib opentelemetry-collector-contrib#21469

What do you think?

dmitryax added a commit that referenced this issue Mar 5, 2024
Don't use hardcoded "go.opentelemetry.io/collector" prefix. Provide a
way to specify the `scope_name` in metadata.yaml. If not provided, try
to use the go package name.

Updates
#9494
dmitryax added a commit to dmitryax/opentelemetry-collector-contrib that referenced this issue Mar 6, 2024
This change migrates `generate` make target from using deprecated cmd/mdatagen defined in this repo to mdategen defined in core repository.

In order to avoid breaking changes for end users, we keep the scope names used in this repo the same as before. This required defining them explicitly in metadata.yaml files. We can update them after open-telemetry/opentelemetry-collector#9494 and open-telemetry#21469 are resolver.

Taking the opportunity that that the scope names can be explicitly defined, this PR also updates missing scope names for extensions with inconsistent package names e.g.: awsproxy and jaegerremotesampling. It's not a breaking change because the generated meter and tracer are not being used yet.
dmitryax added a commit to open-telemetry/opentelemetry-collector-contrib that referenced this issue Mar 6, 2024
…#31609)

This change migrates `generate` make target from using the deprecated
`cmd/mdatagen` in this repository to mdategen defined in core
repository.

To avoid breaking changes for the end users, we keep the scope names
used in this repo as before. This required defining them explicitly in
metadata.yaml files. We can update them after
open-telemetry/opentelemetry-collector#9494
and
#21469
are resolved.

Taking the opportunity that the scope names can be explicitly defined,
this PR also updates missing scope names for extensions with
inconsistent package names e.g.: `awsproxy` and `jaegerremotesampling`.
It's not a breaking change because the generated meter and tracer are
not being used yet.

This change unblocks
#30495
DougManton pushed a commit to DougManton/opentelemetry-collector-contrib that referenced this issue Mar 13, 2024
…open-telemetry#31609)

This change migrates `generate` make target from using the deprecated
`cmd/mdatagen` in this repository to mdategen defined in core
repository.

To avoid breaking changes for the end users, we keep the scope names
used in this repo as before. This required defining them explicitly in
metadata.yaml files. We can update them after
open-telemetry/opentelemetry-collector#9494
and
open-telemetry#21469
are resolved.

Taking the opportunity that the scope names can be explicitly defined,
this PR also updates missing scope names for extensions with
inconsistent package names e.g.: `awsproxy` and `jaegerremotesampling`.
It's not a breaking change because the generated meter and tracer are
not being used yet.

This change unblocks
open-telemetry#30495
XinRanZhAWS pushed a commit to XinRanZhAWS/opentelemetry-collector-contrib that referenced this issue Mar 13, 2024
…open-telemetry#31609)

This change migrates `generate` make target from using the deprecated
`cmd/mdatagen` in this repository to mdategen defined in core
repository.

To avoid breaking changes for the end users, we keep the scope names
used in this repo as before. This required defining them explicitly in
metadata.yaml files. We can update them after
open-telemetry/opentelemetry-collector#9494
and
open-telemetry#21469
are resolved.

Taking the opportunity that the scope names can be explicitly defined,
this PR also updates missing scope names for extensions with
inconsistent package names e.g.: `awsproxy` and `jaegerremotesampling`.
It's not a breaking change because the generated meter and tracer are
not being used yet.

This change unblocks
open-telemetry#30495
@andrzej-stencel
Copy link
Member

Option 3. makes most sense to me.

@dmitryax perhaps add emojis to each option (e.g. 1 🎉 , 2 ❤️ , 3 🚀) to enable voting on your comment. 🙂

steves-canva added a commit to Canva/opentelemetry-collector that referenced this issue Jun 13, 2024
* [configgrpc] Add `ToServerContext`  (#9624)

Adds a new function, `ToServerContext` which does what `ToServer` does,
but takes a `context.Context`. After the next release we'll deprecate
`ToServerContext` and rename it to `ToServer`.

Related to
https://github.com/open-telemetry/opentelemetry-collector/issues/9490

---------

Co-authored-by: Dmitrii Anoshin <anoshindx@gmail.com>

* [chore] Fix prepare-release.yml (#9675)

**Description:** 

Fixes
https://github.com/open-telemetry/opentelemetry-collector/actions/runs/8139621131/workflow

```
The workflow is not valid. .github/workflows/prepare-release.yml (Line: 54, Col: 9): 
Job 'prepare-release' depends on unknown job 'validate-version'.
```

#9409 introduced some errors because the workflow is not tested on PRs,
#9668 partly fixed them and I mistakenly believed Github would notify me
of further errors in the workflow, the same way it did with this one,
but it did not.

* [chore] Prepare release v1.3.0/v0.96.0 (#9680)

The following commands were run to prepare this release:
- make chlog-update VERSION=v1.3.0/v0.96.0
- make prepare-release PREVIOUS_VERSION=1.2.0 RELEASE_CANDIDATE=1.3.0
MODSET=stable
- make prepare-release PREVIOUS_VERSION=0.95.0 RELEASE_CANDIDATE=0.96.0
MODSET=beta

* [chore] Update release schedule (#9678)

**Description:** 

Updates release schedule. The March 18th release overlaps with KubeCon
EU, so I am shifting everything by one week starting with that release.
This means the next release cycle will have three weeks.

* [chore] Add reminder to update release schedule to release issue template (#9679)

**Description:** Add reminder to update the release schedule

* [chore] Update prepare release examples (#9677)

**Description:** 

After #8975 we decided to not do any more explicit release candidates so
we can update the examples.

Note that due to #9676 this is not tested until we explicitly run the
workflow on the next release, but the change is small enough to seem
safe to merge.

* [cmd/mdatagen] Pull new changes from contrib (#9683)

To completely migrate mdatagen from contrib to core, we need to pull
latest changes:

-
https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/31500
-
https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/31503
-
https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/31520
-
https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/31525
-
https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/31530
-
https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/31532

---------

Co-authored-by: Alex Boten <223565+codeboten@users.noreply.github.com>

* [chore] fix type in confighttp readme (#9690)

This doc incorrectly uses the otlp exporter as an example of using
confighttp. That exporter doesn't use confighttp

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>

* Update module github.com/stretchr/testify to v1.9.0 (#9695)

[![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/stretchr/testify](https://github.com/stretchr/testify) |
`v1.8.4` -> `v1.9.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fstretchr%2ftestify/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fstretchr%2ftestify/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fstretchr%2ftestify/v1.8.4/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fstretchr%2ftestify/v1.8.4/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>stretchr/testify (github.com/stretchr/testify)</summary>

###
[`v1.9.0`](https://github.com/stretchr/testify/releases/tag/v1.9.0)

[Compare
Source](https://github.com/stretchr/testify/compare/v1.8.4...v1.9.0)

#### What's Changed

- Fix Go modules version by
[@&#8203;SuperQ](https://github.com/SuperQ) in
[https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394)
- Document that require is not safe to call in created goroutines by
[@&#8203;programmer04](https://github.com/programmer04) in
[https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392)
- Remove myself from MAINTAINERS.md by
[@&#8203;mvdkleijn](https://github.com/mvdkleijn) in
[https://github.com/stretchr/testify/pull/1367](https://github.com/stretchr/testify/pull/1367)
- Correct spelling/grammar by
[@&#8203;echarrod](https://github.com/echarrod) in
[https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389)
- docs: Update URLs in README by
[@&#8203;davidjb](https://github.com/davidjb) in
[https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349)
- Update mockery link to Github Pages in README by
[@&#8203;LandonTClipp](https://github.com/LandonTClipp) in
[https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346)
- docs: Fix typos in tests and comments by
[@&#8203;alexandear](https://github.com/alexandear) in
[https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410)
- CI: tests from go1.17 by [@&#8203;SuperQ](https://github.com/SuperQ)
in
[https://github.com/stretchr/testify/pull/1409](https://github.com/stretchr/testify/pull/1409)
- Fix adding ? when no values passed by
[@&#8203;lesichkovm](https://github.com/lesichkovm) in
[https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320)
- codegen: use standard header for generated files by
[@&#8203;dolmen](https://github.com/dolmen) in
[https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406)
- mock: AssertExpectations log reason only on failure by
[@&#8203;hikyaru-suzuki](https://github.com/hikyaru-suzuki) in
[https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360)
- assert: fix flaky TestNeverTrue by
[@&#8203;dolmen](https://github.com/dolmen) in
[https://github.com/stretchr/testify/pull/1417](https://github.com/stretchr/testify/pull/1417)
- README: fix typos "set up" vs "setup" by
[@&#8203;ossan-dev](https://github.com/ossan-dev) in
[https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428)
- mock: move regexp compilation outside of `Called` by
[@&#8203;aud10slave](https://github.com/aud10slave) in
[https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631)
- assert: refactor internal func getLen() by
[@&#8203;dolmen](https://github.com/dolmen) in
[https://github.com/stretchr/testify/pull/1445](https://github.com/stretchr/testify/pull/1445)
- mock: deprecate type AnythingOfTypeArgument
([#&#8203;1434](https://github.com/stretchr/testify/issues/1434)) by
[@&#8203;dolmen](https://github.com/dolmen) in
[https://github.com/stretchr/testify/pull/1441](https://github.com/stretchr/testify/pull/1441)
- Remove no longer needed assert.canConvert by
[@&#8203;alexandear](https://github.com/alexandear) in
[https://github.com/stretchr/testify/pull/1470](https://github.com/stretchr/testify/pull/1470)
- assert: ObjectsAreEqual: use time.Equal for time.Time types by
[@&#8203;tscales](https://github.com/tscales) in
[https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464)
- Bump actions/checkout from 3 to 4 by
[@&#8203;dependabot](https://github.com/dependabot) in
[https://github.com/stretchr/testify/pull/1466](https://github.com/stretchr/testify/pull/1466)
- Bump actions/setup-go from 3.2.0 to 4.1.0 by
[@&#8203;dependabot](https://github.com/dependabot) in
[https://github.com/stretchr/testify/pull/1451](https://github.com/stretchr/testify/pull/1451)
- fix: make EventuallyWithT concurrency safe by
[@&#8203;czeslavo](https://github.com/czeslavo) in
[https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395)
- assert: fix httpCode and HTTPBody occur panic when http.Handler read
Body by [@&#8203;hidu](https://github.com/hidu) in
[https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484)
- assert.EqualExportedValues: fix handling of arrays by
[@&#8203;zrbecker](https://github.com/zrbecker) in
[https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473)
- .github: use latest Go versions by
[@&#8203;kevinburkesegment](https://github.com/kevinburkesegment) in
[https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489)
- assert: Deprecate EqualExportedValues by
[@&#8203;HaraldNordgren](https://github.com/HaraldNordgren) in
[https://github.com/stretchr/testify/pull/1488](https://github.com/stretchr/testify/pull/1488)
- suite: refactor test assertions by
[@&#8203;alexandear](https://github.com/alexandear) in
[https://github.com/stretchr/testify/pull/1474](https://github.com/stretchr/testify/pull/1474)
- suite: fix SetupSubTest and TearDownSubTest execution order by
[@&#8203;linusbarth](https://github.com/linusbarth) in
[https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471)
- docs: Fix deprecation comments for http package by
[@&#8203;alexandear](https://github.com/alexandear) in
[https://github.com/stretchr/testify/pull/1335](https://github.com/stretchr/testify/pull/1335)
- Add map support doc comments to Subset and NotSubset by
[@&#8203;jedevc](https://github.com/jedevc) in
[https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306)
- TestErrorIs/TestNotErrorIs: check error message contents by
[@&#8203;craig65535](https://github.com/craig65535) in
[https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435)
- suite: fix subtest names (fix
[#&#8203;1501](https://github.com/stretchr/testify/issues/1501)) by
[@&#8203;dolmen](https://github.com/dolmen) in
[https://github.com/stretchr/testify/pull/1504](https://github.com/stretchr/testify/pull/1504)
- assert: improve unsafe.Pointer tests by
[@&#8203;dolmen](https://github.com/dolmen) in
[https://github.com/stretchr/testify/pull/1505](https://github.com/stretchr/testify/pull/1505)
- assert: simplify isNil implementation by
[@&#8203;dolmen](https://github.com/dolmen) in
[https://github.com/stretchr/testify/pull/1506](https://github.com/stretchr/testify/pull/1506)
- assert.InEpsilonSlice: fix expected/actual order and other
improvements by [@&#8203;dolmen](https://github.com/dolmen) in
[https://github.com/stretchr/testify/pull/1483](https://github.com/stretchr/testify/pull/1483)
- Fix dependency cycle with objx
[#&#8203;1292](https://github.com/stretchr/testify/issues/1292) by
[@&#8203;dolmen](https://github.com/dolmen) in
[https://github.com/stretchr/testify/pull/1453](https://github.com/stretchr/testify/pull/1453)
- mock: refactor TestIsArgsEqual by
[@&#8203;dolmen](https://github.com/dolmen) in
[https://github.com/stretchr/testify/pull/1444](https://github.com/stretchr/testify/pull/1444)
- mock: optimize argument matching checks by
[@&#8203;dolmen](https://github.com/dolmen) in
[https://github.com/stretchr/testify/pull/1416](https://github.com/stretchr/testify/pull/1416)
- assert: fix TestEventuallyTimeout by
[@&#8203;dolmen](https://github.com/dolmen) in
[https://github.com/stretchr/testify/pull/1412](https://github.com/stretchr/testify/pull/1412)
- CI: add go 1.21 in GitHub Actions by
[@&#8203;dolmen](https://github.com/dolmen) in
[https://github.com/stretchr/testify/pull/1450](https://github.com/stretchr/testify/pull/1450)
- suite: fix recoverAndFailOnPanic to report test failure at the right
location by [@&#8203;dolmen](https://github.com/dolmen) in
[https://github.com/stretchr/testify/pull/1502](https://github.com/stretchr/testify/pull/1502)
- Update maintainers by
[@&#8203;brackendawson](https://github.com/brackendawson) in
[https://github.com/stretchr/testify/pull/1533](https://github.com/stretchr/testify/pull/1533)
- assert: Fix EqualValues to handle overflow/underflow by
[@&#8203;arjunmahishi](https://github.com/arjunmahishi) in
[https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531)
- assert: better formatting for Len() error by
[@&#8203;kevinburkesegment](https://github.com/kevinburkesegment) in
[https://github.com/stretchr/testify/pull/1485](https://github.com/stretchr/testify/pull/1485)
- Ensure AssertExpectations does not fail in skipped tests by
[@&#8203;ianrose14](https://github.com/ianrose14) in
[https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331)
- suite: fix deadlock in suite.Require()/Assert() by
[@&#8203;arjunmahishi](https://github.com/arjunmahishi) in
[https://github.com/stretchr/testify/pull/1535](https://github.com/stretchr/testify/pull/1535)
- Revert "assert: ObjectsAreEqual: use time.Equal for time.Time type" by
[@&#8203;brackendawson](https://github.com/brackendawson) in
[https://github.com/stretchr/testify/pull/1537](https://github.com/stretchr/testify/pull/1537)
- \[chore] Add issue templates by
[@&#8203;arjunmahishi](https://github.com/arjunmahishi) in
[https://github.com/stretchr/testify/pull/1538](https://github.com/stretchr/testify/pull/1538)
- Update the build status badge by
[@&#8203;brackendawson](https://github.com/brackendawson) in
[https://github.com/stretchr/testify/pull/1540](https://github.com/stretchr/testify/pull/1540)
- Update Github workflows setup-go to V5 by
[@&#8203;hendrywiranto](https://github.com/hendrywiranto) in
[https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545)
- Support Pointer to Struct in EqualExportedValues by
[@&#8203;Lucaber](https://github.com/Lucaber) in
[https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517)
- README: drop link to gorc by
[@&#8203;guettli](https://github.com/guettli) in
[https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248)
- http_assertions: honour the msgAndArgs provided with each assertion by
[@&#8203;arjunmahishi](https://github.com/arjunmahishi) in
[https://github.com/stretchr/testify/pull/1548](https://github.com/stretchr/testify/pull/1548)
- fix typos in comments and tests by
[@&#8203;ccoVeille](https://github.com/ccoVeille) in
[https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247)
- Include the auto-release notes in releases by
[@&#8203;brackendawson](https://github.com/brackendawson) in
[https://github.com/stretchr/testify/pull/1550](https://github.com/stretchr/testify/pull/1550)
- Add `NotImplements` and variants by
[@&#8203;hslatman](https://github.com/hslatman) in
[https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385)
- Add support to compare uintptr by
[@&#8203;bogdandrutu](https://github.com/bogdandrutu) in
[https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339)
- build(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2 by
[@&#8203;dependabot](https://github.com/dependabot) in
[https://github.com/stretchr/testify/pull/1552](https://github.com/stretchr/testify/pull/1552)

#### New Contributors

- [@&#8203;SuperQ](https://github.com/SuperQ) made their first
contribution in
[https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394)
- [@&#8203;programmer04](https://github.com/programmer04) made their
first contribution in
[https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392)
- [@&#8203;echarrod](https://github.com/echarrod) made their first
contribution in
[https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389)
- [@&#8203;davidjb](https://github.com/davidjb) made their first
contribution in
[https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349)
- [@&#8203;LandonTClipp](https://github.com/LandonTClipp) made their
first contribution in
[https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346)
- [@&#8203;alexandear](https://github.com/alexandear) made their first
contribution in
[https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410)
- [@&#8203;lesichkovm](https://github.com/lesichkovm) made their first
contribution in
[https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320)
- [@&#8203;dolmen](https://github.com/dolmen) made their first
contribution in
[https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406)
- [@&#8203;hikyaru-suzuki](https://github.com/hikyaru-suzuki) made
their first contribution in
[https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360)
- [@&#8203;ossan-dev](https://github.com/ossan-dev) made their first
contribution in
[https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428)
- [@&#8203;aud10slave](https://github.com/aud10slave) made their first
contribution in
[https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631)
- [@&#8203;tscales](https://github.com/tscales) made their first
contribution in
[https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464)
- [@&#8203;czeslavo](https://github.com/czeslavo) made their first
contribution in
[https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395)
- [@&#8203;hidu](https://github.com/hidu) made their first
contribution in
[https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484)
- [@&#8203;zrbecker](https://github.com/zrbecker) made their first
contribution in
[https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473)
- [@&#8203;kevinburkesegment](https://github.com/kevinburkesegment)
made their first contribution in
[https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489)
- [@&#8203;linusbarth](https://github.com/linusbarth) made their first
contribution in
[https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471)
- [@&#8203;jedevc](https://github.com/jedevc) made their first
contribution in
[https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306)
- [@&#8203;craig65535](https://github.com/craig65535) made their first
contribution in
[https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435)
- [@&#8203;arjunmahishi](https://github.com/arjunmahishi) made their
first contribution in
[https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531)
- [@&#8203;ianrose14](https://github.com/ianrose14) made their first
contribution in
[https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331)
- [@&#8203;hendrywiranto](https://github.com/hendrywiranto) made their
first contribution in
[https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545)
- [@&#8203;Lucaber](https://github.com/Lucaber) made their first
contribution in
[https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517)
- [@&#8203;guettli](https://github.com/guettli) made their first
contribution in
[https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248)
- [@&#8203;ccoVeille](https://github.com/ccoVeille) made their first
contribution in
[https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247)
- [@&#8203;hslatman](https://github.com/hslatman) made their first
contribution in
[https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385)
- [@&#8203;bogdandrutu](https://github.com/bogdandrutu) made their
first contribution in
[https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339)

**Full Changelog**:
https://github.com/stretchr/testify/compare/v1.8.4...v1.9.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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjAuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIyMC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

* Update module go.opentelemetry.io/build-tools/semconvgen to v0.13.0 (#9701)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[go.opentelemetry.io/build-tools/semconvgen](https://github.com/open-telemetry/opentelemetry-go-build-tools)
| `v0.12.0` -> `v0.13.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fbuild-tools%2fsemconvgen/v0.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/go.opentelemetry.io%2fbuild-tools%2fsemconvgen/v0.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/go.opentelemetry.io%2fbuild-tools%2fsemconvgen/v0.12.0/v0.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fbuild-tools%2fsemconvgen/v0.12.0/v0.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>open-telemetry/opentelemetry-go-build-tools
(go.opentelemetry.io/build-tools/semconvgen)</summary>

###
[`v0.13.0`](https://github.com/open-telemetry/opentelemetry-go-build-tools/blob/HEAD/CHANGELOG.md#v0130)

[Compare
Source](https://github.com/open-telemetry/opentelemetry-go-build-tools/compare/v0.12.0...v0.13.0)

##### 🛑 Breaking changes 🛑

- `all`: bump minimal Go version to 1.20
([#&#8203;474](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/474))

##### 💡 Enhancements 💡

- `multimod`: ignore excluded-modules when using sync to update
dependencies
([#&#8203;442](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/442))
This allows users of the sync command to sync all modules in a monorepo,
including
those listed in the excluded-modules. This is useful for repositories
where some modules
may not yet be ready for releasing (therefore listed under
excluded-modules) but their
    dependencies still need to be managed via multimod.

- `crosslink`: Add `--skip` flag to ignore specified go modules
([#&#8203;480](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/480))

- `multimod`: add support for `--commit-hash` to allow users to
overwrite the tag in a versions.yaml file
([#&#8203;422](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/422))
This feature allows users to specify a tag (i.e. main) when they want to
update
    modules.

- `chloggen`: support a custom changelog summary template
([#&#8203;501](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/501))
The changelog summary template can be customized by configuring a custom
template with the `summary_template` configuration setting.
The default template provides a starting point for a custom template:
https://github.com/open-telemetry/opentelemetry-go-build-tools/blob/v0.13.0/chloggen/internal/chlog/summary.tmpl

##### 🧰 Bug fixes 🧰

- `crosslink`: Fix Windows produces backslashes instead of slashes
([#&#8203;458](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/458))
This fixes the issue of Windows produces backslashes instead of slashes
when crosslinking
    dependencies in go.mod files on Windows.

- `dbotconf`: Fix Windows produces backslashes instead of slashes
([#&#8203;264](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/264))
This fixes the issue of Windows produces backslashes instead of slashes
when generating
    Dependabot configuration files on Windows.

- `multimod`: Fix tagging on Windows
([#&#8203;464](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/464))
    This fixes the issue of `multimod tag` failing on Windows.

- `multimod`: Fix to log 'Using versioning file' and 'Successfully
deleted module tags' to stderr instead of stdout
([#&#8203;507](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/507))

- `chloggen`: change generated files permissions from 0755 to 0644
([#&#8203;457](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/457))

</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjAuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIyMC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

* Update module golang.org/x/tools to v0.19.0 (#9708)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| golang.org/x/tools | `v0.18.0` -> `v0.19.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2ftools/v0.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2ftools/v0.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2ftools/v0.18.0/v0.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2ftools/v0.18.0/v0.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjAuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIyMC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

* [cmd/mdatagen] Update the scope name generation method (#9693)

Don't use hardcoded "go.opentelemetry.io/collector" prefix. Provide a
way to specify the `scope_name` in metadata.yaml. If not provided, try
to use the go package name.

Updates
https://github.com/open-telemetry/opentelemetry-collector/issues/9494

* Update module go.opentelemetry.io/collector/exporter/otlphttpexporter to v0.96.0 (#9703)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[go.opentelemetry.io/collector/exporter/otlphttpexporter](https://github.com/open-telemetry/opentelemetry-collector)
| `v0.95.0` -> `v0.96.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fcollector%2fexporter%2fotlphttpexporter/v0.96.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/go.opentelemetry.io%2fcollector%2fexporter%2fotlphttpexporter/v0.96.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/go.opentelemetry.io%2fcollector%2fexporter%2fotlphttpexporter/v0.95.0/v0.96.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fcollector%2fexporter%2fotlphttpexporter/v0.95.0/v0.96.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>open-telemetry/opentelemetry-collector
(go.opentelemetry.io/collector/exporter/otlphttpexporter)</summary>

###
[`v0.96.0`](https://github.com/open-telemetry/opentelemetry-collector/blob/HEAD/CHANGELOG.md#v130v0960)

[Compare
Source](https://github.com/open-telemetry/opentelemetry-collector/compare/v0.95.0...v0.96.0)

##### 🛑 Breaking changes 🛑

- `configgrpc`: Remove deprecated `GRPCClientSettings`,
`GRPCServerSettings`, and `ServerConfig.ToListenerContext`.
([#&#8203;9616](https://github.com/open-telemetry/opentelemetry-collector/issues/9616))
- `confighttp`: Remove deprecated `HTTPClientSettings`,
`NewDefaultHTTPClientSettings`, and `CORSSettings`.
([#&#8203;9625](https://github.com/open-telemetry/opentelemetry-collector/issues/9625))
- `confignet`: Removes deprecated `NetAddr` and `TCPAddr`
([#&#8203;9614](https://github.com/open-telemetry/opentelemetry-collector/issues/9614))

##### 💡 Enhancements 💡

- `configtls`: Add `include_system_ca_certs_pool` to configtls, allowing
to load system certs and additional custom certs.
([#&#8203;7774](https://github.com/open-telemetry/opentelemetry-collector/issues/7774))
- `otelcol`: Add `ConfigProviderSettings` to `CollectorSettings`
([#&#8203;4759](https://github.com/open-telemetry/opentelemetry-collector/issues/4759))
This allows passing a custom list of `confmap.Provider`s to
`otelcol.NewCommand`.
- `pdata`: Update to OTLP v1.1.0
([#&#8203;9587](https://github.com/open-telemetry/opentelemetry-collector/issues/9587))
    Introduces Span and SpanLink flags.
- `confmap`: Update mapstructure to use a maintained fork,
github.com/go-viper/mapstructure/v2.
([#&#8203;9634](https://github.com/open-telemetry/opentelemetry-collector/issues/9634))

[https://github.com/mitchellh/mapstructure/issues/349](https://github.com/mitchellh/mapstructure/issues/349)/349
for context.

##### 🧰 Bug fixes 🧰

- `configretry`: Allow max_elapsed_time to be set to 0 for indefinite
retries
([#&#8203;9641](https://github.com/open-telemetry/opentelemetry-collector/issues/9641))
- `client`: Make `Metadata.Get` thread safe
([#&#8203;9595](https://github.com/open-telemetry/opentelemetry-collector/issues/9595))

</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjAuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIyMC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Update module go.opentelemetry.io/collector/receiver/otlpreceiver to v0.96.0 (#9704)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[go.opentelemetry.io/collector/receiver/otlpreceiver](https://github.com/open-telemetry/opentelemetry-collector)
| `v0.95.0` -> `v0.96.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fcollector%2freceiver%2fotlpreceiver/v0.96.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/go.opentelemetry.io%2fcollector%2freceiver%2fotlpreceiver/v0.96.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/go.opentelemetry.io%2fcollector%2freceiver%2fotlpreceiver/v0.95.0/v0.96.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fcollector%2freceiver%2fotlpreceiver/v0.95.0/v0.96.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>open-telemetry/opentelemetry-collector
(go.opentelemetry.io/collector/receiver/otlpreceiver)</summary>

###
[`v0.96.0`](https://github.com/open-telemetry/opentelemetry-collector/blob/HEAD/CHANGELOG.md#v130v0960)

[Compare
Source](https://github.com/open-telemetry/opentelemetry-collector/compare/v0.95.0...v0.96.0)

##### 🛑 Breaking changes 🛑

- `configgrpc`: Remove deprecated `GRPCClientSettings`,
`GRPCServerSettings`, and `ServerConfig.ToListenerContext`.
([#&#8203;9616](https://github.com/open-telemetry/opentelemetry-collector/issues/9616))
- `confighttp`: Remove deprecated `HTTPClientSettings`,
`NewDefaultHTTPClientSettings`, and `CORSSettings`.
([#&#8203;9625](https://github.com/open-telemetry/opentelemetry-collector/issues/9625))
- `confignet`: Removes deprecated `NetAddr` and `TCPAddr`
([#&#8203;9614](https://github.com/open-telemetry/opentelemetry-collector/issues/9614))

##### 💡 Enhancements 💡

- `configtls`: Add `include_system_ca_certs_pool` to configtls, allowing
to load system certs and additional custom certs.
([#&#8203;7774](https://github.com/open-telemetry/opentelemetry-collector/issues/7774))
- `otelcol`: Add `ConfigProviderSettings` to `CollectorSettings`
([#&#8203;4759](https://github.com/open-telemetry/opentelemetry-collector/issues/4759))
This allows passing a custom list of `confmap.Provider`s to
`otelcol.NewCommand`.
- `pdata`: Update to OTLP v1.1.0
([#&#8203;9587](https://github.com/open-telemetry/opentelemetry-collector/issues/9587))
    Introduces Span and SpanLink flags.
- `confmap`: Update mapstructure to use a maintained fork,
github.com/go-viper/mapstructure/v2.
([#&#8203;9634](https://github.com/open-telemetry/opentelemetry-collector/issues/9634))

[https://github.com/mitchellh/mapstructure/issues/349](https://github.com/mitchellh/mapstructure/issues/349)/349
for context.

##### 🧰 Bug fixes 🧰

- `configretry`: Allow max_elapsed_time to be set to 0 for indefinite
retries
([#&#8203;9641](https://github.com/open-telemetry/opentelemetry-collector/issues/9641))
- `client`: Make `Metadata.Get` thread safe
([#&#8203;9595](https://github.com/open-telemetry/opentelemetry-collector/issues/9595))

</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjAuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIyMC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* [chore] [cmd/mdatagen] Update status.go template (#9713)

To produce the same output as mdatagen in contrib. It makes it easy to
compare the diff for the mdatagen migration.

* Update module golang.org/x/sys to v0.18.0 (#9706)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| golang.org/x/sys | `v0.17.0` -> `v0.18.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fsys/v0.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fsys/v0.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fsys/v0.17.0/v0.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fsys/v0.17.0/v0.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjAuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIyMC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

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: Alex Boten <223565+codeboten@users.noreply.github.com>

* Update module google.golang.org/protobuf to v1.33.0 (#9712)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[google.golang.org/protobuf](https://github.com/protocolbuffers/protobuf-go)
| `v1.32.0` -> `v1.33.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/google.golang.org%2fprotobuf/v1.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/google.golang.org%2fprotobuf/v1.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/google.golang.org%2fprotobuf/v1.32.0/v1.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/google.golang.org%2fprotobuf/v1.32.0/v1.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjcuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIyNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

* Update module go.opentelemetry.io/collector/exporter/otlpexporter to v0.96.0 (#9702)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[go.opentelemetry.io/collector/exporter/otlpexporter](https://github.com/open-telemetry/opentelemetry-collector)
| `v0.95.0` -> `v0.96.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fcollector%2fexporter%2fotlpexporter/v0.96.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/go.opentelemetry.io%2fcollector%2fexporter%2fotlpexporter/v0.96.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/go.opentelemetry.io%2fcollector%2fexporter%2fotlpexporter/v0.95.0/v0.96.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fcollector%2fexporter%2fotlpexporter/v0.95.0/v0.96.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>open-telemetry/opentelemetry-collector
(go.opentelemetry.io/collector/exporter/otlpexporter)</summary>

###
[`v0.96.0`](https://github.com/open-telemetry/opentelemetry-collector/blob/HEAD/CHANGELOG.md#v130v0960)

[Compare
Source](https://github.com/open-telemetry/opentelemetry-collector/compare/v0.95.0...v0.96.0)

##### 🛑 Breaking changes 🛑

- `configgrpc`: Remove deprecated `GRPCClientSettings`,
`GRPCServerSettings`, and `ServerConfig.ToListenerContext`.
([#&#8203;9616](https://github.com/open-telemetry/opentelemetry-collector/issues/9616))
- `confighttp`: Remove deprecated `HTTPClientSettings`,
`NewDefaultHTTPClientSettings`, and `CORSSettings`.
([#&#8203;9625](https://github.com/open-telemetry/opentelemetry-collector/issues/9625))
- `confignet`: Removes deprecated `NetAddr` and `TCPAddr`
([#&#8203;9614](https://github.com/open-telemetry/opentelemetry-collector/issues/9614))

##### 💡 Enhancements 💡

- `configtls`: Add `include_system_ca_certs_pool` to configtls, allowing
to load system certs and additional custom certs.
([#&#8203;7774](https://github.com/open-telemetry/opentelemetry-collector/issues/7774))
- `otelcol`: Add `ConfigProviderSettings` to `CollectorSettings`
([#&#8203;4759](https://github.com/open-telemetry/opentelemetry-collector/issues/4759))
This allows passing a custom list of `confmap.Provider`s to
`otelcol.NewCommand`.
- `pdata`: Update to OTLP v1.1.0
([#&#8203;9587](https://github.com/open-telemetry/opentelemetry-collector/issues/9587))
    Introduces Span and SpanLink flags.
- `confmap`: Update mapstructure to use a maintained fork,
github.com/go-viper/mapstructure/v2.
([#&#8203;9634](https://github.com/open-telemetry/opentelemetry-collector/issues/9634))

[https://github.com/mitchellh/mapstructure/issues/349](https://github.com/mitchellh/mapstructure/issues/349)/349
for context.

##### 🧰 Bug fixes 🧰

- `configretry`: Allow max_elapsed_time to be set to 0 for indefinite
retries
([#&#8203;9641](https://github.com/open-telemetry/opentelemetry-collector/issues/9641))
- `client`: Make `Metadata.Get` thread safe
([#&#8203;9595](https://github.com/open-telemetry/opentelemetry-collector/issues/9595))

</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjAuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIyMC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Boten <223565+codeboten@users.noreply.github.com>

* Update github-actions deps (#9691)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/cache](https://github.com/actions/cache) | action | patch |
`v4.0.0` -> `v4.0.1` |
| [github/codeql-action](https://github.com/github/codeql-action) |
action | patch | `v3.24.5` -> `v3.24.6` |

---

### Release Notes

<details>
<summary>actions/cache (actions/cache)</summary>

### [`v4.0.1`](https://github.com/actions/cache/releases/tag/v4.0.1)

[Compare
Source](https://github.com/actions/cache/compare/v4.0.0...v4.0.1)

##### What's Changed

- Update README.md by
[@&#8203;yacaovsnc](https://github.com/yacaovsnc) in
[https://github.com/actions/cache/pull/1304](https://github.com/actions/cache/pull/1304)
- Update examples by [@&#8203;yacaovsnc](https://github.com/yacaovsnc)
in
[https://github.com/actions/cache/pull/1305](https://github.com/actions/cache/pull/1305)
- Update actions/cache publish flow by
[@&#8203;bethanyj28](https://github.com/bethanyj28) in
[https://github.com/actions/cache/pull/1340](https://github.com/actions/cache/pull/1340)
- Update [@&#8203;actions/cache](https://github.com/actions/cache) by
[@&#8203;bethanyj28](https://github.com/bethanyj28) in
[https://github.com/actions/cache/pull/1341](https://github.com/actions/cache/pull/1341)

##### New Contributors

- [@&#8203;yacaovsnc](https://github.com/yacaovsnc) made their first
contribution in
[https://github.com/actions/cache/pull/1304](https://github.com/actions/cache/pull/1304)

**Full Changelog**: https://github.com/actions/cache/compare/v4...v4.0.1

</details>

<details>
<summary>github/codeql-action (github/codeql-action)</summary>

###
[`v3.24.6`](https://github.com/github/codeql-action/compare/v3.24.5...v3.24.6)

[Compare
Source](https://github.com/github/codeql-action/compare/v3.24.5...v3.24.6)

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

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://github.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/open-telemetry/opentelemetry-collector).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjAuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIyMC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Update module golang.org/x/net to v0.22.0 (#9705)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| golang.org/x/net | `v0.21.0` -> `v0.22.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fnet/v0.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fnet/v0.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fnet/v0.21.0/v0.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fnet/v0.21.0/v0.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjAuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIyNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

* Update module google.golang.org/grpc to v1.62.1 (#9711)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) |
`v1.62.0` -> `v1.62.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/google.golang.org%2fgrpc/v1.62.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/google.golang.org%2fgrpc/v1.62.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/google.golang.org%2fgrpc/v1.62.0/v1.62.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/google.golang.org%2fgrpc/v1.62.0/v1.62.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>grpc/grpc-go (google.golang.org/grpc)</summary>

### [`v1.62.1`](https://github.com/grpc/grpc-go/releases/tag/v1.62.1):
Release 1.62.1

[Compare
Source](https://github.com/grpc/grpc-go/compare/v1.62.0...v1.62.1)

### Bug Fixes

- xds: fix a bug that results in `no matching virtual host found` RPC
errors due to a difference between the target and LDS resource names
([#&#8203;6997](https://github.com/grpc/grpc-go/issues/6997))
- server: fixed stats handler data `InPayload.Length` for unary RPC
calls ([#&#8203;6766](https://github.com/grpc/grpc-go/issues/6766))
- Special Thanks: [@&#8203;hueypark](https://github.com/hueypark)
- grpc: the experimental `RecvBufferPool` `DialOption` and
`ServerOption` are now active during unary RPCs with compression
([#&#8203;6766](https://github.com/grpc/grpc-go/issues/6766))
- Special Thanks: [@&#8203;hueypark](https://github.com/hueypark)
- grpc: trim whitespaces in `accept-encoding` header before determining
compressors
    -   Special Thanks: [@&#8203;sercand](https://github.com/sercand)

</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjcuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIyNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

* Update module go.opentelemetry.io/build-tools/multimod to v0.13.0 (#9700)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[go.opentelemetry.io/build-tools/multimod](https://github.com/open-telemetry/opentelemetry-go-build-tools)
| `v0.12.0` -> `v0.13.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fbuild-tools%2fmultimod/v0.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/go.opentelemetry.io%2fbuild-tools%2fmultimod/v0.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/go.opentelemetry.io%2fbuild-tools%2fmultimod/v0.12.0/v0.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fbuild-tools%2fmultimod/v0.12.0/v0.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>open-telemetry/opentelemetry-go-build-tools
(go.opentelemetry.io/build-tools/multimod)</summary>

###
[`v0.13.0`](https://github.com/open-telemetry/opentelemetry-go-build-tools/blob/HEAD/CHANGELOG.md#v0130)

[Compare
Source](https://github.com/open-telemetry/opentelemetry-go-build-tools/compare/v0.12.0...v0.13.0)

##### 🛑 Breaking changes 🛑

- `all`: bump minimal Go version to 1.20
([#&#8203;474](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/474))

##### 💡 Enhancements 💡

- `multimod`: ignore excluded-modules when using sync to update
dependencies
([#&#8203;442](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/442))
This allows users of the sync command to sync all modules in a monorepo,
including
those listed in the excluded-modules. This is useful for repositories
where some modules
may not yet be ready for releasing (therefore listed under
excluded-modules) but their
    dependencies still need to be managed via multimod.

- `crosslink`: Add `--skip` flag to ignore specified go modules
([#&#8203;480](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/480))

- `multimod`: add support for `--commit-hash` to allow users to
overwrite the tag in a versions.yaml file
([#&#8203;422](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/422))
This feature allows users to specify a tag (i.e. main) when they want to
update
    modules.

- `chloggen`: support a custom changelog summary template
([#&#8203;501](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/501))
The changelog summary template can be customized by configuring a custom
template with the `summary_template` configuration setting.
The default template provides a starting point for a custom template:
https://github.com/open-telemetry/opentelemetry-go-build-tools/blob/v0.13.0/chloggen/internal/chlog/summary.tmpl

##### 🧰 Bug fixes 🧰

- `crosslink`: Fix Windows produces backslashes instead of slashes
([#&#8203;458](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/458))
This fixes the issue of Windows produces backslashes instead of slashes
when crosslinking
    dependencies in go.mod files on Windows.

- `dbotconf`: Fix Windows produces backslashes instead of slashes
([#&#8203;264](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/264))
This fixes the issue of Windows produces backslashes instead of slashes
when generating
    Dependabot configuration files on Windows.

- `multimod`: Fix tagging on Windows
([#&#8203;464](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/464))
    This fixes the issue of `multimod tag` failing on Windows.

- `multimod`: Fix to log 'Using versioning file' and 'Successfully
deleted module tags' to stderr instead of stdout
([#&#8203;507](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/507))

- `chloggen`: change generated files permissions from 0755 to 0644
([#&#8203;457](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/457))

</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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjAuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIyNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

* Update module go.opentelemetry.io/build-tools/crosslink to v0.13.0 (#9699)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[go.opentelemetry.io/build-tools/crosslink](https://github.com/open-telemetry/opentelemetry-go-build-tools)
| `v0.12.1-0.20240121161735-d70c842b1bf5` -> `v0.13.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fbuild-tools%2fcrosslink/v0.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/go.opentelemetry.io%2fbuild-tools%2fcrosslink/v0.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/go.opentelemetry.io%2fbuild-tools%2fcrosslink/v0.12.1-0.20240121161735-d70c842b1bf5/v0.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fbuild-tools%2fcrosslink/v0.12.1-0.20240121161735-d70c842b1bf5/v0.13.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>open-telemetry/opentelemetry-go-build-tools
(go.opentelemetry.io/build-tools/crosslink)</summary>

###
[`v0.13.0`](https://github.com/open-telemetry/opentelemetry-go-build-tools/blob/HEAD/CHANGELOG.md#v0130)

[Compare
Source](https://github.com/open-telemetry/opentelemetry-go-build-tools/compare/v0.12.0...v0.13.0)

##### 🛑 Breaking changes 🛑

- `all`: bump minimal Go version to 1.20
([#&#8203;474](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/474))

##### 💡 Enhancements 💡

- `multimod`: ignore excluded-modules when using sync to update
dependencies
([#&#8203;442](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/442))
This allows users of the sync command to sync all modules in a monorepo,
including
those listed in the excluded-modules. This is useful for repositories
where some modules
may not yet be ready for releasing (therefore listed under
excluded-modules) but their
    dependencies still need to be managed via multimod.

- `crosslink`: Add `--skip` flag to ignore specified go modules
([#&#8203;480](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/480))

- `multimod`: add support for `--commit-hash` to allow users to
overwrite the tag in a versions.yaml file
([#&#8203;422](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/422))
This feature allows users to specify a tag (i.e. main) when they want to
update
    modules.

- `chloggen`: support a custom changelog summary template
([#&#8203;501](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/501))
The changelog summary template can be customized by configuring a custom
template with the `summary_template` configuration setting.
The default template provides a starting point for a custom template:
https://github.com/open-telemetry/opentelemetry-go-build-tools/blob/v0.13.0/chloggen/internal/chlog/summary.tmpl

##### 🧰 Bug fixes 🧰

- `crosslink`: Fix Windows produces backslashes instead of slashes
([#&#8203;458](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/458))
This fixes the issue of Windows produces backslashes instead of slashes
when crosslinking
    dependencies in go.mod files on Windows.

- `dbotconf`: Fix Windows produces backslashes instead of slashes
([#&#8203;264](https://github.com/open-telemetry/opentelemetry-go-build-tools/issues/264))
This fixes the issue of Windows produces backslashes instead of slashes
when generating
    …
@codeboten codeboten added this to the Self observability milestone Jul 25, 2024
codeboten added a commit to codeboten/opentelemetry-collector-contrib that referenced this issue Aug 1, 2024
This is part of open-telemetry/opentelemetry-collector#9494

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
codeboten added a commit to open-telemetry/opentelemetry-collector-contrib that referenced this issue Aug 6, 2024
The scope_name fields in these metadata.yaml files were not being used
anywhere, removing them.

Part of
open-telemetry/opentelemetry-collector#9494

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
Doing this in a single PR as there are no additional changes other than
running the generation.

Part of open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
…emetry#34547)

Update the scope name for telemetry produced by the
statsdreceiverreceiver from otelcol/statsdreceiver to
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/statsdreceiverreceiver

Part of
open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
…telemetry#34546)

Update the scope name for telemetry produced by the
otelarrowreceiverreceiver from otelcol/otelarrowreceiver to
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/otelarrowreceiverreceiver

Part of
open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
…emetry#34524)

Update the scope name for telemetry produced by the
chronyreceiverreceiver from otelcol/chronyreceiver to
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/chronyreceiverreceiver

Part of
open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
…#34550)

Doing this in a single PR as there are no additional changes other than
running the generation.

Part of open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
…metry#34545)

Update the scope name for telemetry produced by the
mysqlreceiverreceiver from otelcol/mysqlreceiver to
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/mysqlreceiverreceiver

Part of
open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
…lemetry#34544)

Update the scope name for telemetry produced by the
mongodbreceiverreceiver from otelcol/mongodbreceiver to
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/mongodbreceiverreceiver

Part of
open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
…en-telemetry#34543)

Update the scope name for telemetry produced by the
mongodbatlasreceiverreceiver from otelcol/mongodbatlasreceiver to
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/mongodbatlasreceiverreceiver

Part of
open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
…telemetry#34542)

Update the scope name for telemetry produced by the
memcachedreceiverreceiver from otelcol/memcachedreceiver to
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/memcachedreceiverreceiver

Part of
open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
…metry#34539)

Update the scope name for telemetry produced by the
kafkareceiverreceiver from otelcol/kafkareceiver to
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/kafkareceiverreceiver

Part of
open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
…en-telemetry#34538)

Update the scope name for telemetry produced by the
kafkametricsreceiverreceiver from otelcol/kafkametricsreceiver to
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/kafkametricsreceiverreceiver

Part of
open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
…pen-telemetry#34534)

Update the scope name for telemetry produced by the
fluentforwardreceiverreceiver from otelcol/fluentforwardreceiver to
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/fluentforwardreceiverreceiver

Part of
open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
…n-telemetry#34528)

Update the scope name for telemetry produced by the
dockerstatsreceiverreceiver from otelcol/dockerstatsreceiver to
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/dockerstatsreceiverreceiver

Part of
open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
…telemetry#34531)

Update the scope name for telemetry produced by the
filestatsreceiverreceiver from otelcol/filestatsreceiver to
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/filestatsreceiverreceiver

Part of
open-telemetry/opentelemetry-collector#9494

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
…4583)

Update the scope name for telemetry produced by the countconnector from
otelcol/countconnector to

github.com/open-telemetry/opentelemetry-collector-contrib/connector/countconnector

Part of
open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
…metry#34593)

Update the scope name for telemetry produced by the
googlespannerreceiver from otelcol/googlecloudspannermetrics to
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/googlecloudspannermetrics

Part of open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
Update the scope name for telemetry produced by the snmpreceiver from
otelcol/snmpreceiver to
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/snmpreceiver

Part of open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
…ry#34589)

Update the scope name for telemetry produced by the prometheusreceiver
from otelcol/prometheusreceiver to
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/prometheusreceiver

Part of
open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
…etry#34612)

Update the scope name for telemetry produced by the cloudfoundryreceiver
from otelcol/cloudfoundryreceiver to
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/cloudfoundryreceiver

Part of open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
…ry#34613)

Update the scope name for telemetry produced by the cloudflarereceiver
from otelcol/cloudflare to
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/cloudflarereceiver

Part of open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
…etry#34618)

Update the scope name for telemetry produced by the azuremonitorreceiver
from otelcol/azuremonitorreceiver to
github.com/open-telemetry/opentelemetry-collector-contrib/receiver/azuremonitorreceiver

Part of open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
…metry#34611)

Update the scope name for telemetry produced by the
azureeventhubreceiver from otelcol/azureeventhubreceiver to


github.com/open-telemetry/opentelemetry-collector-contrib/receiver/azureeventhubreceiver

Part of
open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
…ry#34619)

Part of open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
Part of open-telemetry/opentelemetry-collector#9494

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
This has no functional impact, just updating the tests for clarity.

Related to
open-telemetry/opentelemetry-collector#9494

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
This has no functional impact, just updating the tests for clarity.

Related to
open-telemetry/opentelemetry-collector#9494

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
Update scope name to follow the standard of the other components.

Part of open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
Co-authored-by: Curtis Robert <crobert@splunk.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
Update scope name to follow the standard of the other components.

Part of open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
Update scope name to follow the standard of the other components.

Part of open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
f7o pushed a commit to f7o/opentelemetry-collector-contrib that referenced this issue Sep 12, 2024
Update scope name to follow the standard of the other components.

Part of open-telemetry/opentelemetry-collector#9494

---------

Signed-off-by: Alex Boten <223565+codeboten@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
Archived in project
Development

No branches or pull requests

5 participants