This is an automated email from the ASF dual-hosted git repository. janc pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mynewt-site.git
commit 693e646118a88ac568acd2ac01cfebf182b49285 Author: Wojciech Pietraszewski <[email protected]> AuthorDate: Tue Apr 30 18:16:57 2024 +0200 site: Add new 'CVE' section Adds new page listing 'Common Vulnerabilities and Exposures' in place of 'Events' section --- custom-theme/cve.html | 10 ++++++++++ docs/cve.md | 8 ++++++++ mkdocs.yml | 4 ++-- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/custom-theme/cve.html b/custom-theme/cve.html new file mode 100644 index 0000000000..0f706c9084 --- /dev/null +++ b/custom-theme/cve.html @@ -0,0 +1,10 @@ +<div class="container"> + <div class="row content"> + <div class="col-md-12"> + {% block content %} + {% include 'fix_up_content.html' %} + {% endblock %} + </div> + </div> + +</div> diff --git a/docs/cve.md b/docs/cve.md new file mode 100644 index 0000000000..a9b4a30702 --- /dev/null +++ b/docs/cve.md @@ -0,0 +1,8 @@ +### Vulnerabilities + +This page contains a summary of Common Vulnerabilities and Exposures (CVE) discovered and fixed +in Apache Mynewt. + +| CVE-ID | Description | Releases Affected | Release Fixed | +|---------------------------------------------------------------------------------------------|--------------------------------------|----------------------|---------------| +| <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-24746">CVE-2024-24746 </a> | Loop with Unreachable Exit Condition | NimBLE through 1.6.0 | NimBLE 1.7.0 | diff --git a/mkdocs.yml b/mkdocs.yml index 100a516479..7a31db80bb 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,5 +1,5 @@ site_name: Apache Mynewt -site_url: http://mynewt.apache.org +site_url: https://mynewt.apache.org repo_url: https://github.com/apache/mynewt-site/ edit_uri: blob/master/docs @@ -17,8 +17,8 @@ nav: - Talks: "talks.md" - Download: "download.md" - Community: "community.md" - - Events: "events.md" - Documentation: "documentation.md" + - CVE: "cve.md" markdown_extensions: - toc:
