1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-11-23 22:34:47 +02:00
Commit Graph

286 Commits

Author SHA1 Message Date
renovate[bot]
8c3d01e30b chore(deps): update module github.com/cyphar/filepath-securejoin to v0.4.0 (#6157)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/cyphar/filepath-securejoin](https://redirect.github.com/cyphar/filepath-securejoin)
| `v0.3.6` -> `v0.4.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fcyphar%2ffilepath-securejoin/v0.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fcyphar%2ffilepath-securejoin/v0.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fcyphar%2ffilepath-securejoin/v0.3.6/v0.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fcyphar%2ffilepath-securejoin/v0.3.6/v0.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>cyphar/filepath-securejoin
(github.com/cyphar/filepath-securejoin)</summary>

###
[`v0.4.0`](https://redirect.github.com/cyphar/filepath-securejoin/releases/tag/v0.4.0)

[Compare
Source](https://redirect.github.com/cyphar/filepath-securejoin/compare/v0.3.6...v0.4.0)

This release primarily includes a few minor breaking changes to make the
MkdirAll and SecureJoin interfaces more robust against accidental
misuse.

- `SecureJoin(VFS)` will now return an error if the provided `root` is
not a
    `filepath.Clean`'d path.

While it is ultimately the responsibility of the caller to ensure the
root is
a safe path to use, passing a path like `/symlink/..` as a root would
result
in the `SecureJoin`'d path being placed in `/` even though `/symlink/..`
might be a different directory, and so we should more strongly
discourage
    such usage.

All major users of `securejoin.SecureJoin` already ensure that the paths
they
provide are safe (and this is ultimately a question of user error), but
    removing this foot-gun is probably a good idea. Of course, this is
necessarily a breaking API change (though we expect no real users to be
    affected by it).

Thanks to [Erik Sjölund](https://redirect.github.com/eriksjolund), who
initially
    reported this issue as a possible security issue.

- `MkdirAll` and `MkdirHandle` now take an `os.FileMode`-style mode
argument
instead of a raw `unix.S_*`-style mode argument, which may cause
compile-time
type errors depending on how you use `filepath-securejoin`. For most
users,
there will be no change in behaviour aside from the type change (as the
bottom `0o777` bits are the same in both formats, and most users are
probably
    only using those bits).

    However, if you were using `unix.S_ISVTX` to set the sticky bit with
`MkdirAll(Handle)` you will need to switch to `os.ModeSticky` otherwise
you
will get a runtime error with this update. In addition, the error
message you
will get from passing `unix.S_ISUID` and `unix.S_ISGID` will be
different as
they are treated as invalid bits now (note that previously passing said
bits
    was also an error).

Thanks to the following contributors for helping make this release
possible:

-   Aleksa Sarai <cyphar@cyphar.com>
-   Erik Sjölund <erik.sjolund@gmail.com>

Signed-off-by: Aleksa Sarai <cyphar@cyphar.com>

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS45Mi4wIiwidXBkYXRlZEluVmVyIjoiMzkuOTIuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-13 08:57:26 +01:00
renovate[bot]
784638358b chore(deps): update module github.com/go-git/go-billy/v5 to v5.6.2 (#6122)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/go-git/go-billy/v5](https://redirect.github.com/go-git/go-billy)
| `v5.6.1` -> `v5.6.2` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgo-git%2fgo-billy%2fv5/v5.6.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgo-git%2fgo-billy%2fv5/v5.6.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgo-git%2fgo-billy%2fv5/v5.6.1/v5.6.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgo-git%2fgo-billy%2fv5/v5.6.1/v5.6.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>go-git/go-billy (github.com/go-git/go-billy/v5)</summary>

###
[`v5.6.2`](https://redirect.github.com/go-git/go-billy/releases/tag/v5.6.2)

[Compare
Source](https://redirect.github.com/go-git/go-billy/compare/v5.6.1...v5.6.2)

#### What's Changed

- Enable the `iofs` adapter to also return other interfaces from `io/fs`
by [@&#8203;JAORMX](https://redirect.github.com/JAORMX) in
[https://github.com/go-git/go-billy/pull/102](https://redirect.github.com/go-git/go-billy/pull/102)
- build: Bump dependencies by
[@&#8203;pjbgf](https://redirect.github.com/pjbgf) in
[https://github.com/go-git/go-billy/pull/103](https://redirect.github.com/go-git/go-billy/pull/103)

#### New Contributors

- [@&#8203;JAORMX](https://redirect.github.com/JAORMX) made their first
contribution in
[https://github.com/go-git/go-billy/pull/102](https://redirect.github.com/go-git/go-billy/pull/102)

**Full Changelog**:
https://github.com/go-git/go-billy/compare/v5.6.1...v5.6.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:eyJjcmVhdGVkSW5WZXIiOiIzOS44NS4wIiwidXBkYXRlZEluVmVyIjoiMzkuOTIuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-10 11:33:00 -08:00
renovate[bot]
2fdafcbfcd chore(deps): update module github.com/mattn/go-colorable to v0.1.14 (#6151)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/mattn/go-colorable](https://redirect.github.com/mattn/go-colorable)
| `v0.1.13` -> `v0.1.14` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fmattn%2fgo-colorable/v0.1.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fmattn%2fgo-colorable/v0.1.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fmattn%2fgo-colorable/v0.1.13/v0.1.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fmattn%2fgo-colorable/v0.1.13/v0.1.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>mattn/go-colorable (github.com/mattn/go-colorable)</summary>

###
[`v0.1.14`](https://redirect.github.com/mattn/go-colorable/compare/v0.1.13...v0.1.14)

[Compare
Source](https://redirect.github.com/mattn/go-colorable/compare/v0.1.13...v0.1.14)

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS45Mi4wIiwidXBkYXRlZEluVmVyIjoiMzkuOTIuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-10 12:53:51 +01:00
renovate[bot]
206f5f86b4 fix(deps): update module go.opentelemetry.io/build-tools/gotmpl to v0.16.0 (#6148)
This PR contains the following updates:

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

---

### Release Notes

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

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

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

##### 💡 Enhancements 💡

- `crosslink`: Adds a 'tidy' subcommand to generate 'go mod tidy'
schedules
([#&#8203;642](https://redirect.github.com/open-telemetry/opentelemetry-go-build-tools/issues/642))

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS45Mi4wIiwidXBkYXRlZEluVmVyIjoiMzkuOTIuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-10 09:23:22 +01:00
renovate[bot]
cbada9aefb fix(deps): update module go.opentelemetry.io/build-tools/semconvgen to v0.16.0 (#6150)
This PR contains the following updates:

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

---

### Release Notes

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

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

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

##### 💡 Enhancements 💡

- `crosslink`: Adds a 'tidy' subcommand to generate 'go mod tidy'
schedules
([#&#8203;642](https://redirect.github.com/open-telemetry/opentelemetry-go-build-tools/issues/642))

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS45Mi4wIiwidXBkYXRlZEluVmVyIjoiMzkuOTIuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-10 09:17:29 +01:00
renovate[bot]
f9aa327872 fix(deps): update module go.opentelemetry.io/build-tools/multimod to v0.16.0 (#6149)
This PR contains the following updates:

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

---

### Release Notes

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

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

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

##### 💡 Enhancements 💡

- `crosslink`: Adds a 'tidy' subcommand to generate 'go mod tidy'
schedules
([#&#8203;642](https://redirect.github.com/open-telemetry/opentelemetry-go-build-tools/issues/642))

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS45Mi4wIiwidXBkYXRlZEluVmVyIjoiMzkuOTIuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-10 09:09:07 +01:00
renovate[bot]
ab57980b1f fix(deps): update module go.opentelemetry.io/build-tools/crosslink to v0.16.0 (#6147)
This PR contains the following updates:

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

---

### Release Notes

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

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

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

##### 💡 Enhancements 💡

- `crosslink`: Adds a 'tidy' subcommand to generate 'go mod tidy'
schedules
([#&#8203;642](https://redirect.github.com/open-telemetry/opentelemetry-go-build-tools/issues/642))

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS45Mi4wIiwidXBkYXRlZEluVmVyIjoiMzkuOTIuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-10 09:01:21 +01:00
renovate[bot]
9299c4663e chore(deps): update module go.opentelemetry.io/build-tools to v0.16.0 (#6146)
This PR contains the following updates:

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

---

### Release Notes

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

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

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

##### 💡 Enhancements 💡

- `crosslink`: Adds a 'tidy' subcommand to generate 'go mod tidy'
schedules
([#&#8203;642](https://redirect.github.com/open-telemetry/opentelemetry-go-build-tools/issues/642))

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS45Mi4wIiwidXBkYXRlZEluVmVyIjoiMzkuOTIuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-10 06:20:15 +01:00
renovate[bot]
14b874e169 chore(deps): update module github.com/sagikazarmark/locafero to v0.7.0 (#6140)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/sagikazarmark/locafero](https://redirect.github.com/sagikazarmark/locafero)
| `v0.6.0` -> `v0.7.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fsagikazarmark%2flocafero/v0.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fsagikazarmark%2flocafero/v0.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fsagikazarmark%2flocafero/v0.6.0/v0.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fsagikazarmark%2flocafero/v0.6.0/v0.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>sagikazarmark/locafero
(github.com/sagikazarmark/locafero)</summary>

###
[`v0.7.0`](https://redirect.github.com/sagikazarmark/locafero/compare/v0.6.0...v0.7.0)

[Compare
Source](https://redirect.github.com/sagikazarmark/locafero/compare/v0.6.0...v0.7.0)

</details>

---

### Configuration

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

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

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

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

---

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

---

This PR 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:eyJjcmVhdGVkSW5WZXIiOiIzOS45Mi4wIiwidXBkYXRlZEluVmVyIjoiMzkuOTIuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-09 16:39:21 +01:00
renovate[bot]
fe33778892 chore(deps): update module github.com/securego/gosec/v2 to v2.22.0 (#6141)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/securego/gosec/v2](https://redirect.github.com/securego/gosec)
| `v2.21.4` -> `v2.22.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fsecurego%2fgosec%2fv2/v2.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fsecurego%2fgosec%2fv2/v2.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fsecurego%2fgosec%2fv2/v2.21.4/v2.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fsecurego%2fgosec%2fv2/v2.21.4/v2.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>securego/gosec (github.com/securego/gosec/v2)</summary>

###
[`v2.22.0`](https://redirect.github.com/securego/gosec/releases/tag/v2.22.0)

[Compare
Source](https://redirect.github.com/securego/gosec/compare/v2.21.4...v2.22.0)

#### Changelog

-
[`e0cca6f`](e0cca6fe95)
Update what message for G104
([#&#8203;1282](https://redirect.github.com/securego/gosec/issues/1282))
-
[`534689b`](534689b08f)
chore(deps): update module github.com/onsi/ginkgo/v2 to v2.22.2
([#&#8203;1281](https://redirect.github.com/securego/gosec/issues/1281))
-
[`eb95db1`](eb95db1c76)
chore(deps): update all dependencies
([#&#8203;1280](https://redirect.github.com/securego/gosec/issues/1280))
-
[`6c6da40`](6c6da403f0)
chore(deps): update all dependencies
([#&#8203;1279](https://redirect.github.com/securego/gosec/issues/1279))
-
[`b12f51f`](b12f51f7d6)
Simplify sortIssues implementation
([#&#8203;1277](https://redirect.github.com/securego/gosec/issues/1277))
-
[`54c2185`](54c2185ae6)
Enable testifylint and fix up lint issues
([#&#8203;1276](https://redirect.github.com/securego/gosec/issues/1276))
-
[`36c81ed`](36c81ed69b)
Refactor AppendError to check for build.NoGoError
([#&#8203;1273](https://redirect.github.com/securego/gosec/issues/1273))
-
[`9a2d74f`](9a2d74ffe0)
chore(deps): update module golang.org/x/net to v0.33.0 \[security]
([#&#8203;1275](https://redirect.github.com/securego/gosec/issues/1275))
-
[`4c5ad91`](4c5ad914f3)
Update README.md
([#&#8203;1274](https://redirect.github.com/securego/gosec/issues/1274))
-
[`e21b4d4`](e21b4d42cf)
Rule documentation updates
([#&#8203;1272](https://redirect.github.com/securego/gosec/issues/1272))
-
[`92de0ee`](92de0ee7a2)
Replace old golang.org links with new go.dev
([#&#8203;1271](https://redirect.github.com/securego/gosec/issues/1271))
-
[`4fda076`](4fda076e5d)
Refactor AppendError to use strings.Contains
([#&#8203;1270](https://redirect.github.com/securego/gosec/issues/1270))
-
[`b01f49e`](b01f49e366)
Simplify Analyzer.ignore by reducing nesting
([#&#8203;1269](https://redirect.github.com/securego/gosec/issues/1269))
-
[`b62cc33`](b62cc3316d)
Improve capitalization in AI API flags descriptions
([#&#8203;1267](https://redirect.github.com/securego/gosec/issues/1267))
-
[`bc77d16`](bc77d16301)
Remove unused golint dependency
([#&#8203;1266](https://redirect.github.com/securego/gosec/issues/1266))
-
[`ef1a35f`](ef1a35faf9)
Simplify tests by using GinkgoT().TempDir()
([#&#8203;1265](https://redirect.github.com/securego/gosec/issues/1265))
-
[`09b9143`](09b914371e)
Documentation on adding new rules and analyzers
([#&#8203;1262](https://redirect.github.com/securego/gosec/issues/1262))
-
[`1bd92a8`](1bd92a8e30)
chore(deps): update all dependencies
([#&#8203;1268](https://redirect.github.com/securego/gosec/issues/1268))
-
[`ca55eca`](ca55eca3de)
Update to go 1.22.10 and 1.23.4 versions
([#&#8203;1264](https://redirect.github.com/securego/gosec/issues/1264))
-
[`329cad8`](329cad89ee)
chore(deps): update module golang.org/x/crypto to v0.31.0 \[security]
([#&#8203;1263](https://redirect.github.com/securego/gosec/issues/1263))
-
[`08beb25`](08beb25d41)
chore(deps): update all dependencies
([#&#8203;1261](https://redirect.github.com/securego/gosec/issues/1261))
-
[`d566be2`](d566be274e)
chore(deps): update module github.com/onsi/gomega to v1.36.0
([#&#8203;1259](https://redirect.github.com/securego/gosec/issues/1259))
-
[`8c602d0`](8c602d0bc4)
fix: revive.redefines-builtin-id lint warnings
([#&#8203;1257](https://redirect.github.com/securego/gosec/issues/1257))
-
[`399e835`](399e835157)
Fix typos in comments and fields
-
[`229cf63`](229cf63a09)
Remove the decryption funtions/methods from G407 check
-
[`699cb55`](699cb55eb3)
Upate go to version 1.23.3 and 1.22.9
-
[`9b13cd5`](9b13cd5ab4)
Fix G115 false positive when going from parsed uint to larger int
-
[`08ea2a5`](08ea2a57db)
chore(deps): update all dependencies
-
[`4415613`](44156135bf)
chore(deps): update all dependencies
-
[`3274716`](3274716ce3)
chore(deps): update all dependencies
-
[`1fb6a46`](1fb6a46eed)
chore(deps): update all dependencies
-
[`d2c92ed`](d2c92ed7b3)
chore(deps): update all dependencies
-
[`4fd9872`](4fd98728a7)
Update go version to 1.23.2 and 1.22.8
-
[`1501618`](1501618b90)
chore(deps): update module google.golang.org/api to v0.201.0
-
[`7d33bc1`](7d33bc1991)
chore(deps): update all dependencies
-
[`bd8b4b4`](bd8b4b4ece)
chore(deps): update all dependencies
-
[`1216c9b`](1216c9b96b)
Fix the cosign step to authenticate with the container registry
-
[`50d1b4a`](50d1b4ae6b)
chore(deps): update module google.golang.org/api to v0.199.0
-
[`c0ba7c7`](c0ba7c7a74)
Update the gosec to v2.21.4 in the Github action
-
[`a3299ce`](a3299ce10c)
Add the version into goreleaser config

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS45Mi4wIiwidXBkYXRlZEluVmVyIjoiMzkuOTIuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-09 16:30:46 +01:00
renovate[bot]
cc34299917 chore(deps): update module github.com/uudashr/iface to v1.3.1 (#6139)
This PR contains the following updates:

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

---

### Release Notes

<details>
<summary>uudashr/iface (github.com/uudashr/iface)</summary>

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

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

#### What's Changed

- Fix typo in comment by
[@&#8203;alexandear](https://redirect.github.com/alexandear) in
[https://github.com/uudashr/iface/pull/7](https://redirect.github.com/uudashr/iface/pull/7)
- Enable golangci-lint for tests by
[@&#8203;alexandear](https://redirect.github.com/alexandear) in
[https://github.com/uudashr/iface/pull/8](https://redirect.github.com/uudashr/iface/pull/8)
- Handle untyped nil by
[@&#8203;uudashr](https://redirect.github.com/uudashr)

#### New Contributors

- [@&#8203;alexandear](https://redirect.github.com/alexandear) made
their first contribution in
[https://github.com/uudashr/iface/pull/7](https://redirect.github.com/uudashr/iface/pull/7)

**Full Changelog**:
https://github.com/uudashr/iface/compare/v1.3.0...v1.3.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:eyJjcmVhdGVkSW5WZXIiOiIzOS45Mi4wIiwidXBkYXRlZEluVmVyIjoiMzkuOTIuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-08 08:18:55 -08:00
renovate[bot]
4f3ca3f58f fix(deps): update module google.golang.org/protobuf to v1.36.2 (#6138) 2025-01-07 20:12:13 +01:00
renovate[bot]
01608431c5 chore(deps): update module github.com/protonmail/go-crypto to v1.1.4 (#6137)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/ProtonMail/go-crypto](https://redirect.github.com/ProtonMail/go-crypto)
| `v1.1.3` -> `v1.1.4` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fProtonMail%2fgo-crypto/v1.1.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fProtonMail%2fgo-crypto/v1.1.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fProtonMail%2fgo-crypto/v1.1.3/v1.1.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fProtonMail%2fgo-crypto/v1.1.3/v1.1.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>ProtonMail/go-crypto
(github.com/ProtonMail/go-crypto)</summary>

###
[`v1.1.4`](https://redirect.github.com/ProtonMail/go-crypto/releases/tag/v1.1.4)

[Compare
Source](https://redirect.github.com/ProtonMail/go-crypto/compare/v1.1.3...v1.1.4)

#### What's Changed

- Emit armor headers in sorted order by
[@&#8203;andrewgdotcom](https://redirect.github.com/andrewgdotcom) in
[https://github.com/ProtonMail/go-crypto/pull/255](https://redirect.github.com/ProtonMail/go-crypto/pull/255)
- Reduce memory usage when AEAD en/decrypting large messages by
[@&#8203;twiss](https://redirect.github.com/twiss) in
[https://github.com/ProtonMail/go-crypto/pull/259](https://redirect.github.com/ProtonMail/go-crypto/pull/259)
- Update artifact actions to v4 by
[@&#8203;twiss](https://redirect.github.com/twiss) in
[https://github.com/ProtonMail/go-crypto/pull/260](https://redirect.github.com/ProtonMail/go-crypto/pull/260)

**Full Changelog**:
https://github.com/ProtonMail/go-crypto/compare/v1.1.3...v1.1.4

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS45Mi4wIiwidXBkYXRlZEluVmVyIjoiMzkuOTIuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-07 10:56:27 -08:00
renovate[bot]
ad556b4b46 fix(deps): update golang.org/x (#6135)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence | Type |
Update |
|---|---|---|---|---|---|---|---|
| golang.org/x/crypto | `v0.31.0` -> `v0.32.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fcrypto/v0.32.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fcrypto/v0.32.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fcrypto/v0.31.0/v0.32.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fcrypto/v0.31.0/v0.32.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| indirect | minor |
| golang.org/x/exp | `7d7fa50` -> `7588d65` |
[![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fexp/v0.0.0-20250106191152-7588d65b2ba8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fexp/v0.0.0-20250106191152-7588d65b2ba8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fexp/v0.0.0-20250103183323-7d7fa50e5329/v0.0.0-20250106191152-7588d65b2ba8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fexp/v0.0.0-20250103183323-7d7fa50e5329/v0.0.0-20250106191152-7588d65b2ba8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | digest |
| golang.org/x/exp/typeparams | `7d7fa50` -> `7588d65` |
[![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fexp%2ftypeparams/v0.0.0-20250106191152-7588d65b2ba8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fexp%2ftypeparams/v0.0.0-20250106191152-7588d65b2ba8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fexp%2ftypeparams/v0.0.0-20250103183323-7d7fa50e5329/v0.0.0-20250106191152-7588d65b2ba8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fexp%2ftypeparams/v0.0.0-20250103183323-7d7fa50e5329/v0.0.0-20250106191152-7588d65b2ba8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| indirect | digest |
| golang.org/x/net | `v0.33.0` -> `v0.34.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fnet/v0.34.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fnet/v0.34.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fnet/v0.33.0/v0.34.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fnet/v0.33.0/v0.34.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| indirect | minor |
| golang.org/x/tools | `v0.28.0` -> `v0.29.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2ftools/v0.29.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2ftools/v0.29.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2ftools/v0.28.0/v0.29.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2ftools/v0.28.0/v0.29.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
| require | minor |

---

### 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:eyJjcmVhdGVkSW5WZXIiOiIzOS44NS4wIiwidXBkYXRlZEluVmVyIjoiMzkuODUuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-06 13:03:23 -08:00
renovate[bot]
2940303c1e chore(deps): update module github.com/alingse/nilnesserr to v0.1.2 (#6134)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/alingse/nilnesserr](https://redirect.github.com/alingse/nilnesserr)
| `v0.1.1` -> `v0.1.2` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2falingse%2fnilnesserr/v0.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2falingse%2fnilnesserr/v0.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2falingse%2fnilnesserr/v0.1.1/v0.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2falingse%2fnilnesserr/v0.1.1/v0.1.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>alingse/nilnesserr (github.com/alingse/nilnesserr)</summary>

###
[`v0.1.2`](https://redirect.github.com/alingse/nilnesserr/releases/tag/v0.1.2)

[Compare
Source](https://redirect.github.com/alingse/nilnesserr/compare/v0.1.1...v0.1.2)

clean some docs

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS44NS4wIiwidXBkYXRlZEluVmVyIjoiMzkuODUuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-06 08:45:51 -08:00
renovate[bot]
d8a6c7d010 chore(deps): update module github.com/pjbgf/sha1cd to v0.3.1 (#6123)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [github.com/pjbgf/sha1cd](https://redirect.github.com/pjbgf/sha1cd) |
`v0.3.0` -> `v0.3.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fpjbgf%2fsha1cd/v0.3.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fpjbgf%2fsha1cd/v0.3.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fpjbgf%2fsha1cd/v0.3.0/v0.3.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fpjbgf%2fsha1cd/v0.3.0/v0.3.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>pjbgf/sha1cd (github.com/pjbgf/sha1cd)</summary>

###
[`v0.3.1`](https://redirect.github.com/pjbgf/sha1cd/releases/tag/v0.3.1)

[Compare
Source](https://redirect.github.com/pjbgf/sha1cd/compare/v0.3.0...v0.3.1)

#### What's Changed

- build(deps): Bump github/codeql-action from 2.2.4 to 2.2.5 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/35](https://redirect.github.com/pjbgf/sha1cd/pull/35)
- build(deps): Bump golang from `2edf6aa` to `52921e6` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/36](https://redirect.github.com/pjbgf/sha1cd/pull/36)
- goasm: Add amd64 implementation for ubc by
[@&#8203;pjbgf](https://redirect.github.com/pjbgf) in
[https://github.com/pjbgf/sha1cd/pull/37](https://redirect.github.com/pjbgf/sha1cd/pull/37)
- build(deps): Bump github/codeql-action from 2.2.5 to 2.2.6 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/39](https://redirect.github.com/pjbgf/sha1cd/pull/39)
- build(deps): Bump golang from `52921e6` to `74a3829` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/40](https://redirect.github.com/pjbgf/sha1cd/pull/40)
- build(deps): Bump github/codeql-action from 2.2.6 to 2.2.9 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/47](https://redirect.github.com/pjbgf/sha1cd/pull/47)
- build(deps): Bump golang from `74a3829` to `5990c4f` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/42](https://redirect.github.com/pjbgf/sha1cd/pull/42)
- build(deps): Bump actions/setup-go from 3.5.0 to 4.0.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/41](https://redirect.github.com/pjbgf/sha1cd/pull/41)
- build(deps): Bump actions/checkout from 3.3.0 to 3.5.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/45](https://redirect.github.com/pjbgf/sha1cd/pull/45)
- build(deps): Bump github/codeql-action from 2.2.9 to 2.2.11 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/49](https://redirect.github.com/pjbgf/sha1cd/pull/49)
- build(deps): Bump golang from `5990c4f` to `23050c2` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/48](https://redirect.github.com/pjbgf/sha1cd/pull/48)
- build(deps): Bump github/codeql-action from 2.2.11 to 2.2.12 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/50](https://redirect.github.com/pjbgf/sha1cd/pull/50)
- build(deps): Bump actions/checkout from 3.5.0 to 3.5.2 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/51](https://redirect.github.com/pjbgf/sha1cd/pull/51)
- build(deps): Bump golang from `23050c2` to `403f486` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/52](https://redirect.github.com/pjbgf/sha1cd/pull/52)
- build(deps): Bump github/codeql-action from 2.2.12 to 2.3.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/53](https://redirect.github.com/pjbgf/sha1cd/pull/53)
- build(deps): Bump github/codeql-action from 2.3.0 to 2.3.2 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/54](https://redirect.github.com/pjbgf/sha1cd/pull/54)
- build(deps): Bump github/codeql-action from 2.3.2 to 2.3.3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/55](https://redirect.github.com/pjbgf/sha1cd/pull/55)
- build(deps): Bump golang from `403f486` to `31a8f92` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/56](https://redirect.github.com/pjbgf/sha1cd/pull/56)
- build(deps): Bump golang from `31a8f92` to `685a22e` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/57](https://redirect.github.com/pjbgf/sha1cd/pull/57)
- build(deps): Bump actions/setup-go from 4.0.0 to 4.0.1 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/58](https://redirect.github.com/pjbgf/sha1cd/pull/58)
- build(deps): Bump github/codeql-action from 2.3.3 to 2.3.5 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/60](https://redirect.github.com/pjbgf/sha1cd/pull/60)
- build(deps): Bump golang from `685a22e` to `690e413` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/59](https://redirect.github.com/pjbgf/sha1cd/pull/59)
- build(deps): Bump github/codeql-action from 2.3.5 to 2.3.6 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/61](https://redirect.github.com/pjbgf/sha1cd/pull/61)
- build(deps): Bump golang from `690e413` to `4b1fc02` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/64](https://redirect.github.com/pjbgf/sha1cd/pull/64)
- build(deps): Bump actions/checkout from 3.5.2 to 3.5.3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/63](https://redirect.github.com/pjbgf/sha1cd/pull/63)
- build(deps): Bump github/codeql-action from 2.3.6 to 2.13.4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/62](https://redirect.github.com/pjbgf/sha1cd/pull/62)
- Bump dependencies by
[@&#8203;pjbgf](https://redirect.github.com/pjbgf) in
[https://github.com/pjbgf/sha1cd/pull/66](https://redirect.github.com/pjbgf/sha1cd/pull/66)
- build(deps): Bump actions/setup-go from 4.0.1 to 4.1.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/67](https://redirect.github.com/pjbgf/sha1cd/pull/67)
- build(deps): Bump golang from 1.20 to 1.21 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/68](https://redirect.github.com/pjbgf/sha1cd/pull/68)
- build(deps): Bump golang from `ec457a2` to `b490ae1` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/69](https://redirect.github.com/pjbgf/sha1cd/pull/69)
- build(deps): Bump actions/checkout from 3.5.3 to 3.6.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/70](https://redirect.github.com/pjbgf/sha1cd/pull/70)
- Update LICENSE by [@&#8203;pjbgf](https://redirect.github.com/pjbgf)
in
[https://github.com/pjbgf/sha1cd/pull/71](https://redirect.github.com/pjbgf/sha1cd/pull/71)
- build(deps): Bump golang from `b490ae1` to `d2aad22` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/72](https://redirect.github.com/pjbgf/sha1cd/pull/72)
- build(deps): Bump actions/checkout from 3.6.0 to 4.0.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/73](https://redirect.github.com/pjbgf/sha1cd/pull/73)
- build(deps): Bump golang from `d2aad22` to `cffaba7` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/74](https://redirect.github.com/pjbgf/sha1cd/pull/74)
- Bump Go to 1.21 by [@&#8203;pjbgf](https://redirect.github.com/pjbgf)
in
[https://github.com/pjbgf/sha1cd/pull/77](https://redirect.github.com/pjbgf/sha1cd/pull/77)
- build(deps): Bump actions/checkout from 4.0.0 to 4.1.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/76](https://redirect.github.com/pjbgf/sha1cd/pull/76)
- build(deps): Bump actions/checkout from 4.1.0 to 4.1.1 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/78](https://redirect.github.com/pjbgf/sha1cd/pull/78)
- build(deps): Bump actions/setup-go from 4.1.0 to 5.0.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/79](https://redirect.github.com/pjbgf/sha1cd/pull/79)
- Bump github.com/mmcloughlin/avo v0.6.0 by
[@&#8203;pjbgf](https://redirect.github.com/pjbgf) in
[https://github.com/pjbgf/sha1cd/pull/81](https://redirect.github.com/pjbgf/sha1cd/pull/81)
- build(deps): Bump golang from 1.21 to 1.22 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/82](https://redirect.github.com/pjbgf/sha1cd/pull/82)
- build(deps): Bump golang from `ef61a20` to `7b297d9` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/83](https://redirect.github.com/pjbgf/sha1cd/pull/83)
- build(deps): Bump golang from `7b297d9` to `34ce21a` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/84](https://redirect.github.com/pjbgf/sha1cd/pull/84)
- build(deps): Bump actions/checkout from 4.1.1 to 4.1.2 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/85](https://redirect.github.com/pjbgf/sha1cd/pull/85)
- build(deps): Bump golang from `34ce21a` to `0b55ab8` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/86](https://redirect.github.com/pjbgf/sha1cd/pull/86)
- build(deps): Bump golang from `0b55ab8` to `c4fb952` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/88](https://redirect.github.com/pjbgf/sha1cd/pull/88)
- build(deps): Bump golang from `c4fb952` to `450e382` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/89](https://redirect.github.com/pjbgf/sha1cd/pull/89)
- build(deps): Bump actions/checkout from 4.1.2 to 4.1.3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/90](https://redirect.github.com/pjbgf/sha1cd/pull/90)
- Bump dependencies, Go and some house-keep by
[@&#8203;pjbgf](https://redirect.github.com/pjbgf) in
[https://github.com/pjbgf/sha1cd/pull/91](https://redirect.github.com/pjbgf/sha1cd/pull/91)
- build(deps): Bump actions/checkout from 4.1.3 to 4.1.4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/93](https://redirect.github.com/pjbgf/sha1cd/pull/93)
- build(deps): Bump golang from `450e382` to `d5302d4` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/92](https://redirect.github.com/pjbgf/sha1cd/pull/92)
- build(deps): Bump actions/setup-go from 5.0.0 to 5.0.1 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/94](https://redirect.github.com/pjbgf/sha1cd/pull/94)
- build(deps): Bump actions/checkout from 4.1.4 to 4.1.5 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/95](https://redirect.github.com/pjbgf/sha1cd/pull/95)
- build(deps): Bump golang from `d5302d4` to `b1e05e2` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/96](https://redirect.github.com/pjbgf/sha1cd/pull/96)
- build(deps): Bump github/codeql-action from 2.13.4 to 3.25.5 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/99](https://redirect.github.com/pjbgf/sha1cd/pull/99)
- build(deps): Bump actions/checkout from 4.1.5 to 4.1.6 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/98](https://redirect.github.com/pjbgf/sha1cd/pull/98)
- build(deps): Bump golang from `b1e05e2` to `f43c6f0` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/97](https://redirect.github.com/pjbgf/sha1cd/pull/97)
- build(deps): Bump github/codeql-action from 3.25.5 to 3.25.6 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/100](https://redirect.github.com/pjbgf/sha1cd/pull/100)
- build(deps): Bump github/codeql-action from 3.25.6 to 3.25.8 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/102](https://redirect.github.com/pjbgf/sha1cd/pull/102)
- build(deps): Bump golang from `f43c6f0` to `969349b` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/103](https://redirect.github.com/pjbgf/sha1cd/pull/103)
- build(deps): Bump golang from `969349b` to `c2010b9` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/106](https://redirect.github.com/pjbgf/sha1cd/pull/106)
- build(deps): Bump github/codeql-action from 3.25.8 to 3.25.10 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/105](https://redirect.github.com/pjbgf/sha1cd/pull/105)
- build(deps): Bump actions/checkout from 4.1.6 to 4.1.7 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/104](https://redirect.github.com/pjbgf/sha1cd/pull/104)
- build(deps): Bump golang from `c2010b9` to `a66eda6` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/107](https://redirect.github.com/pjbgf/sha1cd/pull/107)
- build(deps): Bump github/codeql-action from 3.25.10 to 3.25.11 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/108](https://redirect.github.com/pjbgf/sha1cd/pull/108)
- build(deps): Bump golang from `a66eda6` to `fcae9e0` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/109](https://redirect.github.com/pjbgf/sha1cd/pull/109)
- build(deps): Bump golang from `fcae9e0` to `829eff9` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/110](https://redirect.github.com/pjbgf/sha1cd/pull/110)
- build(deps): Bump actions/setup-go from 5.0.1 to 5.0.2 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/111](https://redirect.github.com/pjbgf/sha1cd/pull/111)
- build(deps): Bump github/codeql-action from 3.25.11 to 3.25.12 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/112](https://redirect.github.com/pjbgf/sha1cd/pull/112)
- build(deps): Bump github/codeql-action from 3.25.12 to 3.25.13 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/113](https://redirect.github.com/pjbgf/sha1cd/pull/113)
- build(deps): Bump golang from `829eff9` to `86a3c48` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/114](https://redirect.github.com/pjbgf/sha1cd/pull/114)
- build(deps): Bump github/codeql-action from 3.25.13 to 3.25.15 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/115](https://redirect.github.com/pjbgf/sha1cd/pull/115)
- build(deps): Bump github/codeql-action from 3.25.15 to 3.26.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/116](https://redirect.github.com/pjbgf/sha1cd/pull/116)
- build(deps): Bump golang from `86a3c48` to `2bd56f0` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/117](https://redirect.github.com/pjbgf/sha1cd/pull/117)
- build(deps): Bump golang from 1.22 to 1.23 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/119](https://redirect.github.com/pjbgf/sha1cd/pull/119)
- build(deps): Bump github/codeql-action from 3.26.0 to 3.26.2 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/118](https://redirect.github.com/pjbgf/sha1cd/pull/118)
- build(deps): Bump github/codeql-action from 3.26.2 to 3.26.5 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/120](https://redirect.github.com/pjbgf/sha1cd/pull/120)
- build(deps): Bump github/codeql-action from 3.26.5 to 3.26.6 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/121](https://redirect.github.com/pjbgf/sha1cd/pull/121)
- build(deps): Bump golang from `613a108` to `4a3c2bc` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/122](https://redirect.github.com/pjbgf/sha1cd/pull/122)
- build(deps): Bump golang from `4a3c2bc` to `2fe82a3` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/123](https://redirect.github.com/pjbgf/sha1cd/pull/123)
- build(deps): Bump github/codeql-action from 3.26.6 to 3.26.7 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/124](https://redirect.github.com/pjbgf/sha1cd/pull/124)
- build(deps): Bump github/codeql-action from 3.26.7 to 3.26.8 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/125](https://redirect.github.com/pjbgf/sha1cd/pull/125)
- build(deps): Bump github/codeql-action from 3.26.8 to 3.26.9 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/128](https://redirect.github.com/pjbgf/sha1cd/pull/128)
- build(deps): Bump actions/checkout from 4.1.7 to 4.2.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/127](https://redirect.github.com/pjbgf/sha1cd/pull/127)
- build(deps): Bump golang from `2fe82a3` to `4f063a2` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/126](https://redirect.github.com/pjbgf/sha1cd/pull/126)
- build(deps): Bump github/codeql-action from 3.26.9 to 3.26.11 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/129](https://redirect.github.com/pjbgf/sha1cd/pull/129)
- build(deps): Bump golang from `4f063a2` to `adee809` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/130](https://redirect.github.com/pjbgf/sha1cd/pull/130)
- build(deps): Bump github/codeql-action from 3.26.11 to 3.26.12 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/133](https://redirect.github.com/pjbgf/sha1cd/pull/133)
- build(deps): Bump actions/checkout from 4.2.0 to 4.2.1 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/132](https://redirect.github.com/pjbgf/sha1cd/pull/132)
- build(deps): Bump golang from `adee809` to `a7f2fc9` by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/131](https://redirect.github.com/pjbgf/sha1cd/pull/131)
- build(deps): Bump github/codeql-action from 3.26.12 to 3.26.13 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/135](https://redirect.github.com/pjbgf/sha1cd/pull/135)
- build(deps): Bump github/codeql-action from 3.26.13 to 3.27.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/138](https://redirect.github.com/pjbgf/sha1cd/pull/138)
- build(deps): Bump actions/checkout from 4.2.1 to 4.2.2 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/137](https://redirect.github.com/pjbgf/sha1cd/pull/137)
- build(deps): Bump actions/setup-go from 5.0.2 to 5.1.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/136](https://redirect.github.com/pjbgf/sha1cd/pull/136)
- build(deps): Bump github/codeql-action from 3.27.0 to 3.27.1 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/139](https://redirect.github.com/pjbgf/sha1cd/pull/139)
- build(deps): Bump github/codeql-action from 3.27.1 to 3.27.4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/140](https://redirect.github.com/pjbgf/sha1cd/pull/140)
- build(deps): Bump github/codeql-action from 3.27.4 to 3.27.5 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/141](https://redirect.github.com/pjbgf/sha1cd/pull/141)
- build(deps): Bump github/codeql-action from 3.27.5 to 3.27.6 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/142](https://redirect.github.com/pjbgf/sha1cd/pull/142)
- build(deps): Bump actions/setup-go from 5.1.0 to 5.2.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/143](https://redirect.github.com/pjbgf/sha1cd/pull/143)
- build(deps): Bump github/codeql-action from 3.27.6 to 3.27.9 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/144](https://redirect.github.com/pjbgf/sha1cd/pull/144)
- build(deps): Bump github/codeql-action from 3.27.9 to 3.28.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/pjbgf/sha1cd/pull/145](https://redirect.github.com/pjbgf/sha1cd/pull/145)

**Full Changelog**:
https://github.com/pjbgf/sha1cd/compare/v0.3.0...v0.3.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:eyJjcmVhdGVkSW5WZXIiOiIzOS44NS4wIiwidXBkYXRlZEluVmVyIjoiMzkuODUuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-06 10:07:49 +01:00
renovate[bot]
b25db7b039 chore(deps): update module github.com/go-git/go-git/v5 to v5.13.1 (#6125)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/go-git/go-git/v5](https://redirect.github.com/go-git/go-git)
| `v5.12.0` -> `v5.13.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgo-git%2fgo-git%2fv5/v5.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgo-git%2fgo-git%2fv5/v5.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgo-git%2fgo-git%2fv5/v5.12.0/v5.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgo-git%2fgo-git%2fv5/v5.12.0/v5.13.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>go-git/go-git (github.com/go-git/go-git/v5)</summary>

###
[`v5.13.1`](https://redirect.github.com/go-git/go-git/releases/tag/v5.13.1)

[Compare
Source](https://redirect.github.com/go-git/go-git/compare/v5.13.0...v5.13.1)

#### What's Changed

- build: bump github.com/go-git/go-billy/v5 from 5.6.0 to 5.6.1 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1327](https://redirect.github.com/go-git/go-git/pull/1327)
- build: bump github.com/elazarl/goproxy from 1.2.1 to 1.2.2 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1329](https://redirect.github.com/go-git/go-git/pull/1329)
- build: bump github.com/elazarl/goproxy from 1.2.2 to 1.2.3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1340](https://redirect.github.com/go-git/go-git/pull/1340)
- Revert "plumbing: transport/ssh, Add support for SSH
[@&#8203;cert-authority](https://redirect.github.com/cert-authority)."
by [@&#8203;pjbgf](https://redirect.github.com/pjbgf) in
[#&#8203;1346](https://redirect.github.com/go-git/go-git/issues/1346)

**Full Changelog**:
https://github.com/go-git/go-git/compare/v5.13.0...v5.13.1

###
[`v5.13.0`](https://redirect.github.com/go-git/go-git/releases/tag/v5.13.0)

[Compare
Source](https://redirect.github.com/go-git/go-git/compare/v5.12.0...v5.13.0)

#### What's Changed

- build: bump github.com/go-git/go-git/v5 from 5.11.0 to 5.12.0 in
/cli/go-git by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1065](https://redirect.github.com/go-git/go-git/pull/1065)
- build: bump golang.org/x/net from 0.22.0 to 0.23.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1068](https://redirect.github.com/go-git/go-git/pull/1068)
- build: bump golang.org/x/net from 0.23.0 to 0.24.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1071](https://redirect.github.com/go-git/go-git/pull/1071)
- Properly support skipping of non-mandatory extensions by
[@&#8203;codablock](https://redirect.github.com/codablock) in
[https://github.com/go-git/go-git/pull/1066](https://redirect.github.com/go-git/go-git/pull/1066)
- git: Refine some codes in test and non-test. by
[@&#8203;onee-only](https://redirect.github.com/onee-only) in
[https://github.com/go-git/go-git/pull/1077](https://redirect.github.com/go-git/go-git/pull/1077)
- plumbing: protocol/packp, client-side filter capability support by
[@&#8203;edigaryev](https://redirect.github.com/edigaryev) in
[https://github.com/go-git/go-git/pull/1000](https://redirect.github.com/go-git/go-git/pull/1000)
- build: bump golang.org/x/net from 0.22.0 to 0.23.0 in /cli/go-git by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1078](https://redirect.github.com/go-git/go-git/pull/1078)
- plumbing: fix sideband demux on flush by
[@&#8203;aymanbagabas](https://redirect.github.com/aymanbagabas) in
[https://github.com/go-git/go-git/pull/1084](https://redirect.github.com/go-git/go-git/pull/1084)
- storage: dotgit, head reference usually comes first by
[@&#8203;aymanbagabas](https://redirect.github.com/aymanbagabas) in
[https://github.com/go-git/go-git/pull/1085](https://redirect.github.com/go-git/go-git/pull/1085)
- build: bump golang.org/x/text from 0.14.0 to 0.15.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1091](https://redirect.github.com/go-git/go-git/pull/1091)
- build: bump golang.org/x/crypto from 0.22.0 to 0.23.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1094](https://redirect.github.com/go-git/go-git/pull/1094)
- build: bump golang.org/x/net from 0.24.0 to 0.25.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1093](https://redirect.github.com/go-git/go-git/pull/1093)
- git: Added an example for Repository.Branches by
[@&#8203;johnmatthiggins](https://redirect.github.com/johnmatthiggins)
in
[https://github.com/go-git/go-git/pull/1088](https://redirect.github.com/go-git/go-git/pull/1088)
- git: worktree_commit, Modify checking empty commit. Fixes
[#&#8203;723](https://redirect.github.com/go-git/go-git/issues/723) by
[@&#8203;onee-only](https://redirect.github.com/onee-only) in
[https://github.com/go-git/go-git/pull/1050](https://redirect.github.com/go-git/go-git/pull/1050)
- plumbing: transport/http, Wrap http errors to return reason. Fixes
[#&#8203;1097](https://redirect.github.com/go-git/go-git/issues/1097) by
[@&#8203;ggambetti](https://redirect.github.com/ggambetti) in
[https://github.com/go-git/go-git/pull/1100](https://redirect.github.com/go-git/go-git/pull/1100)
- build: bump golang.org/x/sys from 0.20.0 to 0.21.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1106](https://redirect.github.com/go-git/go-git/pull/1106)
- build: bump golang.org/x/text from 0.15.0 to 0.16.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1107](https://redirect.github.com/go-git/go-git/pull/1107)
- Bumps Go versions and go-billy by
[@&#8203;pjbgf](https://redirect.github.com/pjbgf) in
[https://github.com/go-git/go-git/pull/1056](https://redirect.github.com/go-git/go-git/pull/1056)
- \_examples: Fixed a dead link COMPATIBILITY.md by
[@&#8203;gecko655](https://redirect.github.com/gecko655) in
[https://github.com/go-git/go-git/pull/1109](https://redirect.github.com/go-git/go-git/pull/1109)
- build: bump github.com/jessevdk/go-flags from 1.5.0 to 1.6.1 in
/cli/go-git by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1115](https://redirect.github.com/go-git/go-git/pull/1115)
- build: bump github.com/elazarl/goproxy from
v0.0.0-20230808193330-2592e75ae04a to v0.0.0-20240618083138-03be62527ccb
by [@&#8203;hbelmiro](https://redirect.github.com/hbelmiro) in
[https://github.com/go-git/go-git/pull/1124](https://redirect.github.com/go-git/go-git/pull/1124)
- build: bump golang.org/x/net from 0.25.0 to 0.26.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1104](https://redirect.github.com/go-git/go-git/pull/1104)
- Add option approximating `git clean -x` flag. by
[@&#8203;msuozzo](https://redirect.github.com/msuozzo) in
[https://github.com/go-git/go-git/pull/995](https://redirect.github.com/go-git/go-git/pull/995)
- Revert "Add option approximating `git clean -x` flag." by
[@&#8203;pjbgf](https://redirect.github.com/pjbgf) in
[https://github.com/go-git/go-git/pull/1129](https://redirect.github.com/go-git/go-git/pull/1129)
- Fix reference updated concurrently error for the filesystem storer by
[@&#8203;Javier-varez](https://redirect.github.com/Javier-varez) in
[https://github.com/go-git/go-git/pull/1116](https://redirect.github.com/go-git/go-git/pull/1116)
- build: bump golang.org/x/net from 0.26.0 to 0.27.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1134](https://redirect.github.com/go-git/go-git/pull/1134)
- utils: merkletrie, Align error message with upstream by
[@&#8203;pjbgf](https://redirect.github.com/pjbgf) in
[https://github.com/go-git/go-git/pull/1142](https://redirect.github.com/go-git/go-git/pull/1142)
- plumbing: transport/file, Change paths to absolute by
[@&#8203;pjbgf](https://redirect.github.com/pjbgf) in
[https://github.com/go-git/go-git/pull/1141](https://redirect.github.com/go-git/go-git/pull/1141)
- plumbing: gitignore, Fix loading of ignored .gitignore files. by
[@&#8203;Achilleshiel](https://redirect.github.com/Achilleshiel) in
[https://github.com/go-git/go-git/pull/1114](https://redirect.github.com/go-git/go-git/pull/1114)
- build: bump github.com/skeema/knownhosts from 1.2.2 to 1.3.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1147](https://redirect.github.com/go-git/go-git/pull/1147)
- plumbing: transport/ssh, Add support for SSH
[@&#8203;cert-authority](https://redirect.github.com/cert-authority). by
[@&#8203;Javier-varez](https://redirect.github.com/Javier-varez) in
[https://github.com/go-git/go-git/pull/1157](https://redirect.github.com/go-git/go-git/pull/1157)
- build: run example tests during CI workflow by
[@&#8203;crazybolillo](https://redirect.github.com/crazybolillo) in
[https://github.com/go-git/go-git/pull/1030](https://redirect.github.com/go-git/go-git/pull/1030)
- storage: filesystem, Fix object cache not working due to uninitialised
objects being put into cache by
[@&#8203;SatelliteMind](https://redirect.github.com/SatelliteMind) in
[https://github.com/go-git/go-git/pull/1138](https://redirect.github.com/go-git/go-git/pull/1138)
- git: Fix fetching missing commits by
[@&#8203;AriehSchneier](https://redirect.github.com/AriehSchneier) in
[https://github.com/go-git/go-git/pull/1032](https://redirect.github.com/go-git/go-git/pull/1032)
- plumbing: format/packfile, remove duplicate checks in findMatch() by
[@&#8203;edigaryev](https://redirect.github.com/edigaryev) in
[https://github.com/go-git/go-git/pull/1152](https://redirect.github.com/go-git/go-git/pull/1152)
- git: worktree, Fix file reported as `Untracked` while it is committed
by [@&#8203;rodrigocam](https://redirect.github.com/rodrigocam) in
[https://github.com/go-git/go-git/pull/1023](https://redirect.github.com/go-git/go-git/pull/1023)
- build: bump golang.org/x/sys from 0.22.0 to 0.23.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1160](https://redirect.github.com/go-git/go-git/pull/1160)
- plumbing: filemode, Remove check for setting size of .git/index file
by [@&#8203;nicholasSUSE](https://redirect.github.com/nicholasSUSE) in
[https://github.com/go-git/go-git/pull/1159](https://redirect.github.com/go-git/go-git/pull/1159)
- build: bump golang.org/x/net from 0.27.0 to 0.28.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1163](https://redirect.github.com/go-git/go-git/pull/1163)
- Fix some lint warning and increase stalebot to 180 days by
[@&#8203;pjbgf](https://redirect.github.com/pjbgf) in
[https://github.com/go-git/go-git/pull/1128](https://redirect.github.com/go-git/go-git/pull/1128)
- adjust path extracted from file: url on Windows by
[@&#8203;tomqwpl](https://redirect.github.com/tomqwpl) in
[https://github.com/go-git/go-git/pull/416](https://redirect.github.com/go-git/go-git/pull/416)
- build: bump golang.org/x/sys from 0.23.0 to 0.24.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1164](https://redirect.github.com/go-git/go-git/pull/1164)
- Add RestoreStaged to Worktree that mimics the behaviour of git restore
--staged <file>... by
[@&#8203;ben-tbotlabs](https://redirect.github.com/ben-tbotlabs) in
[https://github.com/go-git/go-git/pull/493](https://redirect.github.com/go-git/go-git/pull/493)
- plumbing: signature, support the same x509 signature formats as git by
[@&#8203;yoavamit](https://redirect.github.com/yoavamit) in
[https://github.com/go-git/go-git/pull/1169](https://redirect.github.com/go-git/go-git/pull/1169)
- fix: allow discovery of non bare repos in fsLoader by
[@&#8203;jakobmoellerdev](https://redirect.github.com/jakobmoellerdev)
in
[https://github.com/go-git/go-git/pull/1170](https://redirect.github.com/go-git/go-git/pull/1170)
- build: bump golang.org/x/sys from 0.24.0 to 0.25.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1178](https://redirect.github.com/go-git/go-git/pull/1178)
- build: bump golang.org/x/text from 0.17.0 to 0.18.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1179](https://redirect.github.com/go-git/go-git/pull/1179)
- build: bump golang.org/x/net from 0.28.0 to 0.29.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1184](https://redirect.github.com/go-git/go-git/pull/1184)
- Consume push URLs when they are provided by
[@&#8203;mcepl](https://redirect.github.com/mcepl) in
[https://github.com/go-git/go-git/pull/1191](https://redirect.github.com/go-git/go-git/pull/1191)
- \*: use gocheck's MkDir instead of TempDir for tests. Fixes
[#&#8203;807](https://redirect.github.com/go-git/go-git/issues/807) by
[@&#8203;uragirii](https://redirect.github.com/uragirii) in
[https://github.com/go-git/go-git/pull/1194](https://redirect.github.com/go-git/go-git/pull/1194)
- build: bump golang.org/x/net from 0.29.0 to 0.30.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1200](https://redirect.github.com/go-git/go-git/pull/1200)
- worktree: .git/index not correctly generated when running on Windows
by [@&#8203;BeChris](https://redirect.github.com/BeChris) in
[https://github.com/go-git/go-git/pull/1198](https://redirect.github.com/go-git/go-git/pull/1198)
- git: worktree, Fix sparse reset. Fixes
[#&#8203;90](https://redirect.github.com/go-git/go-git/issues/90) by
[@&#8203;onee-only](https://redirect.github.com/onee-only) in
[https://github.com/go-git/go-git/pull/1101](https://redirect.github.com/go-git/go-git/pull/1101)
- git: worktree, Pass context on updateSubmodules. Fixes
[#&#8203;1098](https://redirect.github.com/go-git/go-git/issues/1098) by
[@&#8203;onee-only](https://redirect.github.com/onee-only) in
[https://github.com/go-git/go-git/pull/1154](https://redirect.github.com/go-git/go-git/pull/1154)
- build: bump github.com/go-git/go-billy/v5 from
5.5.1-0.20240427054813-8453aa90c6ec to 5.6.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1211](https://redirect.github.com/go-git/go-git/pull/1211)
- Update contributing guidelines by
[@&#8203;pjbgf](https://redirect.github.com/pjbgf) in
[https://github.com/go-git/go-git/pull/1217](https://redirect.github.com/go-git/go-git/pull/1217)
- build: bump github.com/ProtonMail/go-crypto from 1.0.0 to 1.1.1 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1222](https://redirect.github.com/go-git/go-git/pull/1222)
- build: bump golang.org/x/sys from 0.26.0 to 0.27.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1223](https://redirect.github.com/go-git/go-git/pull/1223)
- build: bump golang.org/x/crypto from 0.28.0 to 0.29.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1221](https://redirect.github.com/go-git/go-git/pull/1221)
- build: bump github.com/ProtonMail/go-crypto from 1.1.1 to 1.1.2 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1226](https://redirect.github.com/go-git/go-git/pull/1226)
- build: bump github.com/stretchr/testify from 1.9.0 to 1.10.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1232](https://redirect.github.com/go-git/go-git/pull/1232)
- build: bump github.com/ProtonMail/go-crypto from 1.1.2 to 1.1.3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1231](https://redirect.github.com/go-git/go-git/pull/1231)
- build: General improvements around fuzzing by
[@&#8203;pjbgf](https://redirect.github.com/pjbgf) in
[https://github.com/go-git/go-git/pull/1229](https://redirect.github.com/go-git/go-git/pull/1229)
- build: bump golang.org/x/net from 0.30.0 to 0.32.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1241](https://redirect.github.com/go-git/go-git/pull/1241)
- build: group dependabot updates for golang.org by
[@&#8203;AriehSchneier](https://redirect.github.com/AriehSchneier) in
[https://github.com/go-git/go-git/pull/1243](https://redirect.github.com/go-git/go-git/pull/1243)
- build: bump github/codeql-action from 2.22.11 to 3.27.6 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1244](https://redirect.github.com/go-git/go-git/pull/1244)
- build: bump golang.org/x/crypto from 0.21.0 to 0.31.0 in /cli/go-git
by [@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1246](https://redirect.github.com/go-git/go-git/pull/1246)
- build: bump golang.org/x/crypto from 0.30.0 to 0.31.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1247](https://redirect.github.com/go-git/go-git/pull/1247)
- build: bump github.com/gliderlabs/ssh from 0.3.7 to 0.3.8 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1248](https://redirect.github.com/go-git/go-git/pull/1248)
- add comment preventing people from creating invalid trees by
[@&#8203;petar](https://redirect.github.com/petar) in
[https://github.com/go-git/go-git/pull/732](https://redirect.github.com/go-git/go-git/pull/732)
- build: bump github/codeql-action from 3.27.6 to 3.27.9 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1250](https://redirect.github.com/go-git/go-git/pull/1250)
- plumbing: Properly encode index version 4 by
[@&#8203;BeChris](https://redirect.github.com/BeChris) in
[https://github.com/go-git/go-git/pull/1251](https://redirect.github.com/go-git/go-git/pull/1251)
- Fix typos by [@&#8203;deining](https://redirect.github.com/deining) in
[https://github.com/go-git/go-git/pull/1148](https://redirect.github.com/go-git/go-git/pull/1148)
- Fix reset files in subfolders by
[@&#8203;linglo](https://redirect.github.com/linglo) in
[https://github.com/go-git/go-git/pull/1177](https://redirect.github.com/go-git/go-git/pull/1177)
- git: update switch cases by
[@&#8203;hezhizhen](https://redirect.github.com/hezhizhen) in
[https://github.com/go-git/go-git/pull/1182](https://redirect.github.com/go-git/go-git/pull/1182)
- build: bump golang.org/x/net from 0.32.0 to 0.33.0 in the golang-org
group by [@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1256](https://redirect.github.com/go-git/go-git/pull/1256)
- fix(1212): Fix invalid reference name error while cloning branches
containing /- by
[@&#8203;varmakarthik12](https://redirect.github.com/varmakarthik12) in
[https://github.com/go-git/go-git/pull/1257](https://redirect.github.com/go-git/go-git/pull/1257)
- pktline : accept upercase hexadecimal value as pktline length
information by [@&#8203;BeChris](https://redirect.github.com/BeChris) in
[https://github.com/go-git/go-git/pull/1220](https://redirect.github.com/go-git/go-git/pull/1220)
- build: bump github/codeql-action from 3.27.9 to 3.28.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1260](https://redirect.github.com/go-git/go-git/pull/1260)
- build: bump github.com/elazarl/goproxy from
0.0.0-20240618083138-03be62527ccb to 1.2.1 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/go-git/go-git/pull/1262](https://redirect.github.com/go-git/go-git/pull/1262)
- git: worktree_commit, sanitize author and commiter name and email
before creating the commit object. Fixes
[#&#8203;680](https://redirect.github.com/go-git/go-git/issues/680) by
[@&#8203;BeChris](https://redirect.github.com/BeChris) in
[https://github.com/go-git/go-git/pull/1261](https://redirect.github.com/go-git/go-git/pull/1261)

#### New Contributors

- [@&#8203;johnmatthiggins](https://redirect.github.com/johnmatthiggins)
made their first contribution in
[https://github.com/go-git/go-git/pull/1088](https://redirect.github.com/go-git/go-git/pull/1088)
- [@&#8203;ggambetti](https://redirect.github.com/ggambetti) made their
first contribution in
[https://github.com/go-git/go-git/pull/1100](https://redirect.github.com/go-git/go-git/pull/1100)
- [@&#8203;gecko655](https://redirect.github.com/gecko655) made their
first contribution in
[https://github.com/go-git/go-git/pull/1109](https://redirect.github.com/go-git/go-git/pull/1109)
- [@&#8203;hbelmiro](https://redirect.github.com/hbelmiro) made their
first contribution in
[https://github.com/go-git/go-git/pull/1124](https://redirect.github.com/go-git/go-git/pull/1124)
- [@&#8203;msuozzo](https://redirect.github.com/msuozzo) made their
first contribution in
[https://github.com/go-git/go-git/pull/995](https://redirect.github.com/go-git/go-git/pull/995)
- [@&#8203;Javier-varez](https://redirect.github.com/Javier-varez) made
their first contribution in
[https://github.com/go-git/go-git/pull/1116](https://redirect.github.com/go-git/go-git/pull/1116)
- [@&#8203;Achilleshiel](https://redirect.github.com/Achilleshiel) made
their first contribution in
[https://github.com/go-git/go-git/pull/1114](https://redirect.github.com/go-git/go-git/pull/1114)
- [@&#8203;crazybolillo](https://redirect.github.com/crazybolillo) made
their first contribution in
[https://github.com/go-git/go-git/pull/1030](https://redirect.github.com/go-git/go-git/pull/1030)
- [@&#8203;SatelliteMind](https://redirect.github.com/SatelliteMind)
made their first contribution in
[https://github.com/go-git/go-git/pull/1138](https://redirect.github.com/go-git/go-git/pull/1138)
- [@&#8203;rodrigocam](https://redirect.github.com/rodrigocam) made
their first contribution in
[https://github.com/go-git/go-git/pull/1023](https://redirect.github.com/go-git/go-git/pull/1023)
- [@&#8203;nicholasSUSE](https://redirect.github.com/nicholasSUSE) made
their first contribution in
[https://github.com/go-git/go-git/pull/1159](https://redirect.github.com/go-git/go-git/pull/1159)
- [@&#8203;tomqwpl](https://redirect.github.com/tomqwpl) made their
first contribution in
[https://github.com/go-git/go-git/pull/416](https://redirect.github.com/go-git/go-git/pull/416)
- [@&#8203;ben-tbotlabs](https://redirect.github.com/ben-tbotlabs) made
their first contribution in
[https://github.com/go-git/go-git/pull/493](https://redirect.github.com/go-git/go-git/pull/493)
- [@&#8203;yoavamit](https://redirect.github.com/yoavamit) made their
first contribution in
[https://github.com/go-git/go-git/pull/1169](https://redirect.github.com/go-git/go-git/pull/1169)
- [@&#8203;uragirii](https://redirect.github.com/uragirii) made their
first contribution in
[https://github.com/go-git/go-git/pull/1194](https://redirect.github.com/go-git/go-git/pull/1194)
- [@&#8203;petar](https://redirect.github.com/petar) made their first
contribution in
[https://github.com/go-git/go-git/pull/732](https://redirect.github.com/go-git/go-git/pull/732)
- [@&#8203;deining](https://redirect.github.com/deining) made their
first contribution in
[https://github.com/go-git/go-git/pull/1148](https://redirect.github.com/go-git/go-git/pull/1148)
- [@&#8203;linglo](https://redirect.github.com/linglo) made their first
contribution in
[https://github.com/go-git/go-git/pull/1177](https://redirect.github.com/go-git/go-git/pull/1177)
- [@&#8203;varmakarthik12](https://redirect.github.com/varmakarthik12)
made their first contribution in
[https://github.com/go-git/go-git/pull/1257](https://redirect.github.com/go-git/go-git/pull/1257)

**Full Changelog**:
https://github.com/go-git/go-git/compare/v5.12.0...v5.13.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:eyJjcmVhdGVkSW5WZXIiOiIzOS44NS4wIiwidXBkYXRlZEluVmVyIjoiMzkuODUuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-06 09:59:54 +01:00
renovate[bot]
e72e2dac7b fix(deps): update module github.com/golangci/golangci-lint to v1.63.4 (#6128)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/golangci/golangci-lint](https://redirect.github.com/golangci/golangci-lint)
| `v1.62.2` -> `v1.63.4` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgolangci%2fgolangci-lint/v1.63.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgolangci%2fgolangci-lint/v1.63.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgolangci%2fgolangci-lint/v1.62.2/v1.63.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgolangci%2fgolangci-lint/v1.62.2/v1.63.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>golangci/golangci-lint
(github.com/golangci/golangci-lint)</summary>

###
[`v1.63.4`](https://redirect.github.com/golangci/golangci-lint/compare/v1.63.3...v1.63.4)

[Compare
Source](https://redirect.github.com/golangci/golangci-lint/compare/v1.63.3...v1.63.4)

###
[`v1.63.3`](https://redirect.github.com/golangci/golangci-lint/compare/v1.63.2...v1.63.3)

[Compare
Source](https://redirect.github.com/golangci/golangci-lint/compare/v1.63.2...v1.63.3)

###
[`v1.63.2`](https://redirect.github.com/golangci/golangci-lint/compare/v1.63.1...v1.63.2)

[Compare
Source](https://redirect.github.com/golangci/golangci-lint/compare/v1.63.1...v1.63.2)

###
[`v1.63.1`](https://redirect.github.com/golangci/golangci-lint/releases/tag/v1.63.1)

[Compare
Source](https://redirect.github.com/golangci/golangci-lint/compare/v1.63.0...v1.63.1)

`golangci-lint` is a free and open-source project built by volunteers.

If you value it, consider supporting us, the
[maintainers](https://opencollective.com/golangci-lint) and [linter
authors](https://golangci-lint.run/product/thanks/).

We appreciate it! ❤️

For key updates, see the
[changelog](https://golangci-lint.run/product/changelog/#&#8203;1631).

##### Changelog

-
[`afa0e27`](afa0e274a0)
fix: filter files
([#&#8203;5272](https://redirect.github.com/golangci/golangci-lint/issues/5272))
-
[`ffb15ca`](ffb15ca3c9)
gci: fix cgo
([#&#8203;5274](https://redirect.github.com/golangci/golangci-lint/issues/5274))

###
[`v1.63.0`](https://redirect.github.com/golangci/golangci-lint/compare/v1.62.2...v1.63.0)

[Compare
Source](https://redirect.github.com/golangci/golangci-lint/compare/v1.62.2...v1.63.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:eyJjcmVhdGVkSW5WZXIiOiIzOS44NS4wIiwidXBkYXRlZEluVmVyIjoiMzkuODUuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-06 09:49:46 +01:00
renovate[bot]
0f21b3b000 chore(deps): update module github.com/ldez/grignotin to v0.8.0 (#6129)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/ldez/grignotin](https://redirect.github.com/ldez/grignotin)
| `v0.7.0` -> `v0.8.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fldez%2fgrignotin/v0.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fldez%2fgrignotin/v0.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fldez%2fgrignotin/v0.7.0/v0.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fldez%2fgrignotin/v0.7.0/v0.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>ldez/grignotin (github.com/ldez/grignotin)</summary>

###
[`v0.8.0`](https://redirect.github.com/ldez/grignotin/compare/v0.7.0...v0.8.0)

[Compare
Source](https://redirect.github.com/ldez/grignotin/compare/v0.7.0...v0.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:eyJjcmVhdGVkSW5WZXIiOiIzOS44NS4wIiwidXBkYXRlZEluVmVyIjoiMzkuODUuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-06 09:38:09 +01:00
renovate[bot]
fad6372f31 chore(deps): update module github.com/karamaru-alpha/copyloopvar to v1.2.1 (#6126)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/karamaru-alpha/copyloopvar](https://redirect.github.com/karamaru-alpha/copyloopvar)
| `v1.1.0` -> `v1.2.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fkaramaru-alpha%2fcopyloopvar/v1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fkaramaru-alpha%2fcopyloopvar/v1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fkaramaru-alpha%2fcopyloopvar/v1.1.0/v1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fkaramaru-alpha%2fcopyloopvar/v1.1.0/v1.2.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>karamaru-alpha/copyloopvar
(github.com/karamaru-alpha/copyloopvar)</summary>

###
[`v1.2.1`](https://redirect.github.com/karamaru-alpha/copyloopvar/releases/tag/v1.2.1)

[Compare
Source](https://redirect.github.com/karamaru-alpha/copyloopvar/compare/v1.2.0...v1.2.1)

#### What's Changed

- fix: suggested fixes by
[@&#8203;ldez](https://redirect.github.com/ldez) in
[https://github.com/karamaru-alpha/copyloopvar/pull/19](https://redirect.github.com/karamaru-alpha/copyloopvar/pull/19)

**Full Changelog**:
https://github.com/karamaru-alpha/copyloopvar/compare/v1.2.0...v1.2.1

###
[`v1.2.0`](https://redirect.github.com/karamaru-alpha/copyloopvar/releases/tag/v1.2.0)

[Compare
Source](https://redirect.github.com/karamaru-alpha/copyloopvar/compare/v1.1.0...v1.2.0)

#### What's Changed

- update: change analyzer doc by
[@&#8203;alexandear](https://redirect.github.com/alexandear) in
[https://github.com/karamaru-alpha/copyloopvar/pull/16](https://redirect.github.com/karamaru-alpha/copyloopvar/pull/16)
- feat: suggested fixes support by
[@&#8203;ldez](https://redirect.github.com/ldez) in
[https://github.com/karamaru-alpha/copyloopvar/pull/17](https://redirect.github.com/karamaru-alpha/copyloopvar/pull/17)

**Full Changelog**:
https://github.com/karamaru-alpha/copyloopvar/compare/v1.1.0...v1.2.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:eyJjcmVhdGVkSW5WZXIiOiIzOS44NS4wIiwidXBkYXRlZEluVmVyIjoiMzkuODUuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-06 09:31:02 +01:00
renovate[bot]
12c2ac306d chore(deps): update module github.com/julz/importas to v0.2.0 (#6116)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [github.com/julz/importas](https://redirect.github.com/julz/importas)
| `v0.1.0` -> `v0.2.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fjulz%2fimportas/v0.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fjulz%2fimportas/v0.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fjulz%2fimportas/v0.1.0/v0.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fjulz%2fimportas/v0.1.0/v0.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>julz/importas (github.com/julz/importas)</summary>

###
[`v0.2.0`](https://redirect.github.com/julz/importas/releases/tag/v0.2.0)

[Compare
Source](https://redirect.github.com/julz/importas/compare/v0.1.0...v0.2.0)

#### What's Changed

- Allow non capturing groups by
[@&#8203;tomfeigin](https://redirect.github.com/tomfeigin) in
[https://github.com/julz/importas/pull/9](https://redirect.github.com/julz/importas/pull/9)
- Bump go versions in CI to 1.20/21 by
[@&#8203;rmohr](https://redirect.github.com/rmohr) in
[https://github.com/julz/importas/pull/17](https://redirect.github.com/julz/importas/pull/17)
- Support dot imports by
[@&#8203;rmohr](https://redirect.github.com/rmohr) in
[https://github.com/julz/importas/pull/16](https://redirect.github.com/julz/importas/pull/16)
- Fix race in compiling rule regex by
[@&#8203;samuel](https://redirect.github.com/samuel) in
[https://github.com/julz/importas/pull/13](https://redirect.github.com/julz/importas/pull/13)
- go 1.22+ support by
[@&#8203;grosser](https://redirect.github.com/grosser) in
[https://github.com/julz/importas/pull/23](https://redirect.github.com/julz/importas/pull/23)
- fix conflicting aliases producing random results because of map usage
by [@&#8203;grosser](https://redirect.github.com/grosser) in
[https://github.com/julz/importas/pull/24](https://redirect.github.com/julz/importas/pull/24)
- add Makefile by [@&#8203;grosser](https://redirect.github.com/grosser)
in
[https://github.com/julz/importas/pull/22](https://redirect.github.com/julz/importas/pull/22)

#### New Contributors

- [@&#8203;tomfeigin](https://redirect.github.com/tomfeigin) made their
first contribution in
[https://github.com/julz/importas/pull/9](https://redirect.github.com/julz/importas/pull/9)
- [@&#8203;rmohr](https://redirect.github.com/rmohr) made their first
contribution in
[https://github.com/julz/importas/pull/17](https://redirect.github.com/julz/importas/pull/17)
- [@&#8203;samuel](https://redirect.github.com/samuel) made their first
contribution in
[https://github.com/julz/importas/pull/13](https://redirect.github.com/julz/importas/pull/13)
- [@&#8203;grosser](https://redirect.github.com/grosser) made their
first contribution in
[https://github.com/julz/importas/pull/23](https://redirect.github.com/julz/importas/pull/23)

**Full Changelog**:
https://github.com/julz/importas/compare/v0.1.0...v0.2.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:eyJjcmVhdGVkSW5WZXIiOiIzOS44MC4wIiwidXBkYXRlZEluVmVyIjoiMzkuODUuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-05 09:54:36 -08:00
renovate[bot]
23fa5b7411 chore(deps): update mvdan.cc/unparam digest to 447d509 (#6115)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [mvdan.cc/unparam](https://redirect.github.com/mvdan/unparam) |
indirect | digest | `57a3b42` -> `447d509` |

---

### 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:eyJjcmVhdGVkSW5WZXIiOiIzOS44MC4wIiwidXBkYXRlZEluVmVyIjoiMzkuODUuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-05 09:43:51 -08:00
renovate[bot]
ed6b53a243 fix(deps): update golang.org/x (#6121)
This PR contains the following updates:

| Package | Type | Update | Change | Age | Adoption | Passing |
Confidence |
|---|---|---|---|---|---|---|---|
| golang.org/x/exp | require | digest | `b2144cd` -> `7d7fa50` |
[![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fexp/v0.0.0-20250103183323-7d7fa50e5329?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fexp/v0.0.0-20250103183323-7d7fa50e5329?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fexp/v0.0.0-20241217172543-b2144cdd0a67/v0.0.0-20250103183323-7d7fa50e5329?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fexp/v0.0.0-20241217172543-b2144cdd0a67/v0.0.0-20250103183323-7d7fa50e5329?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| golang.org/x/exp/typeparams | indirect | digest | `b2144cd` ->
`7d7fa50` |
[![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fexp%2ftypeparams/v0.0.0-20250103183323-7d7fa50e5329?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fexp%2ftypeparams/v0.0.0-20250103183323-7d7fa50e5329?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fexp%2ftypeparams/v0.0.0-20241217172543-b2144cdd0a67/v0.0.0-20250103183323-7d7fa50e5329?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fexp%2ftypeparams/v0.0.0-20241217172543-b2144cdd0a67/v0.0.0-20250103183323-7d7fa50e5329?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| golang.org/x/sys | indirect | minor | `v0.28.0` -> `v0.29.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fsys/v0.29.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fsys/v0.29.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fsys/v0.28.0/v0.29.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fsys/v0.28.0/v0.29.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| golang.org/x/sys | require | minor | `v0.28.0` -> `v0.29.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fsys/v0.29.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fsys/v0.29.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fsys/v0.28.0/v0.29.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fsys/v0.28.0/v0.29.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| golang.org/x/telemetry | indirect | digest | `cc96b6e` -> `6d9ea86` |
[![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2ftelemetry/v0.0.0-20250105011419-6d9ea865d014?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-20250105011419-6d9ea865d014?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-20241220003058-cc96b6e0d3d9/v0.0.0-20250105011419-6d9ea865d014?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-20241220003058-cc96b6e0d3d9/v0.0.0-20250105011419-6d9ea865d014?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### 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:eyJjcmVhdGVkSW5WZXIiOiIzOS44NS4wIiwidXBkYXRlZEluVmVyIjoiMzkuODUuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-05 09:26:07 -08:00
renovate[bot]
f6d71e1fbd chore(deps): update module github.com/ldez/grignotin to v0.7.0 (#6112)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/ldez/grignotin](https://redirect.github.com/ldez/grignotin)
| `v0.6.0` -> `v0.7.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fldez%2fgrignotin/v0.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fldez%2fgrignotin/v0.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fldez%2fgrignotin/v0.6.0/v0.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fldez%2fgrignotin/v0.6.0/v0.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>ldez/grignotin (github.com/ldez/grignotin)</summary>

###
[`v0.7.0`](https://redirect.github.com/ldez/grignotin/compare/v0.6.0...v0.7.0)

[Compare
Source](https://redirect.github.com/ldez/grignotin/compare/v0.6.0...v0.7.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:eyJjcmVhdGVkSW5WZXIiOiIzOS44MC4wIiwidXBkYXRlZEluVmVyIjoiMzkuODUuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-05 09:16:56 -08:00
renovate[bot]
b5952388d6 chore(deps): update github.com/golangci/gofmt digest to 057b062 (#6111)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[github.com/golangci/gofmt](https://redirect.github.com/golangci/gofmt)
| indirect | digest | `d8596aa` -> `057b062` |

---

### 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:eyJjcmVhdGVkSW5WZXIiOiIzOS44MC4wIiwidXBkYXRlZEluVmVyIjoiMzkuODUuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-05 09:09:17 -08:00
renovate[bot]
f7a3915e1b chore(deps): update module github.com/tetafro/godot to v1.4.20 (#6110)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [github.com/tetafro/godot](https://redirect.github.com/tetafro/godot)
| `v1.4.18` -> `v1.4.20` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2ftetafro%2fgodot/v1.4.20?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2ftetafro%2fgodot/v1.4.20?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2ftetafro%2fgodot/v1.4.18/v1.4.20?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2ftetafro%2fgodot/v1.4.18/v1.4.20?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>tetafro/godot (github.com/tetafro/godot)</summary>

###
[`v1.4.20`](https://redirect.github.com/tetafro/godot/releases/tag/v1.4.20)

[Compare
Source](https://redirect.github.com/tetafro/godot/compare/v1.4.19...v1.4.20)

#### Changelog

-
[`c4546a8`](c4546a818c)
Fix typo.
-
[`f9709c7`](f9709c7062)
chore: enbale CI on PR
-
[`3dee5a8`](3dee5a8e35)
chore: fix CI
-
[`dad08f4`](dad08f4ac6)
chore: fix linting

###
[`v1.4.19`](https://redirect.github.com/tetafro/godot/releases/tag/v1.4.19)

[Compare
Source](https://redirect.github.com/tetafro/godot/compare/v1.4.18...v1.4.19)

#### Changelog

-
[`440e395`](440e3957e0)
chore: remove bool
-
[`6ad1bdc`](6ad1bdc232)
fix: cgo support

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS44MC4wIiwidXBkYXRlZEluVmVyIjoiMzkuODUuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-05 08:56:28 -08:00
renovate[bot]
79ba6b4d25 fix(deps): update module google.golang.org/protobuf to v1.36.1 (#6109)
This PR contains the following updates:

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

---

### Release Notes

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

###
[`v1.36.1`](https://redirect.github.com/protocolbuffers/protobuf-go/releases/tag/v1.36.1)

[Compare
Source](https://redirect.github.com/protocolbuffers/protobuf-go/compare/v1.36.0...v1.36.1)

**Full Changelog**:
https://github.com/protocolbuffers/protobuf-go/compare/v1.36.0...v1.36.1

Bug fixes:
[CL/638495](https://go-review.googlesource.com/c/protobuf/+/638495):
internal/impl: revert IsSynthetic() check to fix panic

Maintenance:
[CL/637475](https://go-review.googlesource.com/c/protobuf/+/637475):
internal/errors: delete compatibility code for Go before 1.13

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS44MC4wIiwidXBkYXRlZEluVmVyIjoiMzkuODUuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-05 08:30:44 -08:00
renovate[bot]
c862d2d69c chore(deps): update github.com/timakin/bodyclose digest to 1db5c5c (#6105)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[github.com/timakin/bodyclose](https://redirect.github.com/timakin/bodyclose)
| indirect | digest | `adbc21e` -> `1db5c5c` |

---

### 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:eyJjcmVhdGVkSW5WZXIiOiIzOS43Mi41IiwidXBkYXRlZEluVmVyIjoiMzkuNzIuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-22 07:12:47 -08:00
renovate[bot]
23132adfa1 chore(deps): update golang.org/x/telemetry digest to cc96b6e (#6102)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| golang.org/x/telemetry | indirect | digest | `738f4b2` -> `cc96b6e` |

---

### 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:eyJjcmVhdGVkSW5WZXIiOiIzOS43Mi41IiwidXBkYXRlZEluVmVyIjoiMzkuNzIuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-20 08:22:45 -08:00
renovate[bot]
82c57cb8dd chore(deps): update module golang.org/x/net to v0.33.0 (#6092)
This PR contains the following updates:

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

---

### 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:eyJjcmVhdGVkSW5WZXIiOiIzOS43Mi41IiwidXBkYXRlZEluVmVyIjoiMzkuNzIuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-18 14:03:20 -08:00
renovate[bot]
d447233323 fix(deps): update module google.golang.org/protobuf to v1.36.0 (#6089)
This PR contains the following updates:

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

---

### Release Notes

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

###
[`v1.36.0`](https://redirect.github.com/protocolbuffers/protobuf-go/releases/tag/v1.36.0)

[Compare
Source](https://redirect.github.com/protocolbuffers/protobuf-go/compare/v1.35.2...v1.36.0)

**Full Changelog**:
https://github.com/protocolbuffers/protobuf-go/compare/v1.35.2...v1.36.0

User-visible changes:

[CL/635139](https://go-review.googlesource.com/c/protobuf/+/635139):
src/google/protobuf: document UnmarshalJSON / API level behavior
[CL/635138](https://go-review.googlesource.com/c/protobuf/+/635138):
reflect/protoreflect: use \[] syntax to reference method
[CL/635137](https://go-review.googlesource.com/c/protobuf/+/635137):
proto: add reference to size semantics with lazy decoding to comment
[CL/634818](https://go-review.googlesource.com/c/protobuf/+/634818):
compiler/protogen: allow overriding API level from --go_opt
[CL/634817](https://go-review.googlesource.com/c/protobuf/+/634817):
cmd/protoc-gen-go: generate \_protoopaque variant for hybrid
[CL/634816](https://go-review.googlesource.com/c/protobuf/+/634816):
all: regenerate.bash for Opaque API
[CL/634815](https://go-review.googlesource.com/c/protobuf/+/634815):
all: Release the Opaque API
[CL/634015](https://go-review.googlesource.com/c/protobuf/+/634015):
types/descriptorpb: regenerate using latest protobuf v29.1 release
[CL/632735](https://go-review.googlesource.com/c/protobuf/+/632735):
internal/impl: skip synthetic oneofs in messageInfo
[CL/627876](https://go-review.googlesource.com/c/protobuf/+/627876):
all: start v1.35.2-devel

</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 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:eyJjcmVhdGVkSW5WZXIiOiIzOS43Mi41IiwidXBkYXRlZEluVmVyIjoiMzkuNzIuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-18 08:27:34 -08:00
renovate[bot]
0754598181 chore(deps): update module github.com/uudashr/iface to v1.3.0 (#6088)
This PR contains the following updates:

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

---

### Release Notes

<details>
<summary>uudashr/iface (github.com/uudashr/iface)</summary>

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

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

#### What's Changed

- Add fix suggestion for opaque analyzer by
[@&#8203;uudashr](https://redirect.github.com/uudashr) in
[https://github.com/uudashr/iface/pull/5](https://redirect.github.com/uudashr/iface/pull/5)
- Add fix suggestion for unused analyzer by
[@&#8203;uudashr](https://redirect.github.com/uudashr) in
[https://github.com/uudashr/iface/pull/6](https://redirect.github.com/uudashr/iface/pull/6)

**Full Changelog**:
https://github.com/uudashr/iface/compare/v1.2.1...v1.3.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:eyJjcmVhdGVkSW5WZXIiOiIzOS43Mi41IiwidXBkYXRlZEluVmVyIjoiMzkuNzIuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-18 08:18:47 -08:00
renovate[bot]
37c1509e69 chore(deps): update github.com/timakin/bodyclose digest to adbc21e (#6045)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[github.com/timakin/bodyclose](https://redirect.github.com/timakin/bodyclose)
| indirect | digest | `5742072` -> `adbc21e` |

---

### 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:eyJjcmVhdGVkSW5WZXIiOiIzOS42OS4zIiwidXBkYXRlZEluVmVyIjoiMzkuNzIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Tyler Yahn <codingalias@gmail.com>
2024-12-18 08:03:40 -08:00
renovate[bot]
79a66049ae chore(deps): update module github.com/spf13/cast to v1.7.1 (#6086)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [github.com/spf13/cast](https://redirect.github.com/spf13/cast) |
`v1.7.0` -> `v1.7.1` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fspf13%2fcast/v1.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fspf13%2fcast/v1.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fspf13%2fcast/v1.7.0/v1.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fspf13%2fcast/v1.7.0/v1.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>spf13/cast (github.com/spf13/cast)</summary>

###
[`v1.7.1`](https://redirect.github.com/spf13/cast/releases/tag/v1.7.1)

[Compare
Source](https://redirect.github.com/spf13/cast/compare/v1.7.0...v1.7.1)

#### What's Changed

- Update README.md by
[@&#8203;lesichkovm](https://redirect.github.com/lesichkovm) in
[https://github.com/spf13/cast/pull/224](https://redirect.github.com/spf13/cast/pull/224)
- Fix ToUint64 issue with string input exceeding maximum int64 by
[@&#8203;skyjerry](https://redirect.github.com/skyjerry) in
[https://github.com/spf13/cast/pull/213](https://redirect.github.com/spf13/cast/pull/213)

#### New Contributors

- [@&#8203;lesichkovm](https://redirect.github.com/lesichkovm) made
their first contribution in
[https://github.com/spf13/cast/pull/224](https://redirect.github.com/spf13/cast/pull/224)
- [@&#8203;skyjerry](https://redirect.github.com/skyjerry) made their
first contribution in
[https://github.com/spf13/cast/pull/213](https://redirect.github.com/spf13/cast/pull/213)

**Full Changelog**:
https://github.com/spf13/cast/compare/v1.7.0...v1.7.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:eyJjcmVhdGVkSW5WZXIiOiIzOS43Mi41IiwidXBkYXRlZEluVmVyIjoiMzkuNzIuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-18 15:58:54 +01:00
renovate[bot]
78fa22abc0 chore(deps): update module github.com/uudashr/gocognit to v1.2.0 (#6087)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/uudashr/gocognit](https://redirect.github.com/uudashr/gocognit)
| `v1.1.3` -> `v1.2.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fuudashr%2fgocognit/v1.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fuudashr%2fgocognit/v1.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fuudashr%2fgocognit/v1.1.3/v1.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fuudashr%2fgocognit/v1.1.3/v1.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>uudashr/gocognit (github.com/uudashr/gocognit)</summary>

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

[Compare
Source](https://redirect.github.com/uudashr/gocognit/compare/v1.1.4...v1.2.0)

#### What's Changed

- Add diagnostic capability by
[@&#8203;uudashr](https://redirect.github.com/uudashr) in
[https://github.com/uudashr/gocognit/pull/39](https://redirect.github.com/uudashr/gocognit/pull/39)

**Full Changelog**:
https://github.com/uudashr/gocognit/compare/v1.1.4...v1.2.0

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

[Compare
Source](https://redirect.github.com/uudashr/gocognit/compare/v1.1.3...v1.1.4)

#### What's Changed

- Resolve linter warning by
[@&#8203;uudashr](https://redirect.github.com/uudashr) in
[https://github.com/uudashr/gocognit/pull/37](https://redirect.github.com/uudashr/gocognit/pull/37)
- Fix nesting inside else/else if by
[@&#8203;uudashr](https://redirect.github.com/uudashr) in
[https://github.com/uudashr/gocognit/pull/38](https://redirect.github.com/uudashr/gocognit/pull/38)

**Full Changelog**:
https://github.com/uudashr/gocognit/compare/v1.1.3...v1.1.4

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS43Mi41IiwidXBkYXRlZEluVmVyIjoiMzkuNzIuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-18 15:52:41 +01:00
renovate[bot]
81770ed8b1 chore(deps): update module github.com/tdakkota/asciicheck to v0.3.0 (#6082)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/tdakkota/asciicheck](https://redirect.github.com/tdakkota/asciicheck)
| `v0.2.0` -> `v0.3.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2ftdakkota%2fasciicheck/v0.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2ftdakkota%2fasciicheck/v0.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2ftdakkota%2fasciicheck/v0.2.0/v0.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2ftdakkota%2fasciicheck/v0.2.0/v0.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>tdakkota/asciicheck (github.com/tdakkota/asciicheck)</summary>

###
[`v0.3.0`](https://redirect.github.com/tdakkota/asciicheck/releases/tag/v0.3.0):
: bump &#x60;x/tools&#x60; version

[Compare
Source](https://redirect.github.com/tdakkota/asciicheck/compare/v0.2.0...v0.3.0)

#### What's Changed

- chore(deps): bump golang.org/x/tools from 0.7.0 to 0.8.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/tdakkota/asciicheck/pull/15](https://redirect.github.com/tdakkota/asciicheck/pull/15)
- chore(deps): bump golang.org/x/tools from 0.8.0 to 0.9.1 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/tdakkota/asciicheck/pull/16](https://redirect.github.com/tdakkota/asciicheck/pull/16)
- chore(deps): bump golang.org/x/tools from 0.9.1 to 0.9.3 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/tdakkota/asciicheck/pull/17](https://redirect.github.com/tdakkota/asciicheck/pull/17)
- chore(deps): bump golang.org/x/tools from 0.9.3 to 0.10.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/tdakkota/asciicheck/pull/18](https://redirect.github.com/tdakkota/asciicheck/pull/18)
- Update x/tools to fix panic in tests with Go 1.23 by
[@&#8203;alexandear](https://redirect.github.com/alexandear) in
[https://github.com/tdakkota/asciicheck/pull/23](https://redirect.github.com/tdakkota/asciicheck/pull/23)

#### New Contributors

- [@&#8203;alexandear](https://redirect.github.com/alexandear) made
their first contribution in
[https://github.com/tdakkota/asciicheck/pull/23](https://redirect.github.com/tdakkota/asciicheck/pull/23)

**Full Changelog**:
https://github.com/tdakkota/asciicheck/compare/v0.2.0...v0.3.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:eyJjcmVhdGVkSW5WZXIiOiIzOS43Mi4yIiwidXBkYXRlZEluVmVyIjoiMzkuNzIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-18 10:20:42 +01:00
renovate[bot]
eb58bca1ed chore(deps): update module github.com/tomarrell/wrapcheck/v2 to v2.10.0 (#6083)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/tomarrell/wrapcheck/v2](https://redirect.github.com/tomarrell/wrapcheck)
| `v2.9.0` -> `v2.10.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2ftomarrell%2fwrapcheck%2fv2/v2.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2ftomarrell%2fwrapcheck%2fv2/v2.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2ftomarrell%2fwrapcheck%2fv2/v2.9.0/v2.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2ftomarrell%2fwrapcheck%2fv2/v2.9.0/v2.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>tomarrell/wrapcheck
(github.com/tomarrell/wrapcheck/v2)</summary>

###
[`v2.10.0`](https://redirect.github.com/tomarrell/wrapcheck/releases/tag/v2.10.0):
Add config option to extend default signatures

[Compare
Source](https://redirect.github.com/tomarrell/wrapcheck/compare/v2.9.0...v2.10.0)

#### What's Changed

- Add config option to extend `ignoreSigs` by
[@&#8203;matthewhughes934](https://redirect.github.com/matthewhughes934)
in
[https://github.com/tomarrell/wrapcheck/pull/56](https://redirect.github.com/tomarrell/wrapcheck/pull/56).
Previously the only option was to replace the entire set, requiring you
to also include the default set.

#### New Contributors

-
[@&#8203;matthewhughes934](https://redirect.github.com/matthewhughes934)
made their first contribution in
[https://github.com/tomarrell/wrapcheck/pull/56](https://redirect.github.com/tomarrell/wrapcheck/pull/56)

**Full Changelog**:
https://github.com/tomarrell/wrapcheck/compare/v2.9.0...v2.10.0

</details>

---

### Configuration

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

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

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

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

---

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

---

This PR 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:eyJjcmVhdGVkSW5WZXIiOiIzOS43Mi4yIiwidXBkYXRlZEluVmVyIjoiMzkuNzIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-18 10:08:36 +01:00
renovate[bot]
0a6f364b2f chore(deps): update module github.com/sagikazarmark/locafero to v0.6.0 (#6077)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/sagikazarmark/locafero](https://redirect.github.com/sagikazarmark/locafero)
| `v0.4.0` -> `v0.6.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fsagikazarmark%2flocafero/v0.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fsagikazarmark%2flocafero/v0.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fsagikazarmark%2flocafero/v0.4.0/v0.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fsagikazarmark%2flocafero/v0.4.0/v0.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>sagikazarmark/locafero
(github.com/sagikazarmark/locafero)</summary>

###
[`v0.6.0`](https://redirect.github.com/sagikazarmark/locafero/compare/v0.5.0...v0.6.0)

[Compare
Source](https://redirect.github.com/sagikazarmark/locafero/compare/v0.5.0...v0.6.0)

###
[`v0.5.0`](https://redirect.github.com/sagikazarmark/locafero/compare/v0.4.0...v0.5.0)

[Compare
Source](https://redirect.github.com/sagikazarmark/locafero/compare/v0.4.0...v0.5.0)

</details>

---

### Configuration

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

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

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

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

---

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

---

This PR 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:eyJjcmVhdGVkSW5WZXIiOiIzOS43Mi4yIiwidXBkYXRlZEluVmVyIjoiMzkuNzIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-18 09:57:46 +01:00
renovate[bot]
cef1f02a35 chore(deps): update module github.com/protonmail/go-crypto to v1.1.3 (#6076)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/ProtonMail/go-crypto](https://redirect.github.com/ProtonMail/go-crypto)
| `v1.0.0` -> `v1.1.3` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fProtonMail%2fgo-crypto/v1.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fProtonMail%2fgo-crypto/v1.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fProtonMail%2fgo-crypto/v1.0.0/v1.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fProtonMail%2fgo-crypto/v1.0.0/v1.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>ProtonMail/go-crypto
(github.com/ProtonMail/go-crypto)</summary>

###
[`v1.1.3`](https://redirect.github.com/ProtonMail/go-crypto/releases/tag/v1.1.3)

[Compare
Source](https://redirect.github.com/ProtonMail/go-crypto/compare/v1.1.2...v1.1.3)

#### What's Changed

- Add argon2 test vector for 32-bit platforms by
[@&#8203;lubux](https://redirect.github.com/lubux) in
[https://github.com/ProtonMail/go-crypto/pull/245](https://redirect.github.com/ProtonMail/go-crypto/pull/245)
- Validate argon2 params on read by
[@&#8203;lubux](https://redirect.github.com/lubux) in
[https://github.com/ProtonMail/go-crypto/pull/246](https://redirect.github.com/ProtonMail/go-crypto/pull/246)
- Adapt aead preferences on key generation by
[@&#8203;lubux](https://redirect.github.com/lubux) in
[https://github.com/ProtonMail/go-crypto/pull/248](https://redirect.github.com/ProtonMail/go-crypto/pull/248)
- Improve AEAD handling by
[@&#8203;twiss](https://redirect.github.com/twiss) in
[https://github.com/ProtonMail/go-crypto/pull/247](https://redirect.github.com/ProtonMail/go-crypto/pull/247)
- Improve error message for decryption with a session key by
[@&#8203;lubux](https://redirect.github.com/lubux) in
[https://github.com/ProtonMail/go-crypto/pull/237](https://redirect.github.com/ProtonMail/go-crypto/pull/237)
- Flag to allow signing key decryption by
[@&#8203;lubux](https://redirect.github.com/lubux) in
[https://github.com/ProtonMail/go-crypto/pull/251](https://redirect.github.com/ProtonMail/go-crypto/pull/251)

**Full Changelog**:
https://github.com/ProtonMail/go-crypto/compare/v1.1.2...v1.1.3

###
[`v1.1.2`](https://redirect.github.com/ProtonMail/go-crypto/releases/tag/v1.1.2)

[Compare
Source](https://redirect.github.com/ProtonMail/go-crypto/compare/v1.1.1...v1.1.2)

#### What's Changed

- Cleartext Framework: Exclude the line-ending separator when decoding
plaintext by [@&#8203;lubux](https://redirect.github.com/lubux) in
[https://github.com/ProtonMail/go-crypto/pull/242](https://redirect.github.com/ProtonMail/go-crypto/pull/242)

**Full Changelog**:
https://github.com/ProtonMail/go-crypto/compare/v1.1.1...v1.1.2

###
[`v1.1.1`](https://redirect.github.com/ProtonMail/go-crypto/releases/tag/v1.1.1)

[Compare
Source](https://redirect.github.com/ProtonMail/go-crypto/compare/v1.1.0...v1.1.1)

#### What's Changed

- Fix `clearsign.Encode` backwards compatibility
[#&#8203;239](https://redirect.github.com/ProtonMail/go-crypto/issues/239)
by [@&#8203;mdosch](https://redirect.github.com/mdosch) in
[https://github.com/ProtonMail/go-crypto/pull/240](https://redirect.github.com/ProtonMail/go-crypto/pull/240)

**Full Changelog**:
https://github.com/ProtonMail/go-crypto/compare/v1.1.0...v1.1.1

###
[`v1.1.0`](https://redirect.github.com/ProtonMail/go-crypto/releases/tag/v1.1.0)

[Compare
Source](https://redirect.github.com/ProtonMail/go-crypto/compare/v1.0.0...v1.1.0)

#### What's Changed

This release adds full support for the new version of the OpenPGP
standard, [RFC 9580](https://www.rfc-editor.org/rfc/rfc9580.html). In
addition, the release introduces an improved non-backwards compatible v2
API. The API in the `openpgp` package remains fully backwards compatible
while the new v2 API is located in a separate `v2` package in `openpgp`.

For the full changes since `v1.0.0`, see the previous release notes. For
the full changelog, see
https://github.com/ProtonMail/go-crypto/compare/v1.0.0...v1.1.0.

Changes since `v1.1.0-beta.0`:

- Replace expiring curve448 integration test vector by
[@&#8203;lubux](https://redirect.github.com/lubux)
- Validate input key size in SEIPDv2 decryption by
[@&#8203;lubux](https://redirect.github.com/lubux)

**Changelog since `v1.1.0-beta.0`**:
https://github.com/ProtonMail/go-crypto/compare/v1.1.0-beta.0...v1.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:eyJjcmVhdGVkSW5WZXIiOiIzOS43Mi4yIiwidXBkYXRlZEluVmVyIjoiMzkuNzIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-18 09:49:49 +01:00
renovate[bot]
afd5cd11ba chore(deps): update module github.com/sanposhiho/wastedassign/v2 to v2.1.0 (#6078)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/sanposhiho/wastedassign/v2](https://redirect.github.com/sanposhiho/wastedassign)
| `v2.0.7` -> `v2.1.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fsanposhiho%2fwastedassign%2fv2/v2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fsanposhiho%2fwastedassign%2fv2/v2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fsanposhiho%2fwastedassign%2fv2/v2.0.7/v2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fsanposhiho%2fwastedassign%2fv2/v2.0.7/v2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>sanposhiho/wastedassign
(github.com/sanposhiho/wastedassign/v2)</summary>

###
[`v2.1.0`](https://redirect.github.com/sanposhiho/wastedassign/releases/tag/v2.1.0)

[Compare
Source](https://redirect.github.com/sanposhiho/wastedassign/compare/v2.0.7...v2.1.0)

#### What's Changed

- Update x/tools to fix panic in tests with Go 1.23 by
[@&#8203;alexandear](https://redirect.github.com/alexandear) in
[https://github.com/sanposhiho/wastedassign/pull/43](https://redirect.github.com/sanposhiho/wastedassign/pull/43)

#### New Contributors

- [@&#8203;alexandear](https://redirect.github.com/alexandear) made
their first contribution in
[https://github.com/sanposhiho/wastedassign/pull/43](https://redirect.github.com/sanposhiho/wastedassign/pull/43)

**Full Changelog**:
https://github.com/sanposhiho/wastedassign/compare/v2.0.7...v2.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 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:eyJjcmVhdGVkSW5WZXIiOiIzOS43Mi4yIiwidXBkYXRlZEluVmVyIjoiMzkuNzIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-18 09:42:38 +01:00
renovate[bot]
9bd6d577c0 chore(deps): update module github.com/skeema/knownhosts to v1.3.0 (#6079)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/skeema/knownhosts](https://redirect.github.com/skeema/knownhosts)
| `v1.2.2` -> `v1.3.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fskeema%2fknownhosts/v1.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fskeema%2fknownhosts/v1.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fskeema%2fknownhosts/v1.2.2/v1.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fskeema%2fknownhosts/v1.2.2/v1.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>skeema/knownhosts (github.com/skeema/knownhosts)</summary>

###
[`v1.3.0`](https://redirect.github.com/skeema/knownhosts/compare/v1.2.2...v1.3.0)

[Compare
Source](https://redirect.github.com/skeema/knownhosts/compare/v1.2.2...v1.3.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:eyJjcmVhdGVkSW5WZXIiOiIzOS43Mi4yIiwidXBkYXRlZEluVmVyIjoiMzkuNzIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-18 09:35:27 +01:00
renovate[bot]
916e6dcac8 chore(deps): update module github.com/spf13/cast to v1.7.0 (#6080)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [github.com/spf13/cast](https://redirect.github.com/spf13/cast) |
`v1.6.0` -> `v1.7.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fspf13%2fcast/v1.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fspf13%2fcast/v1.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fspf13%2fcast/v1.6.0/v1.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fspf13%2fcast/v1.6.0/v1.7.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.7.0`](https://redirect.github.com/spf13/cast/releases/tag/v1.7.0)

[Compare
Source](https://redirect.github.com/spf13/cast/compare/v1.6.0...v1.7.0)

#### What's Changed

- Misc improvements by [@&#8203;bep](https://redirect.github.com/bep) in
[https://github.com/spf13/cast/pull/221](https://redirect.github.com/spf13/cast/pull/221)

**Full Changelog**:
https://github.com/spf13/cast/compare/v1.6.0...v1.7.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:eyJjcmVhdGVkSW5WZXIiOiIzOS43Mi4yIiwidXBkYXRlZEluVmVyIjoiMzkuNzIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-18 09:26:18 +01:00
renovate[bot]
86f62238b7 chore(deps): update module github.com/stbenjam/no-sprintf-host-port to v0.2.0 (#6081)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/stbenjam/no-sprintf-host-port](https://redirect.github.com/stbenjam/no-sprintf-host-port)
| `v0.1.1` -> `v0.2.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fstbenjam%2fno-sprintf-host-port/v0.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fstbenjam%2fno-sprintf-host-port/v0.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fstbenjam%2fno-sprintf-host-port/v0.1.1/v0.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fstbenjam%2fno-sprintf-host-port/v0.1.1/v0.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>stbenjam/no-sprintf-host-port
(github.com/stbenjam/no-sprintf-host-port)</summary>

###
[`v0.2.0`](https://redirect.github.com/stbenjam/no-sprintf-host-port/releases/tag/v0.2.0)

[Compare
Source](https://redirect.github.com/stbenjam/no-sprintf-host-port/compare/v0.1.1...v0.2.0)

Compatibility with golang 1.23

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS43Mi4yIiwidXBkYXRlZEluVmVyIjoiMzkuNzIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-18 09:12:42 +01:00
renovate[bot]
b50d65940c chore(deps): update module github.com/prometheus/common to v0.61.0 (#6075)
This PR contains the following updates:

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

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

#### What's Changed

- Mark sigv4 deprecated by
[@&#8203;SuperQ](https://redirect.github.com/SuperQ) in
[https://github.com/prometheus/common/pull/715](https://redirect.github.com/prometheus/common/pull/715)
- Provide a way to get UserAgent by
[@&#8203;mmorel-35](https://redirect.github.com/mmorel-35) in
[https://github.com/prometheus/common/pull/716](https://redirect.github.com/prometheus/common/pull/716)
- Synchronize common files from prometheus/prometheus by
[@&#8203;prombot](https://redirect.github.com/prombot) in
[https://github.com/prometheus/common/pull/714](https://redirect.github.com/prometheus/common/pull/714)
- Bump golang.org/x/net from 0.29.0 to 0.30.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/prometheus/common/pull/712](https://redirect.github.com/prometheus/common/pull/712)
- chore: enable perfsprint linter by
[@&#8203;mmorel-35](https://redirect.github.com/mmorel-35) in
[https://github.com/prometheus/common/pull/717](https://redirect.github.com/prometheus/common/pull/717)
- chore: use testify instead of testing.Fatal by
[@&#8203;mmorel-35](https://redirect.github.com/mmorel-35) in
[https://github.com/prometheus/common/pull/718](https://redirect.github.com/prometheus/common/pull/718)
- Bump google.golang.org/protobuf from 1.34.2 to 1.35.1 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/prometheus/common/pull/711](https://redirect.github.com/prometheus/common/pull/711)
- setup dependabot for `github.com/prometheus/common/assets` by
[@&#8203;mmorel-35](https://redirect.github.com/mmorel-35) in
[https://github.com/prometheus/common/pull/719](https://redirect.github.com/prometheus/common/pull/719)
- Synchronize common files from prometheus/prometheus by
[@&#8203;prombot](https://redirect.github.com/prombot) in
[https://github.com/prometheus/common/pull/721](https://redirect.github.com/prometheus/common/pull/721)
- Mark promlog deprecated by
[@&#8203;SuperQ](https://redirect.github.com/SuperQ) in
[https://github.com/prometheus/common/pull/720](https://redirect.github.com/prometheus/common/pull/720)
- Synchronize common files from prometheus/prometheus by
[@&#8203;prombot](https://redirect.github.com/prombot) in
[https://github.com/prometheus/common/pull/722](https://redirect.github.com/prometheus/common/pull/722)
- Allow custom user-agent definition by
[@&#8203;mmorel-35](https://redirect.github.com/mmorel-35) in
[https://github.com/prometheus/common/pull/725](https://redirect.github.com/prometheus/common/pull/725)
- fix: values escaping bugs by
[@&#8203;ywwg](https://redirect.github.com/ywwg) in
[https://github.com/prometheus/common/pull/727](https://redirect.github.com/prometheus/common/pull/727)
- fix(promslog): always use UTC for time by
[@&#8203;tjhop](https://redirect.github.com/tjhop) in
[https://github.com/prometheus/common/pull/735](https://redirect.github.com/prometheus/common/pull/735)
- Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 in /assets by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/prometheus/common/pull/729](https://redirect.github.com/prometheus/common/pull/729)
- Bump golang.org/x/oauth2 from 0.23.0 to 0.24.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/prometheus/common/pull/730](https://redirect.github.com/prometheus/common/pull/730)
- promslog: always lowercase log level from CLI by
[@&#8203;jkroepke](https://redirect.github.com/jkroepke) in
[https://github.com/prometheus/common/pull/728](https://redirect.github.com/prometheus/common/pull/728)
- Synchronize common files from prometheus/prometheus by
[@&#8203;prombot](https://redirect.github.com/prombot) in
[https://github.com/prometheus/common/pull/726](https://redirect.github.com/prometheus/common/pull/726)
- Bump golang.org/x/net from 0.30.0 to 0.32.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/prometheus/common/pull/736](https://redirect.github.com/prometheus/common/pull/736)
- Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/prometheus/common/pull/731](https://redirect.github.com/prometheus/common/pull/731)
- Bump google.golang.org/protobuf from 1.35.1 to 1.35.2 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/prometheus/common/pull/732](https://redirect.github.com/prometheus/common/pull/732)

**Full Changelog**:
https://github.com/prometheus/common/compare/v0.60.1...v0.61.0

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

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

##### What's Changed

- promslog: Only log basename, not full path by
[@&#8203;roidelapluie](https://redirect.github.com/roidelapluie) in
[https://github.com/prometheus/common/pull/705](https://redirect.github.com/prometheus/common/pull/705)
- Reload certificates even when no CA is used by
[@&#8203;roidelapluie](https://redirect.github.com/roidelapluie) in
[https://github.com/prometheus/common/pull/707](https://redirect.github.com/prometheus/common/pull/707)
- Synchronize common files from prometheus/prometheus by
[@&#8203;prombot](https://redirect.github.com/prombot) in
[https://github.com/prometheus/common/pull/701](https://redirect.github.com/prometheus/common/pull/701)

**Full Changelog**:
https://github.com/prometheus/common/compare/v0.60.0...v0.60.1

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

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

#### What's Changed

- Synchronize common files from prometheus/prometheus by
[@&#8203;prombot](https://redirect.github.com/prombot) in
[https://github.com/prometheus/common/pull/692](https://redirect.github.com/prometheus/common/pull/692)
- slog: expose io.Writer by
[@&#8203;jkroepke](https://redirect.github.com/jkroepke) in
[https://github.com/prometheus/common/pull/694](https://redirect.github.com/prometheus/common/pull/694)
- Synchronize common files from prometheus/prometheus by
[@&#8203;prombot](https://redirect.github.com/prombot) in
[https://github.com/prometheus/common/pull/695](https://redirect.github.com/prometheus/common/pull/695)
- promslog: use UTC timestamps for go-kit log style by
[@&#8203;dswarbrick](https://redirect.github.com/dswarbrick) in
[https://github.com/prometheus/common/pull/696](https://redirect.github.com/prometheus/common/pull/696)
- feat: add `promslog.NewNopLogger()` convenience func by
[@&#8203;tjhop](https://redirect.github.com/tjhop) in
[https://github.com/prometheus/common/pull/697](https://redirect.github.com/prometheus/common/pull/697)
- Bump golang.org/x/net from 0.28.0 to 0.29.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/prometheus/common/pull/699](https://redirect.github.com/prometheus/common/pull/699)
- Bump golang.org/x/oauth2 from 0.22.0 to 0.23.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/prometheus/common/pull/698](https://redirect.github.com/prometheus/common/pull/698)
- Update supported Go versions by
[@&#8203;SuperQ](https://redirect.github.com/SuperQ) in
[https://github.com/prometheus/common/pull/700](https://redirect.github.com/prometheus/common/pull/700)

**Full Changelog**:
https://github.com/prometheus/common/compare/v0.59.1...v0.60.0

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

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

#### What's Changed

- fix(utf8): Fix multiple metric name inside braces validation by
[@&#8203;fedetorres93](https://redirect.github.com/fedetorres93) in
[https://github.com/prometheus/common/pull/691](https://redirect.github.com/prometheus/common/pull/691)

**Full Changelog**:
https://github.com/prometheus/common/compare/v0.59.0...v0.59.1

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

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

#### What's Changed

- expfmt: Add WithEscapingScheme to help construct Formats by
[@&#8203;ywwg](https://redirect.github.com/ywwg) in
[https://github.com/prometheus/common/pull/688](https://redirect.github.com/prometheus/common/pull/688)
- Change the default escape method to UnderscoreEscaping by
[@&#8203;ywwg](https://redirect.github.com/ywwg) in
[https://github.com/prometheus/common/pull/690](https://redirect.github.com/prometheus/common/pull/690)

**Full Changelog**:
https://github.com/prometheus/common/compare/v0.58.0...v0.59.0

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

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

#### What's Changed

- docs: mention new promslog package in package list in README by
[@&#8203;tjhop](https://redirect.github.com/tjhop) in
[https://github.com/prometheus/common/pull/683](https://redirect.github.com/prometheus/common/pull/683)
- Bump golang.org/x/oauth2 from 0.21.0 to 0.22.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/prometheus/common/pull/684](https://redirect.github.com/prometheus/common/pull/684)
- Bump golang.org/x/net from 0.27.0 to 0.28.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/prometheus/common/pull/685](https://redirect.github.com/prometheus/common/pull/685)
- Remove secret file existence check in Validate for headers by
[@&#8203;roidelapluie](https://redirect.github.com/roidelapluie) in
[https://github.com/prometheus/common/pull/687](https://redirect.github.com/prometheus/common/pull/687)

**Full Changelog**:
https://github.com/prometheus/common/compare/v0.57.0...v0.58.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:eyJjcmVhdGVkSW5WZXIiOiIzOS43Mi4yIiwidXBkYXRlZEluVmVyIjoiMzkuNzIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-17 17:04:05 -08:00
renovate[bot]
74a05fe703 chore(deps): update module github.com/ldez/gomoddirectives to v0.6.0 (#6072)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/ldez/gomoddirectives](https://redirect.github.com/ldez/gomoddirectives)
| `v0.2.4` -> `v0.6.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fldez%2fgomoddirectives/v0.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fldez%2fgomoddirectives/v0.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fldez%2fgomoddirectives/v0.2.4/v0.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fldez%2fgomoddirectives/v0.2.4/v0.6.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>ldez/gomoddirectives
(github.com/ldez/gomoddirectives)</summary>

###
[`v0.6.0`](https://redirect.github.com/ldez/gomoddirectives/compare/v0.5.0...v0.6.0)

[Compare
Source](https://redirect.github.com/ldez/gomoddirectives/compare/v0.5.0...v0.6.0)

###
[`v0.5.0`](https://redirect.github.com/ldez/gomoddirectives/compare/v0.4.2...v0.5.0)

[Compare
Source](https://redirect.github.com/ldez/gomoddirectives/compare/v0.4.2...v0.5.0)

###
[`v0.4.2`](https://redirect.github.com/ldez/gomoddirectives/compare/v0.4.1...v0.4.2)

[Compare
Source](https://redirect.github.com/ldez/gomoddirectives/compare/v0.4.1...v0.4.2)

###
[`v0.4.1`](https://redirect.github.com/ldez/gomoddirectives/compare/v0.4.0...v0.4.1)

[Compare
Source](https://redirect.github.com/ldez/gomoddirectives/compare/v0.4.0...v0.4.1)

###
[`v0.4.0`](https://redirect.github.com/ldez/gomoddirectives/compare/v0.3.0...v0.4.0)

[Compare
Source](https://redirect.github.com/ldez/gomoddirectives/compare/v0.3.0...v0.4.0)

###
[`v0.3.0`](https://redirect.github.com/ldez/gomoddirectives/compare/v0.2.4...v0.3.0)

[Compare
Source](https://redirect.github.com/ldez/gomoddirectives/compare/v0.2.4...v0.3.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:eyJjcmVhdGVkSW5WZXIiOiIzOS43Mi4yIiwidXBkYXRlZEluVmVyIjoiMzkuNzIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-17 16:06:19 -08:00
renovate[bot]
0150784df8 chore(deps): update module github.com/go-git/go-billy/v5 to v5.6.0 (#6070)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/go-git/go-billy/v5](https://redirect.github.com/go-git/go-billy)
| `v5.5.0` -> `v5.6.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgo-git%2fgo-billy%2fv5/v5.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgo-git%2fgo-billy%2fv5/v5.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgo-git%2fgo-billy%2fv5/v5.5.0/v5.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgo-git%2fgo-billy%2fv5/v5.5.0/v5.6.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>go-git/go-billy (github.com/go-git/go-billy/v5)</summary>

###
[`v5.6.0`](https://redirect.github.com/go-git/go-billy/releases/tag/v5.6.0)

[Compare
Source](https://redirect.github.com/go-git/go-billy/compare/v5.5.0...v5.6.0)

#### What's Changed

- Adding support for wasm/wasip1 by
[@&#8203;tryggvil](https://redirect.github.com/tryggvil) in
[https://github.com/go-git/go-billy/pull/36](https://redirect.github.com/go-git/go-billy/pull/36)
- `Memory.ReadDir()` should return an error when path isn't found. by
[@&#8203;weberc2-tempus](https://redirect.github.com/weberc2-tempus) in
[https://github.com/go-git/go-billy/pull/38](https://redirect.github.com/go-git/go-billy/pull/38)
- Adding support for WriteAt by
[@&#8203;sfc-gh-thardie](https://redirect.github.com/sfc-gh-thardie) in
[https://github.com/go-git/go-billy/pull/39](https://redirect.github.com/go-git/go-billy/pull/39)
- Update memfs.New() to create root directory by
[@&#8203;onee-only](https://redirect.github.com/onee-only) in
[https://github.com/go-git/go-billy/pull/45](https://redirect.github.com/go-git/go-billy/pull/45)
- Fix symlink by [@&#8203;pjbgf](https://redirect.github.com/pjbgf) in
[https://github.com/go-git/go-billy/pull/46](https://redirect.github.com/go-git/go-billy/pull/46)
- Close via defer by
[@&#8203;spennymac](https://redirect.github.com/spennymac) in
[https://github.com/go-git/go-billy/pull/47](https://redirect.github.com/go-git/go-billy/pull/47)
- General improvements to memfs by
[@&#8203;pjbgf](https://redirect.github.com/pjbgf) in
[https://github.com/go-git/go-billy/pull/50](https://redirect.github.com/go-git/go-billy/pull/50)
- boundos:insideBaseDirEval: return true if baseDir is "/" by
[@&#8203;rminnich](https://redirect.github.com/rminnich) in
[https://github.com/go-git/go-billy/pull/48](https://redirect.github.com/go-git/go-billy/pull/48)
- Add wrapper for io/fs by
[@&#8203;evankanderson](https://redirect.github.com/evankanderson) in
[https://github.com/go-git/go-billy/pull/81](https://redirect.github.com/go-git/go-billy/pull/81)

#### New Contributors

- [@&#8203;dependabot](https://redirect.github.com/dependabot) made
their first contribution in
[https://github.com/go-git/go-billy/pull/35](https://redirect.github.com/go-git/go-billy/pull/35)
- [@&#8203;tryggvil](https://redirect.github.com/tryggvil) made their
first contribution in
[https://github.com/go-git/go-billy/pull/36](https://redirect.github.com/go-git/go-billy/pull/36)
- [@&#8203;weberc2-tempus](https://redirect.github.com/weberc2-tempus)
made their first contribution in
[https://github.com/go-git/go-billy/pull/38](https://redirect.github.com/go-git/go-billy/pull/38)
- [@&#8203;sfc-gh-thardie](https://redirect.github.com/sfc-gh-thardie)
made their first contribution in
[https://github.com/go-git/go-billy/pull/39](https://redirect.github.com/go-git/go-billy/pull/39)
- [@&#8203;onee-only](https://redirect.github.com/onee-only) made their
first contribution in
[https://github.com/go-git/go-billy/pull/45](https://redirect.github.com/go-git/go-billy/pull/45)
- [@&#8203;spennymac](https://redirect.github.com/spennymac) made their
first contribution in
[https://github.com/go-git/go-billy/pull/47](https://redirect.github.com/go-git/go-billy/pull/47)
- [@&#8203;rminnich](https://redirect.github.com/rminnich) made their
first contribution in
[https://github.com/go-git/go-billy/pull/48](https://redirect.github.com/go-git/go-billy/pull/48)
- [@&#8203;evankanderson](https://redirect.github.com/evankanderson)
made their first contribution in
[https://github.com/go-git/go-billy/pull/81](https://redirect.github.com/go-git/go-billy/pull/81)

**Full Changelog**:
https://github.com/go-git/go-billy/compare/v5.5.0...v5.6.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:eyJjcmVhdGVkSW5WZXIiOiIzOS43Mi4yIiwidXBkYXRlZEluVmVyIjoiMzkuNzIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-17 15:54:02 -08:00
renovate[bot]
4bf9c438d8 chore(deps): update module github.com/fsnotify/fsnotify to v1.8.0 (#6069)
This PR contains the following updates:

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

###
[`v1.8.0`](https://redirect.github.com/fsnotify/fsnotify/releases/tag/v1.8.0)

[Compare
Source](https://redirect.github.com/fsnotify/fsnotify/compare/v1.7.0...v1.8.0)

#### Additions

- all: add `FSNOTIFY_DEBUG` to print debug logs to stderr
([#&#8203;619](https://redirect.github.com/fsnotify/fsnotify/issues/619))

##### Changes and fixes

- windows: fix behaviour of `WatchList()` to be consistent with other
platforms
([#&#8203;610](https://redirect.github.com/fsnotify/fsnotify/issues/610))

- kqueue: ignore events with Ident=0
([#&#8203;590](https://redirect.github.com/fsnotify/fsnotify/issues/590))

- kqueue: set O_CLOEXEC to prevent passing file descriptors to children
([#&#8203;617](https://redirect.github.com/fsnotify/fsnotify/issues/617))

- kqueue: emit events as "/path/dir/file" instead of "path/link/file"
when watching a symlink
([#&#8203;625](https://redirect.github.com/fsnotify/fsnotify/issues/625))

- inotify: don't send event for IN_DELETE_SELF when also watching the
parent
([#&#8203;620](https://redirect.github.com/fsnotify/fsnotify/issues/620))

- inotify: fix panic when calling Remove() in a goroutine
([#&#8203;650](https://redirect.github.com/fsnotify/fsnotify/issues/650))

- fen: allow watching subdirectories of watched directories
([#&#8203;621](https://redirect.github.com/fsnotify/fsnotify/issues/621))

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS43Mi4yIiwidXBkYXRlZEluVmVyIjoiMzkuNzIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-17 15:41:23 -08:00
renovate[bot]
8c74b2dba8 fix(deps): update golang.org/x to b2144cd (#6067)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| golang.org/x/exp | require | digest | `4a55095` -> `b2144cd` |
| golang.org/x/exp/typeparams | indirect | digest | `4a55095` ->
`b2144cd` |

---

### 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:eyJjcmVhdGVkSW5WZXIiOiIzOS43Mi4yIiwidXBkYXRlZEluVmVyIjoiMzkuNzIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-17 15:03:20 -08:00
renovate[bot]
10dbcbac1b chore(deps): update module github.com/djarvur/go-err113 to v0.1.0 (#6068)
This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[github.com/Djarvur/go-err113](https://redirect.github.com/Djarvur/go-err113)
| `v0.0.0-20210108212216-aea10b59be24` -> `v0.1.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fDjarvur%2fgo-err113/v0.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fDjarvur%2fgo-err113/v0.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fDjarvur%2fgo-err113/v0.0.0-20210108212216-aea10b59be24/v0.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fDjarvur%2fgo-err113/v0.0.0-20210108212216-aea10b59be24/v0.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### 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:eyJjcmVhdGVkSW5WZXIiOiIzOS43Mi4yIiwidXBkYXRlZEluVmVyIjoiMzkuNzIuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-17 13:22:03 -08:00
renovate[bot]
bc0bfb455c chore(deps): update module github.com/curioswitch/go-reassign to v0.3.0 (#6065)
This PR contains the following updates:

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

###
[`v0.3.0`](https://redirect.github.com/curioswitch/go-reassign/releases/tag/v0.3.0)

[Compare
Source](https://redirect.github.com/curioswitch/go-reassign/compare/v0.2.0...v0.3.0)

#### What's Changed

- Support matching against package-qualified name as well by
[@&#8203;chokoswitch](https://redirect.github.com/chokoswitch) in
[https://github.com/curioswitch/go-reassign/pull/12](https://redirect.github.com/curioswitch/go-reassign/pull/12)
- Update floor Go version to 1.21 by
[@&#8203;chokoswitch](https://redirect.github.com/chokoswitch) in
[https://github.com/curioswitch/go-reassign/pull/20](https://redirect.github.com/curioswitch/go-reassign/pull/20)
- Update x/tools to fix panic in tests with Go 1.23 by
[@&#8203;alexandear](https://redirect.github.com/alexandear) in
[https://github.com/curioswitch/go-reassign/pull/19](https://redirect.github.com/curioswitch/go-reassign/pull/19)

#### New Contributors

- [@&#8203;alexandear](https://redirect.github.com/alexandear) made
their first contribution in
[https://github.com/curioswitch/go-reassign/pull/19](https://redirect.github.com/curioswitch/go-reassign/pull/19)

**Full Changelog**:
https://github.com/curioswitch/go-reassign/compare/v0.2.0...v0.3.0

#### Changelog

-
[`e97fbfb`](https://redirect.github.com/curioswitch/go-reassign/commit/e97fbfb)
Bump golang.org/x/tools from 0.1.12 to 0.2.0
([#&#8203;9](https://redirect.github.com/curioswitch/go-reassign/issues/9))
-
[`90e03e0`](https://redirect.github.com/curioswitch/go-reassign/commit/90e03e0)
Bump golang.org/x/tools from 0.2.0 to 0.3.0
([#&#8203;10](https://redirect.github.com/curioswitch/go-reassign/issues/10))
-
[`5a672ff`](https://redirect.github.com/curioswitch/go-reassign/commit/5a672ff)
Remove limitation that isn't there anymore and add Development sectio…
([#&#8203;7](https://redirect.github.com/curioswitch/go-reassign/issues/7))
-
[`361980f`](https://redirect.github.com/curioswitch/go-reassign/commit/361980f)
Support matching against package-qualified name as well
([#&#8203;12](https://redirect.github.com/curioswitch/go-reassign/issues/12))
-
[`20d6f3a`](https://redirect.github.com/curioswitch/go-reassign/commit/20d6f3a)
Update floor Go version to 1.21
([#&#8203;20](https://redirect.github.com/curioswitch/go-reassign/issues/20))
-
[`b34e3f5`](https://redirect.github.com/curioswitch/go-reassign/commit/b34e3f5)
Update x/tools to fix panic in tests with Go 1.23
([#&#8203;19](https://redirect.github.com/curioswitch/go-reassign/issues/19))

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS42OS4zIiwidXBkYXRlZEluVmVyIjoiMzkuNjkuMyIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-12-17 17:27:58 +01:00