8000 Release notes for 1.7.0 by zaharidichev · Pull Request #2321 · linkerd/linkerd · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Release notes for 1.7.0 #2321

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 29, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,42 @@
## 1.7.0 2019-08-27
Linkerd 1.7.0 includes a number of memory leak fixes for Linkerd and its
underlying `grpc-runtime` module. This release includes improvements for
SNI-enabled TLS communication, support for streaming arbitrarily large HTTP
requests and responses in HTTP/1 and HTTP/2 as well an upgraded JDK for
improved Docker container support.

A special thank you to [Fantayeneh](https://github.com/fantayeneh) for their
awesome work on [#2315](https://github.com/linkerd/linkerd/pull/2315)

Full release notes:
* **Breaking Change**
* Removes `maxRequestKB` and `maxResponseKB` from Linkerd's configuration
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I might add a bit more context here about this change:

These parameters were primarily intended to limit the amount of memory Linkerd used when buffering requests. The streamAfterContentLengthKB parameter achieves this more efficiently by streaming large messages instead of buffering them.

options in favor of `streamAfterContentLengthKB`. These parameters were
primarily intended to limit the amount of memory Linkerd used when buffering
requests. The streamAfterContentLengthKB parameter achieves this more
efficiently by streaming large messages instead of buffering them.

* Consul
* Enables streaming in the HTTP client used in the `io.l5d.consul` namer
to allow for arbitrarily large responses from Consul
* Support for the inclusion of Consul response service and node metadata
in Namerd 'io.l5d.mesh and 'io.l5d.httpController' responses.
* Linkerd Configuration
* Introduces a router parameter called `maxCallDepth` that prevents unbounded
cyclic proxy request routing
* Adds support for limiting the maximum size of `l5d-err` header values by
using `maxErrResponseKB` in an HTTP router
* Fixes an issue were some `socketOptions` were being ignored when partially
configured
* TLS
* Fixes an issue where Linkerd can't connect to SNI servers that are addressed
via IPv4 and IPv6
* HTTP/2
* Fixes a number of direct and heap memory leaks in Linkerd's HTTP/2 module
* Fixes an issue causing users of `grpc-runtime` module to experience direct
memory leaks
* Updates Linkerd's JDK version for improved container support

## 1.6.4 2019-07-01
Linkerd 1.6.4 updates the finagle version to 19.5.1 and adds support for
configuring message response sizes from when using consul.
Expand Down
2 changes: 1 addition & 1 deletion project/Base.scala
< 4283 td id="diff-cd42ca8a79c883c870d2b3165df5577cf794d2ffdb1ba64cd3bd3278ee41889eR38" data-line-number="38" class="blob-num blob-num-context js-linkable-line-number js-blob-rnum">
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ object Base {
class Base extends Build {
import Base._

val headVersion = "1.6.4"
val headVersion = "1.7.0"
val openJdkVersion = "8u212"
val openJ9Version = "jdk8u212-b04_openj9-0.14.2"

Expand Down
0