diff -pruN 5.6.3-1/.github/workflows/integrate.yaml 5.6.4-1/.github/workflows/integrate.yaml
--- 5.6.3-1/.github/workflows/integrate.yaml	2025-08-01 19:43:32.000000000 +0000
+++ 5.6.4-1/.github/workflows/integrate.yaml	2025-11-17 21:13:10.000000000 +0000
@@ -13,45 +13,45 @@ on: # yamllint disable-line rule:truthy
 jobs:
   code-coverage:
     name: "Code Coverage"
-    uses: "phpDocumentor/.github/.github/workflows/code-coverage.yml@v0.8"
+    uses: "phpDocumentor/.github/.github/workflows/code-coverage.yml@v0.9"
     with:
       composer-root-version: "5.x-dev"
 
   coding-standards:
     name: "Coding Standards"
-    uses: "phpDocumentor/.github/.github/workflows/coding-standards.yml@v0.8"
+    uses: "phpDocumentor/.github/.github/workflows/coding-standards.yml@v0.9"
     with:
       composer-root-version: "5.x-dev"
 
   dependency-analysis:
     name: "Dependency analysis"
-    uses: "phpDocumentor/.github/.github/workflows/dependency-analysis.yml@v0.8"
+    uses: "phpDocumentor/.github/.github/workflows/dependency-analysis.yml@v0.9"
     with:
       composer-root-version: "5.x-dev"
 
   lint-root:
     name: "Lint root"
-    uses: "phpDocumentor/.github/.github/workflows/lint.yml@v0.8"
+    uses: "phpDocumentor/.github/.github/workflows/lint.yml@v0.9"
     with:
       composer-options: "--no-check-publish --ansi"
 
   static-analysis:
     name: "Static analysis"
-    uses: "phpDocumentor/.github/.github/workflows/static-analysis.yml@v0.8"
+    uses: "phpDocumentor/.github/.github/workflows/static-analysis.yml@v0.9"
     with:
       php-extensions: "none, ctype, dom, json, mbstring, phar, simplexml, tokenizer, xml, xmlwriter, fileinfo, pcntl, posix"
       composer-root-version: "5.x-dev"
 
   unit-tests:
     name: "Unit test"
-    uses: "phpDocumentor/.github/.github/workflows/continuous-integration.yml@v0.8"
+    uses: "phpDocumentor/.github/.github/workflows/continuous-integration.yml@v0.9"
     with:
       composer-root-version: "5.x-dev"
       upcoming-releases: true
 
   integration-tests:
     name: "Integration test"
-    uses: "phpDocumentor/.github/.github/workflows/continuous-integration.yml@v0.8"
+    uses: "phpDocumentor/.github/.github/workflows/continuous-integration.yml@v0.9"
     with:
       composer-root-version: "5.x-dev"
       upcoming-releases: true
diff -pruN 5.6.3-1/debian/changelog 5.6.4-1/debian/changelog
--- 5.6.3-1/debian/changelog	2025-08-21 05:57:22.000000000 +0000
+++ 5.6.4-1/debian/changelog	2025-11-21 08:06:00.000000000 +0000
@@ -1,3 +1,10 @@
+php-phpdocumentor-reflection-docblock (5.6.4-1) unstable; urgency=medium
+
+  [ Jaapio ]
+  * Fix code style issue
+
+ -- David Prévot <taffit@debian.org>  Fri, 21 Nov 2025 09:06:00 +0100
+
 php-phpdocumentor-reflection-docblock (5.6.3-1) unstable; urgency=medium
 
   [ Worma ]
diff -pruN 5.6.3-1/debian/upstream/changelog 5.6.4-1/debian/upstream/changelog
--- 5.6.3-1/debian/upstream/changelog	2024-12-26 08:14:54.000000000 +0000
+++ 5.6.4-1/debian/upstream/changelog	2025-11-21 08:05:49.000000000 +0000
@@ -1,3 +1,20 @@
+• 18 Nov 2025
+  5.6.4
+
+Fix deprecation on php 8.5
+
+• 17 Aug 2025
+  5.6.3
+
+    Fix workflow badge, tweak stable and unstable badges by @DannyvdSluijs in #410
+    Do not call Reflection*::setAccessible() in PHP >= 8.1 by @W0rma in #414
+
+• 13 Apr 2025
+  5.6.2
+
+    Bump doctrine/deprecations from 1.1.3 to 1.1.4 by @dependabot in #395
+    Fix newline detection on descriptions by @jaapio in #409
+
 • Dec 7, 2024
     5.6.1
 
diff -pruN 5.6.3-1/src/DocBlock/Tags/InvalidTag.php 5.6.4-1/src/DocBlock/Tags/InvalidTag.php
--- 5.6.3-1/src/DocBlock/Tags/InvalidTag.php	2025-08-01 19:43:32.000000000 +0000
+++ 5.6.4-1/src/DocBlock/Tags/InvalidTag.php	2025-11-17 21:13:10.000000000 +0000
@@ -20,6 +20,8 @@ use function is_object;
 use function is_resource;
 use function sprintf;
 
+use const PHP_VERSION_ID;
+
 /**
  * This class represents an exception during the tag creation
  *
@@ -98,9 +100,11 @@ final class InvalidTag implements Tag
             $exception = $exception->getPrevious();
         } while ($exception !== null);
 
-        if (PHP_VERSION_ID < 80100) {
-            $traceProperty->setAccessible(false);
+        if (PHP_VERSION_ID >= 80100) {
+            return;
         }
+
+        $traceProperty->setAccessible(false);
     }
 
     /**
