-
Notifications
You must be signed in to change notification settings - Fork 0
chore: bump quarry to v1.14.0 in marketplace #197
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -132,16 +132,16 @@ | |
| }, | ||
| { | ||
| "name": "quarry", | ||
| "source": { | ||
| "source": "github", | ||
| "repo": "punt-labs/quarry", | ||
| "ref": "v1.13.0" | ||
| "ref": "v1.14.0" | ||
| }, | ||
| "description": "Local semantic search with automagic knowledge capture: /find, /ingest, /explain, /source, /quarry", | ||
| "version": "1.13.0", | ||
| "version": "1.14.0", | ||
| "author": { | ||
| "name": "Punt Labs", | ||
| "email": "hello@punt-labs.com" | ||
|
Check failure on line 144 in .claude-plugin/marketplace.json
|
||
|
Comment on lines
135
to
144
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔴 This PR bumps quarry from v1.13.0 to v1.14.0 but is missing a required CHANGELOG entry. Per CLAUDE.md: 'If a PR changes user-facing behavior and the diff does not include a CHANGELOG entry, the PR is not ready to merge.' Add a line like '- quarry bumped to v1.14.0' under the [Unreleased] Changed section in CHANGELOG.md before merging. Extended reasoning...What the bug is: CLAUDE.md contains an explicit merge gate: 'If a PR changes user-facing behavior and the diff does not include a CHANGELOG entry, the PR is not ready to merge.' This PR bumps quarry from v1.13.0 to v1.14.0 in The specific code path: The only file changed in this PR is Why existing code doesn't prevent it: There is no automated CI check enforcing CHANGELOG entries — this is a documented manual convention. CLAUDE.md says entries must be written in the PR branch before merge, not retroactively. The impact: Users who install quarry from the marketplace catalog will receive v1.14.0 instead of v1.13.0 with no documented explanation of what changed. This violates the project's transparency standard and CLAUDE.md explicitly classifies this as a merge blocker. How to fix it: Add a single line to CHANGELOG.md under the This follows the exact pattern already established for other plugins: 'beadle bumped to v0.7.0', 'ethos bumped to v0.2.0'. Step-by-step proof:
|
||
| }, | ||
| "keywords": [ | ||
| "search", | ||
|
|
||
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.
This is a user-facing marketplace catalog change (plugin version bump). Per CLAUDE.md, PRs that change user-facing behavior must include a CHANGELOG.md entry under
## [Unreleased]; please add an entry describing the quarry bump before merge.