diff --git a/.github/workflows/opencode-review.yml b/.github/workflows/opencode-review.yml deleted file mode 100644 index 562255f..0000000 --- a/.github/workflows/opencode-review.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: opencode-review - -on: - workflow_dispatch: - pull_request: - branches: [master] - -jobs: - review: - runs-on: ubuntu-latest - permissions: - id-token: write - contents: write - pull-requests: write - issues: read - if: github.actor != 'dependabot[bot]' # Skip dependabot - steps: - - uses: actions/checkout@v7 - with: - persist-credentials: true - token: ${{ secrets.GITHUB_TOKEN }} - - - name: Configure git identity - run: | - git config --global user.email "github-actions[bot]@users.noreply.github.com" - git config --global user.name "github-actions[bot]" - - - uses: anomalyco/opencode/github@latest - env: - OPENCODE_API_KEY: ${{ secrets.OPENCODE_API_KEY }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - model: opencode-go/deepseek-v4-flash - use_github_token: true - prompt: | - Review this pull request: - - Check for code quality issues - - Look for potential bugs - - Suggest improvements diff --git a/CHANGELOG.md b/CHANGELOG.md index 30bdabe..a69c5a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,74 +1,35 @@ -# Update unreleased — 2026-07-23 +# Changelog -## Bug Fixes - -- Update .opencode/{agents,skills,commands}/ paths to canonical .agents/ -- Bump question tool max options from 4 to 10 -- Remove dead ternary in question tool (both branches same value) - - -# Update unreleased — 2026-07-22 - -## Bug Fixes - -- Update .opencode/{agents,skills,commands}/ paths to canonical .agents/ -- Bump question tool max options from 4 to 10 -- Remove dead ternary in question tool (both branches same value) - - -# Update unreleased — 2026-07-22 - -## Bug Fixes - -- Resolve Windows git() issues and fix changelog test assertions - -## Under the Hood - -- Convert all test files to node:test describe/it pattern -- Rewrite session/compact tests to import from source -- Rewrite log/gap tests to import from source -- Rewrite validation tests to import from source -- Export internal functions for test access - - -# Update unreleased — 2026-07-22 - -## Bug Fixes - -- Resolve Windows git() issues and fix changelog test assertions -- Bump question tool max options from 4 to 10 - -## Under the Hood - -- Convert all test files to node:test describe/it pattern -- Rewrite session/compact tests to import from source -- Rewrite log/gap tests to import from source -- Rewrite validation tests to import from source -- Export internal functions for test access +All notable changes to this project will be documented in this file. +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -# Update unreleased — 2026-07-22 +--- -## Bug Fixes +## [v0.11.0] — 2026-07-22 -- Resolve Windows git() issues and fix changelog test assertions -- Bump question tool max options from 4 to 10 +### Added -## Under the Hood +- **SFML 3 engine reference docs** — 9 files: VERSION, breaking changes, deprecated APIs, + current best practices, and module guides (graphics, audio, network, window, system) +- **Raylib engine reference docs** — 10 files: VERSION, breaking changes, deprecated APIs, + current best practices, and module guides (core, rlgl, raudio, raymath, raygui, platforms) +- Brings SFML 3 and Raylib to full parity with existing Godot, Unity, and Unreal engine + reference sets (#78, #85) -- Convert all test files to node:test describe/it pattern -- Rewrite session/compact tests to import from source -- Rewrite log/gap tests to import from source -- Rewrite validation tests to import from source -- Export internal functions for test access +### Fixed +- **Pi compatibility**: Fixed module installer `--pi` flag, Pi config awareness in drift + detector, and cross-harness install path resolution (#84) +- **Plugin code quality**: Removed dead code, fixed cross-platform notification paths, + improved E2E test coverage (#83) -All notable changes to this project will be documented in this file. +### Dependencies -The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), -and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +- Bumped `actions/setup-node` from 6 to 7 (#75) +- Bumped `actions/checkout` from 6 to 7 (#74) ---- ## [v0.10.2] — 2026-06-22