NEWS 2.6 KB

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