Skip to content

Commit 7c34f59

Browse files
almalinux8
1 parent f43c695 commit 7c34f59

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

.github/workflows/nginx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
fail-fast: false
4747
matrix:
4848
image: ["ubuntu:24.04", "debian:11", "alpine:3.20", "amazonlinux:2", "amazonlinux:2023"]
49-
nginx: ["1.27.3", "1.27.2", "1.27.1", "1.26.2", "1.24.0", "1.22.1"]
49+
nginx: ["1.29.3", "1.27.2", "1.27.1", "1.26.2", "1.24.0", "1.22.1"]
5050
steps:
5151
- name: checkout otel nginx
5252
uses: actions/checkout@v4

instrumentation/nginx/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ cmake -DCMAKE_POSITION_INDEPENDENT_CODE=ON ..
2727
```
2828
mkdir build
2929
cd build
30-
cmake -DNGINX_VERSION=1.27.3 ..
30+
cmake -DNGINX_VERSION=1.29.3 ..
3131
make
3232
```
3333

instrumentation/nginx/test/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG image=ubuntu:24.04
22
FROM $image AS build
33

44
ARG otel_cpp_version=1.17.0
5-
ARG nginx_version=1.27.3
5+
ARG nginx_version=1.29.3
66

77
RUN apt-get update && \
88
apt-get install --no-install-recommends --no-install-suggests -y \

instrumentation/nginx/test/Dockerfile_alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG image=alpine:3.20
22
FROM $image AS build
33

44
ARG otel_cpp_version=1.17.0
5-
ARG nginx_version=1.27.3
5+
ARG nginx_version=1.29.3
66

77
RUN apk update && \
88
apk add git cmake build-base curl curl-dev protobuf-dev pcre2-dev

instrumentation/nginx/test/Dockerfile_amazonlinux

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG image=amazonlinux:2
22
FROM $image AS build
33

44
ARG otel_cpp_version=1.17.0
5-
ARG nginx_version=1.27.3
5+
ARG nginx_version=1.29.3
66

77
RUN yum install -y git gcc-c++ make tar curl-devel unzip zlib-devel pcre2-devel
88

instrumentation/otel-webserver-module/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ARG LOG4CXX_VERSION="0.11.0"
2424
ARG GTEST_VERSION="1.10.0"
2525
ARG AUTOMAKE_VERSION="1.16.3"
2626
ARG PCRE_VERSION="8.44"
27-
ARG NGINX_VERSION="1.27.3"
27+
ARG NGINX_VERSION="1.29.3"
2828

2929

3030
# create default non-root user
@@ -273,7 +273,7 @@ RUN cd /otel-webserver-module/build \
273273
&& cd /
274274

275275
RUN cp /otel-webserver-module/conf/nginx/opentelemetry_module.conf /opt/ \
276-
&& sed -i '8i load_module /opt/opentelemetry-webserver-sdk/WebServerModule/Nginx/1.27.3/ngx_http_opentelemetry_module.so;' /etc/nginx/nginx.conf \
276+
&& sed -i '8i load_module /opt/opentelemetry-webserver-sdk/WebServerModule/Nginx/1.29.3/ngx_http_opentelemetry_module.so;' /etc/nginx/nginx.conf \
277277
&& sed -i '33i include /opt/opentelemetry_module.conf;' /etc/nginx/nginx.conf \
278278
&& cd /
279279

instrumentation/otel-webserver-module/codeql-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ APRUTIL_VERSION="1.6.1"
3636
LOG4CXX_VERSION="0.11.0"
3737
GTEST_VERSION="1.10.0"
3838
PCRE_VERSION="8.44"
39-
NGINX_VERSION="1.27.3"
39+
NGINX_VERSION="1.29.3"
4040

4141
# Install GRPC
4242
git clone --shallow-submodules --depth 1 --recurse-submodules -b v${GRPC_VERSION} \

instrumentation/otel-webserver-module/docker/centos8/Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ ARG AUTOMAKE_VERSION="1.16.3"
2626
ARG PERL_VERSION="5.20.2"
2727
ARG PERL_CPANVERSION="5.0"
2828
ARG PCRE_VERSION="8.44"
29-
ARG NGINX_VERSION="1.27.3"
29+
ARG NGINX_VERSION="1.29.3"
3030

3131
# create default non-root user
3232
RUN groupadd -r swuser && useradd -u 1000 -g swuser -m -s /sbin/nologin -c "default non-root user" swuser
@@ -283,10 +283,10 @@ RUN echo "[nginx]" > /etc/yum.repos.d/nginx.repo && \
283283
# Install necessary tools
284284
RUN dnf install -y wget && dnf clean all
285285

286-
# Download and install Nginx 1.27.3 from the correct path
287-
RUN wget https://nginx.org/packages/mainline/centos/8/x86_64/RPMS/nginx-1.27.3-1.el8.ngx.x86_64.rpm && \
288-
dnf install -y ./nginx-1.27.3-1.el8.ngx.x86_64.rpm && \
289-
rm -f nginx-1.27.3-1.el8.ngx.x86_64.rpm && \
286+
# Download and install Nginx 1.29.3 from the correct path
287+
RUN wget https://nginx.org/packages/mainline/centos/8/x86_64/RPMS/nginx-1.29.3-1.el8.ngx.x86_64.rpm && \
288+
dnf install -y ./nginx-1.29.3-1.el8.ngx.x86_64.rpm && \
289+
rm -f nginx-1.29.3-1.el8.ngx.x86_64.rpm && \
290290
dnf clean all
291291

292292

@@ -302,7 +302,7 @@ RUN cd /otel-webserver-module/build \
302302
&& cd /
303303

304304
RUN cp /otel-webserver-module/conf/nginx/opentelemetry_module.conf /opt/ \
305-
&& sed -i '8i load_module /opt/opentelemetry-webserver-sdk/WebServerModule/Nginx/1.27.3/ngx_http_opentelemetry_module.so;' /etc/nginx/nginx.conf \
305+
&& sed -i '8i load_module /opt/opentelemetry-webserver-sdk/WebServerModule/Nginx/1.29.3/ngx_http_opentelemetry_module.so;' /etc/nginx/nginx.conf \
306306
&& sed -i '33i include /opt/opentelemetry_module.conf;' /etc/nginx/nginx.conf \
307307
&& cd /
308308

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
server-module-version=1.0.3
22
release=GA
3-
nginxSupportedVersions=1.27.3
3+
nginxSupportedVersions=1.29.3
44
CPP-SDK-version=1.2.0

0 commit comments

Comments
 (0)