2021-07-13 06:29:43 +02:00
+++
title = "CoreDNS-1.8.5 Release"
description = "CoreDNS-1.8.5 Release Notes."
tags = ["Release", "1.8.5", "Notes"]
release = "1.8.5"
2021-09-09 12:18:30 -07:00
date = 2021-09-10T07:00:00+00:00
2021-07-13 06:29:43 +02:00
author = "coredns"
+++
2021-07-15 14:07:02 +02:00
This is a rather big release, we now [share plugins among zones in the same server
block](https://github.com/coredns/coredns/pull/4593), which should save memory. Various bug fixes in
a bunch of plugins and not one, but two new plugins. A *geoip* plugin that can report **where** the
query came from and a *header* plugin that allows you to fiddle with (some of) the header bits in a
DNS message.
2021-07-13 06:29:43 +02:00
2021-09-10 11:18:14 -04:00
With this release, the `coredns_cache_misses_total` metric is deprecated. It will be removed in a later release.
Users should migrate their promQL to use `coredns_cache_requests_total - coredns_cache_hits_total` .
2021-07-13 06:29:43 +02:00
## Brought to You By
2021-09-09 12:18:30 -07:00
Ben Kochie,
2021-07-13 06:29:43 +02:00
Chris O'Haver,
2021-07-15 14:07:02 +02:00
Jeongwook Park,
2021-09-09 12:18:30 -07:00
Kohei Yoshida,
2021-07-13 06:29:43 +02:00
Licht Takeuchi,
2021-09-09 12:18:30 -07:00
Manuel Rüger,
Mat Lowery,
2021-07-13 06:29:43 +02:00
mfleader,
Miek Gieben,
Ondřej Benkovský,
2021-07-15 14:07:02 +02:00
Qasim Sarfraz,
2021-09-09 12:18:30 -07:00
rouzier,
Sascha Grunert,
2021-07-13 06:29:43 +02:00
Sven Nebel,
Yong Tang.
## Noteworthy Changes
* core: Add -p for port flag (https://github.com/coredns/coredns/pull/4653)
* core: Fix IPv6 case for CIDR format reverse zones (https://github.com/coredns/coredns/pull/4652)
* core: Share plugins among zones in the same server block (https://github.com/coredns/coredns/pull/4593)
2021-09-09 12:18:30 -07:00
* core: Upstream lookups are done with original EDNS options (https://github.com/coredns/coredns/pull/4826)
2021-07-13 06:29:43 +02:00
* plugin/cache: Unset AD flag when DO is not set for cache miss (https://github.com/coredns/coredns/pull/4736)
2021-09-09 12:18:30 -07:00
* plugin/cache: Update cache metrics and add a total cache request counter to follow Prometheus convention (https://github.com/coredns/coredns/pull/4781)
2021-07-15 14:07:02 +02:00
* plugin/errors: Add configurable log level to errors plugin (https://github.com/coredns/coredns/pull/4718)
2021-09-09 12:18:30 -07:00
* plugin/file: fix wildcard CNAME answer (https://github.com/coredns/coredns/pull/4828)
* plugin/forward: Add proxy address as tag (https://github.com/coredns/coredns/pull/4757)
2021-07-15 14:07:02 +02:00
* plugin/geoip: Create geoip plugin (https://github.com/coredns/coredns/pull/4688)
* plugin/header: Introduce header plugin (https://github.com/coredns/coredns/pull/4752)
2021-07-13 06:29:43 +02:00
* plugin/kubernetes: Add NS+hosts records to xfr response. Add coredns service to test data. (https://github.com/coredns/coredns/pull/4696)
2021-09-09 12:18:30 -07:00
* plugin/kubernetes: Improve namespace usage (https://github.com/coredns/coredns/pull/4767)
* plugins/kubernetes: Switch to klog/v2 (https://github.com/coredns/coredns/pull/4778)
* plugin/kubernetes: Only answer transfer requests for authoritative zones (https://github.com/coredns/coredns/pull/4802)
2021-07-15 14:07:02 +02:00
* plugin/log: Do not log NOERROR in log plugin when response is not available (https://github.com/coredns/coredns/pull/4725)
* plugin/log: Fix closing of codeblock (https://github.com/coredns/coredns/pull/4680)
* plugin/metrics: When no response is written, fallback to status of next plugin in prometheus plugin (https://github.com/coredns/coredns/pull/4727)
2021-07-13 06:29:43 +02:00
* plugin/route53: Fix Route53 plugin cannot retrieve ECS Task Role (https://github.com/coredns/coredns/pull/4669)
2021-07-15 14:07:02 +02:00
* plugin/secondary: Doc updates (https://github.com/coredns/coredns/pull/4686)
2021-07-13 06:29:43 +02:00
* plugin/secondary: Retry initial transfer until successful (https://github.com/coredns/coredns/pull/4663)
2021-07-15 14:07:02 +02:00
* plugin/trace: Fix rcode tag in case of no response (https://github.com/coredns/coredns/pull/4742)
* plugin/trace: Publish trace id as metadata from trace plugin (https://github.com/coredns/coredns/pull/4749)
* plugin/trace: Trace plugin can mark traces with error tag (https://github.com/coredns/coredns/pull/4720)