Skip to content

Commit 366183d

Browse files
committed
chore(release): prepare 6.4.0
1 parent 6603185 commit 366183d

16 files changed

Lines changed: 61 additions & 59 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [6.4.0] - 2026-07-22
11+
12+
### Added
13+
14+
- Added structured per-engine search failure metadata and provider-agnostic
15+
fallback within the original request timeout budget.
16+
17+
### Changed
18+
19+
- Restored DuckDuckGo and Wikipedia as the built-in web-search defaults and
20+
made AnySearch an explicit request or ACL selection.
21+
- Preserved bounded fallback notices and failure metadata when web search runs
22+
inside a batch workflow.
23+
1024
## [6.3.1] - 2026-07-22
1125

1226
### Fixed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "a3s-code-core"
3-
version = "6.3.1"
3+
version = "6.4.0"
44
edition = "2021"
55
authors = ["A3S Lab Team"]
66
license = "MIT"

sdk/node/Cargo.lock

Lines changed: 3 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/node/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "a3s-code-node"
3-
version = "6.3.1"
3+
version = "6.4.0"
44
edition = "2021"
55
authors = ["A3S Lab Team"]
66
license = "MIT"
@@ -11,7 +11,7 @@ description = "A3S Code Node.js bindings - Native addon via napi-rs"
1111
crate-type = ["cdylib"]
1212

1313
[dependencies]
14-
a3s-code-core = { version = "6.3.1", path = "../../core", features = ["s3", "serve"] }
14+
a3s-code-core = { version = "6.4.0", path = "../../core", features = ["s3", "serve"] }
1515
napi = { version = "2", features = ["async", "napi6", "serde-json"] }
1616
napi-derive = "2"
1717
tokio = { version = "1.35", features = ["full"] }

sdk/node/examples/package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/node/package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/node/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@a3s-lab/code",
3-
"version": "6.3.1",
3+
"version": "6.4.0",
44
"description": "A3S Code - Native Node.js bindings for the coding-agent runtime",
55
"main": "index.js",
66
"types": "index.d.ts",
@@ -44,11 +44,11 @@
4444
"test:helpers": "node test-helpers.mjs"
4545
},
4646
"optionalDependencies": {
47-
"@a3s-lab/code-darwin-arm64": "6.3.1",
48-
"@a3s-lab/code-linux-x64-gnu": "6.3.1",
49-
"@a3s-lab/code-linux-x64-musl": "6.3.1",
50-
"@a3s-lab/code-linux-arm64-gnu": "6.3.1",
51-
"@a3s-lab/code-linux-arm64-musl": "6.3.1",
52-
"@a3s-lab/code-win32-x64-msvc": "6.3.1"
47+
"@a3s-lab/code-darwin-arm64": "6.4.0",
48+
"@a3s-lab/code-linux-x64-gnu": "6.4.0",
49+
"@a3s-lab/code-linux-x64-musl": "6.4.0",
50+
"@a3s-lab/code-linux-arm64-gnu": "6.4.0",
51+
"@a3s-lab/code-linux-arm64-musl": "6.4.0",
52+
"@a3s-lab/code-win32-x64-msvc": "6.4.0"
5353
}
5454
}

sdk/python-bootstrap/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ pip install \
4444
'https://github.com/A3S-Lab/Code/releases/download/v<VERSION>/a3s_code-<VERSION>-cp312-cp312-manylinux_2_28_x86_64.whl'
4545
```
4646

47-
Replace `<VERSION>` with the release to install, for example `6.3.1`.
47+
Replace `<VERSION>` with the release to install, for example `6.4.0`.

sdk/python-bootstrap/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "a3s-code"
77
# Keep in sync with crates/code core release. The bootstrap loader fetches
88
# the matching native wheel from `https://github.com/A3S-Lab/Code/releases/tag/v<version>`
99
# at import time.
10-
version = "6.3.1"
10+
version = "6.4.0"
1111
description = "A3S Code Python SDK — pure-Python bootstrap that fetches the native wheel from GitHub Releases"
1212
readme = "README.md"
1313
license = {text = "MIT"}

0 commit comments

Comments
 (0)