Engineering notebook
rsyslog’s daily stable
Did you know? The rsyslog project offers a stable release every day! The world is changing and getting faster each time. Especially software. If a bug is fixed, you want to have the fix as soon as possible. Even more so if it is security related.
Development happens in active code. When we fix something, this is done in so-called "master branch". If you use master branch, you are covered as soon as the fix is applied.
Traditionally there are "stable builds" which are released relatively infrequently. Sometimes many months. In rsyslog's case, only 6 weeks. For bugfixes, someone needs to backport the fix to that "stable build". Backporting comes with its own risks, as the code is integrated into a version it was never written for.
We have much more frequently updated versions as well. They are crafted each day and contain the current latest and greatest. Including all known fixes. These daily version are usually considered as experimental or development version. Quite honestly, this is no longer the case.
Before I continue, please consider that rsyslog is a relatively small project. What is true for it may not be true for much larger ones.
In rsyslog, we have two important policies:
- new versions never break existing configurations (except for extremely important reasons) - this means you can always update to the latest version without risking that your config blows up
- we rely on our CI - if a change passes the testbench, it basically is good to go.To complement, we also have manual reviews of critical changes. Only things we are pretty confident in go into master branch.