chore: remove payload-plugin-content-releases from main#9
Merged
Conversation
The plugin's full development continues in PR #7 (feature/releases-plugin) and is intentionally not yet ready to live on main. This commit removes all references from main so the tree stays clean while the PR is parked open. What is removed: - packages/payload-plugin-content-releases/ — entire package directory (source, tests, README, build/lockfile config). The work is preserved on the feature/releases-plugin branch / PR #7. - apps/dev/package.json — workspace dependency entry. - apps/dev/src/payload.config.ts — import + plugin entry in plugins array. - apps/dev/src/app/(payload)/admin/importMap.js — regenerated via `bun run generate:importmap` (auto-removes orphan plugin entries). - apps/dev/src/payload-types.ts — regenerated via `bun run generate:types` (auto-removes Release / ReleaseItem types). - package.json — restore the simple `multi-semantic-release --ignore-private-packages` script (the `--ignore-packages` workaround is no longer needed once the package itself is gone). - bun.lock — refreshed via `bun install`. What stays untouched: - apps/dev/dev.db — local SQLite state. Orphan releases / release-items tables are harmless and only affect each developer's own machine. - docs/plans/2026-03-26-content-releases-*.md — historical design documents are kept as project history. Verification: - `bun run build` → all 4 remaining published packages build cleanly (apps/dev's own next-build still has unrelated pre-existing libsql / @eslint/eslintrc resolution issues that exist on main today). - `bun run generate:types` and `bun run generate:importmap` both run successfully with no plugin references in the output. Co-Authored-By: Claude Opus 4.7 (1M context) <[email protected]>
|
🎉 This PR is included in version 0.10.6 🎉 The release is available on npm package (@latest dist-tag) Your semantic-release bot 📦🚀 |
|
🎉 This PR is included in version 1.6.2 🎉 The release is available on npm package (@latest dist-tag) Your semantic-release bot 📦🚀 |
|
🎉 This PR is included in version 1.2.0 🎉 The release is available on npm package (@latest dist-tag) Your semantic-release bot 📦🚀 |
|
🎉 This PR is included in version 2.4.1 🎉 The release is available on npm package (@latest dist-tag) Your semantic-release bot 📦🚀 |
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
Removes the in-development `@focus-reactive/payload-plugin-content-releases` package from main while parking the full implementation in PR #7 (`feature/releases-plugin`).
The plugin work is not lost — every commit, file, test, and the screenshots from the QA pass are preserved on `feature/releases-plugin`. Re-introducing the plugin is a matter of merging that PR (or rebasing it onto the new main).
Removed from `main`
Intentionally not touched
Verification
How to bring the plugin back later
Either:
🤖 Generated with Claude Code