mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-04-04 17:59:14 +00:00
* Optimize the React code for feeding the entries By building `EntryItem` only once and updating the `entries` state on meta query messages. * Upgrade `react-scrollable-feed-virtualized` version from `1.4.3` to `1.4.8` * Fix the `isSelected` state * Set the query text before deciding the background to prevent lags while typing * Upgrade Basenine version from `0.2.6` to `0.2.7` * Set the query background color only if the query is same after the HTTP request and use `useEffect` instead * Upgrade Basenine version from `0.2.7` to `0.2.8` * Use `CancelToken` of `axios` instead of trying to check the query state * Turn `updateQuery` function into a state hook * Update the macro for `http` * Do the `source.cancel()` call in `axios.CancelToken` * Reduce client-side logging
35 lines
1.2 KiB
Modula-2
35 lines
1.2 KiB
Modula-2
module mizuserver
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/antelman107/net-wait-go v0.0.0-20210623112055-cf684aebda7b
|
|
github.com/djherbis/atime v1.0.0
|
|
github.com/getkin/kin-openapi v0.76.0
|
|
github.com/gin-contrib/static v0.0.1
|
|
github.com/gin-gonic/gin v1.7.2
|
|
github.com/go-playground/locales v0.13.0
|
|
github.com/go-playground/universal-translator v0.17.0
|
|
github.com/go-playground/validator/v10 v10.5.0
|
|
github.com/google/martian v2.1.0+incompatible
|
|
github.com/gorilla/websocket v1.4.2
|
|
github.com/op/go-logging v0.0.0-20160315200505-970db520ece7
|
|
github.com/orcaman/concurrent-map v0.0.0-20210106121528-16402b402231
|
|
github.com/patrickmn/go-cache v2.1.0+incompatible
|
|
github.com/up9inc/basenine/client/go v0.0.0-20211114204315-4d028da5fda5
|
|
github.com/up9inc/mizu/shared v0.0.0
|
|
github.com/up9inc/mizu/tap v0.0.0
|
|
github.com/up9inc/mizu/tap/api v0.0.0
|
|
github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0
|
|
golang.org/x/text v0.3.5 // indirect
|
|
k8s.io/api v0.21.2
|
|
k8s.io/apimachinery v0.21.2
|
|
k8s.io/client-go v0.21.2
|
|
)
|
|
|
|
replace github.com/up9inc/mizu/shared v0.0.0 => ../shared
|
|
|
|
replace github.com/up9inc/mizu/tap v0.0.0 => ../tap
|
|
|
|
replace github.com/up9inc/mizu/tap/api v0.0.0 => ../tap/api
|