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