diff -pruN 1.4.0-2/debian/changelog 1.4.0-2ubuntu1/debian/changelog
--- 1.4.0-2/debian/changelog	2022-11-02 15:22:23.000000000 +0000
+++ 1.4.0-2ubuntu1/debian/changelog	2022-11-09 06:04:47.000000000 +0000
@@ -1,3 +1,11 @@
+heaptrack (1.4.0-2ubuntu1) lunar; urgency=medium
+
+  * Merge from Debian unstable. Remaining changes:
+    - debian/tests: Check whether testbed has zstd installed before
+      assuming output file format.
+
+ -- Rik Mills <rikmills@kde.org>  Wed, 09 Nov 2022 06:04:47 +0000
+
 heaptrack (1.4.0-2) unstable; urgency=medium
 
   [ Christian Göttsche ]
@@ -21,6 +29,14 @@ heaptrack (1.4.0-1) unstable; urgency=me
 
  -- Anton Gladky <gladk@debian.org>  Fri, 21 Oct 2022 21:41:20 +0200
 
+heaptrack (1.3.0-1ubuntu1) jammy; urgency=medium
+
+  * Merge from Debian unstable. Remaining changes:
+    - debian/tests: Check whether testbed has zstd installed before
+      assuming output file format.
+
+ -- Rik Mills <rikmills@kde.org>  Wed, 05 Jan 2022 11:47:08 +0000
+
 heaptrack (1.3.0-1) unstable; urgency=medium
 
   [ Pino Toscano ]
@@ -38,6 +54,19 @@ heaptrack (1.3.0-1) unstable; urgency=me
 
  -- Anton Gladky <gladk@debian.org>  Wed, 29 Dec 2021 20:09:05 +0100
 
+heaptrack (1.2.0-1ubuntu1) impish; urgency=medium
+
+  * debian/tests: Check whether testbed has zstd installed before
+    assuming output file format.
+
+ -- Rik Mills <rikmills@kde.org>  Sat, 19 Jun 2021 11:29:28 +0100
+
+heaptrack (1.2.0-1build1) hirsute; urgency=medium
+
+  * No-change rebuild for boost soname change.
+
+ -- Matthias Klose <doko@ubuntu.com>  Sat, 12 Dec 2020 13:07:11 +0100
+
 heaptrack (1.2.0-1) unstable; urgency=medium
 
   * [f3ec34f] New upstream version 1.2.0
diff -pruN 1.4.0-2/debian/tests/01-heaptrack 1.4.0-2ubuntu1/debian/tests/01-heaptrack
--- 1.4.0-2/debian/tests/01-heaptrack	2022-11-02 11:02:20.000000000 +0000
+++ 1.4.0-2ubuntu1/debian/tests/01-heaptrack	2022-11-09 06:03:50.000000000 +0000
@@ -8,5 +8,9 @@ cd $WORKDIR
 
 heaptrack /bin/ls
 ls -l
-fileanalyze=`ls *.gz`
+if [ -f /usr/bin/zstd ]; then
+   fileanalyze=`ls *.zst`
+else
+   fileanalyze=`ls *.gz`
+fi
 heaptrack_print --file $fileanalyze
diff -pruN 1.4.0-2/debian/tests/02-heaptrack 1.4.0-2ubuntu1/debian/tests/02-heaptrack
--- 1.4.0-2/debian/tests/02-heaptrack	2022-11-02 11:02:28.000000000 +0000
+++ 1.4.0-2ubuntu1/debian/tests/02-heaptrack	2022-11-09 06:04:00.000000000 +0000
@@ -8,5 +8,9 @@ cd $WORKDIR
 
 heaptrack timeout 5 /usr/bin/top || true
 ls -l
-fileanalyze=`ls *.gz`
+if [ -f /usr/bin/zstd ]; then
+   fileanalyze=`ls *.zst`
+else
+   fileanalyze=`ls *.gz`
+fi
 heaptrack_print --file $fileanalyze
