Vladimir Glafirov
1fb2ef5ec2
feat: enable GitLab Agent Platform with workflow model discovery ( #18014 )
2026-03-20 12:55:22 -05:00
Brendan Allan
6c7d5eaaab
patch solid to try fix memo undefined under transition bug ( #18338 )
2026-03-20 14:58:35 +10:00
Dax
ed094f2196
refactor: abstract SQLite behind runtime-conditional #db import ( #18316 )
2026-03-19 21:15:35 -04:00
Luke Parker
fcedc54b02
fix: restore recent test regressions and upgrade effect beta ( #18158 )
2026-03-19 09:54:01 +10:00
Kit Langton
c325ac5b5b
feat(filesystem): add AppFileSystem service, migrate Snapshot ( #18138 )
2026-03-18 19:52:43 -04:00
Luke Parker
2728950929
fix(windows): use cross-spawn for shim-backed commands ( #18010 )
2026-03-19 08:49:16 +10:00
David Hill
ab8bd02a48
Revert "tui: clean up search button in session header by removing magnifying glass icon and excess padding"
...
This reverts commit b22cc3eac2 .
2026-03-18 13:52:36 +00:00
David Hill
b22cc3eac2
tui: clean up search button in session header by removing magnifying glass icon and excess padding
2026-03-18 13:49:58 +00:00
Kit Langton
cbb2e9b0f4
refactor(skill): effectify SkillService as scoped service ( #17849 )
2026-03-16 23:51:07 +00:00
opencode
575159f225
release: v1.2.27
2026-03-16 02:33:48 +00:00
opencode
bc499c9aeb
release: v1.2.26
2026-03-13 16:32:53 +00:00
opencode
2a959e034e
release: v1.2.25
2026-03-12 23:34:11 +00:00
Luke Parker
8c6ddb0afe
feat(windows): add arm64 release targets for cli and desktop ( #16696 )
2026-03-12 00:25:09 +00:00
Dax
f56e6684a6
core: make account login upgrades safe while adding multi-account workspace auth ( #15487 )
...
Co-authored-by: Kit Langton <kit.langton@gmail.com >
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-10 12:53:47 -04:00
Sebastian
6b1f91ce2d
upgrade opentui to v0.1.87 ( #16772 )
2026-03-10 11:03:05 +01:00
Dax Raad
a10faea93a
refactor: replace bun semver with npm semver package
2026-03-09 15:29:55 -04:00
opencode
bc8f94a5ff
release: v1.2.24
2026-03-09 16:09:34 +00:00
opencode
d13753e7c4
release: v1.2.23
2026-03-09 13:50:43 +00:00
opencode
7d837b6f1c
release: v1.2.22
2026-03-08 22:34:59 +00:00
opencode
29f129acbb
release: v1.2.21
2026-03-07 18:00:39 +00:00
Dax Raad
9f34ffff3d
chore(storage): update drizzle and channel db handling
2026-03-06 10:58:19 -05:00
opencode
2401e05023
release: v1.2.20
2026-03-06 07:29:34 +00:00
Dax
46beeaa585
refactor(opencode): replace Bun.which with npm which ( #15012 )
2026-03-06 05:18:29 +00:00
opencode
899d08f869
release: v1.2.19
2026-03-06 04:29:10 +00:00
opencode
e772e618d8
release: v1.2.18
2026-03-05 19:01:03 +00:00
opencode
11a575ece6
release: v1.2.17
2026-03-04 14:58:04 +00:00
opencode
57d918be0c
release: v1.2.16
2026-03-03 21:08:35 +00:00
Sebastian
8ade9e4e30
Upgrade opentui to v0.1.86 and activate markdown renderable by default ( #14974 )
2026-03-03 15:42:27 +00:00
opencode
941f7ef778
release: v1.2.15
2026-02-26 08:22:25 +00:00
opencode
d9b15a31f6
release: v1.2.14
2026-02-25 14:55:56 +00:00
opencode
4fe679b14c
release: v1.2.13
2026-02-25 07:27:19 +00:00
opencode
033836ddf3
release: v1.2.11
2026-02-24 23:29:02 +00:00
Sebastian
39e489821c
upgrade opentui to v0.1.81 ( #14605 )
2026-02-23 00:51:50 +01:00
opencode
0127fc2c70
release: v1.2.10
2026-02-20 11:18:40 +00:00
opencode
f9c5d42112
release: v1.2.9
2026-02-20 01:45:20 +00:00
opencode
2e50664b8b
release: v1.2.8
2026-02-19 22:38:42 +00:00
opencode
a19e0061be
release: v1.2.7
2026-02-19 21:27:31 +00:00
Dax
f03cb504c4
refactor: migrate from Bun.Glob to npm glob package ( #14317 )
2026-02-19 13:40:09 -05:00
Aiden Cline
aff1465aab
core: bump ai sdk packages for google, google vertex, anthropic, bedrock, and provider utils ( #14318 )
2026-02-19 12:35:51 -06:00
Dax Raad
350a377fca
Revert "refactor: migrate from Bun.Glob to npm glob package"
...
This reverts commit 25917459f0 .
2026-02-19 12:48:43 -05:00
Dax Raad
25917459f0
refactor: migrate from Bun.Glob to npm glob package
...
Replace Bun.Glob usage with a new Glob utility wrapper around the npm 'glob' package.
This moves us off Bun-specific APIs toward standard Node.js compatible solutions.
Changes:
- Add new src/util/glob.ts utility module with scan(), scanSync(), and match()
- Default include option is 'file' (only returns files, not directories)
- Add symlink option (default: false) to control symlink following
- Migrate all 12 files using Bun.Glob to use the new Glob utility
- Add comprehensive tests for the glob utility
Breaking changes:
- Removed support for include: 'dir' option (use include: 'all' and filter manually)
- symlink now defaults to false (was true in most Bun.Glob usages)
Files migrated:
- src/util/log.ts
- src/util/filesystem.ts
- src/tool/truncation.ts
- src/session/instruction.ts
- src/storage/json-migration.ts
- src/storage/storage.ts
- src/project/project.ts
- src/cli/cmd/tui/context/theme.tsx
- src/config/config.ts
- src/tool/registry.ts
- src/skill/skill.ts
- src/file/ignore.ts
2026-02-19 12:34:18 -05:00
Brendan Allan
da0d89f301
desktop: fetch defaultServer at top level
2026-02-19 21:14:59 +08:00
Aiden Cline
3359967745
tweak: bake in the aws and google auth pkgs ( #14241 )
2026-02-19 00:31:33 -06:00
Vladimir Glafirov
53a332b7cc
feat: GitLab Duo - bump gitlab-ai-provider to 3.6.0 (adds Sonnet 4.6) ( #14115 )
2026-02-18 10:58:38 -06:00
Dax
fec69d7af8
feat: Add centralized filesystem module for Bun.file migration ( #14117 )
2026-02-18 15:30:52 +00:00
opencode
4fde8a4bd1
release: v1.2.6
2026-02-16 19:57:09 +00:00
Vladimir Glafirov
2bd6db464f
fix: bump GitLab provider and auth plugin for mid-session token refresh ( #13850 )
2026-02-16 10:01:17 -06:00
opencode
bdf6ef7a03
release: v1.2.5
2026-02-15 18:49:52 +00:00
opencode
77efa92bfe
release: v1.2.4
2026-02-15 01:55:33 +00:00
opencode
69d967dc74
release: v1.2.3
2026-02-15 00:34:56 +00:00