chore(deps): upgraded Go version to 1.26.1 and updated all dependencies#21
Conversation
|
There was a problem hiding this comment.
Pull request overview
Bumps the module’s Go toolchain version and records the change in the changelog.
Changes:
- Update
go.modGo version directive from1.26.0to1.26.1 - Add an
[Unreleased]changelog entry describing the Go version change
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| go.mod | Updates the declared Go version for the module |
| CHANGELOG.md | Documents the Go version bump under [Unreleased] |
You can also share your feedback on Copilot code review. Take the survey.
| module github.com/rios0rios0/testkit | ||
|
|
||
| go 1.26.0 | ||
| go 1.26.1 |
There was a problem hiding this comment.
This Go version bump makes other repo docs inconsistent: multiple files still state Go 1.26.0+ and even embed a go.mod example with go 1.26.0 (e.g., .github/copilot-instructions.md, custom-instructions/repo/.github/copilot-instructions.md, CONTRIBUTING.md). Please update those references (or change them to point readers at go.mod) so the documented minimum/toolchain version matches the module.
| go 1.26.1 | |
| go 1.26.0 |
|
|
||
| ### Changed | ||
|
|
||
| - changed the Go version to `1.26.1` and updated all module dependencies |
There was a problem hiding this comment.
The changelog entry says “updated all module dependencies”, but go.mod has no require entries and there is no go.sum in the repo, so there aren’t any module dependencies to update. Please adjust the wording to reflect what actually changed (just the Go version), or include the dependency updates in the PR.



Summary
This PR upgrades the Go version to 1.26.1 and updates all module dependencies.
Changes
go.modGo directive to1.26.1go get -u allto update all dependenciesgo mod tidyto clean upReview Checklist
go.sumThis PR was automatically created by autoupdate