Release v0.5.4 - #41
Merged
Merged
Conversation
The initializer read any destination inside another repository's work tree as part of that repository, so a project created under a path the enclosing repository ignores got no repository and was under no version control at all. It now asks git whether the enclosing repository ignores the destination, read as the directory it will be, and gives such a project a repository of its own with the pristine commit, while a directory that stays visible keeps the no-nested-repository outcome and says so when every file in it is ignored. Closes L-260924-258487 🤖 Generated with [Claude Code](https://claude.com/claude-code) https://claude.ai/code/session_014jwcxdPLFmuWiwMg7PKWsH <!-- This is an auto-generated description by cubic. --> --- ## Summary by cubic Fixes the initializer so a project created at a path another repository ignores gets a repository of its own instead of no version control at all. **Behavior** - `readGit` now asks git whether the enclosing repository ignores the destination, read as the directory it will be (a missing destination is made briefly for the question). - An ignored destination gets a repository on `main` with the pristine commit, and the git line names the repository that ignores it; the identity probe runs at the destination there since the enclosing repository's own configuration does not reach the new one. - A directory the enclosing repository does not ignore still gets no repository even when every file in it is ignored; the git line now says the project is under no version control, and only when nothing under it is tracked. Closes L-260924-258487. <sup>Written for commit 5a19c1b. Summary will update on new commits.</sup> <a href="https://cubic.dev/pr/Pipelex/pipelex-method-apps/pull/38?utm_source=github" target="_blank" rel="noopener noreferrer" data-no-image-dialog="true"><picture><source media="(prefers-color-scheme: dark)" srcset="https://www.cubic.dev/buttons/review-in-cubic-dark.svg"><source media="(prefers-color-scheme: light)" srcset="https://www.cubic.dev/buttons/review-in-cubic-light.svg"><img alt="Review in cubic" src="https://www.cubic.dev/buttons/review-in-cubic-dark.svg"></picture></a> <!-- End of auto-generated description by cubic. --> --------- Co-authored-by: Claude Opus 5.5 <noreply@anthropic.com>
The initializer asked the repository a symlinked destination sits in whether it ignores it, while every other reading followed the link into the repository its target is in, so the first one's ignores could plant a repository in the second one's tracked tree. It now asks git about the destination where it physically is, and a test pairs a link ignored where it sits with a target that is not ignored. Closes L-260924-c4e3df 🤖 Generated with [Claude Code](https://claude.com/claude-code) https://claude.ai/code/session_014jwcxdPLFmuWiwMg7PKWsH <!-- This is an auto-generated description by cubic. --> --- ## Summary by cubic Fixes ignore detection for symlinked destinations during initialization. The initializer asked the repository a symlinked destination sits in whether it ignores it, while every other reading followed the link into the repository its target is in, letting the first one's ignores plant a repository in the second one's tracked tree. It now reads the link's target and asks the repository it points into, and a test pairs a link ignored where it sits with a target that is not. Closes L-260924-c4e3df. <sup>Written for commit 6a4ceb4. Summary will update on new commits.</sup> <a href="https://cubic.dev/pr/Pipelex/pipelex-method-apps/pull/39?utm_source=github" target="_blank" rel="noopener noreferrer" data-no-image-dialog="true"><picture><source media="(prefers-color-scheme: dark)" srcset="https://www.cubic.dev/buttons/review-in-cubic-dark.svg"><source media="(prefers-color-scheme: light)" srcset="https://www.cubic.dev/buttons/review-in-cubic-light.svg"><img alt="Review in cubic" src="https://www.cubic.dev/buttons/review-in-cubic-dark.svg"></picture></a> <!-- End of auto-generated description by cubic. --> --------- Co-authored-by: Claude Opus 5.5 <noreply@anthropic.com>
Moves the web app template from \`@pipelex/sdk\` ^0.24.0 to ^0.25.1 and re-locks it, with the root changelog entry. The one breaking entry in between, 0.25.0's removal of the Pipelex Gateway key calls, reaches neither the template nor any action the scaffold writes, and the hook fix and the documentation fix in the same range reach nothing here either. \`make all\` passed, and one \`/rev\` pass at profile 1 was clean. Closes L-260925-837eac 🤖 Generated with [Claude Code](https://claude.com/claude-code) https://claude.ai/code/session_014jwcxdPLFmuWiwMg7PKWsH <!-- This is an auto-generated description by cubic. --> --- ## Summary by cubic Bumps the webapp template's `@pipelex/sdk` dependency to 0.25.1 and re-locks it. The 0.25.0 breaking change (removing the Pipelex Gateway key calls) doesn't affect the template or anything the scaffold writes, so projects behave unchanged. `make all` passes. <sup>Written for commit 43393a1. Summary will update on new commits.</sup> <a href="https://cubic.dev/pr/Pipelex/pipelex-method-apps/pull/40?utm_source=github" target="_blank" rel="noopener noreferrer" data-no-image-dialog="true"><picture><source media="(prefers-color-scheme: dark)" srcset="https://www.cubic.dev/buttons/review-in-cubic-dark.svg"><source media="(prefers-color-scheme: light)" srcset="https://www.cubic.dev/buttons/review-in-cubic-light.svg"><img alt="Review in cubic" src="https://www.cubic.dev/buttons/review-in-cubic-dark.svg"></picture></a> <!-- End of auto-generated description by cubic. --> Co-authored-by: Claude Opus 5.5 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_014jwcxdPLFmuWiwMg7PKWsH
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.
Release v0.5.4
Bumps version from
0.5.3to0.5.4. Promotesdev→main.Changelog
Changed
@pipelex/sdk0.25.1: the SDK no longer offers the Pipelex Gateway key calls (createGatewayApiKey,getGatewayApiKey), which neither the template nor any action the scaffold writes ever made, so nothing changes for a project. The app keeps calling the hosted API with a Pipelex API key, which this release leaves untouched.Fixed
create-method-appat a path another repository ignores: a destination inside another repository's work tree that the repository ignores, such as atmp/its.gitignorelists or anywhere under a home directory kept as a repository that ignores*, now gets a repository of its own onmainwith the pristine commit, and thegit:line names the repository that ignores it. The initializer used to report such a project as new files in the enclosing repository and make no repository, which left it under no version control at all; a project made that way earlier can be given one withgit initand a first commit. A directory the repository does not ignore still gets no repository even when every file in it is ignored, as under*followed by!*/, and thegit:line now says the project is under no version control instead of calling it new files of that repository. A destination that is a symlink is judged by the repository its target is in, not the one the link sits in.Closes L-260925-d3ff14
🤖 Generated with Claude Code
https://claude.ai/code/session_014jwcxdPLFmuWiwMg7PKWsH
Summary by cubic
Bumps version from
0.5.3to0.5.4and promotesdev→main. The web app template now runs on@pipelex/sdk0.25.1, which drops the Gateway key calls the template never made, so projects behave unchanged.Bug Fixes
create-method-appnow gives a project its own repository when the destination sits at a path the enclosing repository ignores, instead of leaving it under no version control.git:line now says the project is under no version control.Written for commit daf3ca1. Summary will update on new commits.