Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Upgrade Go & other #1008

Merged
merged 1 commit into from
Sep 18, 2024
Merged

ci: Upgrade Go & other #1008

merged 1 commit into from
Sep 18, 2024

Conversation

klauspost
Copy link
Owner

@klauspost klauspost commented Sep 18, 2024

Summary by CodeRabbit

  • New Features

    • Upgraded to Go version 1.23.x, enhancing performance and introducing new features.
    • Updated GoReleaser to version 2.3.2, optimizing the release process.
  • Bug Fixes

    • Adjusted Go version in the project module for improved compatibility and functionality.

Copy link

coderabbitai bot commented Sep 18, 2024

Walkthrough

The pull request includes updates to the Go version specifications in the CI/CD workflows and the Go module file. The .github/workflows/go.yml and .github/workflows/release.yml files have been modified to reflect the new Go versions 1.21.x, 1.22.x, and 1.23.x, replacing older versions. Additionally, the Go module version in go.mod has been updated from 1.20 to 1.21. These changes ensure alignment with the latest Go features and improvements.

Changes

Files Change Summary
.github/workflows/go.yml Updated Go version matrix from [1.20.x, 1.21.x, 1.22.x] to [1.21.x, 1.22.x, 1.23.x]. Updated setup steps to use 1.23.x.
.github/workflows/release.yml Upgraded Go version from 1.22.x to 1.23.x and GoReleaser version from 1.24.x to 2.3.2.
go.mod Changed Go version declaration from go 1.20 to go 1.21.

Sequence Diagram(s)

sequenceDiagram
    participant CI as CI/CD Workflow
    participant Go as Go Environment
    participant GoReleaser as GoReleaser Tool
    participant Module as Go Module

    CI->>Go: Set up environment with Go 1.23.x
    CI->>GoReleaser: Execute release command
    GoReleaser->>Module: Build and package module
    Module-->>GoReleaser: Return built artifacts
    GoReleaser-->>CI: Complete release process
Loading

Poem

🐰 In fields of code, we hop and play,
With Go versions bright, we leap today!
From one to twenty-three, we cheer,
New features bloom, let’s spread the cheer!
With every change, our project grows,
A rabbit's joy in every code that flows! 🌼


Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 26519f8 and 304537c.

Files selected for processing (3)
  • .github/workflows/go.yml (5 hunks)
  • .github/workflows/release.yml (1 hunks)
  • go.mod (1 hunks)
Files skipped from review due to trivial changes (1)
  • go.mod
Additional comments not posted (7)
.github/workflows/release.yml (2)

24-24: LGTM!

Upgrading to Go 1.23.x is a good move to leverage the latest performance improvements, features, and bug fixes while maintaining backward compatibility.


29-29: Verify compatibility with GoReleaser v2.

Upgrading to GoReleaser v2.3.2 and pinning to a specific version is a good practice to ensure a predictable and reproducible release process.

However, as this is a major version upgrade, please verify that the existing GoReleaser configuration is compatible with the new version and make any necessary adjustments.

.github/workflows/go.yml (5)

15-15: LGTM!

Updating the go-version matrix to include the latest three minor versions of Go is a good practice to ensure compatibility. Removing 1.20.x suggests that the project no longer supports that version.


57-57: LGTM!

Updating the go-version to 1.23.x in the setup step ensures consistency with the latest version specified in the matrix.


79-79: LGTM!

Updating the go-version to 1.23.x in the setup step ensures consistency with the latest version specified in the matrix.


119-119: LGTM!

Updating the go-version to 1.23.x in the setup step ensures consistency with the latest version specified in the matrix.


190-190: LGTM!

Updating the go-version to 1.23.x in the setup step ensures consistency with the latest version specified in the matrix.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    -- I pushed a fix in commit <commit_id>, please review it.
    -- Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    -- @coderabbitai generate unit testing code for this file.
    -- @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    -- @coderabbitai generate interesting stats about this repository and render them as a table.
    -- @coderabbitai read src/utils.ts and generate unit testing code.
    -- @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    -- @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@klauspost klauspost merged commit 4dafca9 into master Sep 18, 2024
19 checks passed
@klauspost klauspost deleted the ci-go-1-23 branch September 18, 2024 13:06
dmathieu referenced this pull request in open-telemetry/opentelemetry-go Sep 23, 2024
…5834)

This PR contains the following updates:

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

---

### Release Notes

<details>
<summary>klauspost/compress (github.com/klauspost/compress)</summary>

###
[`v1.17.10`](https://redirect.github.com/klauspost/compress/releases/tag/v1.17.10)

[Compare
Source](https://redirect.github.com/klauspost/compress/compare/v1.17.9...v1.17.10)

#### What's Changed

- gzhttp: Add TransportAlwaysDecompress option. by
[@&#8203;klauspost](https://redirect.github.com/klauspost) in
[klauspost/compress#978
- s2: Add EncodeBuffer buffer recycling callback by
[@&#8203;klauspost](https://redirect.github.com/klauspost) in
[klauspost/compress#982
- zstd: Improve memory usage on small streaming encodes by
[@&#8203;klauspost](https://redirect.github.com/klauspost) in
[klauspost/compress#1007
- gzhttp: Add supported decompress request body by
[@&#8203;mirecl](https://redirect.github.com/mirecl) in
[klauspost/compress#1002
- flate: read data written with partial flush by
[@&#8203;vajexal](https://redirect.github.com/vajexal) in
[klauspost/compress#996
- ci: Upgrade Go & other by
[@&#8203;klauspost](https://redirect.github.com/klauspost) in
[klauspost/compress#1008
- docs: Small typofix in comment by
[@&#8203;Jille](https://redirect.github.com/Jille) in
[klauspost/compress#976
- build(deps): bump the github-actions group with 2 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[klauspost/compress#979
- docs: Fix URL typo when installing builddict by
[@&#8203;Wikidepia](https://redirect.github.com/Wikidepia) in
[klauspost/compress#980
- build(deps): bump the github-actions group with 2 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[klauspost/compress#985
- Fix typos by [@&#8203;deining](https://redirect.github.com/deining) in
[klauspost/compress#986
- build(deps): bump github/codeql-action from 3.25.15 to 3.26.6 in the
github-actions group by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[klauspost/compress#997

#### New Contributors

- [@&#8203;Wikidepia](https://redirect.github.com/Wikidepia) made their
first contribution in
[klauspost/compress#980
- [@&#8203;deining](https://redirect.github.com/deining) made their
first contribution in
[klauspost/compress#986
- [@&#8203;vajexal](https://redirect.github.com/vajexal) made their
first contribution in
[klauspost/compress#996
- [@&#8203;mirecl](https://redirect.github.com/mirecl) made their first
contribution in
[klauspost/compress#1002

**Full Changelog**:
klauspost/compress@v1.17.9...v1.17.10

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
dmathieu referenced this pull request in open-telemetry/opentelemetry-go-contrib Sep 23, 2024
…6146)

This PR contains the following updates:

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

---

### Release Notes

<details>
<summary>klauspost/compress (github.com/klauspost/compress)</summary>

###
[`v1.17.10`](https://redirect.github.com/klauspost/compress/releases/tag/v1.17.10)

[Compare
Source](https://redirect.github.com/klauspost/compress/compare/v1.17.9...v1.17.10)

#### What's Changed

- gzhttp: Add TransportAlwaysDecompress option. by
[@&#8203;klauspost](https://redirect.github.com/klauspost) in
[https://github.com/klauspost/compress/pull/978](https://redirect.github.com/klauspost/compress/pull/978)
- s2: Add EncodeBuffer buffer recycling callback by
[@&#8203;klauspost](https://redirect.github.com/klauspost) in
[https://github.com/klauspost/compress/pull/982](https://redirect.github.com/klauspost/compress/pull/982)
- zstd: Improve memory usage on small streaming encodes by
[@&#8203;klauspost](https://redirect.github.com/klauspost) in
[https://github.com/klauspost/compress/pull/1007](https://redirect.github.com/klauspost/compress/pull/1007)
- gzhttp: Add supported decompress request body by
[@&#8203;mirecl](https://redirect.github.com/mirecl) in
[https://github.com/klauspost/compress/pull/1002](https://redirect.github.com/klauspost/compress/pull/1002)
- flate: read data written with partial flush by
[@&#8203;vajexal](https://redirect.github.com/vajexal) in
[https://github.com/klauspost/compress/pull/996](https://redirect.github.com/klauspost/compress/pull/996)
- ci: Upgrade Go & other by
[@&#8203;klauspost](https://redirect.github.com/klauspost) in
[https://github.com/klauspost/compress/pull/1008](https://redirect.github.com/klauspost/compress/pull/1008)
- docs: Small typofix in comment by
[@&#8203;Jille](https://redirect.github.com/Jille) in
[https://github.com/klauspost/compress/pull/976](https://redirect.github.com/klauspost/compress/pull/976)
- build(deps): bump the github-actions group with 2 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/klauspost/compress/pull/979](https://redirect.github.com/klauspost/compress/pull/979)
- docs: Fix URL typo when installing builddict by
[@&#8203;Wikidepia](https://redirect.github.com/Wikidepia) in
[https://github.com/klauspost/compress/pull/980](https://redirect.github.com/klauspost/compress/pull/980)
- build(deps): bump the github-actions group with 2 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/klauspost/compress/pull/985](https://redirect.github.com/klauspost/compress/pull/985)
- Fix typos by [@&#8203;deining](https://redirect.github.com/deining) in
[https://github.com/klauspost/compress/pull/986](https://redirect.github.com/klauspost/compress/pull/986)
- build(deps): bump github/codeql-action from 3.25.15 to 3.26.6 in the
github-actions group by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/klauspost/compress/pull/997](https://redirect.github.com/klauspost/compress/pull/997)

#### New Contributors

- [@&#8203;Wikidepia](https://redirect.github.com/Wikidepia) made their
first contribution in
[https://github.com/klauspost/compress/pull/980](https://redirect.github.com/klauspost/compress/pull/980)
- [@&#8203;deining](https://redirect.github.com/deining) made their
first contribution in
[https://github.com/klauspost/compress/pull/986](https://redirect.github.com/klauspost/compress/pull/986)
- [@&#8203;vajexal](https://redirect.github.com/vajexal) made their
first contribution in
[https://github.com/klauspost/compress/pull/996](https://redirect.github.com/klauspost/compress/pull/996)
- [@&#8203;mirecl](https://redirect.github.com/mirecl) made their first
contribution in
[https://github.com/klauspost/compress/pull/1002](https://redirect.github.com/klauspost/compress/pull/1002)

**Full Changelog**:
klauspost/compress@v1.17.9...v1.17.10

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

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
XSAM referenced this pull request in XSAM/otelsql Sep 23, 2024
This PR contains the following updates:

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

---

### Release Notes

<details>
<summary>klauspost/compress (github.com/klauspost/compress)</summary>

###
[`v1.17.10`](https://redirect.github.com/klauspost/compress/releases/tag/v1.17.10)

[Compare
Source](https://redirect.github.com/klauspost/compress/compare/v1.17.9...v1.17.10)

#### What's Changed

- gzhttp: Add TransportAlwaysDecompress option. by
[@&#8203;klauspost](https://redirect.github.com/klauspost) in
[https://github.com/klauspost/compress/pull/978](https://redirect.github.com/klauspost/compress/pull/978)
- s2: Add EncodeBuffer buffer recycling callback by
[@&#8203;klauspost](https://redirect.github.com/klauspost) in
[https://github.com/klauspost/compress/pull/982](https://redirect.github.com/klauspost/compress/pull/982)
- zstd: Improve memory usage on small streaming encodes by
[@&#8203;klauspost](https://redirect.github.com/klauspost) in
[https://github.com/klauspost/compress/pull/1007](https://redirect.github.com/klauspost/compress/pull/1007)
- gzhttp: Add supported decompress request body by
[@&#8203;mirecl](https://redirect.github.com/mirecl) in
[https://github.com/klauspost/compress/pull/1002](https://redirect.github.com/klauspost/compress/pull/1002)
- flate: read data written with partial flush by
[@&#8203;vajexal](https://redirect.github.com/vajexal) in
[https://github.com/klauspost/compress/pull/996](https://redirect.github.com/klauspost/compress/pull/996)
- ci: Upgrade Go & other by
[@&#8203;klauspost](https://redirect.github.com/klauspost) in
[https://github.com/klauspost/compress/pull/1008](https://redirect.github.com/klauspost/compress/pull/1008)
- docs: Small typofix in comment by
[@&#8203;Jille](https://redirect.github.com/Jille) in
[https://github.com/klauspost/compress/pull/976](https://redirect.github.com/klauspost/compress/pull/976)
- build(deps): bump the github-actions group with 2 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/klauspost/compress/pull/979](https://redirect.github.com/klauspost/compress/pull/979)
- docs: Fix URL typo when installing builddict by
[@&#8203;Wikidepia](https://redirect.github.com/Wikidepia) in
[https://github.com/klauspost/compress/pull/980](https://redirect.github.com/klauspost/compress/pull/980)
- build(deps): bump the github-actions group with 2 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/klauspost/compress/pull/985](https://redirect.github.com/klauspost/compress/pull/985)
- Fix typos by [@&#8203;deining](https://redirect.github.com/deining) in
[https://github.com/klauspost/compress/pull/986](https://redirect.github.com/klauspost/compress/pull/986)
- build(deps): bump github/codeql-action from 3.25.15 to 3.26.6 in the
github-actions group by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/klauspost/compress/pull/997](https://redirect.github.com/klauspost/compress/pull/997)

#### New Contributors

- [@&#8203;Wikidepia](https://redirect.github.com/Wikidepia) made their
first contribution in
[https://github.com/klauspost/compress/pull/980](https://redirect.github.com/klauspost/compress/pull/980)
- [@&#8203;deining](https://redirect.github.com/deining) made their
first contribution in
[https://github.com/klauspost/compress/pull/986](https://redirect.github.com/klauspost/compress/pull/986)
- [@&#8203;vajexal](https://redirect.github.com/vajexal) made their
first contribution in
[https://github.com/klauspost/compress/pull/996](https://redirect.github.com/klauspost/compress/pull/996)
- [@&#8203;mirecl](https://redirect.github.com/mirecl) made their first
contribution in
[https://github.com/klauspost/compress/pull/1002](https://redirect.github.com/klauspost/compress/pull/1002)

**Full Changelog**:
klauspost/compress@v1.17.9...v1.17.10

</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/XSAM/otelsql).

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
codeboten referenced this pull request in open-telemetry/opentelemetry-collector Sep 24, 2024
…11256)

This PR contains the following updates:

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

###
[`v1.17.10`](https://redirect.github.com/klauspost/compress/releases/tag/v1.17.10)

[Compare
Source](https://redirect.github.com/klauspost/compress/compare/v1.17.9...v1.17.10)

#### What's Changed

- gzhttp: Add TransportAlwaysDecompress option. by
[@&#8203;klauspost](https://redirect.github.com/klauspost) in
[https://github.com/klauspost/compress/pull/978](https://redirect.github.com/klauspost/compress/pull/978)
- s2: Add EncodeBuffer buffer recycling callback by
[@&#8203;klauspost](https://redirect.github.com/klauspost) in
[https://github.com/klauspost/compress/pull/982](https://redirect.github.com/klauspost/compress/pull/982)
- zstd: Improve memory usage on small streaming encodes by
[@&#8203;klauspost](https://redirect.github.com/klauspost) in
[https://github.com/klauspost/compress/pull/1007](https://redirect.github.com/klauspost/compress/pull/1007)
- gzhttp: Add supported decompress request body by
[@&#8203;mirecl](https://redirect.github.com/mirecl) in
[https://github.com/klauspost/compress/pull/1002](https://redirect.github.com/klauspost/compress/pull/1002)
- flate: read data written with partial flush by
[@&#8203;vajexal](https://redirect.github.com/vajexal) in
[https://github.com/klauspost/compress/pull/996](https://redirect.github.com/klauspost/compress/pull/996)
- ci: Upgrade Go & other by
[@&#8203;klauspost](https://redirect.github.com/klauspost) in
[https://github.com/klauspost/compress/pull/1008](https://redirect.github.com/klauspost/compress/pull/1008)
- docs: Small typofix in comment by
[@&#8203;Jille](https://redirect.github.com/Jille) in
[https://github.com/klauspost/compress/pull/976](https://redirect.github.com/klauspost/compress/pull/976)
- build(deps): bump the github-actions group with 2 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/klauspost/compress/pull/979](https://redirect.github.com/klauspost/compress/pull/979)
- docs: Fix URL typo when installing builddict by
[@&#8203;Wikidepia](https://redirect.github.com/Wikidepia) in
[https://github.com/klauspost/compress/pull/980](https://redirect.github.com/klauspost/compress/pull/980)
- build(deps): bump the github-actions group with 2 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/klauspost/compress/pull/985](https://redirect.github.com/klauspost/compress/pull/985)
- Fix typos by [@&#8203;deining](https://redirect.github.com/deining) in
[https://github.com/klauspost/compress/pull/986](https://redirect.github.com/klauspost/compress/pull/986)
- build(deps): bump github/codeql-action from 3.25.15 to 3.26.6 in the
github-actions group by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/klauspost/compress/pull/997](https://redirect.github.com/klauspost/compress/pull/997)

#### New Contributors

- [@&#8203;Wikidepia](https://redirect.github.com/Wikidepia) made their
first contribution in
[https://github.com/klauspost/compress/pull/980](https://redirect.github.com/klauspost/compress/pull/980)
- [@&#8203;deining](https://redirect.github.com/deining) made their
first contribution in
[https://github.com/klauspost/compress/pull/986](https://redirect.github.com/klauspost/compress/pull/986)
- [@&#8203;vajexal](https://redirect.github.com/vajexal) made their
first contribution in
[https://github.com/klauspost/compress/pull/996](https://redirect.github.com/klauspost/compress/pull/996)
- [@&#8203;mirecl](https://redirect.github.com/mirecl) made their first
contribution in
[https://github.com/klauspost/compress/pull/1002](https://redirect.github.com/klauspost/compress/pull/1002)

**Full Changelog**:
klauspost/compress@v1.17.9...v1.17.10

</details>

---

### Configuration

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

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

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

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

---

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

---

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

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

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
codeboten referenced this pull request in open-telemetry/opentelemetry-collector-contrib Sep 24, 2024
…35385)

This PR contains the following updates:

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

###
[`v1.17.10`](https://redirect.github.com/klauspost/compress/releases/tag/v1.17.10)

[Compare
Source](https://redirect.github.com/klauspost/compress/compare/v1.17.9...v1.17.10)

#### What's Changed

- gzhttp: Add TransportAlwaysDecompress option. by
[@&#8203;klauspost](https://redirect.github.com/klauspost) in
[https://github.com/klauspost/compress/pull/978](https://redirect.github.com/klauspost/compress/pull/978)
- s2: Add EncodeBuffer buffer recycling callback by
[@&#8203;klauspost](https://redirect.github.com/klauspost) in
[https://github.com/klauspost/compress/pull/982](https://redirect.github.com/klauspost/compress/pull/982)
- zstd: Improve memory usage on small streaming encodes by
[@&#8203;klauspost](https://redirect.github.com/klauspost) in
[https://github.com/klauspost/compress/pull/1007](https://redirect.github.com/klauspost/compress/pull/1007)
- gzhttp: Add supported decompress request body by
[@&#8203;mirecl](https://redirect.github.com/mirecl) in
[https://github.com/klauspost/compress/pull/1002](https://redirect.github.com/klauspost/compress/pull/1002)
- flate: read data written with partial flush by
[@&#8203;vajexal](https://redirect.github.com/vajexal) in
[https://github.com/klauspost/compress/pull/996](https://redirect.github.com/klauspost/compress/pull/996)
- ci: Upgrade Go & other by
[@&#8203;klauspost](https://redirect.github.com/klauspost) in
[https://github.com/klauspost/compress/pull/1008](https://redirect.github.com/klauspost/compress/pull/1008)
- docs: Small typofix in comment by
[@&#8203;Jille](https://redirect.github.com/Jille) in
[https://github.com/klauspost/compress/pull/976](https://redirect.github.com/klauspost/compress/pull/976)
- build(deps): bump the github-actions group with 2 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/klauspost/compress/pull/979](https://redirect.github.com/klauspost/compress/pull/979)
- docs: Fix URL typo when installing builddict by
[@&#8203;Wikidepia](https://redirect.github.com/Wikidepia) in
[https://github.com/klauspost/compress/pull/980](https://redirect.github.com/klauspost/compress/pull/980)
- build(deps): bump the github-actions group with 2 updates by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/klauspost/compress/pull/985](https://redirect.github.com/klauspost/compress/pull/985)
- Fix typos by [@&#8203;deining](https://redirect.github.com/deining) in
[https://github.com/klauspost/compress/pull/986](https://redirect.github.com/klauspost/compress/pull/986)
- build(deps): bump github/codeql-action from 3.25.15 to 3.26.6 in the
github-actions group by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/klauspost/compress/pull/997](https://redirect.github.com/klauspost/compress/pull/997)

#### New Contributors

- [@&#8203;Wikidepia](https://redirect.github.com/Wikidepia) made their
first contribution in
[https://github.com/klauspost/compress/pull/980](https://redirect.github.com/klauspost/compress/pull/980)
- [@&#8203;deining](https://redirect.github.com/deining) made their
first contribution in
[https://github.com/klauspost/compress/pull/986](https://redirect.github.com/klauspost/compress/pull/986)
- [@&#8203;vajexal](https://redirect.github.com/vajexal) made their
first contribution in
[https://github.com/klauspost/compress/pull/996](https://redirect.github.com/klauspost/compress/pull/996)
- [@&#8203;mirecl](https://redirect.github.com/mirecl) made their first
contribution in
[https://github.com/klauspost/compress/pull/1002](https://redirect.github.com/klauspost/compress/pull/1002)

**Full Changelog**:
klauspost/compress@v1.17.9...v1.17.10

</details>

---

### Configuration

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

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

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

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

---

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

---

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

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

---------

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

wwqgtxx commented Sep 28, 2024

Can you consider maintaining the minimum golang version in go.mod as 1.20?

I compared v1.17.10 and v1.17.9 and found that they did not use any 1.21 language features.

Golang 1.21 has abandoned support for many older operating system versions (such as windows7, 8/server2008, 2012).

Rolling back to 1.20 allows downstream projects to update to the latest klauspost/compress without giving up support for existing platforms.

This may increase the maintenance cost of this project, but there is no need to pay extra costs when no 1.21 feature code is included.

@klauspost
Copy link
Owner Author

@wwqgtxx My policy is to support one more version than the stdlib does.

You are welcome to do a "light fork", or pin your dependency at existing versions, but the world moves on.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants