NEWS 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. == Version 0.5.2:
  2. This is a bug-fix release for several minor issues which have been found in the preceding
  3. release (0.5.1).
  4. * Fix logging failure after log buffer becomes full.
  5. * Fix readiness-fd notification not immediately updating service states.
  6. * Fix use of old settings in sample configuration for Linux.
  7. * Re-create control socket file node if it "disappears". Should solve issues if root filesystem
  8. is mounted read-write on boot.
  9. * Fix potential issue with service launch failure for services using a fixed notification fd.
  10. == Version 0.5.1:
  11. This is a bug-fix release for several issues of varying severity which have been found in the
  12. preceding release.
  13. * Improved logging behaviour when a service runs "on console" for a very short time.
  14. * Fix for crash due to SIGALRM on OpenBSD.
  15. * Fixes for compiling with Musl C library.
  16. * Fix dinitctl "enable" and "disable" commands when path to service directory is absolute.
  17. * "termsignal" setting renamed "term-signal" and now supports "KILL" signal. "termsignal"
  18. is still supported for compatibility with existing service descriptions.
  19. * Other minor fixes.
  20. == Version 0.5.0:
  21. This version adds S6-compatible readiness notification support, and adds support for updating
  22. the "utmp" database when services start/stop (this functionality should be avoided if possible
  23. since the "utmp" database is mostly an historical artifact, and system support is often prone
  24. to issues which allow unprivileged users to prevent updates and deny or delay logins; however,
  25. utilities such as "who" may depend on the database being updated appropriately).
  26. Other changes:
  27. * Add "-u" command line option to force running dinit as a user instance.
  28. * Add a "chain-to" service property to better support recovery services.
  29. * Add a "shares-console" service option to allow running services "on the console" without having
  30. them own it exclusively.
  31. * Add "inittab-id" and "inittab-line" service settings for utmp support.
  32. * Minor bugfixes.
  33. == Version 0.4.0:
  34. This version focuses on being more "distribution friendly". It adds mechanisms to add and remove
  35. dependencies, either temporarily or persistently, between services without manual editing of
  36. service description files.
  37. Changes:
  38. * A new service description directive, "waits-for.d", allows specifying a directory for which the
  39. contents (filenames) are read as dependencies. This provides a convenient way to add and remove
  40. dependencies to service descriptions without editing the textual service description file.
  41. * dinitctl has new commands, "add-dep" and "rm-dep", to add or remove a dependency between
  42. services. The dependency is not persisted and won't survive a restart. Check the man page for
  43. details.
  44. * dinitctl has new commands, "enable" and "disable". These permanently enable/disable
  45. a service for some target ("boot" by default) by creating/destroying a symbolic link
  46. in the waits-for.d directory specified in the service description (and create/remove
  47. waits-for dependency dynamically). Check the man page for details.
  48. * A code style guide has been added (in the "doc" directory).
  49. * More tests, minor bugfixes.