Skip to content

Commit e6f17fa

Browse files
authored
Updates for v0.1.2 release (#171)
Signed-off-by: Andrew Seigner <[email protected]>
1 parent 8a1dc1a commit e6f17fa

File tree

13 files changed

+47
-28
lines changed

13 files changed

+47
-28
lines changed

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# William and Oliver should approve all changelog entries.
2+
CHANGES.md @wmorgan @olix0r

CHANGES.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## v0.1.2
2+
3+
Conduit 0.1.2 continues down the path of increasing usability and improving debugging and
4+
introspection of the service mesh itself.
5+
6+
* Conduit CLI
7+
* New `conduit check` command reports on the health of your Conduit installation.
8+
* New `conduit completion` command provides shell completion.
9+
* Dashboard
10+
* Added per-path metrics to the deployment detail pages.
11+
* Added animations to line graphs indicating server activity.
12+
* More descriptive CSS variable names. (Thanks @natemurthy!)
13+
* A variety of other minor UI bugfixes and improvements
14+
* Fixes
15+
* Fixed Prometheus config when using RBAC. (Thanks @FaKod!)
16+
* Fixed `tap` failure when pods do not belong to a deployment. (Thanks @FaKod!)
17+
118
## v0.1.1
219

320
Conduit 0.1.1 is focused on making it easier to get started with Conduit.

Cargo.lock

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "codegen"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = ["Carl Lerche <[email protected]>"]
55

66
[dependencies]

controller/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package controller
22

3-
const Version = "v0.1.1"
3+
const Version = "v0.1.2"

futures-mpsc-lossy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "futures-mpsc-lossy"
3-
version = "0.0.1"
3+
version = "0.1.2"
44
authors = ["Oliver Gould <[email protected]>"]
55
publish = false
66

proxy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "conduit-proxy"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = ["Oliver Gould <[email protected]>"]
55
publish = false
66

proxy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
## Build the rust proxy into a binary.
66
#
77
# If the RELEASE arg is set and non-empty, a release artifact is built.
8-
FROM gcr.io/runconduit/proxy-deps:98588d89 as build
8+
FROM gcr.io/runconduit/proxy-deps:f9e8c67f as build
99
WORKDIR /usr/src/conduit
1010
# Ranked roughly from least to most likely to change. Cargo.lock is the least likely
1111
# because it is supposed to be cached in the deps base image.

tower-grpc-build/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tower-grpc-build"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = ["Carl Lerche <[email protected]>"]
55

66
[dependencies]

tower-grpc-examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tower-grpc-examples"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = ["Carl Lerche <[email protected]>"]
55

66
[[bin]]

0 commit comments

Comments
 (0)