ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

TL;DR Supported for a ROS distribution means receiving security and bug fixes - it doesn't imply that new feature developed after the release will be added to it.

The main goal of a released ROS distribution (similar to any Linux distribution) is stability. Once a ROS distribution has been released a user can expect that their code using that distro continues to work without changes.

Since any change to software poses the risk of regressions naturally in order to achieve stability changes should be minimized. If issues are identified in an already released distro a potential fix can be applied if (and usually only if) it can be done without breaking API or ABI as well as without breaking behavior (the exception is if the API / behavior is what is broken in the first place).

Sometimes the maintainer of a package might also backport new features to an already released distro. This might be for different reasons: * the feature is with a high certainty not introducing a regression and/or in the worst case only the new feature is not working as expected but it isn't effecting previously existing parts * the feature has a high value (outweighing the above risks) and/or makes it easier to make code support future distributions * the feature is highly desired by users and the effort / risk is acceptable

Sometimes packages might also not have separate branches for different distros in order to reduce the maintenance effort. In that the maintainer is willing to take a higher risk for regressions for the benefit of less work.

It is basically up to the maintainer of a package to determine the policy - the above specifically applies to lower level / foundational packages which a lot of users depend on.

So to summarize: if you want the latest features you need to use the latest distro (or even the "rolling" disribution). That is the same as for Linux distributions - e.g. if you want a newer Qt version than 5.9 it won't show up in Ubuntu 18.04 but you will need to move forward to Ubuntu 20.04 which comes with 5.12. While feature backports might happen to already released distros that is nothing you should expect.