|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to this project will be documented in this file. |
| 4 | + |
| 5 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
| 6 | +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 7 | + |
| 8 | +--- |
| 9 | + |
| 10 | +## [Unreleased] |
| 11 | + |
| 12 | +--- |
| 13 | + |
| 14 | +## [1.0.0] — 2026-03-20 |
| 15 | + |
| 16 | +### Added |
| 17 | + |
| 18 | +- Interactive CLI via `inquirer` — prompts for slug, name, namespace, prefix, author, WP/PHP versions, and feature flags |
| 19 | +- Non-interactive mode with full CLI flag support (`--namespace`, `--prefix`, `--no-claude`, etc.) |
| 20 | +- PHP plugin scaffold: entry file, `Plugin`, `Activator`, `Deactivator` classes (PSR-4, PHP 8.1+) |
| 21 | +- Admin settings page via WordPress Settings API (`src/admin/class-settings.php`) |
| 22 | +- Frontend asset enqueuer with `wp_localize_script` for REST nonce (`src/frontend/class-assets.php`) |
| 23 | +- Full REST API CRUD controller extending `WP_REST_Controller` (`src/api/class-rest-controller.php`) |
| 24 | +- Custom DB table with `dbDelta()` migration, charset/collation, and indexes |
| 25 | +- PHPUnit + WP_Mock test scaffold (`tests/bootstrap.php`, `tests/unit/Test_Settings.php`) |
| 26 | +- `composer.json` with PHPCS (WordPress Coding Standards) and PHPUnit |
| 27 | +- `package.json` with `@wordpress/scripts` for Webpack asset pipeline |
| 28 | +- `phpunit.xml` with unit and integration test suites |
| 29 | +- `.gitignore` tuned for WordPress plugin development |
| 30 | +- Optional WP-CLI command scaffold (`src/cli/class-cli-command.php`) |
| 31 | +- Optional Gutenberg block scaffold (`src/blocks/example-block/`) |
| 32 | +- Claude Code memory system: |
| 33 | + - `CLAUDE.md` — project memory with stack, architecture, gotchas, workflow rules |
| 34 | + - `.claude/settings.json` — allow/deny permissions + PostToolUse lint hook |
| 35 | + - `.claude/skills/code-review/SKILL.md` — WP security checklist skill |
| 36 | + - `.claude/skills/testing/SKILL.md` — PHPUnit + WP_Mock patterns skill |
| 37 | + - `.claude/commands/deploy.md` — `/deploy` slash command |
| 38 | + - `.claude/agents/security-reviewer.md` — pre-release security audit agent |
| 39 | +- All template files use `{{TOKEN}}` placeholders — fully resolved at generation time |
| 40 | +- `ora` spinner and `chalk` colour output for a polished CLI experience |
| 41 | +- GitHub Actions CI workflow (`ci.yml`) — tests on Node 18, 20, 22 |
| 42 | +- GitHub issue templates (bug report, feature request) |
| 43 | +- GitHub pull request template |
| 44 | +- MIT License |
| 45 | +- README with quickstart, flag reference, architecture notes, Claude Code docs |
| 46 | +- CONTRIBUTING guide with token reference and PR process |
| 47 | + |
| 48 | +[Unreleased]: https://github.com/siddik-web/create-wp-plugin/compare/v1.0.0...HEAD |
| 49 | +[1.0.0]: https://github.com/siddik-web/create-wp-plugin/releases/tag/v1.0.0 |
0 commit comments