From daf6b3db06c165fc67ea35ce690a7c5acc82a262 Mon Sep 17 00:00:00 2001 From: Alex Haiut Date: Mon, 31 Jan 2022 17:20:36 +0200 Subject: [PATCH] unhide svcmap + CHANGELOG (#724) --- cli/config/configStruct.go | 2 +- docs/CHANGELOG.md | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/cli/config/configStruct.go b/cli/config/configStruct.go index 01cd5c537..9d299f209 100644 --- a/cli/config/configStruct.go +++ b/cli/config/configStruct.go @@ -38,7 +38,7 @@ type ConfigStruct struct { ConfigFilePath string `yaml:"config-path,omitempty" readonly:""` HeadlessMode bool `yaml:"headless" default:"false"` LogLevelStr string `yaml:"log-level,omitempty" default:"INFO" readonly:""` - ServiceMap bool `yaml:"service-map,omitempty" default:"false" readonly:""` + ServiceMap bool `yaml:"service-map" default:"false"` OAS bool `yaml:"oas,omitempty" default:"false" readonly:""` Elastic shared.ElasticConfig `yaml:"elastic"` } diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index f56ad4038..a866207cf 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -2,6 +2,35 @@ This document summarizes main and fixes changes published in stable (aka `main`) branch of this project. Ongoing work and development releases are under `develop` branch. +## 0.24.0 + +### main features +* ARM64 support -- Mizu is now available for ARM 64bit architecture + * Now you can run Mizu with `minikube` on your Apple M1 laptop or any other ARM-based hosts +* New command helps user verify Mizu deployment + * Run `mizu check` to verify Mizu was deployed successfully + * `mizu check` verifies version compatibility, resources and permissions required by Mizu +* EXPERIMENTAL: Service Map - graph of all service interactions + * Arrow direction show client to server connection + * Graph edge width reflects volume of traffic captured between the services + * to enable this experimental feature use `--set service-map=true` flag + +### improvements +* Mizu container images are now served from [Docker Hub](https://hub.docker.com/r/up9inc/mizu), as multi-architecture images (arm64, amd64) +* in Mizu GUI the filter query can now be applied by pressing CONTROL/COMMAND + ENTER +* try port-forwarding if http-proxy connection to Mizu API server is not available + +### notable bug fixes +* Fixed HTTP/1.0 presentation which was shown as HTTP/1.1 +* Fixed handling of long-living TCP connections, improves capturing gRPC and HTTP/2 traffic, and helps in service-mesh setups (istio, linkerd) + + +## 0.23.0 +### notable bug fixes +* fixed errors in Redis protocol parser (better handling of Array and Bulk String message types) + + + ## 0.22.0 ### main features