diff --git a/SOURCES/dracut_99microcode_ctl-fw_dir_override_module_init.sh b/SOURCES/dracut_99microcode_ctl-fw_dir_override_module_init.sh
index 8dc327a..9839d36 100755
--- a/SOURCES/dracut_99microcode_ctl-fw_dir_override_module_init.sh
+++ b/SOURCES/dracut_99microcode_ctl-fw_dir_override_module_init.sh
@@ -118,8 +118,10 @@ install() {
 
 			# $path is a list of globs, so it needs special care
 			for p in $(printf "%s" "$path"); do
-				find "$DATA_DIR/$i" -path "$DATA_DIR/$i/$p" \
-					-print0 \
+				# "true" is due to sporadic SIGPIPE from find
+				# when "grep -q" exits early.
+				{ find "$DATA_DIR/$i" -path "$DATA_DIR/$i/$p" \
+					-print0; true; } \
 				    | grep -zFxq \
 					"$DATA_DIR/$i/$ucode_dir/$ucode" \
 				    || continue
diff --git a/SPECS/microcode_ctl.spec b/SPECS/microcode_ctl.spec
index becc260..66933e1 100644
--- a/SPECS/microcode_ctl.spec
+++ b/SPECS/microcode_ctl.spec
@@ -13,8 +13,8 @@
 
 Summary:        CPU microcode updates for Intel x86 processors
 Name:           microcode_ctl
-Version:        20190618
-Release:        1.%{intel_ucode_version}.3%{?dist}
+Version:        %{intel_ucode_version}
+Release:        4%{?dist}
 Epoch:          4
 License:        CC0 and Redistributable, no modification permitted
 URL:            https://downloadcenter.intel.com/download/%{intel_ucode_file_id}/Linux-Processor-Microcode-Data-File
@@ -318,15 +318,19 @@ rm -rf %{buildroot}
 
 
 %changelog
-* Thu Dec 05 2019 Eugene Syromiatnikov <esyr@redhat.com> - 4:20190618-1.20191115.3
+* Mon Dec 09 2019 Eugene Syromiatnikov <esyr@redhat.com> - 4:20191115-4
+- Avoid find being SIGPIPE'd on early "grep -q" exit in the dracut script
+  (#1781365).
+
+* Mon Dec 02 2019 Eugene Syromiatnikov <esyr@redhat.com> - 4:20191115-3
 - Update stale posttrans dependency, add triggers for proper handling
-  of the debug kernel flavour along with kernel-rt (#1780009).
+  of the debug kernel flavour along with kernel-rt (#1766178).
 
-* Tue Nov 20 2019 Eugene Syromiatnikov <esyr@redhat.com> - 4:20190618-1.20191115.2
+* Mon Nov 18 2019 Eugene Syromiatnikov <esyr@redhat.com> - 4:20191115-2
 - Do not update 06-55-04 (SKL-SP/W/X) to revision 0x2000065, use 0x2000064
-  by default.
+  by default (#1774322).
 
-* Mon Nov 18 2019 Eugene Syromiatnikov <esyr@redhat.com> - 4:20190618-1.20191115.1
+* Sat Nov 16 2019 Eugene Syromiatnikov <esyr@redhat.com> - 4:20191115-1
 - Update Intel CPU microcode to microcode-20191115 release:
   - Update of 06-4e-03/0xc0 (SKL-U/Y D0) from revision 0xd4 up to 0xd6;
   - Update of 06-5e-03/0x36 (SKL-H/S/Xeon E3 R0/N0) from revision 0xd4
@@ -345,13 +349,13 @@ rm -rf %{buildroot}
   - Update of 06-9e-0d/0x22 (CFL-H/S R0) from revision 0xc6 up to 0xca;
   - Update of 06-a6-00/0x80 (CML-U 6+2 A0) from revision 0xc6 up to 0xca.
 
-* Mon Nov 18 2019 Eugene Syromiatnikov <esyr@redhat.com> - 4:20190618-1.20191113.1
+* Fri Nov 15 2019 Eugene Syromiatnikov <esyr@redhat.com> - 4:20191113-1
 - Update Intel CPU microcode to microcode-20191113 release:
   - Update of 06-9e-0c (CFL-H/S P0) microcode from revision 0xae up to 0xc6.
 - Drop 0001-releasenote-changes-summary-fixes.patch.
 
-* Mon Nov 18 2019 Eugene Syromiatnikov <esyr@redhat.com> - 4:20190618-1.20191112.2
-- Package the publicy available microcode-20191112 release (#1758539):
+* Tue Nov 12 2019 Eugene Syromiatnikov <esyr@redhat.com> - 4:20191112-2
+- Package the publicy available microcode-20191112 release (#1755027):
   - Addition of 06-4d-08/0x1 (AVN B0/C0) microcode at revision 0x12d;
   - Addition of 06-55-06/0xbf (CSL-SP B0) microcode at revision 0x400002c;
   - Addition of 06-7a-08/0x1 (GLK R0) microcode at revision 0x16;
@@ -366,10 +370,10 @@ rm -rf %{buildroot}
 - Correct the releasenote file (0001-releasenote-changes-summary-fixes.patch).
 - Update README.caveats with the link to the new Knowledge Base article.
 
-* Thu Nov 07 2019 Eugene Syromiatnikov <esyr@redhat.com> - 4:20190618-1.20191112-1
+* Thu Nov 07 2019 Eugene Syromiatnikov <esyr@redhat.com> - 4:20191112-1
 - Intel CPU microcode update to 20191112, addresses CVE-2017-5715,
-  CVE-2019-0117, CVE-2019-11135, CVE-2019-11139 (#1764059, #1764072, #1764951,
-  #1764971, #1764999, #1765403, #1765415, #1766443, #1766872):
+  CVE-2019-0117, CVE-2019-11135, CVE-2019-11139 (#1755019, #1764060, #1764073,
+  #1764952, #1764972, #1765000, #1765404, #1765416, #1766444, #1766873):
   - Addition of 06-a6-00/0x80 (CML-U 6+2 A0) microcode at revision 0xc6;
   - Addition of 06-66-03/0x80 (CNL-U D0) microcode at revision 0x2a;
   - Addition of 06-55-03/0x97 (SKL-SP B1) microcode at revision 0x1000150;
@@ -393,16 +397,16 @@ rm -rf %{buildroot}
   - Update of 06-9e-0b/0x02 (CFL-S B0) microcode from revision 0xb4 to 0xc6;
   - Update of 06-9e-0d/0x22 (CFL-H R0) microcode from revision 0xb8 to 0xc6.
 
-* Thu Oct 10 2019 Eugene Syromiatnikov <esyr@redhat.com> - 4:20190618-1.20190918-3
+* Thu Oct 10 2019 Eugene Syromiatnikov <esyr@redhat.com> - 4:20190918-3
 - Rework dracut hook to address dracut's early initramfs generation
-  behaviour.
+  behaviour (#1760508).
 
-* Sun Oct 06 2019 Eugene Syromiatnikov <esyr@redhat.com> - 4:20190618-1.20190918.2
+* Sun Oct 06 2019 Eugene Syromiatnikov <esyr@redhat.com> - 4:20190918-2
 - Do not update 06-2d-07 (SNB-E/EN/EP) to revision 0x718, use 0x714
   by default.
 
-* Thu Sep 19 2019 Eugene Syromiatnikov <esyr@redhat.com> - 4:20190618-1.20190918.1
-- Intel CPU microcode update to 20190918 (#1758538).
+* Thu Sep 19 2019 Eugene Syromiatnikov <esyr@redhat.com> - 4:20190918-1
+- Intel CPU microcode update to 20190918 (#1753544).
 - Add new disclaimer, generated based on relevant caveats.
 
 * Wed Jun 19 2019 Eugene Syromiatnikov <esyr@redhat.com> - 4:20190618-1