@baize-ai/core 0.3.8 → 0.3.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,11 @@ All notable changes to baize-core will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.3.9] - 2026-08-27
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- web-console 渠道列表不再显示 A2A(商业项目,私有交付,永不列出/永不自动发布)
|
|
12
|
+
|
|
8
13
|
## [0.3.8] - 2026-08-26
|
|
9
14
|
|
|
10
15
|
### Fixed
|
package/package.json
CHANGED
|
@@ -286,6 +286,9 @@ export async function discoverChannels(deps = {}) {
|
|
|
286
286
|
// Custom entries extend/override; builtin schema survives unless replaced.
|
|
287
287
|
discovered.set(name, { ...base, ...c, name, custom: true });
|
|
288
288
|
}
|
|
289
|
+
// A2A is a commercial project delivered privately (never on npm/public repos)
|
|
290
|
+
// — it must not appear in any channel/component listing (D33).
|
|
291
|
+
discovered.delete('a2a');
|
|
289
292
|
|
|
290
293
|
const installed = readComponents();
|
|
291
294
|
return [...discovered.values()].map((c) => {
|