From 860ea260ada7510fda03fe63ad049f4209a6a3d6 Mon Sep 17 00:00:00 2001 From: ainsley Date: Thu, 2 Apr 2020 16:40:54 -0500 Subject: [PATCH 1/2] updating What's New for release 2.1.6 --- whats_new.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/whats_new.md b/whats_new.md index 4ffd9a6..f94eb57 100644 --- a/whats_new.md +++ b/whats_new.md @@ -2,6 +2,28 @@ The NATS.io team is always working to bring you features to improve your NATS experience. Below you will find feature summaries for new implementations to NATS. Check back often for release highlights and updates. +## Server release v2.1.6 +### TLS Configuration for Account Resolver + +This release adds the ability to specify TLS configuration for the account resolver. +```code +resolver_tls { + cert_file: ... + key_file: ... + ca_file: ... +} +``` +### Additional Trace & Debug Verbosity Options + +`trace_verbose` and command line parameters `-VV` and `-DVV` added. See [NATS Logging Configuration](nats-server/configuration/logging) + +### Subscription Details in Monitoring Endpoints + +We've added the option to include subscription details in monitoring endpoints `/routez` and `/connz`. For instance `/connz?subs=detail` will now return not only the subjects of the subscription, but the queue name (if applicable) and some other details. + +* Release notes [2.1.6](https://github.com/nats-io/nats-server/releases/tag/v2.1.6) +* Full list of Changes [2.1.4...2.1.6](https://github.com/nats-io/nats-server/compare/v2.1.4...v2.1.6) + ## Server release v2.1.4 ### Log Rotation From f615303c28abd5e71ccc092bca9b812f0ffc9055 Mon Sep 17 00:00:00 2001 From: Ginger Collison Date: Thu, 2 Apr 2020 16:46:10 -0500 Subject: [PATCH 2/2] Update whats_new.md --- whats_new.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/whats_new.md b/whats_new.md index f94eb57..3334e8b 100644 --- a/whats_new.md +++ b/whats_new.md @@ -15,7 +15,7 @@ resolver_tls { ``` ### Additional Trace & Debug Verbosity Options -`trace_verbose` and command line parameters `-VV` and `-DVV` added. See [NATS Logging Configuration](nats-server/configuration/logging) +`trace_verbose` and command line parameters `-VV` and `-DVV` added. See [NATS Logging Configuration](nats-server/configuration/logging.md) ### Subscription Details in Monitoring Endpoints