Compare commits
2 Commits
main
...
fix/pairin
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
aeed477be9 | ||
|
|
9c89ae0e98 |
@ -72,6 +72,7 @@ Status: beta.
|
|||||||
- **BREAKING:** Gateway auth mode "none" is removed; gateway now requires token/password (Tailscale Serve identity still allowed).
|
- **BREAKING:** Gateway auth mode "none" is removed; gateway now requires token/password (Tailscale Serve identity still allowed).
|
||||||
|
|
||||||
### Fixes
|
### Fixes
|
||||||
|
- CLI: initialize plugins before registering the pairing CLI to fix `pairing approve/list` commands. (#3272) Thanks @araa47.
|
||||||
- Discord: restore username directory lookup in target resolution. (#3131) Thanks @bonald.
|
- Discord: restore username directory lookup in target resolution. (#3131) Thanks @bonald.
|
||||||
- Agents: align MiniMax base URL test expectation with default provider config. (#3131) Thanks @bonald.
|
- Agents: align MiniMax base URL test expectation with default provider config. (#3131) Thanks @bonald.
|
||||||
- Agents: prevent retries on oversized image errors and surface size limits. (#2871) Thanks @Suksham-sharma.
|
- Agents: prevent retries on oversized image errors and surface size limits. (#2871) Thanks @Suksham-sharma.
|
||||||
|
|||||||
@ -168,6 +168,11 @@ const entries: SubCliEntry[] = [
|
|||||||
name: "pairing",
|
name: "pairing",
|
||||||
description: "Pairing helpers",
|
description: "Pairing helpers",
|
||||||
register: async (program) => {
|
register: async (program) => {
|
||||||
|
// Initialize plugins before registering pairing CLI.
|
||||||
|
// The pairing CLI calls listPairingChannels() at registration time,
|
||||||
|
// which requires the plugin registry to be populated with channel plugins.
|
||||||
|
const { registerPluginCliCommands } = await import("../../plugins/cli.js");
|
||||||
|
registerPluginCliCommands(program, await loadConfig());
|
||||||
const mod = await import("../pairing-cli.js");
|
const mod = await import("../pairing-cli.js");
|
||||||
mod.registerPairingCli(program);
|
mod.registerPairingCli(program);
|
||||||
},
|
},
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user