Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR upgrades the github.com/livetemplate/livetemplate dependency from v0.7.7 to v0.8.0. Version 0.8.0 introduces fingerprint-based structure comparison for diff operations, simplifying the implementation by removing approximately 1000 lines of complex path-tracking code while maintaining backward compatibility.
Changes:
- Upgrade livetemplate dependency from v0.7.7 to v0.8.0
- Add pgregory.net/rapid v1.2.0 as an indirect dependency (property-based testing library)
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| go.mod | Updates the livetemplate dependency version from v0.7.7 to v0.8.0 |
| go.sum | Updates checksums for livetemplate v0.8.0 and adds checksums for the new indirect dependency pgregory.net/rapid v1.2.0 |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Update github.com/livetemplate/livetemplate from v0.7.7 to v0.8.0. v0.8.0 introduces fingerprint-based structure comparison for diff operations, replacing the complex ClientStructureRegistry. This is a non-breaking change for downstream users. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Use e2etest.GetFreePort() instead of hardcoded port 8096 - Use e2etest.StartTestServer() for consistent server startup - Prevents test failures from stale server processes Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
a90f491 to
ad93495
Compare
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.
Summary
Upgrade
github.com/livetemplate/livetemplatefrom v0.7.7 to v0.8.0.What's in v0.8.0
The v0.8.0 release introduces fingerprint-based structure comparison for diff operations, replacing the complex ClientStructureRegistry. Key improvements:
Test plan
go build ./...passes🤖 Generated with Claude Code