Update HERMES_VERSION to v2026.9.7 - #48
Merged
Merged
Conversation
|
| Filename | Overview |
|---|---|
| docker/Dockerfile | Updates the Hermes pin to an unavailable upstream ref, causing the installer download and Docker build to fail. |
Prompt To Fix All With AI
### Issue 1
docker/Dockerfile:1
**Unavailable Hermes ref breaks builds**
When the image uses the default `HERMES_VERSION`, the new `v2026.9.7` ref makes the fail-fast installer request return 404, causing the Docker build to fail.
```suggestion
ARG HERMES_VERSION="v2026.8.31"
```
---
For each issue above, determine whether it is valid and should be fixed. If so, fix it directly.Reviews (1): Last reviewed commit: "Update HERMES_VERSION to v2026.9.7" | Re-trigger Greptile
| @@ -1,4 +1,4 @@ | |||
| ARG HERMES_VERSION="v2026.8.31" | |||
| ARG HERMES_VERSION="v2026.9.7" | |||
There was a problem hiding this comment.
Unavailable Hermes ref breaks builds
When the image uses the default HERMES_VERSION, the new v2026.9.7 ref makes the fail-fast installer request return 404, causing the Docker build to fail.
Suggested change
| ARG HERMES_VERSION="v2026.9.7" | |
| ARG HERMES_VERSION="v2026.8.31" |
Prompt To Fix With AI
This is a comment left during a code review.
Path: docker/Dockerfile
Line: 1
Comment:
**Unavailable Hermes ref breaks builds**
When the image uses the default `HERMES_VERSION`, the new `v2026.9.7` ref makes the fail-fast installer request return 404, causing the Docker build to fail.
```suggestion
ARG HERMES_VERSION="v2026.8.31"
```
---
For each issue above, determine whether it is valid and should be fixed. If so, fix it directly.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates the version of Hermes used in the Docker image to ensure the application uses the latest features and bug fixes.
HERMES_VERSIONbuild argument in thedocker/Dockerfilefromv2026.8.31tov2026.9.7to use the latest Hermes release.