From: Tomas Mraz Date: Thu, 23 Jun 2016 17:24:12 +0000 (+0200) Subject: Release new version 1.5.1 X-Git-Tag: cronie-1.5.1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=675ef573601ebc33d40df8611e4c5857142f21e0;p=cronie Release new version 1.5.1 --- diff --git a/ChangeLog b/ChangeLog index aa4e783..7cfbbf1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,79 @@ +2016-06-23 Tomas Mraz + + * Remove unneeded obsolete SELinux includes. + +2016-06-23 Tomas Mraz + + * Rename timeval time to tv so time function can be used. + +2016-06-23 Tomas Mraz + + * Fix longstanding race condition on crontab modification. + If crontab is modified twice at the same second the crond reads it + which means the timestamp will not change, the latest content will + never be read. + +2016-06-10 Tomas Mraz + + * Fix misleading comment in pam configuration file. + +2016-05-13 Tomas Mraz + + * anacron: use mkstemp() instead of tempnam() + Although the use of tempnam() seemed to be safeguarded + better to not use it at all. + +2016-05-13 Tomas Mraz + + * anacron: Drop potentially unsafe umask setting. + +2016-05-13 Tomas Mraz + + * anacron: Do not try to mail to empty address. + +2016-04-25 Tomas Mraz + + * Clarify the crontab(1) documentation. + +2016-04-23 Gary Tierney + + * Remove hardcoded "system_u" SELinux user + This gets rid of the hardcoded reference to the ref-policy system_u user + and instead relies on the user that cronie is currently running as. + +2016-04-25 Tomas Mraz + + * Clarify return value. + +2016-03-15 Tomas Mraz + + * Correct instructions for disabling Anacron. + +2015-11-07 Ville Skyttä + + * Man page syntax fixes + +2015-11-05 Robert Byrnes + + * Inherit PATH from the crond environment if -P option is used. + +2015-07-13 Tomas Mraz + + * In crontab command use a temporary filename that is ignored by crond. + +2015-05-28 Tomas Mraz + + * Add *.patch and *.orig to .gitignore + +2015-05-28 Tomas Mraz + + * Add compile to .gitignore. + +2015-05-28 Tomas Mraz + + * Release new version 1.5.0 + properly create dist tarball even with anacron and PAM disabled + 2015-05-28 Tomas Mraz * Pass the job environment also when executing the sendmail. diff --git a/NEWS b/NEWS index bb7f361..59ef9a1 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,14 @@ cronie NEWS -- history of user-visible changes. +Release 1.5.1 + +* crontab: Use temporary file name that is ignored by crond. +* crond: Inherit PATH from the crond environment if -P option is used. +* crond: Remove hardcoded "system_u" SELinux user, use the SELinux user + of the running crond. +* anacron: Small cleanups and fixes. +* crond: Fix longstanding race condition on repeated crontab modification. + Release 1.5.0 * First release with NEWS. :) diff --git a/configure.ac b/configure.ac index d802f4d..7b30943 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([cronie],[1.5.0],[mmaslano@redhat.com,tmraz@fedoraproject.org]) +AC_INIT([cronie],[1.5.1],[mmaslano@redhat.com,tmraz@fedoraproject.org]) AC_CONFIG_HEADER([config.h]) AC_PREREQ(2.60)