Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/proxyproto-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,24 @@ jobs:
# time instead of at release time (see #884 / v0.47.0).
run: GOOS=windows GOARCH=amd64 go build -o /dev/null ./cmd/containarium/

- name: Set up Node
uses: actions/setup-node@v6
with:
node-version: '20'

- name: Web UI build guard
# `make build-release` runs a full `next build` (with TypeScript
# type-checking) that no PR-time job exercised — the same "only
# caught at release time" gap as the Windows guard above, just for
# the web UI. A prop destructure typo (#886) and two wrong-argument
# client calls broke v0.48.0's release build (webui compiled fine in
# `next dev`/lint, only `next build`'s full type-check caught it).
# Same fix shape as #884/#885: run the real release build at PR time.
working-directory: web-ui
run: |
npm ci
npm run build

- name: Run sentinel + app tests
# The skipped tests are pre-existing failures on unprivileged Linux
# runners (they pass on darwin where loopback aliases are no-ops).
Expand Down
1 change: 1 addition & 0 deletions web-ui/src/components/containers/ContainerListView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ function IconBtn({ title, onClick, className = '', children }: { title: string;
export default function ContainerListView({
containers, metricsMap, securityBadgesMap, onDelete, onStart, onStop, onTerminal,
onEditFirewall, onEditLabels, onResize, onManageCollaborators, onToggleAutoSleep,
onSecurityClick,
}: ContainerListViewProps) {
return (
<div className="overflow-x-auto rounded-xl border border-[var(--border-subtle)]">
Expand Down
4 changes: 2 additions & 2 deletions web-ui/src/components/security/PentestView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ export default function PentestView({ server }: PentestViewProps) {
client.getPentestFindingSummary(),
client.listPentestFindings({ ...baseParams, targetType: 'route', limit, offset: rowsPerPage === -1 ? 0 : domainPage * rowsPerPage }),
client.listPentestFindings({ ...baseParams, targetType: 'container', limit, offset: rowsPerPage === -1 ? 0 : containerPage * rowsPerPage }),
client.listPentestScanRuns(10),
client.listPentestScanRuns(undefined, 10),
client.getPentestConfig(),
]);
setSummary(summaryResp.summary); setDomainFindings(domainResp.findings); setDomainTotalCount(domainResp.totalCount);
Expand All @@ -250,7 +250,7 @@ export default function PentestView({ server }: PentestViewProps) {
setSnackMessage(result.message || `Scan started: ${result.scanRunId}`);
const pollInterval = setInterval(async () => {
try {
const runsResp = await client.listPentestScanRuns(5);
const runsResp = await client.listPentestScanRuns(undefined, 5);
setScanRuns(runsResp.scanRuns);
const latest = runsResp.scanRuns[0];
if (latest && latest.id === result.scanRunId && latest.status !== 'running') { clearInterval(pollInterval); setScanning(false); loadData(); }
Expand Down
Loading