-
Notifications
You must be signed in to change notification settings - Fork 0
Holochain 0.6.1 upgrade — sweettest tests, UI dep modernization #56
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
Open
ThetaSinner
wants to merge
11
commits into
main
Choose a base branch
from
update-hc-0.6.1
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
ecbbf0e
feat: Update to Holochain 0.6.1-rc.8
ThetaSinner b23eafa
ci: Bump action versions and align Nix install URL
ThetaSinner 6df1ab3
fixup! feat: Update to Holochain 0.6.1-rc.8
ThetaSinner 02501a3
build(flake): Migrate from crane.lib to crane.mkLib
ThetaSinner 237cdf3
build(flake): Update flake.lock
ThetaSinner bfb7c3b
chore(cargo): Bump non-Holochain dependencies
ThetaSinner 1d248b6
fix(cli): Resolve upstream dep conflicts and update test API for HC 0…
ThetaSinner 08d811f
test: Migrate tryorama integration tests to sweettest
ThetaSinner ccbbbf1
chore(types): Bump types crates to edition 2024
ThetaSinner 1535700
chore(ui): Modernize dependency stack and adopt Tailwind v4
ThetaSinner b475004
ci: Refresh test workflow for sweettest and dedup CLI matrix
ThetaSinner File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
Missing
authTokenforcachix/cachix-action@v17— release builds will not push to the binary cache.Compared to
.github/workflows/test.yaml(lines 26-29 in the relevant snippet) which passesauthToken: ${{ secrets.CACHIX_AUTH_TOKEN }}, this release job omits it. Without an auth token, cachix is read-only: derivations built during release won't be pushed toesl-checked, so subsequent CI/dev environments lose the caching benefit of the release build. If this is intentional (e.g., release should not write to cache), a brief comment would help; otherwise add the token.🔧 Proposed fix
- uses: cachix/cachix-action@v17 with: name: esl-checked extraPullNames: holochain-ci + authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}📝 Committable suggestion
🤖 Prompt for AI Agents