Message ID | 20240409145544.3115398-3-yoann.congal@smile.fr |
---|---|
State | New, archived |
Headers | show |
Series | Documentation and 5.0 release notes for some of our work | expand |
Hi again Yoann On 4/9/24 at 16:55, Yoann Congal wrote: > This patch should cover those commits (from poky) : > * 789b10030c6 (cve-update-nvd2-native: remove rejected cve from database, 2024-03-15) > * 19f27037b2b (cve-update-nvd2-native: add an age threshold for incremental update, 2024-03-13) > * 6ce61b43570 (strace: disable bluetooth support by default, 2023-12-13) > * 381ef628fab (ref-manual: add documentation for the unimplemented-ptest qa warning, 2023-10-10) > > Signed-off-by: Yoann Congal <yoann.congal@smile.fr> > --- > .../migration-guides/release-notes-5.0.rst | 17 +++++++++++++++++ > 1 file changed, 17 insertions(+) > > diff --git a/documentation/migration-guides/release-notes-5.0.rst b/documentation/migration-guides/release-notes-5.0.rst > index 8df95ca21..441c5d7d6 100644 > --- a/documentation/migration-guides/release-notes-5.0.rst > +++ b/documentation/migration-guides/release-notes-5.0.rst > @@ -10,6 +10,10 @@ New Features / Enhancements in 5.0 > > - New variables: > > + - ``CVE_DB_INCR_UPDATE_AGE_THRES``: Configure the maximum age of the Now that you defined the variable in the previous commit, you can now refer to it: :term:`CVE_DB_INCR_UPDATE_AGE_THRES` I took care of doing it. > @@ -44,6 +48,9 @@ New Features / Enhancements in 5.0 > > - Testing: > > + - Add an optional ``unimplemented-ptest`` QA warning to detect upstream > + packages with tests that does not use ptest. s/with tests that does not use ptest/with tests, that do not use ptest/ (fixing grammar issue plus adding a comma to try to make the sentence easier to understand). I made the change by myself. > > > + - systemd: split bash completion for udevadm in a new udev-bash-completion Add backquotes around "udevadm" and "udev-bash-completion". Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Merged into "master-next". Thanks! Michael.
diff --git a/documentation/migration-guides/release-notes-5.0.rst b/documentation/migration-guides/release-notes-5.0.rst index 8df95ca21..441c5d7d6 100644 --- a/documentation/migration-guides/release-notes-5.0.rst +++ b/documentation/migration-guides/release-notes-5.0.rst @@ -10,6 +10,10 @@ New Features / Enhancements in 5.0 - New variables: + - ``CVE_DB_INCR_UPDATE_AGE_THRES``: Configure the maximum age of the + internal CVE database for incremental update (instead of a full + redownload) + - Architecture-specific enhancements: - Kernel-related enhancements: @@ -44,6 +48,9 @@ New Features / Enhancements in 5.0 - Testing: + - Add an optional ``unimplemented-ptest`` QA warning to detect upstream + packages with tests that does not use ptest. + - Utility script changes: - New ``recipetool/create_go.py`` script added to support Go recipe creation @@ -54,6 +61,11 @@ New Features / Enhancements in 5.0 - Security improvements: + - Improve incremental CVE database download from NVD. Rejected CVEs are + removed, configuration is kept up-to-date. The age threshold for + incremental update can be configured with ``CVE_DB_INCR_UPDATE_AGE_THRES`` + variable + - Prominent documentation updates: - Miscellaneous changes: @@ -64,10 +76,15 @@ New Features / Enhancements in 5.0 - ``systemd-boot`` can, from now on, be compiled as ``native``, thus providing ``ukify`` tool to build UKI images. + - systemd: split bash completion for udevadm in a new udev-bash-completion + package. + - The :ref:`ref-classes-go-vendor` class was added to support offline builds (i.e., vendoring). It can also handle modules from the same repository, taking into account their versions. + - Disable strace support of bluetooth by default. + Known Issues in 5.0 ~~~~~~~~~~~~~~~~~~~
This patch should cover those commits (from poky) : * 789b10030c6 (cve-update-nvd2-native: remove rejected cve from database, 2024-03-15) * 19f27037b2b (cve-update-nvd2-native: add an age threshold for incremental update, 2024-03-13) * 6ce61b43570 (strace: disable bluetooth support by default, 2023-12-13) * 381ef628fab (ref-manual: add documentation for the unimplemented-ptest qa warning, 2023-10-10) Signed-off-by: Yoann Congal <yoann.congal@smile.fr> --- .../migration-guides/release-notes-5.0.rst | 17 +++++++++++++++++ 1 file changed, 17 insertions(+)