Skip to content

Commit 01312f9

Browse files
authored
Prepare for v0.2.0 release (#248)
* prepare for v0.2.0 release Signed-off-by: Dennis Adjei-Baah <[email protected]>
1 parent 3856b38 commit 01312f9

File tree

11 files changed

+57
-29
lines changed

11 files changed

+57
-29
lines changed

CHANGES.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
## v0.2.0
2+
3+
This is a big milestone! With this release, Conduit adds support for HTTP/1.x and raw TCP traffic,
4+
meaning it should "just work" for most applications that are running on Kubernetes without
5+
additional configuration.
6+
7+
* Data plane
8+
* Conduit now transparently proxies all TCP traffic, including HTTP/1.x and HTTP/2.
9+
(See caveats below.)
10+
* Command-line interface
11+
* Improved error handling for the `tap` command
12+
* `tap` also now works with HTTP/1.x traffic
13+
* Dashboard
14+
* Minor UI appearance tweaks
15+
* Deployments now searchable from the dashboard sidebar
16+
17+
Caveats:
18+
* Conduit will automatically work for most protocols. However, applications that use WebSockets,
19+
HTTP tunneling/proxying, or protocols such as MySQL and SMTP, will require some additional
20+
configuration. See the [documentation](https://conduit.io/adding-your-service/#protocol-support)
21+
for details.
22+
* Conduit doesn't yet support external DNS lookups. These will be addressed in an upcoming release.
23+
* There are known issues with Conduit's telemetry pipeline that prevent it from scaling beyond a
24+
few nodes. These will be addressed in an upcoming release.
25+
* Conduit is still in alpha! Please help us by
26+
[filing issues and contributing pull requests](https://github.com/runconduit/conduit/issues/new).
27+
28+
129
## v0.1.3
230

331
* This is a minor bugfix for some web dashboard UI elements that were not rendering correctly.
@@ -30,7 +58,7 @@ Conduit 0.1.1 is focused on making it easier to get started with Conduit.
3058
* The `conduit tap` command output has been reformatted to be line-oriented, making it easier to
3159
parse with common UNIX command line utilities.
3260
* Conduit now supports routing of non-fully qualified domain names.
33-
* The web UI has improved support for large deployments and deployments that dont have any
61+
* The web UI has improved support for large deployments and deployments that don't have any
3462
inbound/outbound traffic.
3563

3664
## v0.1.0

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.3"
3+
version = "0.2.0"
44
authors = ["Carl Lerche <[email protected]>"]
55

66
[dependencies]

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.1.3"
3+
version = "0.2.0"
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.3"
3+
version = "0.2.0"
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:6c797c62 as build
8+
FROM gcr.io/runconduit/proxy-deps:7280cf64 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "tower-grpc-build"
3-
version = "0.1.3"
3+
version = "0.2.0"
44
authors = ["Carl Lerche <[email protected]>"]
55

66
[dependencies]
7-
codegen = { version = "0.1", path = "../codegen" }
7+
codegen = { version = "0.2", path = "../codegen" }
88
prost-build = "0.2"

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.3"
3+
version = "0.2.0"
44
authors = ["Carl Lerche <[email protected]>"]
55

66
[[bin]]

tower-grpc/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"
3-
version = "0.1.3"
3+
version = "0.2.0"
44
authors = ["Sean McArthur <[email protected]>"]
55

66
[features]

tower-h2/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-h2"
3-
version = "0.1.3"
3+
version = "0.2.0"
44
authors = ["Oliver Gould <[email protected]>"]
55
description = "Exploring tower + h2"
66
publish = false

0 commit comments

Comments
 (0)