Portable build framework for OpenNTPD
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
3.2 KiB

10 years ago
  1. For detailed changes, see the changes either in the OpenBSD CVS repository or
  2. the GitHub mirror.
  3. 2016-03-28 OpenNTPD 5.9p1
  4. * When a single "constraint" is specified, try all returned addresses
  5. until one succeeds, rather than the first returned address.
  6. * Relaxed the constraint error margin to be proportional to the number
  7. of NTP peers, avoid constant reconnections when there is a bad NTP
  8. peer.
  9. * Removed disabled hotplug sensor support.
  10. * Added support for detecting crashes in constraint subprocesses.
  11. * Moved the execution of constraints from the ntp proces to the parent
  12. process, allowing for better privilege separation since the ntp
  13. process can be further restricted.
  14. * Added pledge(2) support.
  15. * Updated to LibreSSL 2.3.x libtls API changes.
  16. * Fixed CPU spinning when the network is down.
  17. * Fixed various memory leaks.
  18. * Switched to RMS for jitter calculations.
  19. * Unified logging functions with other OpenBSD base programs.
  20. 2015-03-24 OpenNTPD 5.7p4
  21. * Added support for HTTPS constraints to validate NTP responses.
  22. See the man page and example config file for how to configure it.
  23. The initial announcement:
  24. http://marc.info/?l=openbsd-tech&m=142356166731390&w=2 is an
  25. explanation of the rationale and how the feature works.
  26. * Workaround an apparent bug in Solaris adjtime that cause the clock
  27. to report sync/unsync continuously.
  28. * Workaround an issue on systems with 32-bit time_t that causes an
  29. overflow if the system time is later than early 2036.
  30. The libtls library, as shipped with LibreSSL 2.1.4 or later, is
  31. required to use the HTTPS constraint feature, though it is not
  32. required to use OpenNTPD.
  33. 2015-01-27 OpenNTPD 5.7p3
  34. * Fixed issue resolving hostnames when the network is initially
  35. unavailable.
  36. * Fixed process name logging on Linux and OS X.
  37. * Fixed adjfreq failures on Solaris due to uninitialized struct timex.
  38. * Support building on Linux musl libc.
  39. * Default privilege separation directory changed from /var/empty/ntp
  40. to /var/empty. Please ensure that if you are using the default from
  41. previous releases that the privsep directory is empty, owned by
  42. root, and has no write privileges for other users.
  43. 2015-01-20 OpenNTPD 5.7p2
  44. * Switched the drift file from an unscaled frequency offset to ppm.
  45. The latter format is compatible with that of ntp.org. This allows
  46. easy switching between ntpd daemons
  47. * Fixed a memory leak in DNS lookups.
  48. * Added support for setting the process title on Linux and OS X.
  49. The different processes are now possible to tell apart by role in
  50. the process list.
  51. * Import NetBSD support.
  52. * Various bugfixes and refinements from the community.
  53. 2015-01-08 OpenNTPD 5.7p1
  54. * Support for a new build infrastructure based on the LibreSSL
  55. framework. Source code is integrated directly from the OpenBSD tree
  56. with few manual changes, easing maintenance.
  57. * Removed support for several OSes pending test reports and updated
  58. portability code.
  59. * Supports the Simple Network Time Protocol version 4 as described in
  60. RFC 5905
  61. * Added route virtualization (rdomain) support.
  62. * Added ntpctl(8), which allows for querying ntpd(8) at runtime.
  63. * Finer-grained clock adjustment via adjfreq / ntp_adjtime where
  64. available.
  65. * Improved latency on heavily-loaded machines.