release(theta-suite): v1.35.1 - Submodule updates, Directory, Conf layout & Jump host target filter
Lint / Shellcheck setup.sh (push) Failing after 9s
Lint / Syntax check bootstrap.js (push) Successful in 14s

This commit is contained in:
2026-08-03 14:02:13 -04:00
parent 4d0b7f555e
commit e6b318e28e
4 changed files with 10 additions and 2 deletions
+6
View File
@@ -8,6 +8,12 @@ orchestration code; see each submodule's own `CHANGELOG.md`
[sso-manager-node](https://github.com/theta42/sso-manager-node/blob/master/CHANGELOG.md)) [sso-manager-node](https://github.com/theta42/sso-manager-node/blob/master/CHANGELOG.md))
for what changed inside the apps it composes. for what changed inside the apps it composes.
## [v1.35.1] - 2026-08-03
### Fixed
- **Directory & Configuration UI enhancements** — Live Cytoscape graph update on parent/child edge modifications, improved discovery reconciler host matching, updated configuration sidebar layout, relocated discovery and messaging plugins to Directory and Configuration pages.
- **Managed Host Target Filter** — Filter SSH connection targets in Jump Host to managed hosts only.
## [v1.35.0] - 2026-08-02 ## [v1.35.0] - 2026-08-02
### Added ### Added
+2
View File
@@ -423,10 +423,12 @@ async function seedDirectory(token, clientId, jumpClientId) {
const host = await ensure('host', HOST_FACTS.name || 'Stack host', hostSlug, site.id, { const host = await ensure('host', HOST_FACTS.name || 'Stack host', hostSlug, site.id, {
subType: 'linux', subType: 'linux',
ip: HOST_FACTS.ip, ip: HOST_FACTS.ip,
address: HOST_FACTS.ip,
macAddress: HOST_FACTS.mac, macAddress: HOST_FACTS.mac,
os: HOST_FACTS.os, os: HOST_FACTS.os,
kernel: HOST_FACTS.kernel, kernel: HOST_FACTS.kernel,
sshPort: 22, sshPort: 22,
managed: true,
}, ['stack-host']); }, ['stack-host']);
await ensure('service', 'SSO Manager', 'sso-manager', host.id, { await ensure('service', 'SSO Manager', 'sso-manager', host.id, {
address: `https://${SSO_HOST}`, address: `https://${SSO_HOST}`,