Thanks to visit codestin.com
Credit goes to github.com

Skip to content
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
2 changes: 1 addition & 1 deletion coremain/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package coremain

// Various CoreDNS constants.
const (
CoreVersion = "1.12.4"
CoreVersion = "1.13.0"
CoreName = "CoreDNS"
serverType = "dns"
)
37 changes: 37 additions & 0 deletions notes/coredns-1.13.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
+++
title = "CoreDNS-1.13.0 Release"
description = "CoreDNS-1.13.0 Release Notes."
tags = ["Release", "1.13.0", "Notes"]
release = "1.13.0"
date = "2025-10-05T00:00:00+00:00"
author = "coredns"
+++

This release introduces a new Nomad plugin for integrating CoreDNS with HashiCorp Nomad.
It also fixes major Corefile issues on infinite loops and import cycles, improves shutdown
handling, normalizes core panics, addresses data races in the file plugin, enforces gRPC size
limits, adjusts forward failover behavior, as well as prevents reload deadlocks.

## Brought to You By

Fitz_dev
Ilya Kulakov
Olli Janatuinen
Ville Vesilehto
Yong Tang

## Noteworthy Changes

* core: Export timeout values in dnsserver.Server (https://github.com/coredns/coredns/pull/7497)
* core: Fix Corefile infinite loop on unclosed braces (https://github.com/coredns/coredns/pull/7571)
* core: Fix Corefile related import cycle issue (https://github.com/coredns/coredns/pull/7567)
* core: Normalize panics on invalid origins (https://github.com/coredns/coredns/pull/7563)
* core: Rely on dns.Server.ShutdownContext to gracefully stop (https://github.com/coredns/coredns/pull/7517)
* plugin/dnstap: Add bounds for plugin args (https://github.com/coredns/coredns/pull/7557)
* plugin/file: Fix data race in tree Elem.Name (https://github.com/coredns/coredns/pull/7574)
* plugin/forward: No failover to next upstream when receiving SERVFAIL or REFUSED response codes (https://github.com/coredns/coredns/pull/7458)
* plugin/grpc: Enforce DNS message size limits (https://github.com/coredns/coredns/pull/7490)
* plugin/loop: Prevent panic when ListenHosts is empty (https://github.com/coredns/coredns/pull/7565)
* plugin/loop: Avoid panic on invalid server block (https://github.com/coredns/coredns/pull/7568)
* plugin/nomad: Add a Nomad plugin (https://github.com/coredns/coredns/pull/7467)
* plugin/reload: Prevent SIGTERM/reload deadlock (https://github.com/coredns/coredns/pull/7562)
Loading