#14807: move undocumented tarfile.filemode() to stat.filemode(). Add tarfile.filemode alias with deprecation warning.
diff --git a/Misc/NEWS b/Misc/NEWS
index f8ef70a..95a2c4f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -31,10 +31,13 @@
 Library
 -------
 
+- Issue 14807: move undocumented tarfile.filemode() to stat.filemode() and add
+  doc entry. Add tarfile.filemode alias with deprecation warning.
+
 - Issue #13815: TarFile.extractfile() now returns io.BufferedReader objects.
 
 - Issue #14532: Add a secure_compare() helper to the hmac module, to mitigate
-  timing attacks. Patch by Jon Oberheide. 
+  timing attacks. Patch by Jon Oberheide.
 
 - Add importlib.util.resolve_name().