From 4171d5e09860c785f6eead02dc2680877dfb71ff Mon Sep 17 00:00:00 2001 From: Andrew Clayton Date: Fri, 10 Jan 2025 17:28:10 +0000 Subject: [PATCH 1/3] Add 1.34.1 release page Signed-off-by: Andrew Clayton --- source/news.rst | 3 +++ source/news/2024/index.rst | 10 ++++---- source/news/2025/index.rst | 14 ++++++++++++ source/news/2025/unit-1.34.1-released.rst | 28 +++++++++++++++++++++++ 4 files changed, 51 insertions(+), 4 deletions(-) create mode 100644 source/news/2025/index.rst create mode 100644 source/news/2025/unit-1.34.1-released.rst diff --git a/source/news.rst b/source/news.rst index 3162fc61..52600e4a 100644 --- a/source/news.rst +++ b/source/news.rst @@ -5,6 +5,7 @@ News .. toctree:: :hidden: + 2025 2024 2023 2022 @@ -22,6 +23,8 @@ Most recent updates (to get them automatically, subscribe to our `RSS feed You can also browse our archives: +- :doc:`news/2025/index` + - :doc:`news/2024/index` - :doc:`news/2023/index` diff --git a/source/news/2024/index.rst b/source/news/2024/index.rst index 5b1db006..4223062a 100644 --- a/source/news/2024/index.rst +++ b/source/news/2024/index.rst @@ -6,8 +6,7 @@ News archive for the year 2024. .. nxt_news_entry:: :author: Unit Team - :description: Version 1.34.0 includes three new configuration options and a - CLI tool. + :description: Version 1.34.0 includes initial OpenTelemetry (OTEL) support. :email: unit-owner@nginx.org :title: Unit 1.34.0 Released :url: news/2024/unit-1.34.0-released @@ -15,7 +14,8 @@ News archive for the year 2024. .. nxt_news_entry:: :author: Unit Team - :description: Version 1.33.0 includes three new configuration options and a CLI tool. + :description: Version 1.33.0 includes three new configuration options + and a CLI tool. :email: unit-owner@nginx.org :title: Unit 1.33.0 Released :url: news/2024/unit-1.33.0-released @@ -23,7 +23,9 @@ News archive for the year 2024. .. nxt_news_entry:: :author: Unit Team - :description: Version 1.32.1 is a maintenance release that fixes bugs in the new WebAssembly Language Module and in our njs implementation. + :description: Version 1.32.1 is a maintenance release that fixes bugs + in the new WebAssembly Language Module and in our njs + implementation. :email: unit-owner@nginx.org :title: Unit 1.32.1 Released :url: news/2024/unit-1.32.1-released diff --git a/source/news/2025/index.rst b/source/news/2025/index.rst new file mode 100644 index 00000000..690b584d --- /dev/null +++ b/source/news/2025/index.rst @@ -0,0 +1,14 @@ +############ +News of 2025 +############ + +News archive for the year 2025. + +.. nxt_news_entry:: + :author: Unit Team + :description: Version 1.34.1 is a maintenance release that fixes issues + with the previously introduced OpenTelemetry (OTEL) support. + :email: unit-owner@nginx.org + :title: Unit 1.34.1 Released + :url: news/2025/unit-1.34.1-released + :date: 2025-01-10 diff --git a/source/news/2025/unit-1.34.1-released.rst b/source/news/2025/unit-1.34.1-released.rst new file mode 100644 index 00000000..068e37ee --- /dev/null +++ b/source/news/2025/unit-1.34.1-released.rst @@ -0,0 +1,28 @@ +:orphan: + +#################### +Unit 1.34.1 Released +#################### + +We are pleased to announce the release of NGINX Unit 1.34.1. This is a +maintenance release that fixes stability issues caused by the +OpenTelemetry (OTEL) support that was added in the previous release. + +- It addresses instability issues resulting in Unit segmentation + faulting when OTEL was not actually configured. + +- It addresses issues of not being able to build Unit with OTEL support + on various platforms, including macOS. + +************** +Full Changelog +************** + +.. code-block:: none + + Changes with Unit 1.34.1 10 Jan 2025 + + *) Bugfix: fix instability issues due to OpenTelemetry (OTEL) support. + + *) Bugfix: fix issues with building OpenTelemetry (OTEL) support on + various platforms, including macOS. From fe0a70fb1c2e0811905056f686a2e473ac01ca8c Mon Sep 17 00:00:00 2001 From: Andrew Clayton Date: Fri, 10 Jan 2025 17:30:53 +0000 Subject: [PATCH 2/3] Update CHANGES.txt for 1.34.1 Signed-off-by: Andrew Clayton --- source/CHANGES.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/source/CHANGES.txt b/source/CHANGES.txt index c79ea040..ea244733 100644 --- a/source/CHANGES.txt +++ b/source/CHANGES.txt @@ -1,3 +1,10 @@ +Changes with Unit 1.34.1 10 Jan 2025 + + *) Bugfix: fix instability issues due to OpenTelemetry (OTEL) support. + + *) Bugfix: fix issues with building OpenTelemetry (OTEL) support on + various platforms, including macOS. + Changes with Unit 1.34.0 19 Dec 2024 From 047500461d1fbd72180440db9e79c4a09a8f57af Mon Sep 17 00:00:00 2001 From: Andrew Clayton Date: Fri, 10 Jan 2025 17:31:51 +0000 Subject: [PATCH 3/3] conf.py: Update for 1.34.1 Signed-off-by: Andrew Clayton --- source/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/conf.py b/source/conf.py index 6a0d1eec..3d51e99e 100644 --- a/source/conf.py +++ b/source/conf.py @@ -5,8 +5,8 @@ project = 'NGINX Unit' author = 'NGINX, Inc.' copyright = '2017-2025' -version = '1.34.0' -release_date = 'Dec 19, 2024' +version = '1.34.1' +release_date = 'Jan 10, 2025' release = version needs_sphinx = '6.2'