Skip to content

Commit db5a9b8

Browse files
committed
Merge origin/main: include release metadata updates
2 parents 079f833 + 3776580 commit db5a9b8

4 files changed

Lines changed: 25 additions & 17 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@
77

88
- (none)
99

10+
## [0.4.17] - 2025-11-17
11+
12+
- TUI: add an uncommitted preset to /review so you can diff local edits without staging. (dda8d2d)
13+
- Resume: make the session picker async and add /push for fast handoff into publish. (a3be266)
14+
- Resume: ignore system status snippets so regenerated plans stay focused on user messages. (e08999a)
15+
- Resume: count user input coming from rollouts to keep token and action history accurate. (479edd1)
16+
- Resume: unify the session catalog across views so saved sessions appear consistently. (0b26627)
17+
1018
## [0.4.16] - 2025-11-15
1119

1220
- TUI: enable desktop notifications by default so background job updates surface immediately. (799364de)

code-rs/default.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ rec {
1616
"ratatui-0.29.0" = "sha256-HBvT5c8GsiCxMffNjJGLmHnvG77A6cqEL+1ARurBXho=";
1717
};
1818
};
19+
1920
doCheck = false;
20-
# The workspace depends on crates from ../codex-rs, so provide the
21-
# entire monorepo as the source and point the builder back to this
22-
# package's directory.
21+
# Cargo.toml depends on ../codex-rs, so point the builder at the
22+
# repository root and then cd back into this package's directory.
2323
src = ../.;
2424
sourceRoot = "${baseNameOf ../.}/${baseNameOf ./.}";
2525
nativeBuildInputs = with pkgs; [

codex-cli/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@just-every/code",
3-
"version": "0.4.16",
3+
"version": "0.4.17",
44
"license": "Apache-2.0",
55
"description": "Lightweight coding agent that runs in your terminal - fork of OpenAI Codex",
66
"bin": {
@@ -35,10 +35,10 @@
3535
"prettier": "^3.3.3"
3636
},
3737
"optionalDependencies": {
38-
"@just-every/code-darwin-arm64": "0.4.16",
39-
"@just-every/code-darwin-x64": "0.4.16",
40-
"@just-every/code-linux-x64-musl": "0.4.16",
41-
"@just-every/code-linux-arm64-musl": "0.4.16",
42-
"@just-every/code-win32-x64": "0.4.16"
38+
"@just-every/code-darwin-arm64": "0.4.17",
39+
"@just-every/code-darwin-x64": "0.4.17",
40+
"@just-every/code-linux-x64-musl": "0.4.17",
41+
"@just-every/code-linux-arm64-musl": "0.4.17",
42+
"@just-every/code-win32-x64": "0.4.17"
4343
}
4444
}

release-notes/RELEASE_NOTES.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
## @just-every/code v0.4.16
2-
3-
Fresh polish for unified exec, onboarding, and automation integrations.
1+
## @just-every/code v0.4.17
2+
Code v0.4.17 focuses on faster resume workflows and more flexible reviews.
43

54
### Changes
6-
- TUI: enable desktop notifications by default so background job updates surface immediately.
7-
- TUI: refine unified exec with clearer UI and explicit workdir overrides for commands launched from history.
8-
- Onboarding: handle "Don't Trust" directory selections gracefully so setup cannot get stuck in untrusted folders.
9-
- SDK: add CLI environment override and AbortSignal support for better automation integrations.
5+
- TUI: add an uncommitted preset to /review so you can diff local edits without staging.
6+
- Resume: make the session picker async and add /push for fast handoff into publish.
7+
- Resume: ignore system status snippets so regenerated plans stay focused on user messages.
8+
- Resume: count user input coming from rollouts to keep token and action history accurate.
9+
- Resume: unify the session catalog across views so saved sessions appear consistently.
1010

1111
### Install
1212
```
1313
npm install -g @just-every/code@latest
1414
code
1515
```
1616

17-
Compare: https://github.com/just-every/code/compare/v0.4.15...v0.4.16
17+
Compare: https://github.com/just-every/code/compare/v0.4.16...v0.4.17

0 commit comments

Comments
 (0)