1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-08-10 22:31:50 +02:00
Commit Graph

3549 Commits

Author SHA1 Message Date
Damien Mathieu
c359e91ea2 Fix dependencies to unreleased sdk/logtest (#6800)
Fixes https://github.com/open-telemetry/opentelemetry-go/issues/6801

`sdk/log/logtest`, which is exported into its own module, is also not
released.
Yet the package upgrade turned it into its own version, which went
unseen because the local import is using a replace statement.
For some reason, this also wasn't triggered when I [checked the contrib
repo](https://github.com/open-telemetry/opentelemetry-go-contrib/blob/main/RELEASING.md#verify-otel-changes).

I believe we need to cut 0.12.1 for those three modules.

---------

Co-authored-by: Robert Pająk <pellared@hotmail.com>
2025-05-21 15:14:07 +02:00
Damien Mathieu
a85ae98dce Release v1.36.0/v0.58.0/v0.12.0 (#6793)
# Overview

Closes https://github.com/open-telemetry/opentelemetry-go/issues/6786

### Added

- Add exponential histogram support in
`go.opentelemetry.io/otel/exporters/prometheus`. (#6421)
- The `go.opentelemetry.io/otel/semconv/v1.31.0` package.
The package contains semantic conventions from the `v1.31.0` version of
the OpenTelemetry Semantic Conventions.
See the [migration documentation](./semconv/v1.31.0/MIGRATION.md) for
information on how to upgrade from
`go.opentelemetry.io/otel/semconv/v1.30.0`. (#6479)
- Add `Recording`, `Scope`, and `Record` types in
`go.opentelemetry.io/otel/log/logtest`. (#6507)
- Add `WithHTTPClient` option to configure the `http.Client` used by
`go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp`.
(#6751)
- Add `WithHTTPClient` option to configure the `http.Client` used by
`go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp`.
(#6752)
- Add `WithHTTPClient` option to configure the `http.Client` used by
`go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp`. (#6688)
- Add `ValuesGetter` in `go.opentelemetry.io/otel/propagation`, a
`TextMapCarrier` that supports retrieving multiple values for a single
key. (#5973)
- Add `Values` method to `HeaderCarrier` to implement the new
`ValuesGetter` interface in `go.opentelemetry.io/otel/propagation`.
(#5973)
- Update `Baggage` in `go.opentelemetry.io/otel/propagation` to retrieve
multiple values for a key when the carrier implements `ValuesGetter`.
(#5973)
- Add `AssertEqual` function in `go.opentelemetry.io/otel/log/logtest`.
(#6662)
- The `go.opentelemetry.io/otel/semconv/v1.32.0` package.
The package contains semantic conventions from the `v1.32.0` version of
the OpenTelemetry Semantic Conventions.
See the [migration documentation](./semconv/v1.32.0/MIGRATION.md) for
information on how to upgrade from
`go.opentelemetry.io/otel/semconv/v1.31.0`(#6782)
- Add `Transform` option in `go.opentelemetry.io/otel/log/logtest`.
(#6794)
- Add `Desc` option in `go.opentelemetry.io/otel/log/logtest`. (#6796)

### Removed

- Drop support for [Go 1.22]. (#6381, #6418)
- Remove `Resource` field from `EnabledParameters` in
`go.opentelemetry.io/otel/sdk/log`. (#6494)
- Remove `RecordFactory` type from
`go.opentelemetry.io/otel/log/logtest`. (#6492)
- Remove `ScopeRecords`, `EmittedRecord`, and `RecordFactory` types from
`go.opentelemetry.io/otel/log/logtest`. (#6507)
- Remove `AssertRecordEqual` function in
`go.opentelemetry.io/otel/log/logtest`, use `AssertEqual` instead.
(#6662)

### Changed

- ⚠️ Update `github.com/prometheus/client_golang` to `v1.21.1`, which
changes the `NameValidationScheme` to `UTF8Validation`.
This allows metrics names to keep original delimiters (e.g. `.`), rather
than replacing with underscores.
This can be reverted by setting
`github.com/prometheus/common/model.NameValidationScheme` to
`LegacyValidation` in `github.com/prometheus/common/model`. (#6433)
- Initialize map with `len(keys)` in `NewAllowKeysFilter` and
`NewDenyKeysFilter` to avoid unnecessary allocations in
`go.opentelemetry.io/otel/attribute`. (#6455)
- `go.opentelemetry.io/otel/log/logtest` is now a separate Go module.
(#6465)
- `go.opentelemetry.io/otel/sdk/log/logtest` is now a separate Go
module. (#6466)
- `Recorder` in `go.opentelemetry.io/otel/log/logtest` no longer
separately stores records emitted by loggers with the same
instrumentation scope. (#6507)
- Improve performance of `BatchProcessor` in
`go.opentelemetry.io/otel/sdk/log` by not exporting when exporter cannot
accept more. (#6569, #6641)

### Deprecated

- Deprecate support for `model.LegacyValidation` for
`go.opentelemetry.io/otel/exporters/prometheus`. (#6449)

### Fixes

- Stop percent encoding header environment variables in
`go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc` and
`go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp`. (#6392)
- Ensure the `noopSpan.tracerProvider` method is not inlined in
`go.opentelemetry.io/otel/trace` so the `go.opentelemetry.io/auto`
instrumentation can instrument non-recording spans. (#6456)
- Use a `sync.Pool` instead of allocating `metricdata.ResourceMetrics`
in `go.opentelemetry.io/otel/exporters/prometheus`. (#6472)

---------

Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
Co-authored-by: Robert Pająk <pellared@hotmail.com>
exporters/stdout/stdoutlog/v0.12.0 exporters/otlp/otlplog/otlploggrpc/v0.12.0 exporters/otlp/otlplog/otlploghttp/v0.12.0 sdk/log/v0.12.0 log/v0.12.0 exporters/prometheus/v0.58.0 sdk/metric/v1.36.0 bridge/opentracing/test/v1.36.0 exporters/otlp/otlptrace/otlptracehttp/v1.36.0 exporters/otlp/otlpmetric/otlpmetrichttp/v1.36.0 exporters/otlp/otlptrace/v1.36.0 exporters/stdout/stdoutmetric/v1.36.0 exporters/stdout/stdouttrace/v1.36.0 exporters/zipkin/v1.36.0 exporters/otlp/otlpmetric/otlpmetricgrpc/v1.36.0 metric/v1.36.0 bridge/opentracing/v1.36.0 exporters/otlp/otlptrace/otlptracegrpc/v1.36.0 sdk/v1.36.0 trace/v1.36.0 bridge/opencensus/v1.36.0 v1.36.0 bridge/opencensus/test/v1.36.0
2025-05-21 09:35:39 +02:00
Robert Pająk
3f85c35038 logtest: add Desc (#6796)
Fixes https://github.com/open-telemetry/opentelemetry-go/issues/6490

Fixes https://github.com/open-telemetry/opentelemetry-go/issues/6341
2025-05-21 09:15:30 +02:00
renovate[bot]
d2fff768dc chore(deps): update module github.com/uudashr/iface to v1.4.0 (#6798)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [github.com/uudashr/iface](https://redirect.github.com/uudashr/iface)
| `v1.3.2` -> `v1.4.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fuudashr%2fiface/v1.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fuudashr%2fiface/v1.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fuudashr%2fiface/v1.3.2/v1.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fuudashr%2fiface/v1.3.2/v1.4.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>uudashr/iface (github.com/uudashr/iface)</summary>

###
[`v1.4.0`](https://redirect.github.com/uudashr/iface/releases/tag/v1.4.0)

[Compare
Source](https://redirect.github.com/uudashr/iface/compare/v1.3.2...v1.4.0)

#### What's Changed

- Add unexported analyzer by
[@&#8203;uudashr](https://redirect.github.com/uudashr) in
[https://github.com/uudashr/iface/pull/12](https://redirect.github.com/uudashr/iface/pull/12)
- Improve diagnostic message by
[@&#8203;uudashr](https://redirect.github.com/uudashr) in
[https://github.com/uudashr/iface/pull/13](https://redirect.github.com/uudashr/iface/pull/13)
- Improve documentation by
[@&#8203;uudashr](https://redirect.github.com/uudashr) in
[https://github.com/uudashr/iface/pull/14](https://redirect.github.com/uudashr/iface/pull/14)

**Full Changelog**:
https://github.com/uudashr/iface/compare/v1.3.2...v1.4.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 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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4xNi4wIiwidXBkYXRlZEluVmVyIjoiNDAuMTYuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-20 20:09:12 +02:00
Tyler Yahn
2d4c9dc115 Add semconv/v1.32.0 (#6782)
- Add the new metric API package structure prototyped in
https://github.com/MrAlias/semconv-go

  Prototypes of new metric API use:
   - https://github.com/MrAlias/opentelemetry-go-contrib/pull/6136
   - https://github.com/MrAlias/opentelemetry-go-contrib/pull/6135
   - https://github.com/MrAlias/opentelemetry-go-contrib/pull/6134
- Generate `semconv/v1.32.0`
- Drop the `kestrel` metric namespace as this is a Java specific
technology

## [`v1.32.0` semantic convention release
notes](https://github.com/open-telemetry/semantic-conventions/releases/tag/v1.32.0):

<div data-pjax="true" data-test-selector="body-content"
data-view-component="true" class="markdown-body my-3"><p>📣 This release
is the second release candidate for the Database Semantic Conventions,
with <strong>db conventions stability planned to be declared in the
subsequent release</strong>.</p>
<h3>🛑 Breaking changes 🛑</h3>
<ul>
<li><code>device</code>: Change the definition of <code>device.id</code>
and make it opt-in. (<a
href="https://github.com/open-telemetry/semantic-conventions/issues/1874"
data-hovercard-type="issue"
data-hovercard-url="/open-telemetry/semantic-conventions/issues/1874/hovercard">#1874</a>,
<a
href="https://github.com/open-telemetry/semantic-conventions/issues/1951"
data-hovercard-type="pull_request"
data-hovercard-url="/open-telemetry/semantic-conventions/pull/1951/hovercard">#1951</a>)</li>
<li><code>feature_flag</code>: Rename <code>evaluation</code> to
<code>result</code> for feature flag evaluation result attributes (<a
href="https://github.com/open-telemetry/semantic-conventions/issues/1989"
data-hovercard-type="pull_request"
data-hovercard-url="/open-telemetry/semantic-conventions/pull/1989/hovercard">#1989</a>)</li>
</ul>
<h3>🚀 New components 🚀</h3>
<ul>
<li><code>app</code>: Create <code>app.installation.id</code> attribute
(<a
href="https://github.com/open-telemetry/semantic-conventions/issues/1874"
data-hovercard-type="issue"
data-hovercard-url="/open-telemetry/semantic-conventions/issues/1874/hovercard">#1874</a>,
<a
href="https://github.com/open-telemetry/semantic-conventions/issues/1897"
data-hovercard-type="pull_request"
data-hovercard-url="/open-telemetry/semantic-conventions/pull/1897/hovercard">#1897</a>)</li>
<li><code>cpython</code>: Add CPython runtime garbage collector metrics
(<a
href="https://github.com/open-telemetry/semantic-conventions/issues/1930"
data-hovercard-type="issue"
data-hovercard-url="/open-telemetry/semantic-conventions/issues/1930/hovercard">#1930</a>)</li>
</ul>
<h3>💡 Enhancements 💡</h3>
<ul>
<li><code>vcs</code>: Add owner and provider name to VCS attribute
registry (<a
href="https://github.com/open-telemetry/semantic-conventions/issues/1452"
data-hovercard-type="issue"
data-hovercard-url="/open-telemetry/semantic-conventions/issues/1452/hovercard">#1452</a>)</li>
<li><code>vcs</code>: Remove fallback value for VCS provider name
attribute (<a
href="https://github.com/open-telemetry/semantic-conventions/issues/2020"
data-hovercard-type="pull_request"
data-hovercard-url="/open-telemetry/semantic-conventions/pull/2020/hovercard">#2020</a>)</li>
<li><code>db</code>: Truncate <code>db.query.summary</code> to 255
characters if parsed from the query (<a
href="https://github.com/open-telemetry/semantic-conventions/issues/1978"
data-hovercard-type="issue"
data-hovercard-url="/open-telemetry/semantic-conventions/issues/1978/hovercard">#1978</a>)</li>
<li><code>db</code>: Normalize spaces in <code>db.operation.name</code>
(if any) (<a
href="https://github.com/open-telemetry/semantic-conventions/issues/2028"
data-hovercard-type="issue"
data-hovercard-url="/open-telemetry/semantic-conventions/issues/2028/hovercard">#2028</a>)</li>
<li><code>db</code>: <code>db.operation.parameter.&lt;key&gt;</code>
should not be captured for batch operations (<a
href="https://github.com/open-telemetry/semantic-conventions/issues/2026"
data-hovercard-type="issue"
data-hovercard-url="/open-telemetry/semantic-conventions/issues/2026/hovercard">#2026</a>)</li>
<li><code>db</code>: Add <code>db.stored_procedure.name</code> (<a
href="https://github.com/open-telemetry/semantic-conventions/issues/1491"
data-hovercard-type="issue"
data-hovercard-url="/open-telemetry/semantic-conventions/issues/1491/hovercard">#1491</a>)</li>
<li><code>gcp</code>: Adds GCP AppHub labels for resource. (<a
href="https://github.com/open-telemetry/semantic-conventions/issues/2006"
data-hovercard-type="pull_request"
data-hovercard-url="/open-telemetry/semantic-conventions/pull/2006/hovercard">#2006</a>)</li>
<li><code>error</code>: Add <code>error.message</code> property for
human-readable error message on events. (<a
href="https://github.com/open-telemetry/semantic-conventions/issues/1992"
data-hovercard-type="pull_request"
data-hovercard-url="/open-telemetry/semantic-conventions/pull/1992/hovercard">#1992</a>)</li>
<li><code>profile</code>: Extend the list of known frame types with a
value for Go and Rust (<a
href="https://github.com/open-telemetry/semantic-conventions/issues/2003"
data-hovercard-type="pull_request"
data-hovercard-url="/open-telemetry/semantic-conventions/pull/2003/hovercard">#2003</a>)</li>
<li><code>otel</code>: Adds SDK self-monitoring metrics for log
processing (<a
href="https://github.com/open-telemetry/semantic-conventions/issues/1921"
data-hovercard-type="pull_request"
data-hovercard-url="/open-telemetry/semantic-conventions/pull/1921/hovercard">#1921</a>)</li>
</ul>
2025-05-20 10:33:50 -07:00
Robert Pająk
fe523bd15a logtest: add Transform (#6794)
Fixes https://github.com/open-telemetry/opentelemetry-go/issues/6491
Fixes https://github.com/open-telemetry/opentelemetry-go/issues/6489

Towards https://github.com/open-telemetry/opentelemetry-go/issues/6341

Per
https://github.com/open-telemetry/opentelemetry-go/pull/6774#discussion_r2091424563
2025-05-20 10:54:48 +02:00
renovate[bot]
e57879908f fix(deps): update googleapis to 55703ea (#6795)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[google.golang.org/genproto/googleapis/api](https://redirect.github.com/googleapis/go-genproto)
| indirect | digest | `5a2f75b` -> `55703ea` |
|
[google.golang.org/genproto/googleapis/rpc](https://redirect.github.com/googleapis/go-genproto)
| indirect | digest | `5a2f75b` -> `55703ea` |
|
[google.golang.org/genproto/googleapis/rpc](https://redirect.github.com/googleapis/go-genproto)
| require | digest | `5a2f75b` -> `55703ea` |

---

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

---

### 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 is behind base branch, or you tick the
rebase/retry checkbox.

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

---

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

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4xNi4wIiwidXBkYXRlZEluVmVyIjoiNDAuMTYuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-19 12:54:54 -07:00
renovate[bot]
af189e5a37 chore(deps): update module github.com/golangci/misspell to v0.7.0 (#6792) 2025-05-19 08:30:05 +02:00
renovate[bot]
836a2ce69d chore(deps): update module github.com/alecthomas/chroma/v2 to v2.18.0 (#6790)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/alecthomas/chroma/v2](https://redirect.github.com/alecthomas/chroma)
| `v2.17.2` -> `v2.18.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2falecthomas%2fchroma%2fv2/v2.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2falecthomas%2fchroma%2fv2/v2.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2falecthomas%2fchroma%2fv2/v2.17.2/v2.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2falecthomas%2fchroma%2fv2/v2.17.2/v2.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>alecthomas/chroma (github.com/alecthomas/chroma/v2)</summary>

###
[`v2.18.0`](https://redirect.github.com/alecthomas/chroma/releases/tag/v2.18.0)

[Compare
Source](https://redirect.github.com/alecthomas/chroma/compare/v2.17.2...v2.18.0)

#### Changelog

-
[`7f0057b`](https://redirect.github.com/alecthomas/chroma/commit/7f0057b)
feat: support for dark mode in chromad
-
[`d87cb47`](https://redirect.github.com/alecthomas/chroma/commit/d87cb47)
chore(deps): update all non-major dependencies
([#&#8203;1077](https://redirect.github.com/alecthomas/chroma/issues/1077))
-
[`79dde77`](https://redirect.github.com/alecthomas/chroma/commit/79dde77)
Added IBM RPG lexer
([#&#8203;1078](https://redirect.github.com/alecthomas/chroma/issues/1078))
-
[`1b932ec`](https://redirect.github.com/alecthomas/chroma/commit/1b932ec)
chore: disable gorilla/csrf upgrades temporarily

</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 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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4xMS4xOCIsInVwZGF0ZWRJblZlciI6IjQwLjExLjE4IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJTa2lwIENoYW5nZWxvZyIsImRlcGVuZGVuY2llcyJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-16 22:07:54 +02:00
renovate[bot]
93f8f13abe chore(deps): update github/codeql-action action to v3.28.18 (#6789)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[github/codeql-action](https://redirect.github.com/github/codeql-action)
| action | patch | `v3.28.17` -> `v3.28.18` |

---

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

---

### Release Notes

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

###
[`v3.28.18`](https://redirect.github.com/github/codeql-action/compare/v3.28.17...v3.28.18)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.28.17...v3.28.18)

</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 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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4xMS4xOCIsInVwZGF0ZWRJblZlciI6IjQwLjExLjE4IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJTa2lwIENoYW5nZWxvZyIsImRlcGVuZGVuY2llcyJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-16 13:08:39 +02:00
renovate[bot]
1556ff2aeb chore(deps): update codecov/codecov-action action to v5.4.3 (#6785)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[codecov/codecov-action](https://redirect.github.com/codecov/codecov-action)
| action | patch | `v5.4.2` -> `v5.4.3` |

---

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

---

### Release Notes

<details>
<summary>codecov/codecov-action (codecov/codecov-action)</summary>

###
[`v5.4.3`](https://redirect.github.com/codecov/codecov-action/blob/HEAD/CHANGELOG.md#v543)

[Compare
Source](https://redirect.github.com/codecov/codecov-action/compare/v5.4.2...v5.4.3)

##### What's Changed

- build(deps): bump github/codeql-action from 3.28.13 to 3.28.17 by
[@&#8203;app/dependabot](https://redirect.github.com/app/dependabot) in
[https://github.com/codecov/codecov-action/pull/1822](https://redirect.github.com/codecov/codecov-action/pull/1822)
- fix: OIDC on forks by
[@&#8203;joseph-sentry](https://redirect.github.com/joseph-sentry) in
[https://github.com/codecov/codecov-action/pull/1823](https://redirect.github.com/codecov/codecov-action/pull/1823)

**Full Changelog**:
https://github.com/codecov/codecov-action/compare/v5.4.2..v5.4.3

</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 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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4xMS4xOCIsInVwZGF0ZWRJblZlciI6IjQwLjExLjE4IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJTa2lwIENoYW5nZWxvZyIsImRlcGVuZGVuY2llcyJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-15 16:11:52 -07:00
renovate[bot]
88f98850cd chore(deps): update golang.org/x/telemetry digest to 98a4f3d (#6784)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| golang.org/x/telemetry | indirect | digest | `155ddd5` -> `98a4f3d` |

---

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

---

### 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 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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4xMS4xOCIsInVwZGF0ZWRJblZlciI6IjQwLjExLjE4IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJTa2lwIENoYW5nZWxvZyIsImRlcGVuZGVuY2llcyJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-15 16:05:14 -07:00
renovate[bot]
a5c4ae5389 fix(deps): update module github.com/prometheus/common to v0.64.0 (#6781)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/prometheus/common](https://redirect.github.com/prometheus/common)
| `v0.63.0` -> `v0.64.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fcommon/v0.64.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fprometheus%2fcommon/v0.64.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fprometheus%2fcommon/v0.63.0/v0.64.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fprometheus%2fcommon/v0.63.0/v0.64.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/common (github.com/prometheus/common)</summary>

###
[`v0.64.0`](https://redirect.github.com/prometheus/common/releases/tag/v0.64.0)

[Compare
Source](https://redirect.github.com/prometheus/common/compare/v0.63.0...v0.64.0)

#### What's Changed

- Add deprecation notice to otlptranslator by
[@&#8203;ArthurSens](https://redirect.github.com/ArthurSens) in
[https://github.com/prometheus/common/pull/773](https://redirect.github.com/prometheus/common/pull/773)
- Synchronize common files from prometheus/prometheus by
[@&#8203;prombot](https://redirect.github.com/prombot) in
[https://github.com/prometheus/common/pull/774](https://redirect.github.com/prometheus/common/pull/774)
- Synchronize common files from prometheus/prometheus by
[@&#8203;prombot](https://redirect.github.com/prombot) in
[https://github.com/prometheus/common/pull/775](https://redirect.github.com/prometheus/common/pull/775)
- Update Go by [@&#8203;SuperQ](https://redirect.github.com/SuperQ) in
[https://github.com/prometheus/common/pull/770](https://redirect.github.com/prometheus/common/pull/770)
- chore: Upgrade golangci-lint to v2 by
[@&#8203;kakkoyun](https://redirect.github.com/kakkoyun) in
[https://github.com/prometheus/common/pull/779](https://redirect.github.com/prometheus/common/pull/779)
- build(deps): bump golang.org/x/net from 0.37.0 to 0.38.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/prometheus/common/pull/777](https://redirect.github.com/prometheus/common/pull/777)
- build(deps): bump google.golang.org/protobuf from 1.36.5 to 1.36.6 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/prometheus/common/pull/776](https://redirect.github.com/prometheus/common/pull/776)
- promslog: Use the default timezone (again) by
[@&#8203;beorn7](https://redirect.github.com/beorn7) in
[https://github.com/prometheus/common/pull/739](https://redirect.github.com/prometheus/common/pull/739)
- Synchronize common files from prometheus/prometheus by
[@&#8203;prombot](https://redirect.github.com/prombot) in
[https://github.com/prometheus/common/pull/787](https://redirect.github.com/prometheus/common/pull/787)
- build(deps): bump github.com/prometheus/client_model from 0.6.1 to
0.6.2 by [@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/prometheus/common/pull/784](https://redirect.github.com/prometheus/common/pull/784)
- build(deps): bump golang.org/x/oauth2 from 0.28.0 to 0.29.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/prometheus/common/pull/785](https://redirect.github.com/prometheus/common/pull/785)
- build(deps): bump golang.org/x/net from 0.38.0 to 0.39.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/prometheus/common/pull/786](https://redirect.github.com/prometheus/common/pull/786)
- refactor(promslog): make `NewNopLogger()` wrapper around `New()` by
[@&#8203;tjhop](https://redirect.github.com/tjhop) in
[https://github.com/prometheus/common/pull/783](https://redirect.github.com/prometheus/common/pull/783)
- build(deps): bump golang.org/x/oauth2 from 0.29.0 to 0.30.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/prometheus/common/pull/788](https://redirect.github.com/prometheus/common/pull/788)

#### New Contributors

- [@&#8203;kakkoyun](https://redirect.github.com/kakkoyun) made their
first contribution in
[https://github.com/prometheus/common/pull/779](https://redirect.github.com/prometheus/common/pull/779)

**Full Changelog**:
https://github.com/prometheus/common/compare/v0.63.0...v0.64.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 is behind base branch, or you tick the
rebase/retry checkbox.

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

---

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

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4xMS4xOCIsInVwZGF0ZWRJblZlciI6IjQwLjExLjE4IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJTa2lwIENoYW5nZWxvZyIsImRlcGVuZGVuY2llcyJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-15 12:13:22 -07:00
Sean Liao
a571c52b0a all: replace math/rand with math/rand/v2 (#6732)
Update to new stdlib apis.

The new Float64 is uniform, which resolves a long comment.


https://cs.opensource.google/go/go/+/refs/tags/go1.24.2:src/math/rand/v2/rand.go;l=209

> // There are exactly 1<<53 float64s in [0,1). Use Intn(1<<53) /
(1<<53).
	return float64(r.Uint64()<<11>>11) / (1 << 53)

```
goos: linux
goarch: amd64
pkg: go.opentelemetry.io/otel/sdk/trace
cpu: 12th Gen Intel(R) Core(TM) i7-1260P
                                 │   old.txt    │               new.txt                │
                                 │    sec/op    │    sec/op     vs base                │
TraceStart/with_a_simple_span-16   387.1n ±  5%   306.8n ± 15%  -20.73% (p=0.000 n=10)
TraceStart/with_several_links-16   542.2n ±  5%   501.0n ±  2%   -7.61% (p=0.000 n=10)
TraceStart/with_attributes-16      521.4n ± 14%   571.6n ±  6%   +9.64% (p=0.009 n=10)
geomean                            478.3n         444.6n         -7.05%

                                 │  old.txt   │               new.txt               │
                                 │    B/op    │    B/op     vs base                 │
TraceStart/with_a_simple_span-16   528.0 ± 0%   528.0 ± 0%       ~ (p=1.000 n=10) ¹
TraceStart/with_several_links-16   704.0 ± 0%   704.0 ± 0%       ~ (p=1.000 n=10) ¹
TraceStart/with_attributes-16      784.0 ± 0%   784.0 ± 0%       ~ (p=1.000 n=10) ¹
geomean                            663.0        663.0       +0.00%
¹ all samples are equal

                                 │  old.txt   │               new.txt               │
                                 │ allocs/op  │ allocs/op   vs base                 │
TraceStart/with_a_simple_span-16   2.000 ± 0%   2.000 ± 0%       ~ (p=1.000 n=10) ¹
TraceStart/with_several_links-16   3.000 ± 0%   3.000 ± 0%       ~ (p=1.000 n=10) ¹
TraceStart/with_attributes-16      4.000 ± 0%   4.000 ± 0%       ~ (p=1.000 n=10) ¹
geomean                            2.884        2.884       +0.00%
¹ all samples are equal
```

---------

Co-authored-by: Robert Pająk <pellared@hotmail.com>
Co-authored-by: Damien Mathieu <42@dmathieu.com>
2025-05-15 09:21:49 +02:00
James Moessis
f410084b21 propagation: extract of multiple header values (#5973)
* Add `ValuesGetter` interface, an optional `TextMapCarrier` feature
that adds `Values(string) []string`.
* `HeaderCarrier` implements `ValuesGetter`.
* Change `Baggage` to use the `Values()` method if it's implemented.

Notable comment:
https://github.com/open-telemetry/opentelemetry-go/pull/5973#discussion_r2074894706

Adds tests extracting requests with multiple 'baggage' headers set.
Does not introduce any breaking changes or alter any existing tests.

Spec issue:
https://github.com/open-telemetry/opentelemetry-specification/issues/433
Corresponding Java prototype:
https://github.com/open-telemetry/opentelemetry-java/pull/6852

---------

Co-authored-by: Robert Pająk <pellared@hotmail.com>
Co-authored-by: dmathieu <42@dmathieu.com>
2025-05-15 09:14:35 +02:00
renovate[bot]
0385f838f0 chore(deps): update fossas/fossa-action action to v1.7.0 (#6776)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [fossas/fossa-action](https://redirect.github.com/fossas/fossa-action)
| action | minor | `v1.6.0` -> `v1.7.0` |

---

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

---

### Release Notes

<details>
<summary>fossas/fossa-action (fossas/fossa-action)</summary>

###
[`v1.7.0`](https://redirect.github.com/fossas/fossa-action/releases/tag/v1.7.0)

[Compare
Source](https://redirect.github.com/fossas/fossa-action/compare/v1.6.0...v1.7.0)

##### What's Changed

- Adds an optional working directory option to change where FOSSA
analyzes.

</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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4xMS45IiwidXBkYXRlZEluVmVyIjoiNDAuMTEuOSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-14 15:07:27 -07:00
renovate[bot]
4d08c1c233 fix(deps): update module google.golang.org/grpc to v1.72.1 (#6775)
This PR contains the following updates:

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

###
[`v1.72.1`](https://redirect.github.com/grpc/grpc-go/releases/tag/v1.72.1):
Release 1.72.1

[Compare
Source](https://redirect.github.com/grpc/grpc-go/compare/v1.72.0...v1.72.1)

### Bug Fixes

- client: HTTP Proxy connections are no longer attempted for addresses
with non-TCP network types.
([#&#8203;8215](https://redirect.github.com/grpc/grpc-go/issues/8215))
- client: Fix bug that causes RPCs to fail with status INTERNAL instead
of CANCELLED or DEADLINE_EXCEEDED when receiving a RST_STREAM frame in
the middle of the gRPC message.
([#&#8203;8289](https://redirect.github.com/grpc/grpc-go/issues/8289))

</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 is behind base branch, or you tick the
rebase/retry checkbox.

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

---

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

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4xMS45IiwidXBkYXRlZEluVmVyIjoiNDAuMTEuOSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-14 14:47:49 -07:00
renovate[bot]
8a1b0e7eab chore(deps): update module github.com/uudashr/iface to v1.3.2 (#6773)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [github.com/uudashr/iface](https://redirect.github.com/uudashr/iface)
| `v1.3.1` -> `v1.3.2` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fuudashr%2fiface/v1.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fuudashr%2fiface/v1.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fuudashr%2fiface/v1.3.1/v1.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fuudashr%2fiface/v1.3.1/v1.3.2?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>uudashr/iface (github.com/uudashr/iface)</summary>

###
[`v1.3.2`](https://redirect.github.com/uudashr/iface/releases/tag/v1.3.2)

[Compare
Source](https://redirect.github.com/uudashr/iface/compare/v1.3.1...v1.3.2)

#### What's Changed

- Fix package name "duplicate" to "identical" by
[@&#8203;uudashr](https://redirect.github.com/uudashr) in
[https://github.com/uudashr/iface/pull/9](https://redirect.github.com/uudashr/iface/pull/9)
- Use nerd flag to avoid flag conflict by
[@&#8203;uudashr](https://redirect.github.com/uudashr) in
[https://github.com/uudashr/iface/pull/10](https://redirect.github.com/uudashr/iface/pull/10)
- Fix load types error by
[@&#8203;uudashr](https://redirect.github.com/uudashr) in
[https://github.com/uudashr/iface/pull/11](https://redirect.github.com/uudashr/iface/pull/11)

**Full Changelog**:
https://github.com/uudashr/iface/compare/v1.3.1...v1.3.2

</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 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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4xMS45IiwidXBkYXRlZEluVmVyIjoiNDAuMTEuOSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-14 14:51:32 +02:00
Robert Pająk
bf7ffa3900 log/logtest: Add AssertEqual and remove AssertRecordEqual (#6662)
Fixes https://github.com/open-telemetry/opentelemetry-go/issues/6487
Fixes https://github.com/open-telemetry/opentelemetry-go/issues/6488

Towards https://github.com/open-telemetry/opentelemetry-go/issues/6341

Prior-art: https://github.com/open-telemetry/opentelemetry-go/pull/6464

Replace `AssertRecordEqual` with `AssertEqual` which accepts options and
can work not only with `Record` but most importantly, whole `Recording`.

The changes between the previous approach are inspired by the design of
https://pkg.go.dev/go.opentelemetry.io/otel/sdk/metric/metricdata/metricdatatest.
Thanks to it we continue to use the "assert" pattern, but are not
impacted by downsides of `testify`. The main issue is that with
`testify` we cannot force `[]log.KeyValue` to sort slices before
comparing (unordered collection equality). This can make the tests too
much "white-boxed" and can easy break during refactoring. Moreover,
empty and nil slices are seen not equal which in this case is not
relevant.

Here is an example of how the current tests of log bridges can be
improved:
- https://github.com/open-telemetry/opentelemetry-go-contrib/pull/6953
2025-05-13 21:13:59 +02:00
Robert Pająk
5cd1611cda otlptracehttp: Add WithHTTPClient option (#6751)
Follows https://github.com/open-telemetry/opentelemetry-go/pull/6688

Towards (for OTLP trace exporter):
- https://github.com/open-telemetry/opentelemetry-go/issues/4536
- https://github.com/open-telemetry/opentelemetry-go/issues/5129
- https://github.com/open-telemetry/opentelemetry-go/issues/2632
2025-05-13 21:06:01 +02:00
Robert Pająk
b66542529a otlpmetrichttp: Add WithHTTPClient option (#6752)
Follows https://github.com/open-telemetry/opentelemetry-go/pull/6688

Towards (for OTLP metric exporter):
- https://github.com/open-telemetry/opentelemetry-go/issues/4536
- https://github.com/open-telemetry/opentelemetry-go/issues/5129
- https://github.com/open-telemetry/opentelemetry-go/issues/2632
2025-05-13 20:58:06 +02:00
renovate[bot]
d468af20c9 fix(deps): update module go.opentelemetry.io/collector/pdata to v1.32.0 (#6767)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[go.opentelemetry.io/collector/pdata](https://redirect.github.com/open-telemetry/opentelemetry-collector)
| `v1.31.0` -> `v1.32.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/go.opentelemetry.io%2fcollector%2fpdata/v1.32.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/go.opentelemetry.io%2fcollector%2fpdata/v1.32.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/go.opentelemetry.io%2fcollector%2fpdata/v1.31.0/v1.32.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/go.opentelemetry.io%2fcollector%2fpdata/v1.31.0/v1.32.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>open-telemetry/opentelemetry-collector
(go.opentelemetry.io/collector/pdata)</summary>

###
[`v1.32.0`](https://redirect.github.com/open-telemetry/opentelemetry-collector/blob/HEAD/CHANGELOG.md#v1320v01260)

##### 🛑 Breaking changes 🛑

- `configauth`: Removes deprecated `configauth.Authentication` and
`extensionauthtest.NewErrorClient`
([#&#8203;12992](https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/12992))
    The following have been removed:
    -   `configauth.Authentication` use `configauth.Config` instead
- `extensionauthtest.NewErrorClient` use `extensionauthtest.NewErr`
instead

##### 💡 Enhancements 💡

- `service`: Replace `go.opentelemetry.io/collector/semconv` usage with
`go.opentelemetry.io/otel/semconv`
([#&#8203;12991](https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/12991))
- `confmap`: Update the behavior of the confmap.enableMergeAppendOption
feature gate to merge only component lists.
([#&#8203;12926](https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/12926))
- `service`: Add item count metrics defined in Pipeline Component
Telemetry RFC
([#&#8203;12812](https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/12812))
See [Pipeline Component Telemetry
RFC](https://redirect.github.com/open-telemetry/opentelemetry-collector/blob/main/docs/rfcs/component-universal-telemetry.md)
for more details:
    -   `otelcol.receiver.produced.items`
    -   `otelcol.processor.consumed.items`
    -   `otelcol.processor.produced.items`
    -   `otelcol.connector.consumed.items`
    -   `otelcol.connector.produced.items`
    -   `otelcol.exporter.consumed.items`
- `tls`: Add trusted platform module (TPM) support to TLS
authentication.
([#&#8203;12801](https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/12801))
Now the TLS allows the use of TPM for loading private keys (e.g. in TSS2
format).

##### 🧰 Bug fixes 🧰

- `exporterhelper`: Add validation error for batch config if min_size is
greater than queue_size.
([#&#8203;12948](https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/12948))

- `telemetry`: Allocate less memory per component when OTLP exporting of
logs is disabled
([#&#8203;13014](https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/13014))

- `confmap`: Use reflect.DeepEqual to avoid panic when
confmap.enableMergeAppendOption feature gate is enabled.
([#&#8203;12932](https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/12932))

- `internal telemetry`: Add resource attributes from telemetry.resource
to the logger
([#&#8203;12582](https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/12582))
Resource attributes from telemetry.resource were not added to the
internal
    console logs.

    Now, they are added to the logger as part of the "resource" field.

- `confighttp and configcompression`: Fix handling of `snappy`
content-encoding in a backwards-compatible way
([#&#8203;10584](https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/10584),
[#&#8203;12825](https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/12825))
The collector used the Snappy compression type of "framed" to handle the
HTTP
content-encoding "snappy". However, this encoding is typically used to
indicate
the "block" compression variant of "snappy". This change allows the
collector to:
- When receiving a request with encoding 'snappy', the server endpoints
will peek
at the first bytes of the payload to determine if it is "framed" or
"block" snappy,
and will decompress accordingly. This is a backwards-compatible change.
If the feature-gate "confighttp.framedSnappy" is enabled, you'll see new
behavior for both client and server:
- Client compression type "snappy" will now compress to the "block"
variant of snappy
instead of "framed". Client compression type "x-snappy-framed" will now
compress to the "framed" variant of snappy.
- Servers will accept both "snappy" and "x-snappy-framed" as valid
content-encodings.

- `tlsconfig`: Disable TPM tests on MacOS/Darwin
([#&#8203;12964](https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/12964))

<!-- previous-version -->

</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 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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC43LjEiLCJ1cGRhdGVkSW5WZXIiOiI0MC43LjEiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbIlNraXAgQ2hhbmdlbG9nIiwiZGVwZW5kZW5jaWVzIl19-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-13 09:28:38 +02:00
renovate[bot]
6c192a4490 fix(deps): update googleapis to 5a2f75b (#6766)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[google.golang.org/genproto/googleapis/api](https://redirect.github.com/googleapis/go-genproto)
| indirect | digest | `f936aa4` -> `5a2f75b` |
|
[google.golang.org/genproto/googleapis/rpc](https://redirect.github.com/googleapis/go-genproto)
| indirect | digest | `f936aa4` -> `5a2f75b` |
|
[google.golang.org/genproto/googleapis/rpc](https://redirect.github.com/googleapis/go-genproto)
| require | digest | `f936aa4` -> `5a2f75b` |

---

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

---

### 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 is behind base branch, or you tick the
rebase/retry checkbox.

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

---

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

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC43LjEiLCJ1cGRhdGVkSW5WZXIiOiI0MC43LjEiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbIlNraXAgQ2hhbmdlbG9nIiwiZGVwZW5kZW5jaWVzIl19-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-13 09:20:53 +02:00
renovate[bot]
cd4819b35a chore(deps): update lycheeverse/lychee-action action to v2.4.1 (#6761)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[lycheeverse/lychee-action](https://redirect.github.com/lycheeverse/lychee-action)
| action | patch | `v2.4.0` -> `v2.4.1` |

---

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

---

### Release Notes

<details>
<summary>lycheeverse/lychee-action (lycheeverse/lychee-action)</summary>

###
[`v2.4.1`](https://redirect.github.com/lycheeverse/lychee-action/releases/tag/v2.4.1):
Version 2.4.1

[Compare
Source](https://redirect.github.com/lycheeverse/lychee-action/compare/v2.4.0...v2.4.1)

#### What's Changed

- Added Update Default Lychee version workflow by
[@&#8203;Arteiii](https://redirect.github.com/Arteiii) in
[https://github.com/lycheeverse/lychee-action/pull/284](https://redirect.github.com/lycheeverse/lychee-action/pull/284)
- Use temporary directory for lychee installation by
[@&#8203;mre](https://redirect.github.com/mre) in
[https://github.com/lycheeverse/lychee-action/pull/287](https://redirect.github.com/lycheeverse/lychee-action/pull/287)
- Fix `lychee` version check by
[@&#8203;mondeja](https://redirect.github.com/mondeja) in
[https://github.com/lycheeverse/lychee-action/pull/288](https://redirect.github.com/lycheeverse/lychee-action/pull/288)

**Full Changelog**:
https://github.com/lycheeverse/lychee-action/compare/v2...v2.4.1

</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 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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC43LjEiLCJ1cGRhdGVkSW5WZXIiOiI0MC43LjEiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbIlNraXAgQ2hhbmdlbG9nIiwiZGVwZW5kZW5jaWVzIl19-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: dmathieu <42@dmathieu.com>
2025-05-12 09:25:10 +02:00
renovate[bot]
7a1750f076 chore(deps): update module github.com/abirdcfly/dupword to v0.1.4 (#6765)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/Abirdcfly/dupword](https://redirect.github.com/Abirdcfly/dupword)
| `v0.1.3` -> `v0.1.4` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fAbirdcfly%2fdupword/v0.1.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fAbirdcfly%2fdupword/v0.1.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fAbirdcfly%2fdupword/v0.1.3/v0.1.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fAbirdcfly%2fdupword/v0.1.3/v0.1.4?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>Abirdcfly/dupword (github.com/Abirdcfly/dupword)</summary>

###
[`v0.1.4`](https://redirect.github.com/Abirdcfly/dupword/releases/tag/v0.1.4)

[Compare
Source](https://redirect.github.com/Abirdcfly/dupword/compare/v0.1.3...v0.1.4)

#### Changelog

-
[`fab2fea`](fab2feadb5)
build(deps): bump golang.org/x/tools from 0.26.0 to 0.27.0
-
[`8fecb81`](8fecb81c7b)
build(deps): bump golang.org/x/tools from 0.27.0 to 0.28.0
-
[`ef53092`](ef530925e2)
build(deps): bump golang.org/x/tools from 0.28.0 to 0.29.0
-
[`2e48ac4`](2e48ac4d60)
build(deps): bump golang.org/x/tools from 0.29.0 to 0.30.0
-
[`d1376bb`](d1376bb37c)
build(deps): bump golang.org/x/tools from 0.30.0 to 0.33.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 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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC43LjEiLCJ1cGRhdGVkSW5WZXIiOiI0MC43LjEiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbIlNraXAgQ2hhbmdlbG9nIiwiZGVwZW5kZW5jaWVzIl19-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-12 09:17:26 +02:00
renovate[bot]
22c7810f1b chore(deps): update module github.com/manuelarte/funcorder to v0.5.0 (#6762) 2025-05-12 08:50:28 +02:00
renovate[bot]
ef00c716f1 chore(deps): update python:3.13.3-slim-bullseye docker digest to 9e3f924 (#6763) 2025-05-10 11:35:41 +02:00
renovate[bot]
b315c21e55 chore(deps): update module github.com/securego/gosec/v2 to v2.22.4 (#6759) 2025-05-09 10:38:54 +02:00
renovate[bot]
ce99f3ff59 chore(deps): update golang.org/x/telemetry digest to 155ddd5 (#6753) 2025-05-08 10:46:13 +02:00
renovate[bot]
c24fdba34e chore(deps): update module dario.cat/mergo to v1.0.2 (#6755) 2025-05-08 10:25:17 +02:00
renovate[bot]
df14048d46 chore(deps): update actions/setup-go action to v5.5.0 (#6758) 2025-05-08 09:59:01 +02:00
renovate[bot]
14bc7afc91 chore(deps): update module github.com/jjti/go-spancheck to v0.6.5 (#6749)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/jjti/go-spancheck](https://redirect.github.com/jjti/go-spancheck)
| `v0.6.4` -> `v0.6.5` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fjjti%2fgo-spancheck/v0.6.5?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fjjti%2fgo-spancheck/v0.6.5?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fjjti%2fgo-spancheck/v0.6.4/v0.6.5?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fjjti%2fgo-spancheck/v0.6.4/v0.6.5?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>jjti/go-spancheck (github.com/jjti/go-spancheck)</summary>

###
[`v0.6.5`](https://redirect.github.com/jjti/go-spancheck/releases/tag/v0.6.5)

[Compare
Source](https://redirect.github.com/jjti/go-spancheck/compare/v0.6.4...v0.6.5)

#### What's Changed

- Fix (false negative): check all branches for end in defer by
[@&#8203;parsaaes](https://redirect.github.com/parsaaes) in
[https://github.com/jjti/go-spancheck/pull/31](https://redirect.github.com/jjti/go-spancheck/pull/31)
- Bump golang.org/x/tools from 0.28.0 to 0.32.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/jjti/go-spancheck/pull/32](https://redirect.github.com/jjti/go-spancheck/pull/32)
- Bump golang.org/x/tools from 0.26.0 to 0.28.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/jjti/go-spancheck/pull/27](https://redirect.github.com/jjti/go-spancheck/pull/27)

#### New Contributors

- [@&#8203;parsaaes](https://redirect.github.com/parsaaes) made their
first contribution in
[https://github.com/jjti/go-spancheck/pull/31](https://redirect.github.com/jjti/go-spancheck/pull/31)

**Full Changelog**:
https://github.com/jjti/go-spancheck/compare/v0.6.4...v0.6.5

</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 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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJTa2lwIENoYW5nZWxvZyIsImRlcGVuZGVuY2llcyJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-07 09:11:52 +02:00
Robert Pająk
cf8179a373 otlploghttp: Add WithHTTPClient option (#6688)
Towards (for OTLP logs exporter):
- https://github.com/open-telemetry/opentelemetry-go/issues/4536
- https://github.com/open-telemetry/opentelemetry-go/issues/5129
- https://github.com/open-telemetry/opentelemetry-go/issues/2632


Per
https://github.com/open-telemetry/opentelemetry-go/pull/6362/files#r1978191352

Providing `WithHTTPClient` option allows easy interoperability e.g. with
https://pkg.go.dev/golang.org/x/oauth2/clientcredentials#Config.Client
and also see
https://github.com/open-telemetry/opentelemetry-go/issues/2632. The
options is also similar to:
https://pkg.go.dev/go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc#WithGRPCConn

I favor this over
https://github.com/open-telemetry/opentelemetry-go/pull/6686

The option for OTLP span and metrics exporters will be added in separate
PRs.
2025-05-07 06:31:53 +02:00
renovate[bot]
4895ae6259 fix(deps): update golang.org/x (#6748)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| golang.org/x/exp | require | digest | `7e4ce0a` -> `ce4c2cf` |
| golang.org/x/exp/typeparams | indirect | digest | `7e4ce0a` ->
`ce4c2cf` |
| golang.org/x/telemetry | indirect | digest | `f36df2b` -> `b15a553` |

---

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

---

### 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 is behind base branch, or you tick the
rebase/retry checkbox.

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

---

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

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJTa2lwIENoYW5nZWxvZyIsImRlcGVuZGVuY2llcyJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: dmathieu <42@dmathieu.com>
2025-05-06 09:18:38 +02:00
renovate[bot]
7a18e1748c fix(deps): update module golang.org/x/tools to v0.33.0 (#6747)
This PR contains the following updates:

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

---

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

---

### 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 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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJTa2lwIENoYW5nZWxvZyIsImRlcGVuZGVuY2llcyJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-05 16:20:41 -07:00
renovate[bot]
0739b86a30 chore(deps): update github/codeql-action action to v3.28.17 (#6745)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[github/codeql-action](https://redirect.github.com/github/codeql-action)
| action | minor | `v3` -> `v3.28.17` |

---

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

---

### Release Notes

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

###
[`v3.28.17`](https://redirect.github.com/github/codeql-action/releases/tag/v3.28.17)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.28.16...v3.28.17)

##### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

##### 3.28.17 - 02 May 2025

- Update default CodeQL bundle version to 2.21.2.
[#&#8203;2872](https://redirect.github.com/github/codeql-action/pull/2872)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.28.17/CHANGELOG.md)
for more information.

###
[`v3.28.16`](https://redirect.github.com/github/codeql-action/releases/tag/v3.28.16)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.28.15...v3.28.16)

##### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

##### 3.28.16 - 23 Apr 2025

- Update default CodeQL bundle version to 2.21.1.
[#&#8203;2863](https://redirect.github.com/github/codeql-action/pull/2863)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.28.16/CHANGELOG.md)
for more information.

###
[`v3.28.15`](https://redirect.github.com/github/codeql-action/releases/tag/v3.28.15)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.28.14...v3.28.15)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

#### 3.28.15 - 07 Apr 2025

- Fix bug where the action would fail if it tried to produce a debug
artifact with more than 65535 files.
[#&#8203;2842](https://redirect.github.com/github/codeql-action/pull/2842)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.28.15/CHANGELOG.md)
for more information.

###
[`v3.28.14`](https://redirect.github.com/github/codeql-action/releases/tag/v3.28.14)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.28.13...v3.28.14)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

#### 3.28.14 - 07 Apr 2025

- Update default CodeQL bundle version to 2.21.0.
[#&#8203;2838](https://redirect.github.com/github/codeql-action/pull/2838)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.28.14/CHANGELOG.md)
for more information.

###
[`v3.28.13`](https://redirect.github.com/github/codeql-action/releases/tag/v3.28.13)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.28.12...v3.28.13)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

#### 3.28.13 - 24 Mar 2025

No user facing changes.

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.28.13/CHANGELOG.md)
for more information.

###
[`v3.28.12`](https://redirect.github.com/github/codeql-action/releases/tag/v3.28.12)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.28.11...v3.28.12)

##### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

##### 3.28.12 - 19 Mar 2025

- Dependency caching should now cache more dependencies for Java
`build-mode: none` extractions. This should speed up workflows and avoid
inconsistent alerts in some cases.
- Update default CodeQL bundle version to 2.20.7.
[#&#8203;2810](https://redirect.github.com/github/codeql-action/pull/2810)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.28.12/CHANGELOG.md)
for more information.

###
[`v3.28.11`](https://redirect.github.com/github/codeql-action/releases/tag/v3.28.11)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.28.10...v3.28.11)

##### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

##### 3.28.11 - 07 Mar 2025

- Update default CodeQL bundle version to 2.20.6.
[#&#8203;2793](https://redirect.github.com/github/codeql-action/pull/2793)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.28.11/CHANGELOG.md)
for more information.

###
[`v3.28.10`](https://redirect.github.com/github/codeql-action/releases/tag/v3.28.10)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.28.9...v3.28.10)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

#### 3.28.10 - 21 Feb 2025

- Update default CodeQL bundle version to 2.20.5.
[#&#8203;2772](https://redirect.github.com/github/codeql-action/pull/2772)
- Address an issue where the CodeQL Bundle would occasionally fail to
decompress on macOS.
[#&#8203;2768](https://redirect.github.com/github/codeql-action/pull/2768)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.28.10/CHANGELOG.md)
for more information.

###
[`v3.28.9`](https://redirect.github.com/github/codeql-action/releases/tag/v3.28.9)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.28.8...v3.28.9)

##### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

##### 3.28.9 - 07 Feb 2025

- Update default CodeQL bundle version to 2.20.4.
[#&#8203;2753](https://redirect.github.com/github/codeql-action/pull/2753)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.28.9/CHANGELOG.md)
for more information.

###
[`v3.28.8`](https://redirect.github.com/github/codeql-action/releases/tag/v3.28.8)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.28.7...v3.28.8)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

#### 3.28.8 - 29 Jan 2025

- Enable support for Kotlin 2.1.10 when running with CodeQL CLI v2.20.3.
[#&#8203;2744](https://redirect.github.com/github/codeql-action/pull/2744)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.28.8/CHANGELOG.md)
for more information.

###
[`v3.28.7`](https://redirect.github.com/github/codeql-action/releases/tag/v3.28.7)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.28.6...v3.28.7)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

#### 3.28.7 - 29 Jan 2025

No user facing changes.

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.28.7/CHANGELOG.md)
for more information.

###
[`v3.28.6`](https://redirect.github.com/github/codeql-action/releases/tag/v3.28.6)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.28.5...v3.28.6)

##### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

##### 3.28.6 - 27 Jan 2025

- Re-enable debug artifact upload for CLI versions 2.20.3 or greater.
[#&#8203;2726](https://redirect.github.com/github/codeql-action/pull/2726)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.28.6/CHANGELOG.md)
for more information.

###
[`v3.28.5`](https://redirect.github.com/github/codeql-action/releases/tag/v3.28.5)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.28.4...v3.28.5)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

#### 3.28.5 - 24 Jan 2025

- Update default CodeQL bundle version to 2.20.3.
[#&#8203;2717](https://redirect.github.com/github/codeql-action/pull/2717)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.28.5/CHANGELOG.md)
for more information.

###
[`v3.28.4`](https://redirect.github.com/github/codeql-action/releases/tag/v3.28.4)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.28.3...v3.28.4)

##### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

##### 3.28.4 - 23 Jan 2025

No user facing changes.

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.28.4/CHANGELOG.md)
for more information.

###
[`v3.28.3`](https://redirect.github.com/github/codeql-action/releases/tag/v3.28.3)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.28.2...v3.28.3)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

#### 3.28.3 - 22 Jan 2025

- Update default CodeQL bundle version to 2.20.2.
[#&#8203;2707](https://redirect.github.com/github/codeql-action/pull/2707)
- Fix an issue downloading the CodeQL Bundle from a GitHub Enterprise
Server instance which occurred when the CodeQL Bundle had been synced to
the instance using the [CodeQL Action sync
tool](https://redirect.github.com/github/codeql-action-sync-tool) and
the Actions runner did not have Zstandard installed.
[#&#8203;2710](https://redirect.github.com/github/codeql-action/pull/2710)
- Uploading debug artifacts for CodeQL analysis is temporarily disabled.
[#&#8203;2712](https://redirect.github.com/github/codeql-action/pull/2712)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.28.3/CHANGELOG.md)
for more information.

###
[`v3.28.2`](https://redirect.github.com/github/codeql-action/releases/tag/v3.28.2)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.28.1...v3.28.2)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

#### 3.28.2 - 21 Jan 2025

No user facing changes.

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.28.2/CHANGELOG.md)
for more information.

###
[`v3.28.1`](https://redirect.github.com/github/codeql-action/releases/tag/v3.28.1)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.28.0...v3.28.1)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

#### 3.28.1 - 10 Jan 2025

- CodeQL Action v2 is now deprecated, and is no longer updated or
supported. For better performance, improved security, and new features,
upgrade to v3. For more information, see [this changelog
post](https://github.blog/changelog/2025-01-10-code-scanning-codeql-action-v2-is-now-deprecated/).
[#&#8203;2677](https://redirect.github.com/github/codeql-action/pull/2677)
- Update default CodeQL bundle version to 2.20.1.
[#&#8203;2678](https://redirect.github.com/github/codeql-action/pull/2678)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.28.1/CHANGELOG.md)
for more information.

###
[`v3.28.0`](https://redirect.github.com/github/codeql-action/releases/tag/v3.28.0)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.27.9...v3.28.0)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.28.0 - 20 Dec 2024

- Bump the minimum CodeQL bundle version to 2.15.5.
[#&#8203;2655](https://redirect.github.com/github/codeql-action/pull/2655)
- Don't fail in the unusual case that a file is on the search path.
[#&#8203;2660](https://redirect.github.com/github/codeql-action/pull/2660).

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.28.0/CHANGELOG.md)
for more information.

###
[`v3.27.9`](https://redirect.github.com/github/codeql-action/releases/tag/v3.27.9)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.27.8...v3.27.9)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.27.9 - 12 Dec 2024

No user facing changes.

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.27.9/CHANGELOG.md)
for more information.

###
[`v3.27.8`](https://redirect.github.com/github/codeql-action/compare/v3.27.7...v3.27.8)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.27.7...v3.27.8)

###
[`v3.27.7`](https://redirect.github.com/github/codeql-action/releases/tag/v3.27.7)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.27.6...v3.27.7)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.27.7 - 10 Dec 2024

- We are rolling out a change in December 2024 that will extract the
CodeQL bundle directly to the toolcache to improve performance.
[#&#8203;2631](https://redirect.github.com/github/codeql-action/pull/2631)
- Update default CodeQL bundle version to 2.20.0.
[#&#8203;2636](https://redirect.github.com/github/codeql-action/pull/2636)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.27.7/CHANGELOG.md)
for more information.

###
[`v3.27.6`](https://redirect.github.com/github/codeql-action/releases/tag/v3.27.6)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.27.5...v3.27.6)

##### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

##### 3.27.6 - 03 Dec 2024

- Update default CodeQL bundle version to 2.19.4.
[#&#8203;2626](https://redirect.github.com/github/codeql-action/pull/2626)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.27.6/CHANGELOG.md)
for more information.

###
[`v3.27.5`](https://redirect.github.com/github/codeql-action/releases/tag/v3.27.5)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.27.4...v3.27.5)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.27.5 - 19 Nov 2024

No user facing changes.

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.27.5/CHANGELOG.md)
for more information.

###
[`v3.27.4`](https://redirect.github.com/github/codeql-action/releases/tag/v3.27.4)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.27.3...v3.27.4)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.27.4 - 14 Nov 2024

No user facing changes.

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.27.4/CHANGELOG.md)
for more information.

###
[`v3.27.3`](https://redirect.github.com/github/codeql-action/releases/tag/v3.27.3)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.27.2...v3.27.3)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.27.3 - 12 Nov 2024

No user facing changes.

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.27.3/CHANGELOG.md)
for more information.

###
[`v3.27.2`](https://redirect.github.com/github/codeql-action/releases/tag/v3.27.2)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.27.1...v3.27.2)

##### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

##### 3.27.2 - 12 Nov 2024

- Fixed an issue where setting up the CodeQL tools would sometimes fail
with the message "Invalid value 'undefined' for header 'authorization'".
[#&#8203;2590](https://redirect.github.com/github/codeql-action/pull/2590)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.27.2/CHANGELOG.md)
for more information.

###
[`v3.27.1`](https://redirect.github.com/github/codeql-action/releases/tag/v3.27.1)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.27.0...v3.27.1)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.27.1 - 08 Nov 2024

- The CodeQL Action now downloads bundles compressed using Zstandard on
GitHub Enterprise Server when using Linux or macOS runners. This speeds
up the installation of the CodeQL tools. This feature is already
available to GitHub.com users.
[#&#8203;2573](https://redirect.github.com/github/codeql-action/pull/2573)
- Update default CodeQL bundle version to 2.19.3.
[#&#8203;2576](https://redirect.github.com/github/codeql-action/pull/2576)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.27.1/CHANGELOG.md)
for more information.

###
[`v3.27.0`](https://redirect.github.com/github/codeql-action/releases/tag/v3.27.0)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.26.13...v3.27.0)

##### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

##### 3.27.0 - 22 Oct 2024

- Bump the minimum CodeQL bundle version to 2.14.6.
[#&#8203;2549](https://redirect.github.com/github/codeql-action/pull/2549)
- Fix an issue where the `upload-sarif` Action would fail with
"upload-sarif post-action step failed: Input required and not supplied:
token" when called in a composite Action that had a different set of
inputs to the ones expected by the `upload-sarif` Action.
[#&#8203;2557](https://redirect.github.com/github/codeql-action/pull/2557)
- Update default CodeQL bundle version to 2.19.2.
[#&#8203;2552](https://redirect.github.com/github/codeql-action/pull/2552)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.27.0/CHANGELOG.md)
for more information.

###
[`v3.26.13`](https://redirect.github.com/github/codeql-action/releases/tag/v3.26.13)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.26.12...v3.26.13)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.26.13 - 14 Oct 2024

No user facing changes.

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.26.13/CHANGELOG.md)
for more information.

###
[`v3.26.12`](https://redirect.github.com/github/codeql-action/releases/tag/v3.26.12)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.26.11...v3.26.12)

##### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

##### 3.26.12 - 07 Oct 2024

- *Upcoming breaking change*: Add a deprecation warning for customers
using CodeQL version 2.14.5 and earlier. These versions of CodeQL were
discontinued on 24 September 2024 alongside GitHub Enterprise Server
3.10, and will be unsupported by CodeQL Action versions 3.27.0 and later
and versions 2.27.0 and later.
[#&#8203;2520](https://redirect.github.com/github/codeql-action/pull/2520)

- If you are using one of these versions, please update to CodeQL CLI
version 2.14.6 or later. For instance, if you have specified a custom
version of the CLI using the 'tools' input to the 'init' Action, you can
remove this input to use the default version.

- Alternatively, if you want to continue using a version of the CodeQL
CLI between 2.13.5 and 2.14.5, you can replace
`github/codeql-action/*@&#8203;v3` by
`github/codeql-action/*@&#8203;v3.26.11` and
`github/codeql-action/*@&#8203;v2` by
`github/codeql-action/*@&#8203;v2.26.11` in your code scanning workflow
to ensure you continue using this version of the CodeQL Action.

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.26.12/CHANGELOG.md)
for more information.

###
[`v3.26.11`](https://redirect.github.com/github/codeql-action/releases/tag/v3.26.11)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.26.10...v3.26.11)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.26.11 - 03 Oct 2024

- *Upcoming breaking change*: Add support for using
`actions/download-artifact@v4` to programmatically consume CodeQL Action
debug artifacts.

Starting November 30, 2024, GitHub.com customers will [no longer be able
to use
`actions/download-artifact@v3`](https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/).
Therefore, to avoid breakage, customers who programmatically download
the CodeQL Action debug artifacts should set the
`CODEQL_ACTION_ARTIFACT_V4_UPGRADE` environment variable to `true` and
bump `actions/download-artifact@v3` to `actions/download-artifact@v4` in
their workflows. The CodeQL Action will enable this behavior by default
in early November and workflows that have not yet bumped to
`actions/download-artifact@v3` to `actions/download-artifact@v4` will
begin failing then.

This change is currently unavailable for GitHub Enterprise Server
customers, as `actions/upload-artifact@v4` and
`actions/download-artifact@v4` are not yet compatible with GHES.

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.26.11/CHANGELOG.md)
for more information.

###
[`v3.26.10`](https://redirect.github.com/github/codeql-action/releases/tag/v3.26.10)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.26.9...v3.26.10)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.26.10 - 30 Sep 2024

- We are rolling out a feature in September/October 2024 that sets up
CodeQL using a bundle compressed with
[Zstandard](http://facebook.github.io/zstd/). Our aim is to improve the
performance of setting up CodeQL.
[#&#8203;2502](https://redirect.github.com/github/codeql-action/pull/2502)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.26.10/CHANGELOG.md)
for more information.

###
[`v3.26.9`](https://redirect.github.com/github/codeql-action/releases/tag/v3.26.9)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.26.8...v3.26.9)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.26.9 - 24 Sep 2024

No user facing changes.

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.26.9/CHANGELOG.md)
for more information.

###
[`v3.26.8`](https://redirect.github.com/github/codeql-action/releases/tag/v3.26.8)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.26.7...v3.26.8)

##### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

##### 3.26.8 - 19 Sep 2024

- Update default CodeQL bundle version to 2.19.0.
[#&#8203;2483](https://redirect.github.com/github/codeql-action/pull/2483)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.26.8/CHANGELOG.md)
for more information.

###
[`v3.26.7`](https://redirect.github.com/github/codeql-action/releases/tag/v3.26.7)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.26.6...v3.26.7)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.26.7 - 13 Sep 2024

- Update default CodeQL bundle version to 2.18.4.
[#&#8203;2471](https://redirect.github.com/github/codeql-action/pull/2471)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.26.7/CHANGELOG.md)
for more information.

###
[`v3.26.6`](https://redirect.github.com/github/codeql-action/releases/tag/v3.26.6)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.26.5...v3.26.6)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.26.6 - 29 Aug 2024

- Update default CodeQL bundle version to 2.18.3.
[#&#8203;2449](https://redirect.github.com/github/codeql-action/pull/2449)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.26.6/CHANGELOG.md)
for more information.

###
[`v3.26.5`](https://redirect.github.com/github/codeql-action/releases/tag/v3.26.5)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.26.4...v3.26.5)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.26.5 - 23 Aug 2024

- Fix an issue where the `csrutil` system call used for telemetry would
fail on MacOS ARM machines with System Integrity Protection disabled.
[#&#8203;2441](https://redirect.github.com/github/codeql-action/pull/2441)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.26.5/CHANGELOG.md)
for more information.

###
[`v3.26.4`](https://redirect.github.com/github/codeql-action/releases/tag/v3.26.4)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.26.3...v3.26.4)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.26.4 - 21 Aug 2024

- *Deprecation:* The `add-snippets` input on the `analyze` Action is
deprecated and will be removed in the first release in August 2025.
[#&#8203;2436](https://redirect.github.com/github/codeql-action/pull/2436)
- Fix an issue where the disk usage system call used for telemetry would
fail on MacOS ARM machines with System Integrity Protection disabled,
and then surface a warning. The system call is now disabled for these
machines.
[#&#8203;2434](https://redirect.github.com/github/codeql-action/pull/2434)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.26.4/CHANGELOG.md)
for more information.

###
[`v3.26.3`](https://redirect.github.com/github/codeql-action/releases/tag/v3.26.3)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.26.2...v3.26.3)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.26.3 - 19 Aug 2024

- Fix an issue where the CodeQL Action could not write diagnostic
messages on Windows. This issue did not impact analysis quality.
[#&#8203;2430](https://redirect.github.com/github/codeql-action/pull/2430)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.26.3/CHANGELOG.md)
for more information.

###
[`v3.26.2`](https://redirect.github.com/github/codeql-action/releases/tag/v3.26.2)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.26.1...v3.26.2)

##### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

##### 3.26.2 - 14 Aug 2024

- Update default CodeQL bundle version to 2.18.2.
[#&#8203;2417](https://redirect.github.com/github/codeql-action/pull/2417)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.26.2/CHANGELOG.md)
for more information.

###
[`v3.26.1`](https://redirect.github.com/github/codeql-action/releases/tag/v3.26.1)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.26.0...v3.26.1)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.26.1 - 13 Aug 2024

No user facing changes.

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.26.1/CHANGELOG.md)
for more information.

###
[`v3.26.0`](https://redirect.github.com/github/codeql-action/releases/tag/v3.26.0)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.25.15...v3.26.0)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.26.0 - 06 Aug 2024

- *Deprecation:* Swift analysis on Ubuntu runner images is no longer
supported. Please migrate to a macOS runner if this affects you.
[#&#8203;2403](https://redirect.github.com/github/codeql-action/pull/2403)
- Bump the minimum CodeQL bundle version to 2.13.5.
[#&#8203;2408](https://redirect.github.com/github/codeql-action/pull/2408)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.26.0/CHANGELOG.md)
for more information.

###
[`v3.25.15`](https://redirect.github.com/github/codeql-action/releases/tag/v3.25.15)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.25.14...v3.25.15)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.25.15 - 26 Jul 2024

- Update default CodeQL bundle version to 2.18.1.
[#&#8203;2385](https://redirect.github.com/github/codeql-action/pull/2385)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.25.15/CHANGELOG.md)
for more information.

###
[`v3.25.14`](https://redirect.github.com/github/codeql-action/releases/tag/v3.25.14)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.25.13...v3.25.14)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.25.14 - 25 Jul 2024

- Experimental: add a new `start-proxy` action which starts the same
HTTP proxy as used by
[`github/dependabot-action`](https://redirect.github.com/github/dependabot-action).
Do not use this in production as it is part of an internal experiment
and subject to change at any time.

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.25.14/CHANGELOG.md)
for more information.

###
[`v3.25.13`](https://redirect.github.com/github/codeql-action/releases/tag/v3.25.13)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.25.12...v3.25.13)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.25.13 - 19 Jul 2024

- Add `codeql-version` to outputs.
[#&#8203;2368](https://redirect.github.com/github/codeql-action/pull/2368)
- Add a deprecation warning for customers using CodeQL version 2.13.4
and earlier. These versions of CodeQL were discontinued on 9 July 2024
alongside GitHub Enterprise Server 3.9, and will be unsupported by
CodeQL Action versions 3.26.0 and later and versions 2.26.0 and later.
[#&#8203;2375](https://redirect.github.com/github/codeql-action/pull/2375)
- If you are using one of these versions, please update to CodeQL CLI
version 2.13.5 or later. For instance, if you have specified a custom
version of the CLI using the 'tools' input to the 'init' Action, you can
remove this input to use the default version.
- Alternatively, if you want to continue using a version of the CodeQL
CLI between 2.12.6 and 2.13.4, you can replace
`github/codeql-action/*@&#8203;v3` by
`github/codeql-action/*@&#8203;v3.25.13` and
`github/codeql-action/*@&#8203;v2` by
`github/codeql-action/*@&#8203;v2.25.13` in your code scanning workflow
to ensure you continue using this version of the CodeQL Action.

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.25.13/CHANGELOG.md)
for more information.

###
[`v3.25.12`](https://redirect.github.com/github/codeql-action/releases/tag/v3.25.12)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.25.11...v3.25.12)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.25.12 - 12 Jul 2024

- Improve the reliability and performance of analyzing code when
analyzing a compiled language with the `autobuild` [build
mode](https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages#codeql-build-modes)
on GitHub Enterprise Server. This feature is already available to
GitHub.com users.
[#&#8203;2353](https://redirect.github.com/github/codeql-action/pull/2353)
- Update default CodeQL bundle version to 2.18.0.
[#&#8203;2364](https://redirect.github.com/github/codeql-action/pull/2364)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.25.12/CHANGELOG.md)
for more information.

###
[`v3.25.11`](https://redirect.github.com/github/codeql-action/releases/tag/v3.25.11)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.25.10...v3.25.11)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.25.11 - 28 Jun 2024

- Avoid failing the workflow run if there is an error while uploading
debug artifacts.
[#&#8203;2349](https://redirect.github.com/github/codeql-action/pull/2349)
- Update default CodeQL bundle version to 2.17.6.
[#&#8203;2352](https://redirect.github.com/github/codeql-action/pull/2352)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.25.11/CHANGELOG.md)
for more information.

###
[`v3.25.10`](https://redirect.github.com/github/codeql-action/releases/tag/v3.25.10)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.25.9...v3.25.10)

##### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

##### 3.25.10 - 13 Jun 2024

- Update default CodeQL bundle version to 2.17.5.
[#&#8203;2327](https://redirect.github.com/github/codeql-action/pull/2327)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.25.10/CHANGELOG.md)
for more information.

###
[`v3.25.9`](https://redirect.github.com/github/codeql-action/releases/tag/v3.25.9)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.25.8...v3.25.9)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.25.9 - 12 Jun 2024

- Avoid failing database creation if the database folder already exists
and contains some unexpected files. Requires CodeQL 2.18.0 or higher.
[#&#8203;2330](https://redirect.github.com/github/codeql-action/pull/2330)
- The init Action will attempt to clean up the database cluster
directory before creating a new database and at the end of the job. This
will help to avoid issues where the database cluster directory is left
in an inconsistent state.
[#&#8203;2332](https://redirect.github.com/github/codeql-action/pull/2332)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.25.9/CHANGELOG.md)
for more information.

###
[`v3.25.8`](https://redirect.github.com/github/codeql-action/releases/tag/v3.25.8)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.25.7...v3.25.8)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.25.8 - 04 Jun 2024

- Update default CodeQL bundle version to 2.17.4.
[#&#8203;2321](https://redirect.github.com/github/codeql-action/pull/2321)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.25.8/CHANGELOG.md)
for more information.

###
[`v3.25.7`](https://redirect.github.com/github/codeql-action/releases/tag/v3.25.7)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.25.6...v3.25.7)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.25.7 - 31 May 2024

- We are rolling out a feature in May/June 2024 that will reduce the
Actions cache usage of the Action by keeping only the newest TRAP cache
for each language.
[#&#8203;2306](https://redirect.github.com/github/codeql-action/pull/2306)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.25.7/CHANGELOG.md)
for more information.

###
[`v3.25.6`](https://redirect.github.com/github/codeql-action/releases/tag/v3.25.6)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.25.5...v3.25.6)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.25.6 - 20 May 2024

- Update default CodeQL bundle version to 2.17.3.
[#&#8203;2295](https://redirect.github.com/github/codeql-action/pull/2295)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.25.6/CHANGELOG.md)
for more information.

###
[`v3.25.5`](https://redirect.github.com/github/codeql-action/releases/tag/v3.25.5)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.25.4...v3.25.5)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.25.5 - 13 May 2024

- Add a compatibility matrix of supported CodeQL Action, CodeQL CLI, and
GitHub Enterprise Server versions to the [README.md](README.md).
[#&#8203;2273](https://redirect.github.com/github/codeql-action/pull/2273)
- Avoid printing out a warning for a missing `on.push` trigger when the
CodeQL Action is triggered via a `workflow_call` event.
[#&#8203;2274](https://redirect.github.com/github/codeql-action/pull/2274)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.25.5/CHANGELOG.md)
for more information.

###
[`v3.25.4`](https://redirect.github.com/github/codeql-action/releases/tag/v3.25.4)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.25.3...v3.25.4)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.25.4 - 08 May 2024

- Update default CodeQL bundle version to 2.17.2.
[#&#8203;2270](https://redirect.github.com/github/codeql-action/pull/2270)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.25.4/CHANGELOG.md)
for more information.

###
[`v3.25.3`](https://redirect.github.com/github/codeql-action/releases/tag/v3.25.3)

[Compare
Source](https://redirect.github.com/github/codeql-action/compare/v3.25.2...v3.25.3)

### CodeQL Action Changelog

See the [releases
page](https://redirect.github.com/github/codeql-action/releases) for the
relevant changes to the CodeQL CLI and language packs.

Note that the only difference between `v2` and `v3` of the CodeQL Action
is the node version they support, with `v3` running on node 20 while we
continue to release `v2` to support running on node 16. For example
`3.22.11` was the first `v3` release and is functionally identical to
`2.22.11`. This approach ensures an easy way to track exactly which
features are included in different versions, indicated by the minor and
patch version numbers.

#### 3.25.3 - 25 Apr 2024

- Update default CodeQL bundle version to 2.17.1.
[#&#8203;2247](https://redirect.github.com/github/codeql-action/pull/2247)
- Workflows running on `macos-latest` using CodeQL CLI versions before
v2.15.1 will need to either upgrade their CLI version to v2.15.1 or
newer, or change the platform to an Intel MacOS runner, such as
`macos-12`. ARM machines with SIP disabled, including the newest
`macos-latest` image, are unsupported for CLI versions before 2.15.1.
[#&#8203;2261](https://redirect.github.com/github/codeql-action/pull/2261)

See the full
[CHANGELOG.md](https://redirect.github.com/github/codeql-action/blob/v3.25.3/CHANGELOG.md)
for more information.

###
[`v3.25.2`](https://redirect.github.com/github/codeql-action/releases/tag/v3.25.2)

[Compare Source](

</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 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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJTa2lwIENoYW5nZWxvZyIsImRlcGVuZGVuY2llcyJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-05 16:00:57 -07:00
renovate[bot]
caf4740a7d fix(deps): update golang.org/x (#6746)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence | Type |
Update |
|---|---|---|---|---|---|---|---|
| golang.org/x/crypto | `v0.37.0` -> `v0.38.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fcrypto/v0.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fcrypto/v0.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fcrypto/v0.37.0/v0.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fcrypto/v0.37.0/v0.38.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| indirect | minor |
| golang.org/x/net | `v0.39.0` -> `v0.40.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fnet/v0.40.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fnet/v0.40.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fnet/v0.39.0/v0.40.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fnet/v0.39.0/v0.40.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| indirect | minor |
| golang.org/x/sync | `v0.13.0` -> `v0.14.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fsync/v0.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fsync/v0.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fsync/v0.13.0/v0.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fsync/v0.13.0/v0.14.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| indirect | minor |
| golang.org/x/sys | `v0.32.0` -> `v0.33.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fsys/v0.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fsys/v0.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fsys/v0.32.0/v0.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fsys/v0.32.0/v0.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| indirect | minor |
| golang.org/x/sys | `v0.32.0` -> `v0.33.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fsys/v0.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fsys/v0.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fsys/v0.32.0/v0.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fsys/v0.32.0/v0.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |
| golang.org/x/telemetry | `06ef541` -> `f36df2b` |
[![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2ftelemetry/v0.0.0-20250505181339-f36df2b527df?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2ftelemetry/v0.0.0-20250505181339-f36df2b527df?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2ftelemetry/v0.0.0-20250417124945-06ef541f3fa3/v0.0.0-20250505181339-f36df2b527df?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2ftelemetry/v0.0.0-20250417124945-06ef541f3fa3/v0.0.0-20250505181339-f36df2b527df?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| indirect | digest |
| golang.org/x/text | `v0.24.0` -> `v0.25.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2ftext/v0.25.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2ftext/v0.25.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2ftext/v0.24.0/v0.25.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2ftext/v0.24.0/v0.25.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| indirect | minor |

---

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

---

### 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 is behind base branch, or you tick the
rebase/retry checkbox.

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

---

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

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJTa2lwIENoYW5nZWxvZyIsImRlcGVuZGVuY2llcyJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-05 15:51:46 -07:00
renovate[bot]
796c2477ca chore(deps): update actions/upload-artifact action to v4.6.2 (#6744)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[actions/upload-artifact](https://redirect.github.com/actions/upload-artifact)
| action | minor | `v4` -> `v4.6.2` |

---

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

---

### Release Notes

<details>
<summary>actions/upload-artifact (actions/upload-artifact)</summary>

###
[`v4.6.2`](https://redirect.github.com/actions/upload-artifact/releases/tag/v4.6.2)

[Compare
Source](https://redirect.github.com/actions/upload-artifact/compare/v4.6.1...v4.6.2)

##### What's Changed

- Update to use artifact 2.3.2 package & prepare for new upload-artifact
release by [@&#8203;salmanmkc](https://redirect.github.com/salmanmkc) in
[https://github.com/actions/upload-artifact/pull/685](https://redirect.github.com/actions/upload-artifact/pull/685)

##### New Contributors

- [@&#8203;salmanmkc](https://redirect.github.com/salmanmkc) made their
first contribution in
[https://github.com/actions/upload-artifact/pull/685](https://redirect.github.com/actions/upload-artifact/pull/685)

**Full Changelog**:
https://github.com/actions/upload-artifact/compare/v4...v4.6.2

###
[`v4.6.1`](https://redirect.github.com/actions/upload-artifact/releases/tag/v4.6.1)

[Compare
Source](https://redirect.github.com/actions/upload-artifact/compare/v4.6.0...v4.6.1)

##### What's Changed

- Update to use artifact 2.2.2 package by
[@&#8203;yacaovsnc](https://redirect.github.com/yacaovsnc) in
[https://github.com/actions/upload-artifact/pull/673](https://redirect.github.com/actions/upload-artifact/pull/673)

**Full Changelog**:
https://github.com/actions/upload-artifact/compare/v4...v4.6.1

###
[`v4.6.0`](https://redirect.github.com/actions/upload-artifact/releases/tag/v4.6.0)

[Compare
Source](https://redirect.github.com/actions/upload-artifact/compare/v4.5.0...v4.6.0)

#### What's Changed

- Expose env vars to control concurrency and timeout by
[@&#8203;yacaovsnc](https://redirect.github.com/yacaovsnc) in
[https://github.com/actions/upload-artifact/pull/662](https://redirect.github.com/actions/upload-artifact/pull/662)

**Full Changelog**:
https://github.com/actions/upload-artifact/compare/v4...v4.6.0

###
[`v4.5.0`](https://redirect.github.com/actions/upload-artifact/releases/tag/v4.5.0)

[Compare
Source](https://redirect.github.com/actions/upload-artifact/compare/v4.4.3...v4.5.0)

#### What's Changed

- fix: deprecated `Node.js` version in action by
[@&#8203;hamirmahal](https://redirect.github.com/hamirmahal) in
[https://github.com/actions/upload-artifact/pull/578](https://redirect.github.com/actions/upload-artifact/pull/578)
- Add new `artifact-digest` output by
[@&#8203;bdehamer](https://redirect.github.com/bdehamer) in
[https://github.com/actions/upload-artifact/pull/656](https://redirect.github.com/actions/upload-artifact/pull/656)

#### New Contributors

- [@&#8203;hamirmahal](https://redirect.github.com/hamirmahal) made
their first contribution in
[https://github.com/actions/upload-artifact/pull/578](https://redirect.github.com/actions/upload-artifact/pull/578)
- [@&#8203;bdehamer](https://redirect.github.com/bdehamer) made their
first contribution in
[https://github.com/actions/upload-artifact/pull/656](https://redirect.github.com/actions/upload-artifact/pull/656)

**Full Changelog**:
https://github.com/actions/upload-artifact/compare/v4.4.3...v4.5.0

###
[`v4.4.3`](https://redirect.github.com/actions/upload-artifact/releases/tag/v4.4.3)

[Compare
Source](https://redirect.github.com/actions/upload-artifact/compare/v4.4.2...v4.4.3)

#### What's Changed

- Undo indirect dependency updates from
[#&#8203;627](https://redirect.github.com/actions/upload-artifact/issues/627)
by [@&#8203;joshmgross](https://redirect.github.com/joshmgross) in
[https://github.com/actions/upload-artifact/pull/632](https://redirect.github.com/actions/upload-artifact/pull/632)

**Full Changelog**:
https://github.com/actions/upload-artifact/compare/v4.4.2...v4.4.3

###
[`v4.4.2`](https://redirect.github.com/actions/upload-artifact/releases/tag/v4.4.2)

[Compare
Source](https://redirect.github.com/actions/upload-artifact/compare/v4.4.1...v4.4.2)

#### What's Changed

- Bump `@actions/artifact` to 2.1.11 by
[@&#8203;robherley](https://redirect.github.com/robherley) in
[https://github.com/actions/upload-artifact/pull/627](https://redirect.github.com/actions/upload-artifact/pull/627)
    -   Includes fix for relative symlinks not resolving properly

**Full Changelog**:
https://github.com/actions/upload-artifact/compare/v4.4.1...v4.4.2

###
[`v4.4.1`](https://redirect.github.com/actions/upload-artifact/releases/tag/v4.4.1)

[Compare
Source](https://redirect.github.com/actions/upload-artifact/compare/v4.4.0...v4.4.1)

#### What's Changed

- Add a section about hidden files by
[@&#8203;joshmgross](https://redirect.github.com/joshmgross) in
[https://github.com/actions/upload-artifact/pull/607](https://redirect.github.com/actions/upload-artifact/pull/607)
- Add workflow file for publishing releases to immutable action package
by [@&#8203;Jcambass](https://redirect.github.com/Jcambass) in
[https://github.com/actions/upload-artifact/pull/621](https://redirect.github.com/actions/upload-artifact/pull/621)
- Update
[@&#8203;actions/artifact](https://redirect.github.com/actions/artifact)
to latest version, includes symlink and timeout fixes by
[@&#8203;robherley](https://redirect.github.com/robherley) in
[https://github.com/actions/upload-artifact/pull/625](https://redirect.github.com/actions/upload-artifact/pull/625)

#### New Contributors

- [@&#8203;Jcambass](https://redirect.github.com/Jcambass) made their
first contribution in
[https://github.com/actions/upload-artifact/pull/621](https://redirect.github.com/actions/upload-artifact/pull/621)

**Full Changelog**:
https://github.com/actions/upload-artifact/compare/v4.4.0...v4.4.1

###
[`v4.4.0`](https://redirect.github.com/actions/upload-artifact/releases/tag/v4.4.0)

[Compare
Source](https://redirect.github.com/actions/upload-artifact/compare/v4.3.6...v4.4.0)

#### Notice: Breaking Changes ⚠️

We will no longer include hidden files and folders by default in the
`upload-artifact` action of this version. This reduces the risk that
credentials are accidentally uploaded into artifacts. Customers who need
to continue to upload these files can use a new option,
`include-hidden-files`, to continue to do so.

See ["Notice of upcoming deprecations and breaking changes in GitHub
Actions
runners"](https://github.blog/changelog/2024-08-19-notice-of-upcoming-deprecations-and-breaking-changes-in-github-actions-runners/)
changelog and [this
issue](https://redirect.github.com/actions/upload-artifact/issues/602)
for more details.

#### What's Changed

- Exclude hidden files by default by
[@&#8203;joshmgross](https://redirect.github.com/joshmgross) in
[https://github.com/actions/upload-artifact/pull/598](https://redirect.github.com/actions/upload-artifact/pull/598)

**Full Changelog**:
https://github.com/actions/upload-artifact/compare/v4.3.6...v4.4.0

###
[`v4.3.6`](https://redirect.github.com/actions/upload-artifact/releases/tag/v4.3.6)

[Compare
Source](https://redirect.github.com/actions/upload-artifact/compare/v4.3.5...v4.3.6)

##### What's Changed

- Revert to
[@&#8203;actions/artifact](https://redirect.github.com/actions/artifact)
2.1.8 by [@&#8203;robherley](https://redirect.github.com/robherley) in
[https://github.com/actions/upload-artifact/pull/594](https://redirect.github.com/actions/upload-artifact/pull/594)

**Full Changelog**:
https://github.com/actions/upload-artifact/compare/v4...v4.3.6

###
[`v4.3.5`](https://redirect.github.com/actions/upload-artifact/releases/tag/v4.3.5)

[Compare
Source](https://redirect.github.com/actions/upload-artifact/compare/v4.3.4...v4.3.5)

#### What's Changed

- Bump
[@&#8203;actions/artifact](https://redirect.github.com/actions/artifact)
to v2.1.9 by [@&#8203;robherley](https://redirect.github.com/robherley)
in
[https://github.com/actions/upload-artifact/pull/588](https://redirect.github.com/actions/upload-artifact/pull/588)
- Fixed artifact upload chunk timeout logic
[#&#8203;1774](https://redirect.github.com/actions/toolkit/pull/1774)
- Use lazy stream to prevent issues with open file limits
[#&#8203;1771](https://redirect.github.com/actions/toolkit/pull/1771)

**Full Changelog**:
https://github.com/actions/upload-artifact/compare/v4.3.4...v4.3.5

###
[`v4.3.4`](https://redirect.github.com/actions/upload-artifact/releases/tag/v4.3.4)

[Compare
Source](https://redirect.github.com/actions/upload-artifact/compare/v4.3.3...v4.3.4)

#### What's Changed

- Update
[@&#8203;actions/artifact](https://redirect.github.com/actions/artifact)
version, bump dependencies by
[@&#8203;robherley](https://redirect.github.com/robherley) in
[https://github.com/actions/upload-artifact/pull/584](https://redirect.github.com/actions/upload-artifact/pull/584)

**Full Changelog**:
https://github.com/actions/upload-artifact/compare/v4.3.3...v4.3.4

###
[`v4.3.3`](https://redirect.github.com/actions/upload-artifact/releases/tag/v4.3.3)

[Compare
Source](https://redirect.github.com/actions/upload-artifact/compare/v4.3.2...v4.3.3)

##### What's Changed

- updating `@actions/artifact` dependency to v2.1.6 by
[@&#8203;eggyhead](https://redirect.github.com/eggyhead) in
[https://github.com/actions/upload-artifact/pull/565](https://redirect.github.com/actions/upload-artifact/pull/565)

**Full Changelog**:
https://github.com/actions/upload-artifact/compare/v4.3.2...v4.3.3

###
[`v4.3.2`](https://redirect.github.com/actions/upload-artifact/releases/tag/v4.3.2)

[Compare
Source](https://redirect.github.com/actions/upload-artifact/compare/v4.3.1...v4.3.2)

##### What's Changed

- Update release-new-action-version.yml by
[@&#8203;konradpabjan](https://redirect.github.com/konradpabjan) in
[https://github.com/actions/upload-artifact/pull/516](https://redirect.github.com/actions/upload-artifact/pull/516)
- Minor fix to the migration readme by
[@&#8203;andrewakim](https://redirect.github.com/andrewakim) in
[https://github.com/actions/upload-artifact/pull/523](https://redirect.github.com/actions/upload-artifact/pull/523)
- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://redirect.github.com/robherley) in
[https://github.com/actions/upload-artifact/pull/561](https://redirect.github.com/actions/upload-artifact/pull/561)
- updating `@actions/artifact` dependency to v2.1.5 and `@actions/core`
to v1.0.1 by [@&#8203;eggyhead](https://redirect.github.com/eggyhead) in
[https://github.com/actions/upload-artifact/pull/562](https://redirect.github.com/actions/upload-artifact/pull/562)

##### New Contributors

- [@&#8203;andrewakim](https://redirect.github.com/andrewakim) made
their first contribution in
[https://github.com/actions/upload-artifact/pull/523](https://redirect.github.com/actions/upload-artifact/pull/523)

**Full Changelog**:
https://github.com/actions/upload-artifact/compare/v4.3.1...v4.3.2

###
[`v4.3.1`](https://redirect.github.com/actions/upload-artifact/releases/tag/v4.3.1)

[Compare
Source](https://redirect.github.com/actions/upload-artifact/compare/v4.3.0...v4.3.1)

- Bump
[@&#8203;actions/artifacts](https://redirect.github.com/actions/artifacts)
to latest version to include [updated GHES host
check](https://redirect.github.com/actions/toolkit/pull/1648)

###
[`v4.3.0`](https://redirect.github.com/actions/upload-artifact/releases/tag/v4.3.0)

[Compare
Source](https://redirect.github.com/actions/upload-artifact/compare/v4.2.0...v4.3.0)

#### What's Changed

- Reorganize upload code in prep for merge logic & add more tests by
[@&#8203;robherley](https://redirect.github.com/robherley) in
[https://github.com/actions/upload-artifact/pull/504](https://redirect.github.com/actions/upload-artifact/pull/504)
- Add sub-action to merge artifacts by
[@&#8203;robherley](https://redirect.github.com/robherley) in
[https://github.com/actions/upload-artifact/pull/505](https://redirect.github.com/actions/upload-artifact/pull/505)

**Full Changelog**:
https://github.com/actions/upload-artifact/compare/v4...v4.3.0

###
[`v4.2.0`](https://redirect.github.com/actions/upload-artifact/releases/tag/v4.2.0)

[Compare
Source](https://redirect.github.com/actions/upload-artifact/compare/v4.1.0...v4.2.0)

##### What's Changed

- Ability to overwrite an Artifact by
[@&#8203;robherley](https://redirect.github.com/robherley) in
[https://github.com/actions/upload-artifact/pull/501](https://redirect.github.com/actions/upload-artifact/pull/501)

**Full Changelog**:
https://github.com/actions/upload-artifact/compare/v4...v4.2.0

###
[`v4.1.0`](https://redirect.github.com/actions/upload-artifact/releases/tag/v4.1.0)

[Compare
Source](https://redirect.github.com/actions/upload-artifact/compare/v4...v4.1.0)

#### What's Changed

- Add migrations docs by
[@&#8203;robherley](https://redirect.github.com/robherley) in
[https://github.com/actions/upload-artifact/pull/482](https://redirect.github.com/actions/upload-artifact/pull/482)
- Update README.md by
[@&#8203;samuelwine](https://redirect.github.com/samuelwine) in
[https://github.com/actions/upload-artifact/pull/492](https://redirect.github.com/actions/upload-artifact/pull/492)
- Support artifact-url output by
[@&#8203;konradpabjan](https://redirect.github.com/konradpabjan) in
[https://github.com/actions/upload-artifact/pull/496](https://redirect.github.com/actions/upload-artifact/pull/496)
- Update readme to reflect new 500 artifact per job limit by
[@&#8203;robherley](https://redirect.github.com/robherley) in
[https://github.com/actions/upload-artifact/pull/497](https://redirect.github.com/actions/upload-artifact/pull/497)

#### New Contributors

- [@&#8203;samuelwine](https://redirect.github.com/samuelwine) made
their first contribution in
[https://github.com/actions/upload-artifact/pull/492](https://redirect.github.com/actions/upload-artifact/pull/492)

**Full Changelog**:
https://github.com/actions/upload-artifact/compare/v4...v4.1.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 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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJTa2lwIENoYW5nZWxvZyIsImRlcGVuZGVuY2llcyJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-05 15:38:06 -07:00
renovate[bot]
67fc4d7efd chore(deps): update actions/setup-go action to v5.4.0 (#6742)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/setup-go](https://redirect.github.com/actions/setup-go) |
action | minor | `v5` -> `v5.4.0` |

---

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

---

### Release Notes

<details>
<summary>actions/setup-go (actions/setup-go)</summary>

###
[`v5.4.0`](https://redirect.github.com/actions/setup-go/releases/tag/v5.4.0)

[Compare
Source](https://redirect.github.com/actions/setup-go/compare/v5.3.0...v5.4.0)

##### What's Changed

##### Dependency updates :

- Upgrade semver from 7.6.0 to 7.6.3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/setup-go/pull/535](https://redirect.github.com/actions/setup-go/pull/535)
- Upgrade eslint-config-prettier from 8.10.0 to 10.0.1 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/setup-go/pull/536](https://redirect.github.com/actions/setup-go/pull/536)
- Upgrade
[@&#8203;action/cache](https://redirect.github.com/action/cache) from
4.0.0 to 4.0.2 by
[@&#8203;aparnajyothi-y](https://redirect.github.com/aparnajyothi-y) in
[https://github.com/actions/setup-go/pull/568](https://redirect.github.com/actions/setup-go/pull/568)
- Upgrade undici from 5.28.4 to 5.28.5 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/setup-go/pull/541](https://redirect.github.com/actions/setup-go/pull/541)

##### New Contributors

- [@&#8203;aparnajyothi-y](https://redirect.github.com/aparnajyothi-y)
made their first contribution in
[https://github.com/actions/setup-go/pull/568](https://redirect.github.com/actions/setup-go/pull/568)

**Full Changelog**:
https://github.com/actions/setup-go/compare/v5...v5.4.0

###
[`v5.3.0`](https://redirect.github.com/actions/setup-go/releases/tag/v5.3.0)

[Compare
Source](https://redirect.github.com/actions/setup-go/compare/v5.2.0...v5.3.0)

#### What's Changed

- Use the new cache service: upgrade `@actions/cache` to `^4.0.0` by
[@&#8203;Link-](https://redirect.github.com/Link-) in
[https://github.com/actions/setup-go/pull/531](https://redirect.github.com/actions/setup-go/pull/531)
- Configure Dependabot settings by
[@&#8203;HarithaVattikuti](https://redirect.github.com/HarithaVattikuti)
in
[https://github.com/actions/setup-go/pull/530](https://redirect.github.com/actions/setup-go/pull/530)
- Document update - permission section by
[@&#8203;HarithaVattikuti](https://redirect.github.com/HarithaVattikuti)
in
[https://github.com/actions/setup-go/pull/533](https://redirect.github.com/actions/setup-go/pull/533)
- Bump actions/publish-immutable-action from 0.0.3 to 0.0.4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/setup-go/pull/534](https://redirect.github.com/actions/setup-go/pull/534)

#### New Contributors

- [@&#8203;Link-](https://redirect.github.com/Link-) made their first
contribution in
[https://github.com/actions/setup-go/pull/531](https://redirect.github.com/actions/setup-go/pull/531)

**Full Changelog**:
https://github.com/actions/setup-go/compare/v5...v5.3.0

###
[`v5.2.0`](https://redirect.github.com/actions/setup-go/releases/tag/v5.2.0)

[Compare
Source](https://redirect.github.com/actions/setup-go/compare/v5.1.0...v5.2.0)

##### What's Changed

- Leveraging the raw API to retrieve the version-manifest, as it does
not impose a rate limit and hence facilitates unrestricted consumption
without the need for a token for Github Enterprise Servers by
[@&#8203;Shegox](https://redirect.github.com/Shegox) in
[https://github.com/actions/setup-go/pull/496](https://redirect.github.com/actions/setup-go/pull/496)

##### New Contributors

- [@&#8203;Shegox](https://redirect.github.com/Shegox) made their first
contribution in
[https://github.com/actions/setup-go/pull/496](https://redirect.github.com/actions/setup-go/pull/496)

**Full Changelog**:
https://github.com/actions/setup-go/compare/v5...v5.2.0

###
[`v5.1.0`](https://redirect.github.com/actions/setup-go/releases/tag/v5.1.0)

[Compare
Source](https://redirect.github.com/actions/setup-go/compare/v5.0.2...v5.1.0)

#### What's Changed

- Add workflow file for publishing releases to immutable action package
by [@&#8203;Jcambass](https://redirect.github.com/Jcambass) in
[https://github.com/actions/setup-go/pull/500](https://redirect.github.com/actions/setup-go/pull/500)
- Upgrade IA Publish by
[@&#8203;Jcambass](https://redirect.github.com/Jcambass) in
[https://github.com/actions/setup-go/pull/502](https://redirect.github.com/actions/setup-go/pull/502)
- Add architecture to cache key by
[@&#8203;Zxilly](https://redirect.github.com/Zxilly) in
[https://github.com/actions/setup-go/pull/493](https://redirect.github.com/actions/setup-go/pull/493)
This addresses issues with caching by adding the architecture (arch) to
the cache key, ensuring that cache keys are accurate to prevent
conflicts.
Note: This change may break previous cache keys as they will no longer
be compatible with the new format.
- Enhance workflows and Upgrade micromatch Dependency by
[@&#8203;priyagupta108](https://redirect.github.com/priyagupta108) in
[https://github.com/actions/setup-go/pull/510](https://redirect.github.com/actions/setup-go/pull/510)

**Bug Fixes**

- Revise `isGhes` logic by
[@&#8203;jww3](https://redirect.github.com/jww3) in
[https://github.com/actions/setup-go/pull/511](https://redirect.github.com/actions/setup-go/pull/511)

#### New Contributors

- [@&#8203;Zxilly](https://redirect.github.com/Zxilly) made their first
contribution in
[https://github.com/actions/setup-go/pull/493](https://redirect.github.com/actions/setup-go/pull/493)
- [@&#8203;Jcambass](https://redirect.github.com/Jcambass) made their
first contribution in
[https://github.com/actions/setup-go/pull/500](https://redirect.github.com/actions/setup-go/pull/500)
- [@&#8203;jww3](https://redirect.github.com/jww3) made their first
contribution in
[https://github.com/actions/setup-go/pull/511](https://redirect.github.com/actions/setup-go/pull/511)
- [@&#8203;priyagupta108](https://redirect.github.com/priyagupta108)
made their first contribution in
[https://github.com/actions/setup-go/pull/510](https://redirect.github.com/actions/setup-go/pull/510)

**Full Changelog**:
https://github.com/actions/setup-go/compare/v5...v5.1.0

###
[`v5.0.2`](https://redirect.github.com/actions/setup-go/releases/tag/v5.0.2)

[Compare
Source](https://redirect.github.com/actions/setup-go/compare/v5.0.1...v5.0.2)

##### What's Changed

##### Bug fixes:

- Fix versions check failure by
[@&#8203;HarithaVattikuti](https://redirect.github.com/HarithaVattikuti)
in
[https://github.com/actions/setup-go/pull/479](https://redirect.github.com/actions/setup-go/pull/479)

##### Dependency  updates:

- Bump braces from 3.0.2 to 3.0.3 and undici from 5.28.3 to 5.28.4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/setup-go/pull/487](https://redirect.github.com/actions/setup-go/pull/487)

##### New Contributors

-
[@&#8203;HarithaVattikuti](https://redirect.github.com/HarithaVattikuti)
made their first contribution in
[https://github.com/actions/setup-go/pull/479](https://redirect.github.com/actions/setup-go/pull/479)

**Full Changelog**:
https://github.com/actions/setup-go/compare/v5...v5.0.2

###
[`v5.0.1`](https://redirect.github.com/actions/setup-go/releases/tag/v5.0.1)

[Compare
Source](https://redirect.github.com/actions/setup-go/compare/v5...v5.0.1)

##### What's Changed

- Bump undici from 5.28.2 to 5.28.3 and dependencies upgrade by
[@&#8203;dependabot](https://redirect.github.com/dependabot) ,
[@&#8203;HarithaVattikuti](https://redirect.github.com/HarithaVattikuti)
in
[https://github.com/actions/setup-go/pull/465](https://redirect.github.com/actions/setup-go/pull/465)
- Update documentation with latest V5 release notes by
[@&#8203;ab](https://redirect.github.com/ab) in
[https://github.com/actions/setup-go/pull/459](https://redirect.github.com/actions/setup-go/pull/459)
- Update version documentation by
[@&#8203;178inaba](https://redirect.github.com/178inaba) in
[https://github.com/actions/setup-go/pull/458](https://redirect.github.com/actions/setup-go/pull/458)
- Documentation update of `actions/setup-go` to v5 by
[@&#8203;chenrui333](https://redirect.github.com/chenrui333) in
[https://github.com/actions/setup-go/pull/449](https://redirect.github.com/actions/setup-go/pull/449)

##### New Contributors

- [@&#8203;ab](https://redirect.github.com/ab) made their first
contribution in
[https://github.com/actions/setup-go/pull/459](https://redirect.github.com/actions/setup-go/pull/459)

**Full Changelog**:
https://github.com/actions/setup-go/compare/v5.0.0...v5.0.1

</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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJTa2lwIENoYW5nZWxvZyIsImRlcGVuZGVuY2llcyJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-05 15:24:18 -07:00
renovate[bot]
efd728408f chore(deps): update actions/stale action to v9.1.0 (#6743)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/stale](https://redirect.github.com/actions/stale) | action |
minor | `v9` -> `v9.1.0` |

---

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

---

### Release Notes

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

###
[`v9.1.0`](https://redirect.github.com/actions/stale/releases/tag/v9.1.0)

[Compare
Source](https://redirect.github.com/actions/stale/compare/v9.0.0...v9.1.0)

#### What's Changed

- Documentation update by
[@&#8203;Marukome0743](https://redirect.github.com/Marukome0743) in
[https://github.com/actions/stale/pull/1116](https://redirect.github.com/actions/stale/pull/1116)
- Add workflow file for publishing releases to immutable action package
by [@&#8203;Jcambass](https://redirect.github.com/Jcambass) in
[https://github.com/actions/stale/pull/1179](https://redirect.github.com/actions/stale/pull/1179)
- Update undici from 5.28.2 to 5.28.4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/stale/pull/1150](https://redirect.github.com/actions/stale/pull/1150)
- Update actions/checkout from 3 to 4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/stale/pull/1091](https://redirect.github.com/actions/stale/pull/1091)
- Update actions/publish-action from 0.2.2 to 0.3.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/stale/pull/1147](https://redirect.github.com/actions/stale/pull/1147)
- Update ts-jest from 29.1.1 to 29.2.5 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/stale/pull/1175](https://redirect.github.com/actions/stale/pull/1175)
- Update
[@&#8203;actions/core](https://redirect.github.com/actions/core) from
1.10.1 to 1.11.1 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/stale/pull/1191](https://redirect.github.com/actions/stale/pull/1191)
- Update [@&#8203;types/jest](https://redirect.github.com/types/jest)
from 29.5.11 to 29.5.14 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/stale/pull/1193](https://redirect.github.com/actions/stale/pull/1193)
- Update
[@&#8203;actions/cache](https://redirect.github.com/actions/cache) from
3.2.2 to 4.0.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/stale/pull/1194](https://redirect.github.com/actions/stale/pull/1194)

#### New Contributors

- [@&#8203;Marukome0743](https://redirect.github.com/Marukome0743) made
their first contribution in
[https://github.com/actions/stale/pull/1116](https://redirect.github.com/actions/stale/pull/1116)
- [@&#8203;Jcambass](https://redirect.github.com/Jcambass) made their
first contribution in
[https://github.com/actions/stale/pull/1179](https://redirect.github.com/actions/stale/pull/1179)

**Full Changelog**: https://github.com/actions/stale/compare/v9...v9.1.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 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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJTa2lwIENoYW5nZWxvZyIsImRlcGVuZGVuY2llcyJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-05 14:23:58 -07:00
renovate[bot]
b93133a4be fix(deps): update googleapis to f936aa4 (#6741)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[google.golang.org/genproto/googleapis/api](https://redirect.github.com/googleapis/go-genproto)
| indirect | digest | `10db94c` -> `f936aa4` |
|
[google.golang.org/genproto/googleapis/rpc](https://redirect.github.com/googleapis/go-genproto)
| indirect | digest | `10db94c` -> `f936aa4` |
|
[google.golang.org/genproto/googleapis/rpc](https://redirect.github.com/googleapis/go-genproto)
| require | digest | `10db94c` -> `f936aa4` |

---

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

---

### 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 these
updates again.

---

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

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJTa2lwIENoYW5nZWxvZyIsImRlcGVuZGVuY2llcyJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-05 14:15:56 -07:00
renovate[bot]
c4d4633232 chore(deps): update actions/download-artifact action to v4.3.0 (#6740)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[actions/download-artifact](https://redirect.github.com/actions/download-artifact)
| action | minor | `v4` -> `v4.3.0` |

---

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

---

### Release Notes

<details>
<summary>actions/download-artifact (actions/download-artifact)</summary>

###
[`v4.3.0`](https://redirect.github.com/actions/download-artifact/releases/tag/v4.3.0)

[Compare
Source](https://redirect.github.com/actions/download-artifact/compare/v4.2.1...v4.3.0)

##### What's Changed

- feat: implement new `artifact-ids` input by
[@&#8203;GrantBirki](https://redirect.github.com/GrantBirki) in
[https://github.com/actions/download-artifact/pull/401](https://redirect.github.com/actions/download-artifact/pull/401)
- Fix workflow example for downloading by artifact ID by
[@&#8203;joshmgross](https://redirect.github.com/joshmgross) in
[https://github.com/actions/download-artifact/pull/402](https://redirect.github.com/actions/download-artifact/pull/402)
- Prep for v4.3.0 release by
[@&#8203;robherley](https://redirect.github.com/robherley) in
[https://github.com/actions/download-artifact/pull/404](https://redirect.github.com/actions/download-artifact/pull/404)

##### New Contributors

- [@&#8203;GrantBirki](https://redirect.github.com/GrantBirki) made
their first contribution in
[https://github.com/actions/download-artifact/pull/401](https://redirect.github.com/actions/download-artifact/pull/401)

**Full Changelog**:
https://github.com/actions/download-artifact/compare/v4.2.1...v4.3.0

###
[`v4.2.1`](https://redirect.github.com/actions/download-artifact/releases/tag/v4.2.1)

[Compare
Source](https://redirect.github.com/actions/download-artifact/compare/v4.2.0...v4.2.1)

#### What's Changed

- Add unit tests by
[@&#8203;GhadimiR](https://redirect.github.com/GhadimiR) in
[https://github.com/actions/download-artifact/pull/392](https://redirect.github.com/actions/download-artifact/pull/392)
- Fix bug introduced in 4.2.0 by
[@&#8203;GhadimiR](https://redirect.github.com/GhadimiR) in
[https://github.com/actions/download-artifact/pull/391](https://redirect.github.com/actions/download-artifact/pull/391)

**Full Changelog**:
https://github.com/actions/download-artifact/compare/v4.2.0...v4.2.1

###
[`v4.2.0`](https://redirect.github.com/actions/download-artifact/releases/tag/v4.2.0)

[Compare
Source](https://redirect.github.com/actions/download-artifact/compare/v4.1.9...v4.2.0)

##### What's Changed

- Update README.md by
[@&#8203;lkfortuna](https://redirect.github.com/lkfortuna) in
[https://github.com/actions/download-artifact/pull/384](https://redirect.github.com/actions/download-artifact/pull/384)
- Bump artifact version, do digest check by
[@&#8203;GhadimiR](https://redirect.github.com/GhadimiR) in
[https://github.com/actions/download-artifact/pull/383](https://redirect.github.com/actions/download-artifact/pull/383)

##### New Contributors

- [@&#8203;lkfortuna](https://redirect.github.com/lkfortuna) made their
first contribution in
[https://github.com/actions/download-artifact/pull/384](https://redirect.github.com/actions/download-artifact/pull/384)
- [@&#8203;GhadimiR](https://redirect.github.com/GhadimiR) made their
first contribution in
[https://github.com/actions/download-artifact/pull/383](https://redirect.github.com/actions/download-artifact/pull/383)

**Full Changelog**:
https://github.com/actions/download-artifact/compare/v4.1.9...v4.2.0

###
[`v4.1.9`](https://redirect.github.com/actions/download-artifact/releases/tag/v4.1.9)

[Compare
Source](https://redirect.github.com/actions/download-artifact/compare/v4.1.8...v4.1.9)

##### What's Changed

- Add workflow file for publishing releases to immutable action package
by [@&#8203;Jcambass](https://redirect.github.com/Jcambass) in
[https://github.com/actions/download-artifact/pull/354](https://redirect.github.com/actions/download-artifact/pull/354)
- docs: small migration fix by
[@&#8203;froblesmartin](https://redirect.github.com/froblesmartin) in
[https://github.com/actions/download-artifact/pull/370](https://redirect.github.com/actions/download-artifact/pull/370)
- Update MIGRATION.md by
[@&#8203;andyfeller](https://redirect.github.com/andyfeller) in
[https://github.com/actions/download-artifact/pull/372](https://redirect.github.com/actions/download-artifact/pull/372)
- Update artifact package to 2.2.2 by
[@&#8203;yacaovsnc](https://redirect.github.com/yacaovsnc) in
[https://github.com/actions/download-artifact/pull/380](https://redirect.github.com/actions/download-artifact/pull/380)

##### New Contributors

- [@&#8203;Jcambass](https://redirect.github.com/Jcambass) made their
first contribution in
[https://github.com/actions/download-artifact/pull/354](https://redirect.github.com/actions/download-artifact/pull/354)
- [@&#8203;froblesmartin](https://redirect.github.com/froblesmartin)
made their first contribution in
[https://github.com/actions/download-artifact/pull/370](https://redirect.github.com/actions/download-artifact/pull/370)
- [@&#8203;andyfeller](https://redirect.github.com/andyfeller) made
their first contribution in
[https://github.com/actions/download-artifact/pull/372](https://redirect.github.com/actions/download-artifact/pull/372)
- [@&#8203;yacaovsnc](https://redirect.github.com/yacaovsnc) made their
first contribution in
[https://github.com/actions/download-artifact/pull/380](https://redirect.github.com/actions/download-artifact/pull/380)

**Full Changelog**:
https://github.com/actions/download-artifact/compare/v4.1.8...v4.1.9

###
[`v4.1.8`](https://redirect.github.com/actions/download-artifact/releases/tag/v4.1.8)

[Compare
Source](https://redirect.github.com/actions/download-artifact/compare/v4.1.7...v4.1.8)

#### What's Changed

- Update
[@&#8203;actions/artifact](https://redirect.github.com/actions/artifact)
version, bump dependencies by
[@&#8203;robherley](https://redirect.github.com/robherley) in
[https://github.com/actions/download-artifact/pull/341](https://redirect.github.com/actions/download-artifact/pull/341)

**Full Changelog**:
https://github.com/actions/download-artifact/compare/v4.1.7...v4.1.8

###
[`v4.1.7`](https://redirect.github.com/actions/download-artifact/releases/tag/v4.1.7)

[Compare
Source](https://redirect.github.com/actions/download-artifact/compare/v4.1.6...v4.1.7)

#### What's Changed

- Update
[@&#8203;actions/artifact](https://redirect.github.com/actions/artifact)
dependency by
[@&#8203;bethanyj28](https://redirect.github.com/bethanyj28) in
[https://github.com/actions/download-artifact/pull/325](https://redirect.github.com/actions/download-artifact/pull/325)

**Full Changelog**:
https://github.com/actions/download-artifact/compare/v4.1.6...v4.1.7

###
[`v4.1.6`](https://redirect.github.com/actions/download-artifact/releases/tag/v4.1.6)

[Compare
Source](https://redirect.github.com/actions/download-artifact/compare/v4.1.5...v4.1.6)

#### What's Changed

- updating `@actions/artifact` dependency to v2.1.6 by
[@&#8203;eggyhead](https://redirect.github.com/eggyhead) in
[https://github.com/actions/download-artifact/pull/324](https://redirect.github.com/actions/download-artifact/pull/324)

**Full Changelog**:
https://github.com/actions/download-artifact/compare/v4.1.5...v4.1.6

###
[`v4.1.5`](https://redirect.github.com/actions/download-artifact/releases/tag/v4.1.5)

[Compare
Source](https://redirect.github.com/actions/download-artifact/compare/v4.1.4...v4.1.5)

#### What's Changed

- Update readme with v3/v2/v1 deprecation notice by
[@&#8203;robherley](https://redirect.github.com/robherley) in
[https://github.com/actions/download-artifact/pull/322](https://redirect.github.com/actions/download-artifact/pull/322)
- Update dependencies `@actions/core` to v1.10.1 and `@actions/artifact`
to v2.1.5

**Full Changelog**:
https://github.com/actions/download-artifact/compare/v4.1.4...v4.1.5

###
[`v4.1.4`](https://redirect.github.com/actions/download-artifact/releases/tag/v4.1.4)

[Compare
Source](https://redirect.github.com/actions/download-artifact/compare/v4.1.3...v4.1.4)

#### What's Changed

- Update
[@&#8203;actions/artifact](https://redirect.github.com/actions/artifact)
by [@&#8203;bethanyj28](https://redirect.github.com/bethanyj28) in
[https://github.com/actions/download-artifact/pull/307](https://redirect.github.com/actions/download-artifact/pull/307)

**Full Changelog**:
https://github.com/actions/download-artifact/compare/v4...v4.1.4

###
[`v4.1.3`](https://redirect.github.com/actions/download-artifact/releases/tag/v4.1.3)

[Compare
Source](https://redirect.github.com/actions/download-artifact/compare/v4.1.2...v4.1.3)

#### What's Changed

- Update release-new-action-version.yml by
[@&#8203;konradpabjan](https://redirect.github.com/konradpabjan) in
[https://github.com/actions/download-artifact/pull/292](https://redirect.github.com/actions/download-artifact/pull/292)
- Update toolkit dependency with updated unzip logic by
[@&#8203;bethanyj28](https://redirect.github.com/bethanyj28) in
[https://github.com/actions/download-artifact/pull/299](https://redirect.github.com/actions/download-artifact/pull/299)
- Update
[@&#8203;actions/artifact](https://redirect.github.com/actions/artifact)
by [@&#8203;bethanyj28](https://redirect.github.com/bethanyj28) in
[https://github.com/actions/download-artifact/pull/303](https://redirect.github.com/actions/download-artifact/pull/303)

#### New Contributors

- [@&#8203;bethanyj28](https://redirect.github.com/bethanyj28) made
their first contribution in
[https://github.com/actions/download-artifact/pull/299](https://redirect.github.com/actions/download-artifact/pull/299)

**Full Changelog**:
https://github.com/actions/download-artifact/compare/v4...v4.1.3

###
[`v4.1.2`](https://redirect.github.com/actions/download-artifact/releases/tag/v4.1.2)

[Compare
Source](https://redirect.github.com/actions/download-artifact/compare/v4.1.1...v4.1.2)

- Bump
[@&#8203;actions/artifacts](https://redirect.github.com/actions/artifacts)
to latest version to include [updated GHES host
check](https://redirect.github.com/actions/toolkit/pull/1648)

###
[`v4.1.1`](https://redirect.github.com/actions/download-artifact/releases/tag/v4.1.1)

[Compare
Source](https://redirect.github.com/actions/download-artifact/compare/v4.1.0...v4.1.1)

- Fix transient request timeouts
[https://github.com/actions/download-artifact/issues/249](https://redirect.github.com/actions/download-artifact/issues/249)
-   Bump `@actions/artifacts` to latest version

###
[`v4.1.0`](https://redirect.github.com/actions/download-artifact/releases/tag/v4.1.0)

[Compare
Source](https://redirect.github.com/actions/download-artifact/compare/v4.0.0...v4.1.0)

#### What's Changed

- Some cleanup by
[@&#8203;robherley](https://redirect.github.com/robherley) in
[https://github.com/actions/download-artifact/pull/247](https://redirect.github.com/actions/download-artifact/pull/247)
- Fix default for run-id by
[@&#8203;stchr](https://redirect.github.com/stchr) in
[https://github.com/actions/download-artifact/pull/252](https://redirect.github.com/actions/download-artifact/pull/252)
- Support pattern matching to filter artifacts & merge to same directory
by [@&#8203;robherley](https://redirect.github.com/robherley) in
[https://github.com/actions/download-artifact/pull/259](https://redirect.github.com/actions/download-artifact/pull/259)

#### New Contributors

- [@&#8203;stchr](https://redirect.github.com/stchr) made their first
contribution in
[https://github.com/actions/download-artifact/pull/252](https://redirect.github.com/actions/download-artifact/pull/252)

**Full Changelog**:
https://github.com/actions/download-artifact/compare/v4...v4.1.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 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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJTa2lwIENoYW5nZWxvZyIsImRlcGVuZGVuY2llcyJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-05 13:57:56 -07:00
renovate[bot]
172c4adace chore(deps): update actions/checkout action to v4.2.2 (#6739)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/checkout](https://redirect.github.com/actions/checkout) |
action | minor | `v4` -> `v4.2.2` |

---

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

---

### Release Notes

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

###
[`v4.2.2`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v422)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.2.1...v4.2.2)

- `url-helper.ts` now leverages well-known environment variables by
[@&#8203;jww3](https://redirect.github.com/jww3) in
[https://github.com/actions/checkout/pull/1941](https://redirect.github.com/actions/checkout/pull/1941)
- Expand unit test coverage for `isGhes` by
[@&#8203;jww3](https://redirect.github.com/jww3) in
[https://github.com/actions/checkout/pull/1946](https://redirect.github.com/actions/checkout/pull/1946)

###
[`v4.2.1`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v421)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.2.0...v4.2.1)

- Check out other refs/\* by commit if provided, fall back to ref by
[@&#8203;orhantoy](https://redirect.github.com/orhantoy) in
[https://github.com/actions/checkout/pull/1924](https://redirect.github.com/actions/checkout/pull/1924)

###
[`v4.2.0`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v420)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.7...v4.2.0)

- Add Ref and Commit outputs by
[@&#8203;lucacome](https://redirect.github.com/lucacome) in
[https://github.com/actions/checkout/pull/1180](https://redirect.github.com/actions/checkout/pull/1180)
- Dependency updates by
[@&#8203;dependabot-](https://redirect.github.com/dependabot-)
[https://github.com/actions/checkout/pull/1777](https://redirect.github.com/actions/checkout/pull/1777),
[https://github.com/actions/checkout/pull/1872](https://redirect.github.com/actions/checkout/pull/1872)

###
[`v4.1.7`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v417)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.6...v4.1.7)

- Bump the minor-npm-dependencies group across 1 directory with 4
updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)
in
[https://github.com/actions/checkout/pull/1739](https://redirect.github.com/actions/checkout/pull/1739)
- Bump actions/checkout from 3 to 4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/checkout/pull/1697](https://redirect.github.com/actions/checkout/pull/1697)
- Check out other refs/\* by commit by
[@&#8203;orhantoy](https://redirect.github.com/orhantoy) in
[https://github.com/actions/checkout/pull/1774](https://redirect.github.com/actions/checkout/pull/1774)
- Pin actions/checkout's own workflows to a known, good, stable version.
by [@&#8203;jww3](https://redirect.github.com/jww3) in
[https://github.com/actions/checkout/pull/1776](https://redirect.github.com/actions/checkout/pull/1776)

###
[`v4.1.6`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v416)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.5...v4.1.6)

- Check platform to set archive extension appropriately by
[@&#8203;cory-miller](https://redirect.github.com/cory-miller) in
[https://github.com/actions/checkout/pull/1732](https://redirect.github.com/actions/checkout/pull/1732)

###
[`v4.1.5`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v415)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.4...v4.1.5)

- Update NPM dependencies by
[@&#8203;cory-miller](https://redirect.github.com/cory-miller) in
[https://github.com/actions/checkout/pull/1703](https://redirect.github.com/actions/checkout/pull/1703)
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/checkout/pull/1694](https://redirect.github.com/actions/checkout/pull/1694)
- Bump actions/setup-node from 1 to 4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/checkout/pull/1696](https://redirect.github.com/actions/checkout/pull/1696)
- Bump actions/upload-artifact from 2 to 4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/checkout/pull/1695](https://redirect.github.com/actions/checkout/pull/1695)
- README: Suggest `user.email` to be
`41898282+github-actions[bot]@&#8203;users.noreply.github.com` by
[@&#8203;cory-miller](https://redirect.github.com/cory-miller) in
[https://github.com/actions/checkout/pull/1707](https://redirect.github.com/actions/checkout/pull/1707)

###
[`v4.1.4`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v414)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.3...v4.1.4)

- Disable `extensions.worktreeConfig` when disabling `sparse-checkout`
by [@&#8203;jww3](https://redirect.github.com/jww3) in
[https://github.com/actions/checkout/pull/1692](https://redirect.github.com/actions/checkout/pull/1692)
- Add dependabot config by
[@&#8203;cory-miller](https://redirect.github.com/cory-miller) in
[https://github.com/actions/checkout/pull/1688](https://redirect.github.com/actions/checkout/pull/1688)
- Bump the minor-actions-dependencies group with 2 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/checkout/pull/1693](https://redirect.github.com/actions/checkout/pull/1693)
- Bump word-wrap from 1.2.3 to 1.2.5 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/checkout/pull/1643](https://redirect.github.com/actions/checkout/pull/1643)

###
[`v4.1.3`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v413)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.2...v4.1.3)

- Check git version before attempting to disable `sparse-checkout` by
[@&#8203;jww3](https://redirect.github.com/jww3) in
[https://github.com/actions/checkout/pull/1656](https://redirect.github.com/actions/checkout/pull/1656)
- Add SSH user parameter by
[@&#8203;cory-miller](https://redirect.github.com/cory-miller) in
[https://github.com/actions/checkout/pull/1685](https://redirect.github.com/actions/checkout/pull/1685)
- Update `actions/checkout` version in `update-main-version.yml` by
[@&#8203;jww3](https://redirect.github.com/jww3) in
[https://github.com/actions/checkout/pull/1650](https://redirect.github.com/actions/checkout/pull/1650)

###
[`v4.1.2`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v412)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.1...v4.1.2)

- Fix: Disable sparse checkout whenever `sparse-checkout` option is not
present [@&#8203;dscho](https://redirect.github.com/dscho) in
[https://github.com/actions/checkout/pull/1598](https://redirect.github.com/actions/checkout/pull/1598)

###
[`v4.1.1`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v411)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4.1.0...v4.1.1)

- Correct link to GitHub Docs by
[@&#8203;peterbe](https://redirect.github.com/peterbe) in
[https://github.com/actions/checkout/pull/1511](https://redirect.github.com/actions/checkout/pull/1511)
- Link to release page from what's new section by
[@&#8203;cory-miller](https://redirect.github.com/cory-miller) in
[https://github.com/actions/checkout/pull/1514](https://redirect.github.com/actions/checkout/pull/1514)

###
[`v4.1.0`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v410)

[Compare
Source](https://redirect.github.com/actions/checkout/compare/v4...v4.1.0)

- [Add support for partial checkout
filters](https://redirect.github.com/actions/checkout/pull/1396)

</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 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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJTa2lwIENoYW5nZWxvZyIsImRlcGVuZGVuY2llcyJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-05 13:51:30 -07:00
renovate[bot]
d4a557c53d chore(deps): update peter-evans/create-issue-from-file action to v5.0.1 (#6735)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[peter-evans/create-issue-from-file](https://redirect.github.com/peter-evans/create-issue-from-file)
| action | patch | `v5` -> `v5.0.1` |

---

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

---

### Release Notes

<details>
<summary>peter-evans/create-issue-from-file
(peter-evans/create-issue-from-file)</summary>

###
[`v5.0.1`](https://redirect.github.com/peter-evans/create-issue-from-file/releases/tag/v5.0.1):
Create Issue From File v5.0.1

[Compare
Source](https://redirect.github.com/peter-evans/create-issue-from-file/compare/v5...v5.0.1)

 The action will now truncate the issue body when it exceeds the max
size permitted by GitHub's API

##### What's Changed

- Bump peter-evans/create-or-update-comment from 3 to 4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1510](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1510)
- Bump [@&#8203;types/node](https://redirect.github.com/types/node) from
18.19.8 to 18.19.10 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1515](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1515)
- Bump peter-evans/create-pull-request from 5 to 6 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1520](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1520)
- Bump peter-evans/slash-command-dispatch from 3 to 4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1521](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1521)
- Bump [@&#8203;types/node](https://redirect.github.com/types/node) from
18.19.10 to 18.19.14 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1530](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1530)
- Bump [@&#8203;types/node](https://redirect.github.com/types/node) from
18.19.14 to 18.19.15 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1535](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1535)
- Bump prettier from 3.2.4 to 3.2.5 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1536](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1536)
- Bump [@&#8203;types/node](https://redirect.github.com/types/node) from
18.19.15 to 18.19.17 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1545](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1545)
- Bump eslint-plugin-jest from 27.6.3 to 27.8.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1546](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1546)
- Bump eslint-plugin-jest from 27.8.0 to 27.9.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1555](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1555)
- Bump [@&#8203;types/node](https://redirect.github.com/types/node) from
18.19.17 to 18.19.18 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1556](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1556)
- Bump eslint-plugin-github from 4.10.1 to 4.10.2 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1565](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1565)
- Bump [@&#8203;types/node](https://redirect.github.com/types/node) from
18.19.18 to 18.19.21 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1567](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1567)
- Bump eslint from 8.56.0 to 8.57.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1566](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1566)
- Bump [@&#8203;types/node](https://redirect.github.com/types/node) from
18.19.21 to 18.19.22 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1582](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1582)
- Bump [@&#8203;types/node](https://redirect.github.com/types/node) from
18.19.22 to 18.19.24 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1587](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1587)
- Bump [@&#8203;types/node](https://redirect.github.com/types/node) from
18.19.24 to 18.19.26 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1592](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1592)
- Bump [@&#8203;types/node](https://redirect.github.com/types/node) from
18.19.26 to 18.19.29 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1597](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1597)
- Bump [@&#8203;types/node](https://redirect.github.com/types/node) from
18.19.29 to 18.19.31 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1602](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1602)
- Bump [@&#8203;types/node](https://redirect.github.com/types/node) from
18.19.31 to 18.19.33 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1607](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1607)
- Bump [@&#8203;types/node](https://redirect.github.com/types/node) from
18.19.33 to 18.19.34 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1612](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1612)
- Bump prettier from 3.2.5 to 3.3.1 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1613](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1613)
- Bump prettier from 3.3.1 to 3.3.2 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1622](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1622)
- Bump braces from 3.0.2 to 3.0.3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1625](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1625)
- Bump ws from 7.5.9 to 7.5.10 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1632](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1632)
- Bump [@&#8203;types/node](https://redirect.github.com/types/node) from
18.19.34 to 18.19.38 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1637](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1637)
- Bump [@&#8203;types/node](https://redirect.github.com/types/node) from
18.19.38 to 18.19.39 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1642](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1642)
- Bump [@&#8203;types/node](https://redirect.github.com/types/node) from
18.19.39 to 18.19.41 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1647](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1647)
- Bump prettier from 3.3.2 to 3.3.3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1648](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1648)
- Bump eslint-plugin-prettier from 5.1.3 to 5.2.1 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1649](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1649)
- Bump [@&#8203;types/node](https://redirect.github.com/types/node) from
18.19.41 to 18.19.42 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1663](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1663)
- Bump [@&#8203;types/node](https://redirect.github.com/types/node) from
18.19.42 to 18.19.43 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1668](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1668)
- Bump [@&#8203;types/node](https://redirect.github.com/types/node) from
18.19.43 to 18.19.44 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1674](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1674)
- Bump [@&#8203;types/node](https://redirect.github.com/types/node) from
18.19.44 to 18.19.45 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1679](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1679)
- Bump [@&#8203;types/node](https://redirect.github.com/types/node) from
18.19.45 to 18.19.47 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1684](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1684)
- Bump peter-evans/create-pull-request from 6 to 7 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1689](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1689)
- Bump [@&#8203;types/node](https://redirect.github.com/types/node) from
18.19.47 to 18.19.50 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1694](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1694)
- Update README.md by
[@&#8203;AndreiCherniaev](https://redirect.github.com/AndreiCherniaev)
in
[https://github.com/peter-evans/create-issue-from-file/pull/1699](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1699)
- Remove dots from table by
[@&#8203;AndreiCherniaev](https://redirect.github.com/AndreiCherniaev)
in
[https://github.com/peter-evans/create-issue-from-file/pull/1700](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1700)
- Bump eslint from 8.57.0 to 8.57.1 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/peter-evans/create-issue-from-file/pull/1706](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1706)
- fix: truncate body when exceeds max length by
[@&#8203;peter-evans](https://redirect.github.com/peter-evans) in
[https://github.com/peter-evans/create-issue-from-file/pull/1711](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1711)

##### New Contributors

- [@&#8203;AndreiCherniaev](https://redirect.github.com/AndreiCherniaev)
made their first contribution in
[https://github.com/peter-evans/create-issue-from-file/pull/1699](https://redirect.github.com/peter-evans/create-issue-from-file/pull/1699)

**Full Changelog**:
https://github.com/peter-evans/create-issue-from-file/compare/v5.0.0...v5.0.1

</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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJTa2lwIENoYW5nZWxvZyIsImRlcGVuZGVuY2llcyJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-05 16:42:30 +02:00
renovate[bot]
95fab57c8c chore(deps): update actions/cache action to v4.2.3 (#6736)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/cache](https://redirect.github.com/actions/cache) | action |
minor | `v4` -> `v4.2.3` |

---

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

---

### Release Notes

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

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

[Compare
Source](https://redirect.github.com/actions/cache/compare/v4.2.2...v4.2.3)

##### What's Changed

- Update to use
[@&#8203;actions/cache](https://redirect.github.com/actions/cache) 4.0.3
package & prepare for new release by
[@&#8203;salmanmkc](https://redirect.github.com/salmanmkc) in
[https://github.com/actions/cache/pull/1577](https://redirect.github.com/actions/cache/pull/1577)
(SAS tokens for cache entries are now masked in debug logs)

##### New Contributors

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

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

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

[Compare
Source](https://redirect.github.com/actions/cache/compare/v4.2.1...v4.2.2)

#### What's Changed

> \[!IMPORTANT]
> As a reminder, there were important backend changes to release v4.2.0,
see [those release
notes](https://redirect.github.com/actions/cache/releases/tag/v4.2.0)
and [the
announcement](https://redirect.github.com/actions/cache/discussions/1510)
for more details.

- Bump
[@&#8203;actions/cache](https://redirect.github.com/actions/cache) to
v4.0.2 by [@&#8203;robherley](https://redirect.github.com/robherley) in
[https://github.com/actions/cache/pull/1560](https://redirect.github.com/actions/cache/pull/1560)

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

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

[Compare
Source](https://redirect.github.com/actions/cache/compare/v4.2.0...v4.2.1)

#### What's Changed

> \[!IMPORTANT]
> As a reminder, there were important backend changes to release v4.2.0,
see [those release
notes](https://redirect.github.com/actions/cache/releases/tag/v4.2.0)
and [the
announcement](https://redirect.github.com/actions/cache/discussions/1510)
for more details.

- docs: GitHub is spelled incorrectly in caching-strategies.md by
[@&#8203;janco-absa](https://redirect.github.com/janco-absa) in
[https://github.com/actions/cache/pull/1526](https://redirect.github.com/actions/cache/pull/1526)
- docs: Make the "always save prime numbers" example more clear by
[@&#8203;Tobbe](https://redirect.github.com/Tobbe) in
[https://github.com/actions/cache/pull/1525](https://redirect.github.com/actions/cache/pull/1525)
- Update force deletion docs due a recent deprecation by
[@&#8203;sebbalex](https://redirect.github.com/sebbalex) in
[https://github.com/actions/cache/pull/1500](https://redirect.github.com/actions/cache/pull/1500)
- Bump
[@&#8203;actions/cache](https://redirect.github.com/actions/cache) to
v4.0.1 by [@&#8203;robherley](https://redirect.github.com/robherley) in
[https://github.com/actions/cache/pull/1554](https://redirect.github.com/actions/cache/pull/1554)

#### New Contributors

- [@&#8203;janco-absa](https://redirect.github.com/janco-absa) made
their first contribution in
[https://github.com/actions/cache/pull/1526](https://redirect.github.com/actions/cache/pull/1526)
- [@&#8203;Tobbe](https://redirect.github.com/Tobbe) made their first
contribution in
[https://github.com/actions/cache/pull/1525](https://redirect.github.com/actions/cache/pull/1525)
- [@&#8203;sebbalex](https://redirect.github.com/sebbalex) made their
first contribution in
[https://github.com/actions/cache/pull/1500](https://redirect.github.com/actions/cache/pull/1500)

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

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

[Compare
Source](https://redirect.github.com/actions/cache/compare/v4.1.2...v4.2.0)

#### ⚠️ Important Changes

The cache backend service has been rewritten from the ground up for
improved performance and reliability.
[actions/cache](https://redirect.github.com/actions/cache) now
integrates with the new cache service (v2) APIs.

The new service will gradually roll out as of **February 1st, 2025**.
The legacy service will also be sunset on the same date. Changes in
these release are **fully backward compatible**.

**We are deprecating some versions of this action**. We recommend
upgrading to version `v4` or `v3` as soon as possible before **February
1st, 2025.** (Upgrade instructions below).

If you are using pinned SHAs, please use the SHAs of versions `v4.2.0`
or `v3.4.0`

If you do not upgrade, all workflow runs using any of the deprecated
[actions/cache](https://redirect.github.com/actions/cache) will fail.

Upgrading to the recommended versions will not break your workflows.

Read more about the change & access the migration guide: [reference to
the
announcement](https://redirect.github.com/actions/cache/discussions/1510).

##### Minor changes

Minor and patch version updates for these dependencies:

- [@&#8203;actions/core](https://redirect.github.com/actions/core):
`1.11.1`
- [@&#8203;actions/io](https://redirect.github.com/actions/io): `1.1.3`
- [@&#8203;vercel/ncc](https://redirect.github.com/vercel/ncc): `0.38.3`

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

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

[Compare
Source](https://redirect.github.com/actions/cache/compare/v4.1.1...v4.1.2)

#### What's Changed

- Add Bun example by
[@&#8203;idleberg](https://redirect.github.com/idleberg) in
[https://github.com/actions/cache/pull/1456](https://redirect.github.com/actions/cache/pull/1456)
- Revise `isGhes` logic by
[@&#8203;jww3](https://redirect.github.com/jww3) in
[https://github.com/actions/cache/pull/1474](https://redirect.github.com/actions/cache/pull/1474)
- Bump braces from 3.0.2 to 3.0.3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/cache/pull/1475](https://redirect.github.com/actions/cache/pull/1475)
- Add dependabot.yml to enable automatic dependency upgrades by
[@&#8203;Link-](https://redirect.github.com/Link-) in
[https://github.com/actions/cache/pull/1476](https://redirect.github.com/actions/cache/pull/1476)
- Bump actions/checkout from 3 to 4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/cache/pull/1478](https://redirect.github.com/actions/cache/pull/1478)
- Bump actions/stale from 3 to 9 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/cache/pull/1479](https://redirect.github.com/actions/cache/pull/1479)
- Bump github/codeql-action from 2 to 3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/cache/pull/1483](https://redirect.github.com/actions/cache/pull/1483)
- Bump actions/setup-node from 3 to 4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/actions/cache/pull/1481](https://redirect.github.com/actions/cache/pull/1481)
- Prepare `4.1.2` release by
[@&#8203;Link-](https://redirect.github.com/Link-) in
[https://github.com/actions/cache/pull/1477](https://redirect.github.com/actions/cache/pull/1477)

#### New Contributors

- [@&#8203;idleberg](https://redirect.github.com/idleberg) made their
first contribution in
[https://github.com/actions/cache/pull/1456](https://redirect.github.com/actions/cache/pull/1456)
- [@&#8203;jww3](https://redirect.github.com/jww3) made their first
contribution in
[https://github.com/actions/cache/pull/1474](https://redirect.github.com/actions/cache/pull/1474)
- [@&#8203;Link-](https://redirect.github.com/Link-) made their first
contribution in
[https://github.com/actions/cache/pull/1476](https://redirect.github.com/actions/cache/pull/1476)

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

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

[Compare
Source](https://redirect.github.com/actions/cache/compare/v4.1.0...v4.1.1)

##### What's Changed

- Restore original behavior of `cache-hit` output by
[@&#8203;joshmgross](https://redirect.github.com/joshmgross) in
[https://github.com/actions/cache/pull/1467](https://redirect.github.com/actions/cache/pull/1467)

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

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

[Compare
Source](https://redirect.github.com/actions/cache/compare/v4.0.2...v4.1.0)

#### What's Changed

- Fix cache-hit output when cache missed by
[@&#8203;fchimpan](https://redirect.github.com/fchimpan) in
[https://github.com/actions/cache/pull/1404](https://redirect.github.com/actions/cache/pull/1404)
- Deprecate `save-always` input by
[@&#8203;joshmgross](https://redirect.github.com/joshmgross) in
[https://github.com/actions/cache/pull/1452](https://redirect.github.com/actions/cache/pull/1452)

#### New Contributors

- [@&#8203;ottlinger](https://redirect.github.com/ottlinger) made their
first contribution in
[https://github.com/actions/cache/pull/1437](https://redirect.github.com/actions/cache/pull/1437)
- [@&#8203;Olegt0rr](https://redirect.github.com/Olegt0rr) made their
first contribution in
[https://github.com/actions/cache/pull/1377](https://redirect.github.com/actions/cache/pull/1377)
- [@&#8203;fchimpan](https://redirect.github.com/fchimpan) made their
first contribution in
[https://github.com/actions/cache/pull/1404](https://redirect.github.com/actions/cache/pull/1404)
- [@&#8203;x612skm](https://redirect.github.com/x612skm) made their
first contribution in
[https://github.com/actions/cache/pull/1434](https://redirect.github.com/actions/cache/pull/1434)
- [@&#8203;todgru](https://redirect.github.com/todgru) made their first
contribution in
[https://github.com/actions/cache/pull/1311](https://redirect.github.com/actions/cache/pull/1311)
- [@&#8203;Jcambass](https://redirect.github.com/Jcambass) made their
first contribution in
[https://github.com/actions/cache/pull/1463](https://redirect.github.com/actions/cache/pull/1463)
- [@&#8203;mackey0225](https://redirect.github.com/mackey0225) made
their first contribution in
[https://github.com/actions/cache/pull/1462](https://redirect.github.com/actions/cache/pull/1462)
- [@&#8203;quatquatt](https://redirect.github.com/quatquatt) made their
first contribution in
[https://github.com/actions/cache/pull/1445](https://redirect.github.com/actions/cache/pull/1445)

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

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

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

##### What's Changed

- Fix `fail-on-cache-miss` not working by
[@&#8203;cdce8p](https://redirect.github.com/cdce8p) in
[https://github.com/actions/cache/pull/1327](https://redirect.github.com/actions/cache/pull/1327)

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

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

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

#### What's Changed

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

#### New Contributors

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

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

</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 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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJTa2lwIENoYW5nZWxvZyIsImRlcGVuZGVuY2llcyJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-05 07:36:21 -07:00
Sam Xie
7ae449c5b6 Pin GitHub action digest with semver (#6724)
Instead of only showing the major release, it adds full semver to the
comment of the GitHub action digest.

Example change:
491e6e8f69
2025-05-05 16:15:19 +02:00
Sean Liao
1d8824889c all: match go conventions for generated code (#6731)
Go documents the following regex pattern
for identifying generated code:
^// Code generated .* DO NOT EDIT\.$

This convention is used go APIs and tooling.
References:
https://pkg.go.dev/go/ast#IsGenerated
https://pkg.go.dev/cmd/go#hdr-Generate_Go_files_by_processing_source

Co-authored-by: Damien Mathieu <42@dmathieu.com>
2025-05-05 09:41:12 +02:00
renovate[bot]
a73e138c3d fix(deps): update module github.com/golangci/golangci-lint/v2 to v2.1.6 (#6733)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/golangci/golangci-lint/v2](https://redirect.github.com/golangci/golangci-lint)
| `v2.1.5` -> `v2.1.6` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgolangci%2fgolangci-lint%2fv2/v2.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgolangci%2fgolangci-lint%2fv2/v2.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgolangci%2fgolangci-lint%2fv2/v2.1.5/v2.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgolangci%2fgolangci-lint%2fv2/v2.1.5/v2.1.6?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>golangci/golangci-lint
(github.com/golangci/golangci-lint/v2)</summary>

###
[`v2.1.6`](https://redirect.github.com/golangci/golangci-lint/blob/HEAD/CHANGELOG.md#v216)

[Compare
Source](https://redirect.github.com/golangci/golangci-lint/compare/v2.1.5...v2.1.6)

1.  Linters bug fixes
    -   `godot`: from 1.5.0 to 1.5.1
    -   `musttag`: from 0.13.0 to 0.13.1
2.  Documentation
    -   Add note about golangci-lint v2 integration in VS Code

</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 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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJTa2lwIENoYW5nZWxvZyIsImRlcGVuZGVuY2llcyJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-05 09:33:39 +02:00
renovate[bot]
0227c631fc chore(deps): update otel/weaver docker tag to v0.15.0 (#6729)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [otel/weaver](https://redirect.github.com/open-telemetry/weaver) |
stage | minor | `v0.14.0` -> `v0.15.0` |

---

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

---

### Release Notes

<details>
<summary>open-telemetry/weaver (otel/weaver)</summary>

###
[`v0.15.0`](https://redirect.github.com/open-telemetry/weaver/releases/tag/v0.15.0):
0.15.0 - 2025-05-01

[Compare
Source](https://redirect.github.com/open-telemetry/weaver/compare/v0.14.0...v0.15.0)

#### Release Notes

- Add support for attributes of type `any`.
([#&#8203;707](https://redirect.github.com/open-telemetry/weaver/pull/707)
by [@&#8203;lquerel](https://redirect.github.com/lquerel))
- Add shell completion functionality.
([#&#8203;682](https://redirect.github.com/open-telemetry/weaver/pull/682)
by [@&#8203;larrys](https://redirect.github.com/larrys))
- Add support for remote templates and policies.
([#&#8203;700](https://redirect.github.com/open-telemetry/weaver/pull/700)
by [@&#8203;lquerel](https://redirect.github.com/lquerel))
- Add [Live
Check](https://redirect.github.com/open-telemetry/weaver/blob/main/crates/weaver_live_check/README.md)
for Spans via OTLP/JSON and loose Attributes via JSON/Text.
([#&#8203;630](https://redirect.github.com/open-telemetry/weaver/pull/630)
by [@&#8203;jerbly](https://redirect.github.com/jerbly))
- 💥 BREAKING CHANGE 💥 `resource` groups are now called `entity` groups.
All JQ helper methods have been updated, but any template directly
interacting with
`group.type` may be broken. Use `entity` instead of `resource` group
type in your Jinja templates.
([#&#8203;714](https://redirect.github.com/open-telemetry/weaver/pull/714)
by [@&#8203;jsuereth](https://redirect.github.com/jsuereth))
- 💥 BREAKING CHANGE 💥 - All logging and diagnostics now go to `stderr`.
Override diagnostics with `--diagnostic-stdout`.
([#&#8203;721](https://redirect.github.com/open-telemetry/weaver/pull/721)
by [@&#8203;jerbly](https://redirect.github.com/jerbly))
- Support for simplified Template Type Examples format where the
key/attribute name is no longer included.
([#&#8203;710](https://redirect.github.com/open-telemetry/weaver/pull/710)
by [@&#8203;jerbly](https://redirect.github.com/jerbly))

#### \[0.14.0] - 2025-04-10

What's changed

- Add support for 2 semconv registries.
([#&#8203;627](https://redirect.github.com/open-telemetry/weaver/pull/627)
by [@&#8203;lquerel](https://redirect.github.com/lquerel)).
- Add support for annotations on attributes and groups.
([#&#8203;645](https://redirect.github.com/open-telemetry/weaver/pull/645)
by [@&#8203;lquerel](https://redirect.github.com/lquerel)).
- 💥 BREAKING CHANGE 💥 - Upgrade to version 0.4.0 of regorus [requires
all v0 policies to be
modified](https://redirect.github.com/microsoft/regorus/pull/373).
Policy upgrade instructions
[here](https://www.openpolicyagent.org/docs/latest/v0-upgrade/#upgrading-rego)
may help.
([#&#8203;651](https://redirect.github.com/open-telemetry/weaver/pull/651)
by [@&#8203;jerbly](https://redirect.github.com/jerbly)).
- Stability level `Deprecated` is deprecated. Conventions should be
deprecated via `deprecated` field and should keep the original
stability.
([#&#8203;607](https://redirect.github.com/open-telemetry/weaver/pull/607)
by [@&#8203;lmolkova](https://redirect.github.com/lmolkova)).
- 💥 BREAKING CHANGE 💥 The `constraints` feature is no longer supported
in semantic conventions yaml schema.
The earliest version of semantic convention weaver is able to read has
moved to 1.26.0.
([#&#8203;611](https://redirect.github.com/open-telemetry/weaver/pull/611)
by [@&#8203;lmolkova](https://redirect.github.com/lmolkova)).
- Make `type` property required on the semantic convention group (behind
`--future` flag).
([#&#8203;611](https://redirect.github.com/open-telemetry/weaver/pull/611)
by [@&#8203;lmolkova](https://redirect.github.com/lmolkova)).
- Exclude attributes declared with `code_generation.exclude` annotations
in `semconv_attributes` and other JQ attribute helpers.
([#&#8203;662](https://redirect.github.com/open-telemetry/weaver/pull/662)
by [@&#8203;lmolkova](https://redirect.github.com/lmolkova))
- Sort metrics by name in all JQ helpers.
([#&#8203;573](https://redirect.github.com/open-telemetry/weaver/issues/573)
by [@&#8203;lmolkova](https://redirect.github.com/lmolkova))

#### \[0.13.2] - 2025-02-13

What's changed

- Add a `note` field to all deprecated variants and generate a formatted
value when
not provided in the semconv files.
([#&#8203;602](https://redirect.github.com/open-telemetry/weaver/pull/602)
by [@&#8203;lquerel](https://redirect.github.com/lquerel)).

#### \[0.13.1] - 2025-02-12

What's changed

- For issue
[#&#8203;596](https://redirect.github.com/open-telemetry/weaver/issues/596)
- Fix the Jinja deprecated test to accept the
new deprecated format.
([#&#8203;597](https://redirect.github.com/open-telemetry/weaver/pull/597)
by [@&#8203;lquerel](https://redirect.github.com/lquerel)).

#### \[0.13.0] - 2025-02-07

What's changed

- **Breaking Change**: Introduced a new `weaver registry diff` command
to generate a diff report between two versions of
the semantic convention registry. This PR introduces a breaking change
in the semantic conventions schema. While the
text-based `deprecated` field is still supported for compatibility
reasons, future semantic conventions should use the
new `deprecated` structured format.
([#&#8203;400](https://redirect.github.com/open-telemetry/weaver/pull/400/)
by [@&#8203;lquerel](https://redirect.github.com/lquerel)).

- The `deprecated` field is now a structured field defining the precise
reason for deprecation. The semantic
        conventions must be updated to adopt this new format.
- The changes related to the `deprecated` field (i.e., string → struct)
also have a potential impact on certain
templates that reference the `deprecated` field as containing text.
These templates will need to be updated to use
the `brief` field, which provides a textual explanation of the reasons
for the deprecation.

- Improvement of comment generation: removal of `<p>` tags that precede
`@` Javadoc tags.

([#&#8203;574](https://redirect.github.com/open-telemetry/weaver/pull/574)
by [@&#8203;trask](https://redirect.github.com/trask)).

- For Issue
[#&#8203;564](https://redirect.github.com/open-telemetry/weaver/issues/564)
- Require attributes and event fields to have stability: Added warnings
for missing stability
on: Attributes, Enum members in attributes, Event AnyValues, Enum
members in AnyValues.
([#&#8203;568](https://redirect.github.com/open-telemetry/weaver/pull/568)
by [@&#8203;jerbly](https://redirect.github.com/jerbly)).

- For issue
\[[#&#8203;569](https://redirect.github.com/open-telemetry/weaver/issues/569)]\(Add
include_stability config into semconv_grouped_attributes):
`is_experimental` returns `true` by default.
([#&#8203;570](https://redirect.github.com/open-telemetry/weaver/pull/570)
by [@&#8203;jerbly](https://redirect.github.com/jerbly)).

- Added an OTLP receiver to Weaver to prepare for the `weaver registry
live-check` command. (see
[#&#8203;548](https://redirect.github.com/open-telemetry/weaver/pull/548)
by [@&#8203;lquerel](https://redirect.github.com/lquerel))

- Add is_array filter and test for AttributeType.
([#&#8203;540](https://redirect.github.com/open-telemetry/weaver/pull/540)
by [@&#8203;arthurDiff](https://redirect.github.com/arthurDiff)).

- Refactored CLI registry commands to remove some duplication. Resolving
the registry with policy checks is common for
`generate`, `resolve` and `check`.
([#&#8203;536](https://redirect.github.com/open-telemetry/weaver/pull/536)
by [@&#8203;jerbly](https://redirect.github.com/jerbly)).
- Added missing `after_resolution` policy checks to `generate` and
`resolve` through the common code.
    -   Removed the deprecated `--registry-git-sub-dir` option.
- Fixed bug in `check` if `--skip-policies` was specified then it would
not fail for any validation errors.

- Semantic Conventions Issue
[#&#8203;1513](https://redirect.github.com/open-telemetry/semantic-conventions/issues/1513)
- Make span_kind required in yaml and break down multi-kind span
definitions -
([#&#8203;542](https://redirect.github.com/open-telemetry/weaver/pull/542)
by [@&#8203;jerbly](https://redirect.github.com/jerbly)).
- Updated the EBNF and JSON schema to define `span_kind` as mandatory
for `span` group types. Added a group validity
        check as a warning.

- First iteration of the new command: `registry emit`. Emits a semantic
convention registry as example spans to your
OTLP receiver. This may be useful in testing/simulation scenarios.
([#&#8203;549](https://redirect.github.com/open-telemetry/weaver/pull/549)
by [@&#8203;jerbly](https://redirect.github.com/jerbly))

- For issue
\[[#&#8203;569](https://redirect.github.com/open-telemetry/weaver/issues/569)]\(Add
include\*stability config into semconv_grouped_attributes): added
`stable_only` boolean flag as a parameter for
`semconv_signal`, `semconv_grouped_attributes`, and other `semconv*\*`JQ
semconv helpers. When`stable_only`is set to`true`,
corresponding helper function returns stable conventions only. If the
flag is not set or set to false, stability filtering does not apply.
It's recommended to use `stable_only`flag instead of`exclude_stability`
parameter.

([#&#8203;588](https://redirect.github.com/open-telemetry/weaver/pull/588)
by [@&#8203;lmolkova](https://redirect.github.com/lmolkova))

#### \[0.12.0] - 2024-12-09

What's changed

- Issue
[#&#8203;502](https://redirect.github.com/open-telemetry/weaver/issues/502)
- Support stability definitions from [OTEP
232](https://redirect.github.com/open-telemetry/oteps/blob/main/text/0232-maturity-of-otel.md)
-
([#&#8203;504](https://redirect.github.com/open-telemetry/weaver/pull/504)
by [@&#8203;jerbly](https://redirect.github.com/jerbly)).
- Stability enum now has these variants: `stable`, `development`,
`deprecated`, `alpha`, `beta`, `release_candidate`
    -   `unmaintained` is not supported yet.
- `experimental` is still accepted when parsing but aliased to
`development`.
- The minijinja test, `experimental`, now returns true for any variant
other than `stable`.
- EBNF and JSON schema updated to define the new enum without the
`experimental` variant.
- Issue
[#&#8203;301](https://redirect.github.com/open-telemetry/weaver/issues/301)
- Warn against usage of `allow_custom_values`.
([#&#8203;514](https://redirect.github.com/open-telemetry/weaver/pull/514)
by [@&#8203;jerbly](https://redirect.github.com/jerbly)).
- Fixed rego typos, attrigute and deprecaded
([#&#8203;517](https://redirect.github.com/open-telemetry/weaver/pull/517)
by [@&#8203;jerbly](https://redirect.github.com/jerbly)).
- Create better HTML comment parser - Allow more semconv snippet headers
([#&#8203;512](https://redirect.github.com/open-telemetry/weaver/pull/512)
by [@&#8203;jsuereth](https://redirect.github.com/jsuereth)).
- Add javadoc <p> tag after lists
([#&#8203;511](https://redirect.github.com/open-telemetry/weaver/pull/511)
[@&#8203;trask](https://redirect.github.com/trask)).
- Javadoc <p> tags should only precede paragraphs
([#&#8203;510](https://redirect.github.com/open-telemetry/weaver/pull/510)
by [@&#8203;trask](https://redirect.github.com/trask)).
- More consistent newline behavior
([#&#8203;509](https://redirect.github.com/open-telemetry/weaver/pull/509)
by [@&#8203;trask](https://redirect.github.com/trask)).
- Add test cases to cover a paragraph after a list
([#&#8203;508](https://redirect.github.com/open-telemetry/weaver/pull/508)
by [@&#8203;trask](https://redirect.github.com/trask)).

Important note: Our CI/CD pipeline has been updated to use Rust
cross-compilation, significantly speeding up the ARM
target (see
\[[#&#8203;506](https://redirect.github.com/open-telemetry/weaver/issues/506)]\[https://github.com/open-telemetry/weaver/pull/506](https://redirect.github.com/open-telemetry/weaver/pull/506)6,
thanks to [@&#8203;bernot-dev](https://redirect.github.com/bernot-dev)).
If you encounter any
issues on ARM, please let us know as soon as possible. Thank you!

#### \[0.11.0] - 2024-12-05

What's changed

- Detect duplicate group ids, group names, and metric names.
([#&#8203;382](https://redirect.github.com/open-telemetry/weaver/pull/382)
by lquerel).
- Add support for Maps `map[]` to the definition of an `AnyValue`.
([#&#8203;396](https://redirect.github.com/open-telemetry/weaver/pull/396)
by [@&#8203;MSNev](https://redirect.github.com/MSNev)).
- Update semconv schema, syntax doc and validity check to correctly
define `stability` as optional for attribute groups.
([#&#8203;467](https://redirect.github.com/open-telemetry/weaver/pull/467)
by [@&#8203;jerbly](https://redirect.github.com/jerbly)).
- Fix issue
[#&#8203;405](https://redirect.github.com/open-telemetry/weaver/issues/405)
- Updated the EBNF and JSON schema to define the `extends` or
`attributes` requirement mandatory for all group types except `metric`
and `event`. Added a group validity check as a warning.
([#&#8203;494](https://redirect.github.com/open-telemetry/weaver/pull/494)
by [@&#8203;jerbly](https://redirect.github.com/jerbly)).
- Allow adding a description when using opt_in requirement level
([#&#8203;392](https://redirect.github.com/open-telemetry/weaver/pull/392)
by [@&#8203;joaopgrassi](https://redirect.github.com/joaopgrassi))
- Add warning that issues when using prefix on groups
([#&#8203;407](https://redirect.github.com/open-telemetry/weaver/pull/407)
by [@&#8203;jsuereth](https://redirect.github.com/jsuereth))
- Update comment filter to remove trailing spaces
([#&#8203;453](https://redirect.github.com/open-telemetry/weaver/pull/453)
by [@&#8203;jsuereth](https://redirect.github.com/jsuereth))
- Metrics and Events don't require attributes
([#&#8203;494](https://redirect.github.com/open-telemetry/weaver/pull/494)
by [@&#8203;jerbly](https://redirect.github.com/jerbly))
- Added an option to follow symbolic links when loading the registry in
various parts of the codebase.
([#&#8203;468](https://redirect.github.com/open-telemetry/weaver/pull/468)
by [@&#8203;leo6leo](https://redirect.github.com/leo6leo))
- Provide max line-length in comment filter.
([#&#8203;454](https://redirect.github.com/open-telemetry/weaver/pull/454)
by [@&#8203;jsuereth](https://redirect.github.com/jsuereth))

#### \[0.10.0] - 2024-09-23

What's changed

- Add support log based `event` definitions with a `body` of new
`AnyValue` type.
([#&#8203;297](https://redirect.github.com/open-telemetry/weaver/pull/297)
by [@&#8203;MSNev](https://redirect.github.com/MSNev)).
- Add `escape_square_brackets` into `comment_formats` markdown
configuration.
([#&#8203;379](https://redirect.github.com/open-telemetry/weaver/pull/379)
by [@&#8203;lquerel](https://redirect.github.com/lquerel)).
- Add `enforce_trailing_dots` into the `comment_formats` configuration.
([#&#8203;378](https://redirect.github.com/open-telemetry/weaver/pull/378)
by [@&#8203;lquerel](https://redirect.github.com/lquerel)).
- Add support for `indent_type` in both the comment filter and the
`comment_formats` configuration.
([#&#8203;377](https://redirect.github.com/open-telemetry/weaver/pull/377)
by [@&#8203;lquerel](https://redirect.github.com/lquerel)).
- Add `regex_replace` filter to support replacing text using regex.
([#&#8203;380](https://redirect.github.com/open-telemetry/weaver/pull/380)
by [@&#8203;lquerel](https://redirect.github.com/lquerel)).
- Bump opentelemetry_sdk from 0.24.1 to 0.25.0
([#&#8203;369](https://redirect.github.com/open-telemetry/weaver/issues/369))
- Bump opentelemetry-stdout from 0.5.0 to 0.25.0
([#&#8203;368](https://redirect.github.com/open-telemetry/weaver/issues/368))
- Bump anyhow from 1.0.88 to 1.0.89
([#&#8203;370](https://redirect.github.com/open-telemetry/weaver/issues/370))
- Bump regorus from 0.2.4 to 0.2.5
([#&#8203;375](https://redirect.github.com/open-telemetry/weaver/issues/375))
- Bump minijinja-contrib from 2.2.0 to 2.3.1
([#&#8203;376](https://redirect.github.com/open-telemetry/weaver/issues/376))
- Bump minijinja from 2.2.0 to 2.3.1
([#&#8203;371](https://redirect.github.com/open-telemetry/weaver/issues/371))
- Bump globset from 0.4.14 to 0.4.15
([#&#8203;366](https://redirect.github.com/open-telemetry/weaver/issues/366))

#### \[0.9.2] - 2024-09-09

What's Changed

- Build X86 + ARM64 image
([#&#8203;346](https://redirect.github.com/open-telemetry/weaver/pull/346)
by jsuereth). The parameter
`--platform=linux/x86_64` is no longer needed to run this image on
MacOS.
- Update docker guide for home directory
([#&#8203;356](https://redirect.github.com/open-telemetry/weaver/pull/356)
by jsuereth).
- Fix clippy issues.
([#&#8203;357](https://redirect.github.com/open-telemetry/weaver/pull/357)
by jsuereth).
- Bump alpine from 3.20.2 to 3.20.3
([#&#8203;360](https://redirect.github.com/open-telemetry/weaver/issues/360))
- Bump anyhow from 1.0.86 to 1.0.87
([#&#8203;359](https://redirect.github.com/open-telemetry/weaver/issues/359))
- Bump serde from 1.0.209 to 1.0.210
([#&#8203;358](https://redirect.github.com/open-telemetry/weaver/issues/358))
- Bump serde_json from 1.0.127 to 1.0.128
([#&#8203;354](https://redirect.github.com/open-telemetry/weaver/issues/354))
- Bump clap from 4.5.16 to 4.5.17
([#&#8203;351](https://redirect.github.com/open-telemetry/weaver/issues/351))
- Bump regorus from 0.2.3 to 0.2.4
([#&#8203;350](https://redirect.github.com/open-telemetry/weaver/issues/350))
- Bump indexmap from 2.4.0 to 2.5.0
([#&#8203;349](https://redirect.github.com/open-telemetry/weaver/issues/349))
- Bump minijinja-contrib from 2.1.2 to 2.2.0
([#&#8203;347](https://redirect.github.com/open-telemetry/weaver/issues/347))
- Bump ratatui from 0.28.0 to 0.28.1
([#&#8203;341](https://redirect.github.com/open-telemetry/weaver/issues/341))
- Bump flate2 from 1.0.32 to 1.0.33
([#&#8203;342](https://redirect.github.com/open-telemetry/weaver/issues/342))
- Bump minijinja from 2.1.2 to 2.2.0
([#&#8203;343](https://redirect.github.com/open-telemetry/weaver/issues/343))
- Bump serde from 1.0.208 to 1.0.209
([#&#8203;344](https://redirect.github.com/open-telemetry/weaver/issues/344))
- Bump serde_json from 1.0.125 to 1.0.127
([#&#8203;340](https://redirect.github.com/open-telemetry/weaver/issues/340))

#### \[0.9.1] - 2024-08-22

Fixes

- Warnings detected in the baseline registry are now ignored and
non-fatal errors will not
    interrupt any command before it completes

([#&#8203;337](https://redirect.github.com/open-telemetry/weaver/pull/337)
by lquerel).

#### \[0.9.0] - 2024-08-19

What's Changed

-
([#&#8203;309](https://redirect.github.com/open-telemetry/weaver/pull/309)
by lquerel) Configurable Comment Filter to Support Multiple Programming
Language Comment Formats.
More details in [Weaver Force
Doc](https://redirect.github.com/open-telemetry/weaver/blob/main/crates/weaver_forge/README.md)
and [Weaver Configuration
Doc](https://redirect.github.com/open-telemetry/weaver/blob/main/docs/weaver-config.md).
-
([#&#8203;300](https://redirect.github.com/open-telemetry/weaver/pull/300)
by lquerel) Validation for the examples attribute field.
-
([#&#8203;322](https://redirect.github.com/open-telemetry/weaver/pull/322),
[#&#8203;312](https://redirect.github.com/open-telemetry/weaver/pull/312),

[#&#8203;319](https://redirect.github.com/open-telemetry/weaver/pull/319),
[#&#8203;318](https://redirect.github.com/open-telemetry/weaver/pull/318),

[#&#8203;312](https://redirect.github.com/open-telemetry/weaver/pull/312),
[#&#8203;304](https://redirect.github.com/open-telemetry/weaver/pull/304)
by jsuereth) Many improvements have been made to the creation of the
Weaver Docker image,
    which is now scoring an A on the Scout Docker image score.
    -   Add Weaver docker image to dependabot tracking,
    -   Add build attestations,
    -   Stop using root user the docker image,
    -   Use official docker action to build docker image,
    -   Update docker to use release build.
-
([#&#8203;311](https://redirect.github.com/open-telemetry/weaver/pull/311)
by MSNev) Fix `unknown.com` test reference issue.
-
([#&#8203;307](https://redirect.github.com/open-telemetry/weaver/pull/307)
by lmolkova) Move semconv schema definition from build tools.
-
([#&#8203;305](https://redirect.github.com/open-telemetry/weaver/pull/305)
by lquerel) Detect root attribute name duplicates during the resolution
process.
-
([#&#8203;294](https://redirect.github.com/open-telemetry/weaver/pull/294)
by lquerel) Add template-level parameters and file_name per template
config.
-
([#&#8203;327](https://redirect.github.com/open-telemetry/weaver/issues/327))
Bump `regorus` from 0.2.2 to 0.2.3.
-
([#&#8203;326](https://redirect.github.com/open-telemetry/weaver/issues/326),
[#&#8203;317](https://redirect.github.com/open-telemetry/weaver/issues/317),
[#&#8203;302](https://redirect.github.com/open-telemetry/weaver/issues/302))
Bump `clap` from 4.5.13 to 4.5.16.
-
([#&#8203;325](https://redirect.github.com/open-telemetry/weaver/issues/325),
[#&#8203;313](https://redirect.github.com/open-telemetry/weaver/issues/313))
Bump `serde` from 1.0.205 to 1.0.208.
-
([#&#8203;324](https://redirect.github.com/open-telemetry/weaver/issues/324))
Bump `alpine` from 3.18.3 to 3.20.2.
-
([#&#8203;323](https://redirect.github.com/open-telemetry/weaver/issues/323))
Bump `rust` from 1.76.0-alpine3.18 to 1.78.0-alpine3.18.
-
([#&#8203;320](https://redirect.github.com/open-telemetry/weaver/issues/320),
[#&#8203;315](https://redirect.github.com/open-telemetry/weaver/issues/315),
[#&#8203;287](https://redirect.github.com/open-telemetry/weaver/issues/287))
Bump `serde_json` from 1.0.122 to 1.0.125.
-
([#&#8203;316](https://redirect.github.com/open-telemetry/weaver/issues/316))
Bump `indexmap` from 2.3.0 to 2.4.0.
-
([#&#8203;314](https://redirect.github.com/open-telemetry/weaver/issues/314),
[#&#8203;308](https://redirect.github.com/open-telemetry/weaver/issues/308))
Bump `markdown` from 1.0.0-alpha.18 to 1.0.0-alpha.20.
-
([#&#8203;310](https://redirect.github.com/open-telemetry/weaver/issues/310))
Bump `ratatui`, `textarea` and `crossterm` version in lock-step.
-
([#&#8203;303](https://redirect.github.com/open-telemetry/weaver/issues/303),
[#&#8203;299](https://redirect.github.com/open-telemetry/weaver/issues/299),
[#&#8203;293](https://redirect.github.com/open-telemetry/weaver/issues/293))
Bump `tui-textarea` from 0.5.2 to 0.6.1.
-
([#&#8203;298](https://redirect.github.com/open-telemetry/weaver/issues/298))
Bump `ratatui` from 0.27.0 to 0.28.0.
-
([#&#8203;292](https://redirect.github.com/open-telemetry/weaver/issues/292))
Bump `flate2` from 1.0.30 to 1.0.31.
-
([#&#8203;290](https://redirect.github.com/open-telemetry/weaver/issues/290))
Bump `regex` from 1.10.5 to 1.10.6.
-
([#&#8203;286](https://redirect.github.com/open-telemetry/weaver/issues/286))
Bump `crossterm` from 0.27.0 to 0.28.1.

#### \[0.8.0] - 2024-08-01

What's Changed

-
([#&#8203;257](https://redirect.github.com/open-telemetry/weaver/issues/257)
by lquerel) Infrastructure to support backward-compatibility testing
and, more generally, policies applied to multi-version registries.

<!---->

    weaver registry check \
--registry
https://github.com/open-telemetry/semantic-conventions.git[model] \
--baseline-registry
https://github.com/open-telemetry/semantic-conventions/archive/refs/tags/v1.26.0.zip[model]
\
    --policy compatibility_check.rego

-
([#&#8203;284](https://redirect.github.com/open-telemetry/weaver/issues/284)
by MadVikingGod) The `--policy` flag now accepts directories.
-
([#&#8203;270](https://redirect.github.com/open-telemetry/weaver/issues/270)
by [@&#8203;lquerel](https://redirect.github.com/lquerel)) Follow build
tools’ case conversion rules. Numbers are no longer considered word
splitters.
-
([#&#8203;276](https://redirect.github.com/open-telemetry/weaver/issues/276)
by [@&#8203;jsuereth](https://redirect.github.com/jsuereth)) Remove
legacy way of writing templates for semconv.
-
([#&#8203;274](https://redirect.github.com/open-telemetry/weaver/issues/274)
by [@&#8203;lquerel](https://redirect.github.com/lquerel)) Enhance error
reporting for invalid JQ expressions.
-
([#&#8203;275](https://redirect.github.com/open-telemetry/weaver/issues/275)
by [@&#8203;lquerel](https://redirect.github.com/lquerel)) The custom JQ
filter semconv_grouped_metrics now sorts metrics by their metric_name
(issue
[#&#8203;268](https://redirect.github.com/open-telemetry/weaver/issues/268)).
-
([#&#8203;256](https://redirect.github.com/open-telemetry/weaver/issues/256))
Bump gix from 0.63.0 to 0.64.0.
-
([#&#8203;271](https://redirect.github.com/open-telemetry/weaver/issues/271))
Bump jaq-parse from 1.0.2 to 1.0.3.
-
([#&#8203;272](https://redirect.github.com/open-telemetry/weaver/issues/272))
Bump jaq-core from 1.5.0 to 1.5.1
-
([#&#8203;273](https://redirect.github.com/open-telemetry/weaver/issues/273))
Bump toml from 0.8.16 to 0.8.17
-
([#&#8203;283](https://redirect.github.com/open-telemetry/weaver/issues/283))
Bump minijinja from 2.1.0 to 2.1.1

#### \[0.7.0] - 2024-07-22

What's Changed

- Add support for new custom semconv JQ filters by
[@&#8203;lquerel](https://redirect.github.com/lquerel).
- Update Weaver Forge documentation and include a step-by-step guide for
codegen authors by
[@&#8203;lquerel](https://redirect.github.com/lquerel).

The following new filters have been added to the Weaver Forge:

- `semconv_group_attributes_by_root_namespace`: Groups the attributes by
their root namespace.
- `semconv_attributes($options)`: Extracts and processes semantic
convention attributes based on provided options. $options is an object
that can contain:
    -   `exclude_stability`: a list of stability levels to exclude.
    -   `exclude_deprecated`: a boolean to exclude deprecated metrics.
    -   `exclude_root_namespace`: a list of root namespaces to exclude.
- `semconv_attributes`: Convenience function to extract all attributes
without any filtering options.
- `semconv_grouped_attributes($options)`: Groups the processed
attributes by their root namespace based on provided options. $options
is an object that can contain:
    -   `exclude_stability`: a list of stability statuses to exclude.
    -   `exclude_deprecated`: a boolean to exclude deprecated metrics.
    -   `exclude_root_namespace`: a list of root namespaces to exclude.
- `semconv_grouped_attributes`: Convenience function to group all
attributes by their root namespace without any filtering options.
- `semconv_group_metrics_by_root_namespace`: Groups the metrics by their
root namespace.
- `semconv_metrics($options)`: Extracts and processes semantic
convention metrics based on provided options. $options is an object that
can contain:
    -   `exclude_stability`: a list of stability statuses to exclude.
    -   `exclude_deprecated`: a boolean to exclude deprecated metrics.
    -   `exclude_root_namespace`: a list of root namespaces to exclude.
- `semconv_metrics`: Convenience function to extract all metrics without
any filtering options.
- `semconv_grouped_metrics($options)`: Groups the processed metrics by
their root namespace based on provided options. $options is an object
that can contain:
    -   `exclude_stability`: a list of stability statuses to exclude.
    -   `exclude_deprecated`: a boolean to exclude deprecated metrics.
    -   `exclude_root_namespace`: a list of root namespaces to exclude.
- `semconv_grouped_metrics`: Convenience function to group all metrics
by their root namespace without any filtering options.

#### \[0.6.0] - 2024-07-16

What's Changed

- Support for Hierarchical Weaver Config: We have added support for
hierarchical configuration in Weaver.
This allows more flexible and powerful configuration management. For
more details, please refer to the
documentation on [configuration file loading order and overriding
rules](https://redirect.github.com/open-telemetry/weaver/blob/main/docs/weaver-config.md#configuration-file-loading-order-and-overriding-rules).
by [@&#8203;lquerel](https://redirect.github.com/lquerel) in
[https://github.com/open-telemetry/weaver/pull/231](https://redirect.github.com/open-telemetry/weaver/pull/231)
- Support for MiniJinja py_compat Extensions: This release includes
support for MiniJinja py_compat
extensions, enhancing compatibility with Python syntax. For more
information, see the
[documentation](https://redirect.github.com/open-telemetry/weaver/blob/main/crates/weaver_forge/README.md#jinja-filters).
by [@&#8203;lquerel](https://redirect.github.com/lquerel)

[https://github.com/open-telemetry/weaver/pull/239](https://redirect.github.com/open-telemetry/weaver/pull/239)/239

#### New Contributors

- [@&#8203;haidong](https://redirect.github.com/haidong) made a first
contribution in
[https://github.com/open-telemetry/weaver/pull/237](https://redirect.github.com/open-telemetry/weaver/pull/237)

#### \[0.5.0] - 2024-07-02

What's Changed

- Add optional variant to requirement_level. by
[@&#8203;MadVikingGod](https://redirect.github.com/MadVikingGod) in
[https://github.com/open-telemetry/weaver/pull/199](https://redirect.github.com/open-telemetry/weaver/pull/199)
- Add semconv_const filter to support semantic convention namespacing
rules. by [@&#8203;lquerel](https://redirect.github.com/lquerel) in
[https://github.com/open-telemetry/weaver/pull/200](https://redirect.github.com/open-telemetry/weaver/pull/200)
- Add display_name field. by
[@&#8203;joaopgrassi](https://redirect.github.com/joaopgrassi) in
[https://github.com/open-telemetry/weaver/pull/202](https://redirect.github.com/open-telemetry/weaver/pull/202)
- Bump regex from 1.10.4 to 1.10.5 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/open-telemetry/weaver/pull/205](https://redirect.github.com/open-telemetry/weaver/pull/205)
- Bump clap from 4.5.6 to 4.5.7 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/open-telemetry/weaver/pull/206](https://redirect.github.com/open-telemetry/weaver/pull/206)
- New entry in developer guide to describe the process of adding new
fields in the semantic convention registry by
[@&#8203;lquerel](https://redirect.github.com/lquerel) in
[https://github.com/open-telemetry/weaver/pull/209](https://redirect.github.com/open-telemetry/weaver/pull/209)
- Add Embed option for single attributes by
[@&#8203;trisch-me](https://redirect.github.com/trisch-me) in
[https://github.com/open-telemetry/weaver/pull/212](https://redirect.github.com/open-telemetry/weaver/pull/212)
- Bump include_dir from 0.7.3 to 0.7.4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/open-telemetry/weaver/pull/213](https://redirect.github.com/open-telemetry/weaver/pull/213)
- Add support for post-resolution policies by
[@&#8203;lquerel](https://redirect.github.com/lquerel) in
[https://github.com/open-telemetry/weaver/pull/214](https://redirect.github.com/open-telemetry/weaver/pull/214)
- split_id filter is singular by
[@&#8203;bryannaegele](https://redirect.github.com/bryannaegele) in
[https://github.com/open-telemetry/weaver/pull/217](https://redirect.github.com/open-telemetry/weaver/pull/217)
- Add Jinja whitespace control by
[@&#8203;joaopgrassi](https://redirect.github.com/joaopgrassi) in
[https://github.com/open-telemetry/weaver/pull/224](https://redirect.github.com/open-telemetry/weaver/pull/224)

#### New Contributors

- [@&#8203;MadVikingGod](https://redirect.github.com/MadVikingGod) made
their first contribution in
[https://github.com/open-telemetry/weaver/pull/199](https://redirect.github.com/open-telemetry/weaver/pull/199)
- [@&#8203;joaopgrassi](https://redirect.github.com/joaopgrassi) made
their first contribution in
[https://github.com/open-telemetry/weaver/pull/202](https://redirect.github.com/open-telemetry/weaver/pull/202)
- [@&#8203;trisch-me](https://redirect.github.com/trisch-me) made their
first contribution in
[https://github.com/open-telemetry/weaver/pull/212](https://redirect.github.com/open-telemetry/weaver/pull/212)
- [@&#8203;bryannaegele](https://redirect.github.com/bryannaegele) made
their first contribution in
[https://github.com/open-telemetry/weaver/pull/217](https://redirect.github.com/open-telemetry/weaver/pull/217)

**Full Changelog**:
https://github.com/open-telemetry/weaver/compare/v0.4.0...v0.5.0

#### \[0.4.0] - 2024-06-04

What's Changed

- First cut at a developer's guide to help onboarding users. by
[@&#8203;jsuereth](https://redirect.github.com/jsuereth) in
[https://github.com/open-telemetry/weaver/pull/166](https://redirect.github.com/open-telemetry/weaver/pull/166)
- Detect and Process Policy Files into SemConv Registry + Generic
Diagnostic Reporting by
[@&#8203;lquerel](https://redirect.github.com/lquerel) in
[https://github.com/open-telemetry/weaver/pull/153](https://redirect.github.com/open-telemetry/weaver/pull/153)
- Bump gix from 0.62.0 to 0.63.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/open-telemetry/weaver/pull/170](https://redirect.github.com/open-telemetry/weaver/pull/170)
- Update opentelemetry rust API by
[@&#8203;lquerel](https://redirect.github.com/lquerel) in
[https://github.com/open-telemetry/weaver/pull/169](https://redirect.github.com/open-telemetry/weaver/pull/169)
- Bump serde from 1.0.202 to 1.0.203 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/open-telemetry/weaver/pull/176](https://redirect.github.com/open-telemetry/weaver/pull/176)
- Support for loading templates from the file system or from an embedded
representation in the app's binary. by
[@&#8203;lquerel](https://redirect.github.com/lquerel) in
[https://github.com/open-telemetry/weaver/pull/171](https://redirect.github.com/open-telemetry/weaver/pull/171)
- Add support for List of Array examples. by
[@&#8203;jerbly](https://redirect.github.com/jerbly) in
[https://github.com/open-telemetry/weaver/pull/177](https://redirect.github.com/open-telemetry/weaver/pull/177)
- Add distribution (binaries + installers) publishing workflows. by
[@&#8203;jsuereth](https://redirect.github.com/jsuereth) in
[https://github.com/open-telemetry/weaver/pull/179](https://redirect.github.com/open-telemetry/weaver/pull/179)
- Generate JSON Schema for both Resolved Telemetry Schema and Resolved
Registry by [@&#8203;lquerel](https://redirect.github.com/lquerel) in
[https://github.com/open-telemetry/weaver/pull/187](https://redirect.github.com/open-telemetry/weaver/pull/187)
- Update README.md, fix Weaver checker link by
[@&#8203;xrmx](https://redirect.github.com/xrmx) in
[https://github.com/open-telemetry/weaver/pull/191](https://redirect.github.com/open-telemetry/weaver/pull/191)
- Support command line parameters to add an additional layer of
configurability in the documentation/code generator. by
[@&#8203;lquerel](https://redirect.github.com/lquerel) in
[https://github.com/open-telemetry/weaver/pull/195](https://redirect.github.com/open-telemetry/weaver/pull/195)

#### New Contributors

- [@&#8203;jerbly](https://redirect.github.com/jerbly) made their first
contribution in
[https://github.com/open-telemetry/weaver/pull/177](https://redirect.github.com/open-telemetry/weaver/pull/177)
- [@&#8203;xrmx](https://redirect.github.com/xrmx) made their first
contribution in
[https://github.com/open-telemetry/weaver/pull/191](https://redirect.github.com/open-telemetry/weaver/pull/191)

**Full Changelog**:
https://github.com/open-telemetry/weaver/compare/v0.3.0...v0.4.0

#### \[0.3.0] - 2024-05-16

What's Changed

- Additional filters and tests by
[@&#8203;lquerel](https://redirect.github.com/lquerel) in
[https://github.com/open-telemetry/weaver/pull/163](https://redirect.github.com/open-telemetry/weaver/pull/163)
- `instantiated_type`: Filters a type to return the instantiated type.
- `enum_type`: Filters a type to return the enum type or an error if the
type is not an enum.
    -   `capitalize_first`: Capitalizes the first letter of a string.
- `map_text` introduces a second parameter to define the default value
if the name of the text map or the input are not found in the
`text_maps` section (optional parameter).
    -   `enum`: Tests if an attribute has an enum type.
- `simple_type`: Tests if a type is a simple type (i.e.: string |
string\[] | int | int\[] | double | double\[] | boolean | boolean\[]).
- `template_type`: Tests if a type is a template type (i.e.:
template\[]).
    -   `enum_type`: Tests if a type is an enum type.

**Full Changelog**:
https://github.com/open-telemetry/weaver/compare/v0.2.0...v0.3.0

#### \[0.2.0] - 2024-04-26

Updates for Semantic Convention markdown generation, and beginnings of a
suite of utilities for code generation.

What's Changed:

- Working rust codegen example by
[@&#8203;lquerel](https://redirect.github.com/lquerel) in
[https://github.com/open-telemetry/weaver/pull/136](https://redirect.github.com/open-telemetry/weaver/pull/136)
- Markdown snippet generation now uses weaver_forge templating by
[@&#8203;jsuereth](https://redirect.github.com/jsuereth) in
[https://github.com/open-telemetry/weaver/pull/141](https://redirect.github.com/open-telemetry/weaver/pull/141)
- New Jinja filters and predicates for OTel by
[@&#8203;lquerel](https://redirect.github.com/lquerel) in
[https://github.com/open-telemetry/weaver/pull/143](https://redirect.github.com/open-telemetry/weaver/pull/143)
- `attribute_sort` filter to weaver_forge by
[@&#8203;jsuereth](https://redirect.github.com/jsuereth) in
[https://github.com/open-telemetry/weaver/pull/144](https://redirect.github.com/open-telemetry/weaver/pull/144)
- Expanding collection of filters by
[@&#8203;lquerel](https://redirect.github.com/lquerel) in
[https://github.com/open-telemetry/weaver/pull/162](https://redirect.github.com/open-telemetry/weaver/pull/162)
- (chore) Removal of Old Tera Templates by
[@&#8203;lquerel](https://redirect.github.com/lquerel) in
[https://github.com/open-telemetry/weaver/pull/145](https://redirect.github.com/open-telemetry/weaver/pull/145)
- (fix) Expand id parsing by
[@&#8203;jsuereth](https://redirect.github.com/jsuereth) in
[https://github.com/open-telemetry/weaver/pull/152](https://redirect.github.com/open-telemetry/weaver/pull/152)
- (fix) Update weaver to understand deprecated enum values. by
[@&#8203;jsuereth](https://redirect.github.com/jsuereth) in
[https://github.com/open-telemetry/weaver/pull/139](https://redirect.github.com/open-telemetry/weaver/pull/139)

**Full Changelog**:
https://github.com/open-telemetry/weaver/compare/v0.1.0...v0.2.0

#### \[0.1.0] - 2024-04-24

Initial release of OpenTelemetry weaver for usage in
semantic-conventions repository.

This is a PREVIEW release, and stability guarantees are loose prior to
1.0.

What's Changed:

- The Weaver project, initially hosted by F5, has been moved to
open-telemetry/weaver. The project's objectives have
been redefined into two main phases/focuses: 1) semconv support, 2)
application telemetry support.
- A Jinja-compatible template engine and a snippet-based generator have
been completed and tested to support the
semantic-convention repository. The template engine can be used for both
documentation and code generation.
- A new policy engine (based on rego) has been added to the project to
externalize the declaration of policies and to
enhance the management, evolution, and maintainability of semantic
conventions and application telemetry schemas. It leverages a set of
rules or policies to ensure the coherence and quality of these
conventions and schemas over time.
- A lot of documentation has been added to the entire project to make it
easier to consume and contribute.
- A code coverage process has been implemented with the initial goal of
keeping the project above 70% coverage.
- A process for cleaning up APIs has been initiated in anticipation of
publishing the crates on crates.io. The
    weaver_semconv crate is the first to undergo this process.

#### \[unreleased]

##### 🚀 Features

-   *(registry)* Improve resolved schema and registry api usability.
-   *(registry)* Introduce the concept of named registries
-   *(stats)* Implement registry stats command
-   *(resolve)* Implement registry resolve command
- *(template)* Add a more complex example generating markdown files per
group prefix
- *(template)* Reimplement template generation based on minijinja + jaq
(jq-like filters)
-   *(cli)* Add quiet mode
-   *(generator)* Add support for all group types
- *(generator)* Add jq-like filter support to make artifact generation
more flexible
-   *(generator)* Complete the weaver registry generate command.
- *(cli)* Add update-markdown sub-command and align sub-command args in
the registry command.
-   *(registry)* Improve unit test to check the generated markdown
-   *(registry)* Add unit test to check the generated markdown
-   *(registry)* Generate markdown from jinja2 templates
-   *(template)* Generate markdown files describing a registry
-   *(template)* Add template syntax configuration
- *(template)* Initialize template engine with a root directory to
support include clause.
- *(template)* Expose template.set_file_name method to dynamically
define the file name of the output.
-   *(template)* Generate registry from templates
-   *(resolve)* Improve error reporting
-   *(resolve)* Fix typo
-   *(resolve)* Implement `include` constraint
-   *(resolve)* Check `any_of` constraints
-   *(template)* Integrate with minininja
-   *(template)* Start integration of the case converter
-   *(template)* Replace tera with minijinja to improve error handling
-   *(registry)* Refactor registry sub-commands.
-   *(registry)* Add `weaver check registry` command
- *(resolver)* Simplify semantic convention registry resolution function

##### 🐛 Bug Fixes

-   *(resolution)* Adjust other unit tests to take into account the fix
-   *(resolution)* Make resolution process easy to test in unit tests
-   *(resolution)* Fix resolution order
-   *(resolution)* Create minimal example reproducing the bug

##### 📚 Documentation

-   *(template)* Add documentation to describe the template engine.
- Describe crates layout and add README.md files for every crates in the
workspace.
-   Clean up README.md

##### 🧪 Testing

- *(integration)* Create integration test to check parsing and
resolution of the official semconv repo.

##### ⚙️ Miscellaneous Tasks

-   *(coverage)* Improve test coverage
- *(coverage)* Remove xtask and main command line from the code coverage
-   *(coverage)* Apply `tarpaulin` coverage to the entire workspace
-   *(install)* Add `cargo tarpaulin` in the list of tools to install
-   *(build)* Trigger ci.yml workflow for all push and pull request
-   *(coverage)* Add test code coverage with cargo tarpaulin
-   *(clippy)* Add more clippy lints
-   *(clippy)* Fix more clippy issues
-   *(clippy)* Fix explicit_into_iter_loop clippy issue
-   *(git)* Make the output dir invisible for git
-   *(changelog)* Add git cliff configuration
-   *(code)* Make error enums non-exhaustive
- *(code)* Implement
[#&#8203;54](https://redirect.github.com/open-telemetry/weaver/issues/54)
-   *(code)* Fix str_to_string clippy lint issues
- *(code)* Implement
[#&#8203;54](https://redirect.github.com/open-telemetry/weaver/issues/54)
+ new clippy lint rule
-   *(build)* Fix doc lint issue
-   *(build)* Fix GH action
-   *(build)* Add xtask
-   *(build)* Replace script/check_workspace with cargo xtask validate
-   *(build)* Define lint rules globally from the cargo workspace
- *(build)* Clippy lint rules to remove unwrap and enforce must_use when
needed
-   *(build)* Fix clippy issues
-   *(doc)* Update README.md to describe check and generate sub-commands
-   *(build)* Fix clippy issue
-   *(build)* Fix merge issue.
-   *(build)* Update cargo lock
-   *(compatibility)* Align attribute type and examples definitions
-   *(compatibility)* Align requirement level definition
-   *(compatibility)* Align stability definition
- *(compatibility)* Make resolved registry compatible with official
registry syntax
-   *(clippy)* Fix clippy lint issues
-   *(error)* Improve compound error management
-   *(ci)* Fix toolchain version issue
-   *(ci)* Attempt to fix toolchain version issue
-   *(build)* Fix ci workflow
-   *(build)* Fix scripts path
- *(build)* Remove allowed-external-types.toml files from the Typos
control.
- *(build)* Add control procedures for workspace and public API policies
-   *(build)* Run build and test only with ubuntu target for now.
- *(build)* Remove macos target for the build (API rate limit reached,
we need to figure out that later).
-   Add cargo lock file.
-   *(dep)* Bump dependency versions
-   Migrate f5/otel-weaver repo to open-telemetry/weaver repo

#### Install weaver 0.15.0

##### Install prebuilt binaries via shell script

```sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/open-telemetry/weaver/releases/download/v0.15.0/weaver-installer.sh | sh
```

##### Install prebuilt binaries via powershell script

```sh
powershell -c "irm https://github.com/open-telemetry/weaver/releases/download/v0.15.0/weaver-installer.ps1 | iex"
```

#### Download weaver 0.15.0

|  File  | Platform | Checksum |
|--------|----------|----------|
|
[weaver-aarch64-apple-darwin.tar.xz](https://redirect.github.com/open-telemetry/weaver/releases/download/v0.15.0/weaver-aarch64-apple-darwin.tar.xz)
| Apple Silicon macOS |
[checksum](https://redirect.github.com/open-telemetry/weaver/releases/download/v0.15.0/weaver-aarch64-apple-darwin.tar.xz.sha256)
|
|
[weaver-x86\_64-apple-darwin.tar.xz](https://redirect.github.com/open-telemetry/weaver/releases/download/v0.15.0/weaver-x86\_64-apple-darwin.tar.xz)
| Intel macOS |
[checksum](https://redirect.github.com/open-telemetry/weaver/releases/download/v0.15.0/weaver-x86\_64-apple-darwin.tar.xz.sha256)
|
|
[weaver-x86\_64-pc-windows-msvc.zip](https://redirect.github.com/open-telemetry/weaver/releases/download/v0.15.0/weaver-x86\_64-pc-windows-msvc.zip)
| x64 Windows |
[checksum](https://redirect.github.com/open-telemetry/weaver/releases/download/v0.15.0/weaver-x86\_64-pc-windows-msvc.zip.sha256)
|
|
[weaver-x86\_64-pc-windows-msvc.msi](https://redirect.github.com/open-telemetry/weaver/releases/download/v0.15.0/weaver-x86\_64-pc-windows-msvc.msi)
| x64 Windows |
[checksum](https://redirect.github.com/open-telemetry/weaver/releases/download/v0.15.0/weaver-x86\_64-pc-windows-msvc.msi.sha256)
|
|
[weaver-x86\_64-unknown-linux-gnu.tar.xz](https://redirect.github.com/open-telemetry/weaver/releases/download/v0.15.0/weaver-x86\_64-unknown-linux-gnu.tar.xz)
| x64 Linux |
[checksum](https://redirect.github.com/open-telemetry/weaver/releases/download/v0.15.0/weaver-x86\_64-unknown-linux-gnu.tar.xz.sha256)
|

#### Verifying GitHub Artifact Attestations

The artifacts in this release have attestations generated with GitHub
Artifact Attestations. These can be verified by using the [GitHub
CLI](https://cli.github.com/manual/gh_attestation_verify):

```sh
gh attestation verify <file-path of downloaded artifact> --repo open-telemetry/weaver
```

You can also download the attestation from
[GitHub](https://redirect.github.com/open-telemetry/weaver/attestations)
and verify against that directly:

```sh
gh attestation verify <file-path of downloaded artifact> --bundle <file-path of downloaded attestation>
```

</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 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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJTa2lwIENoYW5nZWxvZyIsImRlcGVuZGVuY2llcyJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-02 15:17:27 -07:00
renovate[bot]
5679db3d86 chore(deps): update module github.com/spf13/cast to v1.8.0 (#6728)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [github.com/spf13/cast](https://redirect.github.com/spf13/cast) |
`v1.7.1` -> `v1.8.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fspf13%2fcast/v1.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fspf13%2fcast/v1.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fspf13%2fcast/v1.7.1/v1.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fspf13%2fcast/v1.7.1/v1.8.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>spf13/cast (github.com/spf13/cast)</summary>

###
[`v1.8.0`](https://redirect.github.com/spf13/cast/releases/tag/v1.8.0)

[Compare
Source](https://redirect.github.com/spf13/cast/compare/v1.7.1...v1.8.0)

#### What's Changed

- Updates by
[@&#8203;sagikazarmark](https://redirect.github.com/sagikazarmark) in
[https://github.com/spf13/cast/pull/237](https://redirect.github.com/spf13/cast/pull/237)
- Bump actions/setup-go from 4.0.1 to 4.1.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/spf13/cast/pull/193](https://redirect.github.com/spf13/cast/pull/193)
- Generic by
[@&#8203;sagikazarmark](https://redirect.github.com/sagikazarmark) in
[https://github.com/spf13/cast/pull/238](https://redirect.github.com/spf13/cast/pull/238)
- Add unsigned integer support in ToStringSliceE function by
[@&#8203;nicklaus-dev](https://redirect.github.com/nicklaus-dev) in
[https://github.com/spf13/cast/pull/200](https://redirect.github.com/spf13/cast/pull/200)
- Add function to cast `interface{}` to `[]float64` by
[@&#8203;ste93cry](https://redirect.github.com/ste93cry) in
[https://github.com/spf13/cast/pull/179](https://redirect.github.com/spf13/cast/pull/179)
- Add cast methods ToUintSlice by
[@&#8203;nmvalera](https://redirect.github.com/nmvalera) in
[https://github.com/spf13/cast/pull/236](https://redirect.github.com/spf13/cast/pull/236)
- build(deps): bump actions/dependency-review-action from 4.5.0 to 4.6.0
by [@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/spf13/cast/pull/240](https://redirect.github.com/spf13/cast/pull/240)
- build(deps): bump github/codeql-action from 2.13.4 to 3.28.15 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/spf13/cast/pull/239](https://redirect.github.com/spf13/cast/pull/239)
- build(deps): bump github/codeql-action from 3.28.15 to 3.28.17 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/spf13/cast/pull/242](https://redirect.github.com/spf13/cast/pull/242)
- Add ToInt64Slice() and ToInt64SliceE() by
[@&#8203;arui1628](https://redirect.github.com/arui1628) in
[https://github.com/spf13/cast/pull/234](https://redirect.github.com/spf13/cast/pull/234)

#### New Contributors

- [@&#8203;nicklaus-dev](https://redirect.github.com/nicklaus-dev) made
their first contribution in
[https://github.com/spf13/cast/pull/200](https://redirect.github.com/spf13/cast/pull/200)
- [@&#8203;ste93cry](https://redirect.github.com/ste93cry) made their
first contribution in
[https://github.com/spf13/cast/pull/179](https://redirect.github.com/spf13/cast/pull/179)
- [@&#8203;nmvalera](https://redirect.github.com/nmvalera) made their
first contribution in
[https://github.com/spf13/cast/pull/236](https://redirect.github.com/spf13/cast/pull/236)
- [@&#8203;arui1628](https://redirect.github.com/arui1628) made their
first contribution in
[https://github.com/spf13/cast/pull/234](https://redirect.github.com/spf13/cast/pull/234)

**Full Changelog**:
https://github.com/spf13/cast/compare/v1.7.1...v1.8.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 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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJTa2lwIENoYW5nZWxvZyIsImRlcGVuZGVuY2llcyJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-02 08:00:34 -07:00