summaryrefslogtreecommitdiff
path: root/NEWS
Commit message (Collapse)AuthorAgeFilesLines
* NEWS: fix use of tabs instead of spaces for one itemMike Kazantsev2020-03-161-2/+2
|
* NEWS: add late note about job trimming issueZbigniew Jędrzejewski-Szmek2020-03-121-0/+14
| | | | Closes #15091.
* NEWS: final contributor update for v245Zbigniew Jędrzejewski-Szmek2020-03-061-21/+22
|
* NEWS: Use correct tense in v245 entryPaul Menzel2020-03-031-1/+1
|
* NEWS: two minor entriesv245-rc2Zbigniew Jędrzejewski-Szmek2020-03-031-0/+9
|
* NEWS: update contributors listZbigniew Jędrzejewski-Szmek2020-03-031-20/+25
|
* NEWS: add contributors for v245Zbigniew Jędrzejewski-Szmek2020-02-051-2/+23
|
* NEWS: mention the operational state changesZbigniew Jędrzejewski-Szmek2020-02-051-1/+5
|
* NEWS: mention SuppressPrefixLength=Yu Watanabe2020-02-051-3/+3
|
* Merge pull request #14779 from keszybz/news-v245Zbigniew Jędrzejewski-Szmek2020-02-051-116/+118
|\
| * NEWS: mention the TrafficControlQueueingDiscipline renameZbigniew Jędrzejewski-Szmek2020-02-051-1/+5
| |
| * NEWS: mention empty .link and .network filesZbigniew Jędrzejewski-Szmek2020-02-051-0/+5
| |
| * NEWS: reword and shorten a bunch of stuffZbigniew Jędrzejewski-Szmek2020-02-051-116/+109
| |
* | network: change "Gateway=dhcp" to "Gateway=_dhcp" (#14774)Zbigniew Jędrzejewski-Szmek2020-02-051-2/+2
| | | | | | This way we avoid confusion with a DNS name. Fixes #14773.
* | Merge pull request #14767 from yuwata/network-split-qdisc-sectionYu Watanabe2020-02-051-2/+2
|\ \ | |/ |/| network: split TrafficControlQueueingDiscipline section into small pieces
| * network: FairQueueTrafficPolicing→FairQueueingZbigniew Jędrzejewski-Szmek2020-02-041-1/+1
| | | | | | | | | | | | | | | | | | This never made into a release, so we can change the name with impunity. Suggested by Davide Pesavento. I opted to add the "ing" ending. "Fair queuing" is the name of the general concept and algorithm, and "Fair queue" is mostly used for the implementation name.
| * network: TokenBufferFilter→TokenBucketFilterZbigniew Jędrzejewski-Szmek2020-02-041-1/+1
| | | | | | | | | | This never made into a release, so we can change the name with impunity. Noticed by Davide Pesavento.
* | NEWS: correct indenting for two entriesAnsgar Burchardt2020-02-041-6/+6
|/
* update NEWSLennart Poettering2020-02-021-0/+50
|
* NEWS: more v245 preparationLennart Poettering2020-01-291-2/+78
|
* NEWS: start preparing v245Lennart Poettering2020-01-291-0/+141
|
* Fixup typo in NEWSSlava Kardakov2019-12-031-1/+1
|
* NEWS: update for final 244Lennart Poettering2019-11-291-22/+24
|
* NEWS: add contributors for v244Zbigniew Jędrzejewski-Szmek2019-11-221-1/+25
|
* update NEWSLennart Poettering2019-11-201-0/+13
|
* Merge pull request #14074 from keszybz/rename-system-optionsZbigniew Jędrzejewski-Szmek2019-11-201-2/+2
|\ | | | | Rename system-options
| * Rename "system-options" to "systemd-efi-options"Zbigniew Jędrzejewski-Szmek2019-11-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes the naming more consistent: we now have bootctl systemd-efi-options, $SYSTEMD_EFI_OPTIONS and the SystemdOptions EFI variable. (SystemdEFIOptions would be redundant, because it is only used in the context of efivars, and users don't interact with that name directly.) bootctl is adjusted to use 2sp indentation, similarly to systemctl and other programs. Remove the prefix with the old name from 'bootctl systemd-efi-options' output, since it's redundant and we don't want the old name anyway.
| * NEWS: fix antique typoZbigniew Jędrzejewski-Szmek2019-11-181-1/+1
| |
* | NEWS: SendRawOption= -> SendOption=Yu Watanabe2019-11-191-1/+1
|/
* NEWS: more itemsZbigniew Jędrzejewski-Szmek2019-11-161-16/+40
| | | | Also reorder some entries to restore the grouping by subject.
* Merge pull request #13961 from mwilck/udev-no-exit-timeoutZbigniew Jędrzejewski-Szmek2019-11-131-0/+11
|\ | | | | udevd: wait for workers to finish when exiting
| * udevd: wait for workers to finish when exitingMartin Wilck2019-11-121-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | On some systems with lots of devices, device probing for certain drivers can take a very long time. If systemd-udevd detects a timeout and kills the worker running modprobe using SIGKILL, some devices will not be probed, or end up in unusable state. The --event-timeout option can be used to modify the maximum time spent in an uevent handler. But if systemd-udevd exits, it uses a different timeout, hard-coded to 30s, and exits when this timeout expires, causing all workers to be KILLed by systemd afterwards. In practice, this may lead to workers being killed after significantly less time than specified with the event-timeout. This is particularly significant during initrd processing: systemd-udevd will be stopped by systemd when initrd-switch-root.target is about to be isolated, which usually happens quickly after finding and mounting the root FS. If systemd-udevd is started by PID 1 (i.e. basically always), systemd will kill both udevd and the workers after expiry of TimeoutStopSec. This is actually better than the built-in udevd timeout, because it's more transparent and configurable for users. This way users can avoid the mentioned boot problem by simply increasing StopTimeoutSec= in systemd-udevd.service. If udevd is not started by systemd (standalone), this is still an improvement. udevd will kill hanging workers when the event timeout is reached, which is configurable via the udev.event_timeout= kernel command line parameter. Before this patch, udevd would simply exit with workers still running, which would then become zombie processes. With the timeout removed, the sd_event_now() assertion in manager_exit() can be dropped.
* | core: change top-level drop-in from -.service.d to service.dAnita Zhang2019-11-071-4/+3
|/ | | | | | | | | | Discussed in #13743, the -.service semantic conflicts with the existing root mount and slice names, making this feature not uniformly extensible to all types. Change the name to be <type>.d instead. Updating to this format also extends the top-level dropin to unit types.
* NEWS: mention NetworkEmulatorDuplicateRate= settingYu Watanabe2019-11-011-1/+2
|
* add other worthy newsChristian Rebischke2019-10-311-0/+3
| | | | | | | | | I think we can mention that systemd-resolved is able to validate IP address certificates and prefer TLS 1.3 before TLS 1.2 now. Also the `machinectl reboot` command actually works now. Signed-off-by: Christian Rebischke <chris@nullday.de>
* NEWS: fix two typosZbigniew Jędrzejewski-Szmek2019-10-301-2/+2
|
* NEWS: fix option nameYu Watanabe2019-10-301-1/+1
|
* NEWS: start preparations for v244Zbigniew Jędrzejewski-Szmek2019-10-301-0/+149
|
* mailmap: add entry to fix authorship of commitZbigniew Jędrzejewski-Szmek2019-10-211-1/+1
| | | | | 471cffcfb0e005b7c4044b3b52cc4f25d217efac was committed on a debug VM where I didn't have git set up properly.
* Update NEWS for v243v243Zbigniew Jędrzejewski-Szmek2019-09-031-2/+12
|
* NEWS: update contributors listZbigniew Jędrzejewski-Szmek2019-09-031-10/+11
|
* docs: new systemd-security mailing listZbigniew Jędrzejewski-Szmek2019-08-301-0/+4
| | | | | | | | | | | | | | | | | | | | In the past, we asked people to open a security bug on one of the "big" distros. This worked OK as far as getting bugs reported and notifying some upstream developers went. But we always had trouble getting information to all the appropriate parties, because each time a bug was reported, a big thread was created, with a growing CC list. People who were not CCed early enough were missing some information, etc. To clean this up, we decided to create a private mailing list. The natural place would be freedesktop.org, but unfortunately the request to create a mailing list wasn't handled (https://gitlab.freedesktop.org/freedesktop/freedesktop/issues/134). And even if it was, at this point, if there was ever another administrative issue, it seems likely it could take months to resolve. So instead, we asked for a list to be created on the redhat mailservers. Please consider the previous security issue reporting mechanisms rescinded, and send any senstive bugs to systemd-security@redhat.com.
* NEWS: update contributors listv243-rc2Zbigniew Jędrzejewski-Szmek2019-08-221-24/+28
|
* cgroup: Also set io.bfq.weightKai Krakow2019-08-201-0/+3
| | | | | | | | | | | | Current kernels with BFQ scheduler do not yet set their IO weight through "io.weight" but through "io.bfq.weight" (using a slightly different interface supporting only default weights, not per-device weights). This commit enables "IOWeight=" to just to that. This patch may be dropped at some time later. Github-Link: https://github.com/systemd/systemd/issues/7057 Signed-off-by: Kai Krakow <kai@kaishome.de>
* NEWS: Remove DisableControllers from v243Chris Down2019-07-311-4/+0
| | | | We already released this in v240 and had a NEWS entry then.
* NEWS: more entries and some rewordingsZbigniew Jędrzejewski-Szmek2019-07-301-63/+93
|
* Merge pull request #13219 from poettering/named-exit-codes-tweaksZbigniew Jędrzejewski-Szmek2019-07-301-3/+3
|\ | | | | quick follow-up for the symbolic exit status PR #13207
| * analyze: rename "exit-codes" to "exit-status"Lennart Poettering2019-07-291-3/+3
| | | | | | | | | | | | waitid(2) and the libc function signature calls this "exit status", and uses "exit code" for something different. Let's stick to the same nomenclature hence.
* | update TODOLennart Poettering2019-07-301-5/+15
|/
* Merge pull request #13207 from keszybz/symbolic-exit-code-namesLennart Poettering2019-07-291-0/+5
|\ | | | | Symbolic exit code names