Ruben Fiszel and rubenfiszel
f9cfeb0dba
chore(main): release 1.728.0 ( #9613 )
...
* chore(main): release 1.728.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-06-16 17:55:39 +02:00
Ruben Fiszel and rubenfiszel
6b62b1d832
chore(main): release 1.727.0 ( #9605 )
...
* chore(main): release 1.727.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-06-16 12:35:50 +02:00
Ruben Fiszel and rubenfiszel
1cf402a9be
chore(main): release 1.726.1 ( #9603 )
...
* chore(main): release 1.726.1
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-06-16 00:58:38 +02:00
Ruben Fiszel and rubenfiszel
abe442bf42
chore(main): release 1.726.0 ( #9598 )
...
* chore(main): release 1.726.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-06-15 20:22:16 +02:00
Ruben Fiszel and rubenfiszel
8643e68891
chore(main): release 1.725.1 ( #9589 )
...
* chore(main): release 1.725.1
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-06-15 19:26:21 +02:00
Ruben Fiszel and rubenfiszel
a4c03405d6
chore(main): release 1.725.0 ( #9575 )
...
* chore(main): release 1.725.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-06-15 16:31:58 +02:00
Ruben Fiszel and rubenfiszel
598ce40f56
chore(main): release 1.724.0 ( #9556 )
...
* chore(main): release 1.724.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-06-15 08:47:36 +02:00
Ruben Fiszel and rubenfiszel
61ad1b4c99
chore(main): release 1.723.0 ( #9544 )
...
* chore(main): release 1.723.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-06-12 00:28:50 +02:00
Ruben Fiszel and rubenfiszel
8fae99fe6a
chore(main): release 1.722.0 ( #9493 )
...
* chore(main): release 1.722.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-06-11 10:50:13 +00:00
Ruben Fiszel and rubenfiszel
66c0334e70
chore(main): release 1.721.0 ( #9480 )
...
* chore(main): release 1.721.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-06-09 08:14:02 +00:00
Ruben Fiszel and rubenfiszel
a3740d571a
chore(main): release 1.720.0 ( #9464 )
...
* chore(main): release 1.720.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-06-08 18:02:10 +00:00
Ruben Fiszel and rubenfiszel
004339032e
chore(main): release 1.719.0 ( #9459 )
...
* chore(main): release 1.719.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-06-06 08:16:43 +00:00
Ruben Fiszel and rubenfiszel
3887bf67dc
chore(main): release 1.718.0 ( #9450 )
...
* chore(main): release 1.718.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-06-05 14:55:10 +00:00
Ruben Fiszel and rubenfiszel
24fa61d3c0
chore(main): release 1.717.1 ( #9444 )
...
* chore(main): release 1.717.1
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-06-04 10:20:28 +00:00
Ruben Fiszel and rubenfiszel
6b6c16e6bc
chore(main): release 1.717.0 ( #9439 )
...
* chore(main): release 1.717.0
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-06-04 07:37:15 +00:00
Ruben Fiszel and rubenfiszel
d537c82c4f
chore(main): release 1.716.0 ( #9430 )
...
* chore(main): release 1.716.0
* Apply automatic changes
* Apply automatic changes
---------
Co-authored-by: rubenfiszel <275584+rubenfiszel@users.noreply.github.com >
2026-06-03 14:01:02 +00:00
Ruben Fiszel and Claude Opus 4.8
e3acb7bbd9
break main.ts <-> utils.ts circular import causing TDZ crash ( #9436 )
...
`cli/src/utils/utils.ts` imported `VERSION` from `cli/src/main.ts`, while
`main.ts` transitively imports `utils.ts` (via `workspace.ts`). When a module
load order entered the graph through `workspace.ts -> utils.ts -> main.ts`,
`main.ts`'s top-level command tree ran while `workspace.ts` was still
mid-initialization, so the `workspace` binding was still in its temporal dead
zone at `.command("workspace", workspace)`:
ReferenceError: Cannot access 'workspace' before initialization
This surfaced as 56 failing CLI tests on Windows CI (the Windows runner's test
module-load order triggers the bad path; it reproduces on any platform via
`bun -e 'await import("./src/commands/workspace/workspace.ts")'`).
Move `VERSION` to `cli/src/core/constants.ts` (already the "minimal imports"
module), re-export it from `main.ts` for backwards compatibility, and have
`utils.ts` read it from `constants.ts` — eliminating the cycle. Release tooling
(`.github/change-versions*.sh`) is updated to rewrite the `VERSION` line in its
new location.
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com >
2026-06-03 13:48:26 +00:00
Ruben Fiszel
2e577fc847
add tests for CLI
2025-12-26 20:32:42 +00:00