chore(deps): upgraded Go version to 1.26.1 and updated all dependencies#18
chore(deps): upgraded Go version to 1.26.1 and updated all dependencies#18rios0rios0 wants to merge 1 commit into
1.26.1 and updated all dependencies#18Conversation
|
There was a problem hiding this comment.
Pull request overview
This PR aims to keep the project’s build/tooling current by bumping the Go version and recording the change in the changelog.
Changes:
- Updated the
go.modGo version directive to1.26.1. - Added an
[Unreleased]changelog entry documenting the Go/dependency update.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| go.mod | Bumps the Go version directive. |
| CHANGELOG.md | Documents the Go/dependency update under [Unreleased]. |
| module github.com/rios0rios0/testkit | ||
|
|
||
| go 1.26.0 | ||
| go 1.26.1 |
There was a problem hiding this comment.
go directive in go.mod generally represents the language version and (when using a patch form) is expected to be x.y.0, not x.y.1. Using go 1.26.1 is likely to be rejected by the go tool. Consider keeping the go directive at 1.26.0 (or 1.26) and, if you need to require a specific toolchain patch, add a toolchain go1.26.1 directive instead.
| 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.
This changelog entry says dependencies were updated, but this module currently has no require entries (and no go.sum in the repo), so it looks like only the Go/toolchain version changed. Suggest adjusting the wording to reflect the actual changes (or include the dependency/go.sum updates if they were intended).



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