-
Notifications
You must be signed in to change notification settings - Fork 20
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
Upgrade Go to 1.24 #114
Upgrade Go to 1.24 #114
Conversation
- Migrate Go starter template from version 1.22 to 1.24 - Rename `app/server.go` to `app/main.go` in multiple locations - Update Dockerfiles and configuration files to support Go 1.24 - Adjust README and explanation files to reflect new Go version and file structure
WalkthroughThe changes update various documentation and configuration files for Go-based HTTP server starter projects. The entry point has been changed from Changes
Sequence Diagram(s)Poem
Warning There were issues while running some tools. Please review the errors and either fix the tool’s configuration or disable the tool if it’s a critical failure. 🔧 golangci-lint (1.62.2)Error: can't load config: the Go language version (go1.23) used to build golangci-lint is lower than the targeted Go version (1.24.0) 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
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)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
🧹 Nitpick comments (3)
dockerfiles/go-1.24.Dockerfile (1)
12-13
: Typo in Comment.
Consider correcting “no loger compiled” to “no longer compiled” for improved clarity.dockerfiles/go-1.22.Dockerfile (2)
2-2
: Consider Deprecating Old Dockerfile.
Since the project upgrade is focused on Go 1.24, it may be beneficial to deprecate or remove thedockerfiles/go-1.22.Dockerfile
to avoid confusion.
12-13
: Typo in Comment.
The phrase “no loger compiled” should be corrected to “no longer compiled” for better readability.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (11)
compiled_starters/go/README.md
(2 hunks)compiled_starters/go/codecrafters.yml
(1 hunks)compiled_starters/go/go.mod
(1 hunks)dockerfiles/go-1.22.Dockerfile
(1 hunks)dockerfiles/go-1.24.Dockerfile
(1 hunks)solutions/go/01-at4/code/README.md
(2 hunks)solutions/go/01-at4/code/codecrafters.yml
(1 hunks)solutions/go/01-at4/code/go.mod
(1 hunks)solutions/go/01-at4/explanation.md
(1 hunks)starter_templates/go/code/go.mod
(1 hunks)starter_templates/go/config.yml
(1 hunks)
✅ Files skipped from review due to trivial changes (6)
- solutions/go/01-at4/code/go.mod
- solutions/go/01-at4/code/codecrafters.yml
- compiled_starters/go/go.mod
- starter_templates/go/code/go.mod
- compiled_starters/go/codecrafters.yml
- solutions/go/01-at4/explanation.md
🧰 Additional context used
🪛 Hadolint (2.12.0)
dockerfiles/go-1.24.Dockerfile
[error] 10-10: invalid flag: --exclude
(DL1000)
dockerfiles/go-1.22.Dockerfile
[error] 10-10: invalid flag: --exclude
(DL1000)
⏰ Context from checks skipped due to timeout of 90000ms (3)
- GitHub Check: test_course_definition / test (zig)
- GitHub Check: test_course_definition / test (kotlin)
- GitHub Check: test_course_definition / test (cpp)
🔇 Additional comments (6)
starter_templates/go/config.yml (1)
2-3
: Update Go Version and Main Entry File.
The configuration now correctly specifies that the project requires Go version 1.24 and directs users to editapp/main.go
as the entry point.solutions/go/01-at4/code/README.md (2)
19-20
: Update Entry Point Documentation.
The text now correctly indicates that the HTTP server’s entry point is atapp/main.go
, aligning with the project’s updated structure.
33-35
: Update Go Version Requirement.
The instructions now requirego (1.24)
, ensuring that users install the appropriate Go version.compiled_starters/go/README.md (2)
19-20
: Clarify the New Entry Point.
This update clearly states that the server implementation now starts atapp/main.go
, which improves clarity for users.
33-35
: Enforce Updated Go Version.
The documentation now correctly instructs users to havego (1.24)
installed locally, ensuring consistency with the configuration changes.dockerfiles/go-1.24.Dockerfile (1)
10-10
:⚠️ Potential issueInvalid COPY Flag Usage.
Hadolint flagged the use of--exclude
with the COPY command as invalid. Docker’s COPY command does not support the--exclude
flag. Instead, consider leveraging a.dockerignore
file to prevent copying.git
andREADME.md
, which will also help maintain cache efficiency.⛔ Skipped due to learnings
Learnt from: SughiY PR: codecrafters-io/build-your-own-http-server#112 File: dockerfiles/clojure-1.12.Dockerfile:10-10 Timestamp: 2025-02-17T19:29:27.993Z Learning: The `--exclude` flag in COPY commands is supported in Dockerfile syntax 1.7-labs and should be retained for optimizing layer caching, despite static analysis tools like Hadolint flagging it as an error.
🧰 Tools
🪛 Hadolint (2.12.0)
[error] 10-10: invalid flag: --exclude
(DL1000)
ENV CODECRAFTERS_DEPENDENCY_FILE_PATHS="go.mod,go.sum" | ||
|
||
WORKDIR /app | ||
|
||
COPY go.mod go.sum ./ | ||
# .git & README.md are unique per-repository. We ignore them on first copy to prevent cache misses | ||
COPY --exclude=.git --exclude=README.md . /app |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Invalid COPY Flag Usage.
The use of --exclude
in the COPY command is not supported. It's recommended to handle exclusions via a .dockerignore
file rather than inline flags.
🧰 Tools
🪛 Hadolint (2.12.0)
[error] 10-10: invalid flag: --exclude
(DL1000)
Summary by CodeRabbit
Documentation
Chores