]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Prep for rec-5.4.0-alpha1 16646/head
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Mon, 15 Dec 2025 14:41:54 +0000 (15:41 +0100)
committerOtto Moerbeek <otto.moerbeek@open-xchange.com>
Mon, 15 Dec 2025 15:25:32 +0000 (16:25 +0100)
Signed-off-by: Otto Moerbeek <otto.moerbeek@open-xchange.com>
.github/actions/spell-check/expect.txt
docs/secpoll.zone
pdns/recursordist/docs/changelog/5.4.rst [new file with mode: 0644]
pdns/recursordist/docs/changelog/index.rst
pdns/recursordist/docs/performance.rst
pdns/recursordist/docs/upgrade.rst

index deeab53d29653ae2adda4b78654f986d080ed89b..1a50a07cddd548f538b43f95676b7b75e0227ae5 100644 (file)
@@ -358,6 +358,7 @@ domainrelatedobject
 Donatas
 dontcare
 doq
+doqclient
 dotout
 downsides
 downstreams
@@ -385,6 +386,7 @@ ECCN
 ech
 econds
 ecswho
+ede
 editline
 ednaq
 edns
@@ -1013,6 +1015,7 @@ pdnssec
 pdnsutil
 Peeters
 Pels
+pemfile
 Penev
 Perroud
 Pfetzing
@@ -1202,6 +1205,7 @@ Rueckert
 rulesets
 runtimedir
 rustc
+rustls
 Ruthensteiner
 Rvd
 rwlock
@@ -1385,6 +1389,7 @@ Tarnell
 taskqueue
 tbhandler
 tcely
+tcounter
 tcounters
 tcpconnecttimeouts
 tcpdump
index 7b90c1d8b496739966801ee60ab061a864006ef4..1e180f3be3c19435fb569f9634c08db9cf18646c 100644 (file)
@@ -1,4 +1,4 @@
-@       86400   IN  SOA pdns-public-ns1.powerdns.com. peter\.van\.dijk.powerdns.com. 2025121101 10800 3600 604800 10800
+@       86400   IN  SOA pdns-public-ns1.powerdns.com. peter\.van\.dijk.powerdns.com. 2025121601 10800 3600 604800 10800
 @       3600    IN  NS  pdns-public-ns1.powerdns.com.
 @       3600    IN  NS  pdns-public-ns2.powerdns.com.
 
@@ -445,6 +445,7 @@ recursor-5.3.0.security-status                          60 IN TXT "3 Upgrade now
 recursor-5.3.1.security-status                          60 IN TXT "3 Upgrade now, see https://doc.powerdns.com/recursor/security-advisories/powerdns-advisory-2025-07.html"
 recursor-5.3.2.security-status                          60 IN TXT "3 Upgrade now, see https://doc.powerdns.com/recursor/security-advisories/powerdns-advisory-2025-08.html"
 recursor-5.3.3.security-status                          60 IN TXT "1 OK"
+recursor-5.4.0-alpha1.security-status                   60 IN TXT "1 Unsupported pre-release"
 
 ; Recursor Debian
 recursor-3.6.2-2.debian.security-status                 60 IN TXT "3 Upgrade now, see https://docs.powerdns.com/recursor/appendices/EOL.html"
diff --git a/pdns/recursordist/docs/changelog/5.4.rst b/pdns/recursordist/docs/changelog/5.4.rst
new file mode 100644 (file)
index 0000000..b6f920a
--- /dev/null
@@ -0,0 +1,558 @@
+Changelogs for 5.4.X
+====================
+
+Before upgrading, it is advised to read the :doc:`../upgrade`.
+
+.. changelog::
+  :version: 5.4.0-alpha1
+  :released: 16th of December 2025
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16627
+
+    Format rust IOErrors in a nicer way instead of using the default formatter.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16624
+    :tickets: 16606
+
+    Move away from rustls-pemfile including update of Rust dependencies.
+
+  .. change::
+    :tags: Bug Fixes
+    :pullreq: 16615
+
+    Do proper validation of TCP notifies.
+
+  .. change::
+    :tags: Bug Fixes
+    :pullreq: 16614
+
+    Ensure authRecords is empty, as handleHit checks that.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16587
+
+    Coverity 20251203.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16588
+
+    Kill a handful of clang++ warnings, mostly comparing unsigned to a signed constant.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16487
+
+    Switch trivial usage of boost::optional to std::optional.
+
+  .. change::
+    :tags: Bug Fixes
+    :pullreq: 16580
+    :tickets: 16572
+
+    Move g_logRPZChanges to proper spot.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16553
+
+    Always do ANY queries using TCP.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16570
+
+    Rewrite all unwrap calls in web.rs.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16565
+    :tickets: 16557
+
+    Run clippy when CARGO_USE_DEV and CARGO_USE_CLIPPY are set.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16546
+    :tickets: 16544
+
+    Build our Rust lib in dev profile when CARGO_USE_DEV is set.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16447
+
+    Remove first set of unused imports (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16496
+
+    Tidy tcounter related code.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16531
+
+    Spelling (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16530
+
+    Fix mixed implicit and explicit returns (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16526
+
+    Remove unused assignment (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16515
+
+    Remove redundant assignment (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16516
+
+    Remove unused assignment (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16523
+    :tickets: 16483
+
+    Update to coverallsapp github-action v2.3.7 (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16495
+
+    Remove horrible unused argument with default value (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16502
+
+    Use immediate class parent for super (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16509
+    :tickets: 16500
+
+    Fix `with open(...) as f:` (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16484
+
+    Improve reading of operator expression (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16500
+
+    Use `with open(...) as f:` to ensure file is always closed (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16501
+
+    Stop mixing implicit and explicit returns (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16494
+
+    Codeql unused loop iterator name (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16497
+
+    Fix coverity 1635199, 1643012, 1643013.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16498
+
+    Codeql use identifiers (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16490
+
+    Do not mutate default values (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16491
+
+    Only import doqclient once (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16493
+
+    Drop unused format argument (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16492
+
+    Use assertNotEqual (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16489
+
+    Do not catch `KeyboardInterrupt` or `SystemExit` (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16488
+
+    Do not call `sys.exit` with a void return (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16479
+
+    Convert metrics_table.py to a module (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16480
+
+    Switch TestRuleMetricsDefault to pass (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16481
+
+    Codeql imprecise assert (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16483
+
+    Drop useless lambda (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16478
+
+    Fix duplicate key in dict literal (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16476
+
+    Contrib/ProtobufLogger.py: Fix syntax error that crept in with 16458.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16077
+    :tickets: 14734
+
+    Prep, but do not actually move to C++20.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16362
+
+    Implement new feature to only generate OpenTelemetry Traces on certain conditions.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16427
+
+    rec_control get-parameter: print runtime settings in YAML format if YAML config is active.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16454
+
+    Chore: Clean up unused variables (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16457
+
+    Clean up unreachable code (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16459
+    :tickets: 15336
+
+    Fix try/except/as notation (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16460
+    :tickets: 16458
+
+    Avoid warning about mixed explicit/implicit returns (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16440
+    :tickets: 16091
+
+    Cleanup endianness determining code.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16458
+
+    Use map for getAppliedPolicyTypeAsString (Josh Soref).
+
+  .. change::
+    :tags: Bug Fixes
+    :pullreq: 16461
+    :tickets: 16455
+
+    fix parsing of webserver loglevel "none".
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16438
+
+    Remove options that were deprecated a long time ago.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16384
+
+    Remember if an answer was received over TCP in record cache.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16426
+
+    rec-lua-conf.* tidy.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16394
+
+    Don't use a vector of string for internal public suffix list.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16392
+
+    Make version number in rust lib confirm to Rust specifics.
+
+  .. change::
+    :tags: Bug Fixes
+    :pullreq: 16338
+
+    Tighten delegation accept.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16307
+
+    Explicit disabling/enabling of tls-gnutls for full and least configs and packages.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16259
+
+    Allow selecting a specific version of Lua with meson.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16308
+
+    Fix a few Coverity found issues, all low severity move optimizations.
+
+  .. change::
+    :tags: Bug Fixes
+    :pullreq: 16288
+
+    Prevent a potential race condition in cache cleaning.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16190
+
+    OT tracing: define more Spans with actual duration and add more attributes.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16232
+
+    Allow ability to validate certificates (and more) for outgoing DoT connections.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16220
+
+    Move test-protozero-trace.cc to toplevel and add it in the autotools build where it was missing.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16219
+
+    ProtobufLogger: print OpenTelemetry IDs in hex, add proper command arg parser.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16251
+
+    Silence rust warning.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16236
+
+    Docs: Indent list (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16237
+
+    Docs: Add trailing period (Josh Soref).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16227
+
+    Do not include dnsseckeeper.hh and ueberbackend.hh  in rec.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16204
+
+    We need a usable cargo for sdist so do not download (and install) rust but use package.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16200
+
+    Fix a few issues reported by coverity, all minor.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16194
+
+    Rework command dispatcher to be table based.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16188
+    :tickets: 16180
+
+    Fix release builds by updating the locked Rust lib version.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16175
+
+    Move help text to a table so it's easier to maintain.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16167
+
+    Update the Rust library version when generating a tarball.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16138
+
+    Add a few fields in protobuf logs: ede, edeText and OpenTelemetryTraceID.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16104
+
+    Better error message when reload-yaml fails.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 15412,16131
+
+    Implement DNS cookie support for outgoing requests.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16106
+    :tickets: 16101
+
+    Update cargos for rec and dnsdist.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16103
+
+    Warn on passwordless webserver startup and extends docs.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16098
+
+    Do not hash (or compare) OpenTelemetry Trace EDNS value for packetcache.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 16094
+
+    Some error paths do no create thread 0 so don't join it.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 15945
+
+    pubsuffix: tidy and use C++ strings.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 15943
+
+    Add tc flag in answer log (zhaojs).
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 15997
+
+    Remove SLOG macro usage in rec specific code.
+
+  .. change::
+    :tags: Bug Fixes
+    :pullreq: 15991
+    :tickets: 15972
+
+    Fix Boost system lib req: it is no longer a lib for boost >= 1.89.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 15949
+
+    Assorted tidy.
+
+  .. change::
+    :tags: Improvements
+    :pullreq: 15950
+
+    Reorder fields of record cache entry by size (saves 8 bytes per entry on 64-bit systems).
+
+  .. change::
+    :tags: Bug Fixes
+    :pullreq: 15915
+    :tickets: 15896
+
+    Rec and dnsdist: properly set up env vars for rust build.
+
index 579edbe5eadff176218f606b2f91c4c551d9f3b7..6d1afda474c1cab6185eb1fe5ef6193891713312 100644 (file)
@@ -8,6 +8,7 @@ Before upgrading, it is advised to read the :doc:`../upgrade`.
 .. toctree::
     :maxdepth: 2
 
+    5.4
     5.3
     5.2
     5.1
index c9f95fd0598a8c06baba1dc24c8e2ce17cdc96cd..7089fc05c108942fd07ed7b1d48fb34fab6d0877 100644 (file)
@@ -419,6 +419,8 @@ OpenTelemetry Traces are generated by setting :ref:`setting-yaml-recursor.event_
 :program:`Recursor` will set the ``openTelemetryData`` field of ``dnsmessage.proto`` messages generated to contain OpenTelemetry Traces, encoded as Protobuf data.
 The encoding used is defined in https://github.com/open-telemetry/opentelemetry-proto/blob/main/opentelemetry/proto/trace/v1/trace.proto.
 
+.. _opentelemetry-trace-conditions:
+
 OpenTelemetry Trace Conditions
 """"""""""""""""""""""""""""""
 
index 283cdca9c03dd1df7aef906663132df1a712a847..081e2a799bb5ab66557d3d9431778a41ee3da763 100644 (file)
@@ -14,11 +14,13 @@ New Settings
 - The :ref:`setting-yaml-outgoing.cookies_unsupported` setting has been introduced to permanently mark authoritative servers as not supporting cookies.
 - The :ref:`setting-yaml-outgoing.tls_configurations` setting has been introduced to be able to force certificate validation and other properties of outgoing DoT connections.
 - The :ref:`setting-yaml-outgoing.any_to_tcp` setting has been introduced to force outgoing ANY queries to TCP.
+- The :ref:`setting-yaml-logging.opentelemetry_trace_conditions` setting has been introduced to only generate OpenTelemetry Trace data for specific queries from specific clients.
+  See :ref:`opentelemetry-trace-conditions` for details.
 
 Changed Settings
 ^^^^^^^^^^^^^^^^
 
-- The default value of  :ref:`setting-yaml-recursor.any_to_tcp` has been changed to ``true``.
+- The default value of :ref:`setting-yaml-recursor.any_to_tcp` has been changed to ``true``.
 - It is no longer necessary to set :ref:`setting-yaml-webservice.api_key` to enable the web service.
   When no API key is set, usage is limited to (potentially password based) access of the frontpage and related statistics calls.
   If you have a configuration where the webservice is enabled but no api key is set, the webservice will now become available where it was not before.