feat: Update Glitchtip to version 6.1.0#751
Open
andrew-tinekov wants to merge 2 commits intoDokploy:canaryfrom
Open
feat: Update Glitchtip to version 6.1.0#751andrew-tinekov wants to merge 2 commits intoDokploy:canaryfrom
andrew-tinekov wants to merge 2 commits intoDokploy:canaryfrom
Conversation
built with Refined Cloudflare Pages Action⚡ Cloudflare Pages Deployment
|
Author
|
About Validate and Process Meta.json – not related to my changes: |
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.
What is this PR about?
Update Glitchtip to version 6.1.0
Checklist
Before submitting this PR, please make sure that:
Screenshots or Videos
Greptile Summary
This PR updates the Glitchtip template from v4.0 to 6.1.0, replacing Redis with Valkey, upgrading PostgreSQL from 16 to 18, switching from
portstoexpose(correct per conventions), and updating worker/migrate startup commands to match the new release's script layout.Key changes:
glitchtip/glitchtip:v4.0→glitchtip/glitchtip:6.1.0across all three servicesredisreplaced withvalkey/valkey:9;VALKEY_URLenv var addedGLITCHTIP_DOMAINnow properly constructed withhttps://prefix and configurableDEFAULT_FROM_EMAILvia${email}helper./bin/run-worker.sh; migrate command updated to./bin/run-migrate.shversion: "3.8"correctly added to the compose fileportscorrectly replaced withexposeIssues found:
pg-data:/var/lib/postgresql/datatopg-data:/var/lib/postgresql. While this works for fresh deployments, it would cause any existing deployment being upgraded to lose access to its data, since PostgreSQL'sPGDATAstill resolves to/var/lib/postgresql/data(a subdirectory of the new mount) rather than the root of the previously populated volume.meta.jsonlists the version asv6.1.0while the Docker image tag is6.1.0— these should match exactly per the project's AGENTS.md guide.Confidence Score: 3/5
/var/lib/postgresqlvs/var/lib/postgresql/data) could silently wipe existing data for upgrading users, which is a meaningful reliability concern. The meta.json version prefix inconsistency is minor but straightforward to fix.Reviews (1): Last reviewed commit: "feat(glitchtip): update to version 6.1.0" | Re-trigger Greptile
(3/5) Reply to the agent's comments like "Can you suggest a fix for this @greptileai?" or ask follow-up questions!
Context used: