Merge branch 'main' into v0.4.0

This commit is contained in:
Michael Quigley 2023-03-22 13:13:16 -04:00
commit 229769c942
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62
2 changed files with 4 additions and 0 deletions

View File

@ -8,6 +8,8 @@ CHANGE: The underlying database store now utilizes a `deleted` flag on all table
CHANGE: `zrok config set apiEndpoint` now validates that the new API endpoint correctly starts with `http://` or `https://` (https://github.com/openziti/zrok/issues/258) CHANGE: `zrok config set apiEndpoint` now validates that the new API endpoint correctly starts with `http://` or `https://` (https://github.com/openziti/zrok/issues/258)
CHANGE: Additional linting to support homebrew (https://github.com/openziti/zrok/issues/264)
# v0.3.4 # v0.3.4
CHANGE: `zrok test endpoint` incorporates `--ziti` mode (and related flags) to allow direct endpoint listening on a Ziti service CHANGE: `zrok test endpoint` incorporates `--ziti` mode (and related flags) to allow direct endpoint listening on a Ziti service

View File

@ -17,12 +17,14 @@ const Visualizer = (props) => {
console.log("resetting selection", props.selection); console.log("resetting selection", props.selection);
props.setSelection(props.defaultSelection); props.setSelection(props.defaultSelection);
} }
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [props.overview]); }, [props.overview]);
markSelected(networkGraph, props.selection); markSelected(networkGraph, props.selection);
useEffect(() => { useEffect(() => {
markSelected(networkGraph, props.selection); markSelected(networkGraph, props.selection);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [props.selection]); }, [props.selection]);
// fgRef to access force graph controls from this component // fgRef to access force graph controls from this component