Skip to content

Release v0.5.4 - #41

Merged
lchoquel merged 4 commits into
mainfrom
release/v0.5.4
Sep 25, 2026
Merged

lchoquel merged 4 commits into
mainfrom
release/v0.5.4

Conversation

@lchoquel

@lchoquel lchoquel commented Sep 25, 2026 •

Copy link
Copy Markdown
Member

Release v0.5.4

Bumps version from 0.5.3 to 0.5.4. Promotes dev → main.

Changelog

Changed

  • The web app template runs on @pipelex/sdk 0.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-app at a path another repository ignores: a destination inside another repository's work tree that the repository ignores, such as a tmp/ its .gitignore lists or anywhere under a home directory kept as a repository that ignores *, now gets a repository of its own on main with the pristine commit, and the git: 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 with git init and 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 the git: 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.3 to 0.5.4 and promotes dev → main. The web app template now runs on @pipelex/sdk 0.25.1, which drops the Gateway key calls the template never made, so projects behave unchanged.

Bug Fixes

  • create-method-app now 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.
  • A directory the enclosing repository doesn't ignore still gets no repository even when every file in it is ignored, and the git: line now says the project is under no version control.
  • Symlinked destinations are judged by the repository their target is in, not the one the link sits in.

Written for commit daf3ca1. Summary will update on new commits.

Review in cubic

lchoquel and others added 4 commits September 25, 2026 01:56
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
@lchoquel
lchoquel merged commit 0b100b7 into main Sep 25, 2026
3 checks passed
@lchoquel
lchoquel deleted the release/v0.5.4 branch September 25, 2026 01:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant