aboutsummaryrefslogtreecommitdiff
path: root/RELNOTES
diff options
context:
space:
mode:
authorXin LI <delphij@FreeBSD.org>2023-12-29 08:45:52 +0000
committerXin LI <delphij@FreeBSD.org>2023-12-29 08:45:52 +0000
commit2f036705f337f61cee5a3b4f570b023c3da29895 (patch)
treea62cc8ea1ee0f34354fbf1b9023dcd2b6b837fc3 /RELNOTES
parent61174ad88e33b6162fa1c9ee37d7f227e0bbf931 (diff)
downloadsrc-2f036705f337f61cee5a3b4f570b023c3da29895.tar.gz
src-2f036705f337f61cee5a3b4f570b023c3da29895.zip
Document the two recent newsyslog(8) change (-c option and <compress>
configuration option).
Diffstat (limited to 'RELNOTES')
-rw-r--r--RELNOTES20
1 files changed, 20 insertions, 0 deletions
diff --git a/RELNOTES b/RELNOTES
index 509cf36c070e..adb9ca67aa0c 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -10,6 +10,26 @@ newline. Entries should be separated by a newline.
Changes to this file should not be MFCed.
+61174ad88e33:
+ newsyslog(8) now supports specifying a global compression method directly
+ at the beginning of the newsyslog.conf file, which will make newsyslog(8)
+ to behave like the corresponding option was passed to the newly added
+ '-c' option. For example:
+
+ <compress> none
+
+906748d208d3:
+ newsyslog(8) now accepts a new option, '-c' which overrides all historical
+ compression flags by treating their meaning as "treat the file as compressible"
+ rather than "compress the file with that specific method."
+
+ The following choices are available:
+ * none: Do not compress, regardless of flag.
+ * legacy: Historical behavior (J=bzip2, X=xz, Y=zstd, Z=gzip).
+ * bzip2, xz, zstd, gzip: apply the specified compression method.
+
+ We plan to change the default to 'none' in FreeBSD 15.0.
+
1a878807006c:
This commit added some statistics collection to the NFS-over-TLS
code in the NFS server so that sysadmins can moditor usage.