-
Notifications
You must be signed in to change notification settings - Fork 46
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
feat: require Go >= 1.21 #424
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #424 +/- ##
=======================================
Coverage 80.43% 80.43%
=======================================
Files 33 33
Lines 5756 5756
=======================================
Hits 4630 4630
Misses 718 718
Partials 408 408 ☔ View full report in Codecov by Sentry. |
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-release-1.x release-1.x
# Navigate to the new working tree
cd .worktrees/backport-release-1.x
# Create a new branch
git switch --create backport-424-to-release-1.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 d4f40009016c3ed5bb14ef9ae16bcf6aefa90fee
# Push it to GitHub
git push --set-upstream origin backport-424-to-release-1.x
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-release-1.x Then, create a pull request where the |
This is required for us to use the `maps` stdlib. (cherry picked from commit d4f4000)
This is required for us to use the `maps` stdlib. (cherry picked from commit d4f4000)
This is required for us to use the `maps` stdlib. (cherry picked from commit d4f4000)
This is required for us to use the `maps` stdlib. (cherry picked from commit d4f4000) BEGIN_COMMIT_OVERRIDE feat: require Go >= 1.21 END_COMMIT_OVERRIDE
🤖 I have created a release *beep* *boop* --- ## [2.8.0](v2.7.2...v2.8.0) (2024-05-06) ### Features * **error:** show internal correlation id in error messages ([#411](#411)) ([6c96d19](6c96d19)) * implement actions waiter ([#407](#407)) ([1e3fa70](1e3fa70)) * require Go >= 1.21 ([#424](#424)) ([d4f4000](d4f4000)) ### Bug Fixes * improve error message format with correlation id ([#430](#430)) ([013477f](013477f)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
…etznercloud/fleeting-plugin-hetzner!49) This MR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/hetznercloud/hcloud-go/v2](https://github.com/hetznercloud/hcloud-go) | require | minor | `v2.7.2` -> `v2.8.0` | --- ### Release Notes <details> <summary>hetznercloud/hcloud-go (github.com/hetznercloud/hcloud-go/v2)</summary> ### [`v2.8.0`](https://github.com/hetznercloud/hcloud-go/releases/tag/v2.8.0) [Compare Source](hetznercloud/hcloud-go@v2.7.2...v2.8.0) ##### Features - **error:** show internal correlation id in error messages ([#​411](hetznercloud/hcloud-go#411)) ([6c96d19](hetznercloud/hcloud-go@6c96d19)) - implement actions waiter ([#​407](hetznercloud/hcloud-go#407)) ([1e3fa70](hetznercloud/hcloud-go@1e3fa70)) - require Go >= 1.21 ([#​424](hetznercloud/hcloud-go#424)) ([d4f4000](hetznercloud/hcloud-go@d4f4000)) ##### Bug Fixes - improve error message format with correlation id ([#​430](hetznercloud/hcloud-go#430)) ([013477f](hetznercloud/hcloud-go@013477f)) </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 MR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this MR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box --- This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNDIuMSIsInVwZGF0ZWRJblZlciI6IjM3LjM0Mi4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
This is required for us to use the
maps
stdlib.