Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ updates:
interval: weekly
day: monday
open-pull-requests-limit: 10
ignore:
# TypeScript 7.x is the native (Go) port: its npm package exposes only the
# experimental `typescript/unstable/*` API, not the classic compiler API.
# Next.js's build-time TS config validation and typescript-eslint (peer
# `typescript >=4.8.4 <6.1.0`) both require the classic API, so a 7.x bump
# breaks `next build` and `bun run lint`. Stay on 6.x until the toolchain
# ships native-port support. See #536 (and #499, the bump this blocks).
- dependency-name: "typescript"
update-types: ["version-update:semver-major"]

- package-ecosystem: github-actions
directory: /
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@
- Add all 12 supported-CLI logos to the README (added openclaw/factory/devin/antigravity/goose with light+dark variants), link each logo to its official site, and lay them out as 2 rows of 6. (#508)
- Document that **VS Code Copilot agent mode** (Preview) is already covered by the `copilot` / `claude` integrations: its agent hooks load from `.github/hooks/*.json`, `~/.copilot/hooks/*.json`, and `~/.claude/settings.json` — the exact paths failproofai already writes — so `--cli copilot` (or `--cli claude`) enforces in VS Code agent-mode sessions with no dedicated `vscode` id. (#508)

### Dependencies
- Pin `typescript` to the 6.x line by telling Dependabot to ignore `typescript` major-version bumps. TypeScript 7.0 is the native (Go) port, whose npm package drops the classic compiler API from its main entry (`exports["."]` → a version stub; the API moves to experimental `typescript/unstable/*`). Next.js's build-time TS config validation and `typescript-eslint` (peer `typescript >=4.8.4 <6.1.0`) both require the classic API, so the bump reddened every CI job (the `prepare`→`next build` step runs on every install). Revisit when Next.js and typescript-eslint support the native port; the incremental path is `@typescript/native-preview` (`tsgo`) as a separate type-check tool. (#536)

## 0.0.13 — 2026-07-14

### Release
Expand Down