Skip to content

Commit 07364ec

Browse files
authored
Merge branch 'master' into ayan.khan/stable-session-id-headers
2 parents 44fc0fd + 5e9ab01 commit 07364ec

4 files changed

Lines changed: 24 additions & 3 deletions

File tree

.github/workflows/system-tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,16 @@ jobs:
4242
main:
4343
needs:
4444
- build
45-
uses: DataDog/system-tests/.github/workflows/system-tests.yml@main
45+
uses: DataDog/system-tests/.github/workflows/system-tests.yml@1e5d6b7096279ca43ce4826fda3cc805635b63c1
4646
secrets:
4747
DD_API_KEY: ${{ secrets.DD_API_KEY }}
4848
TEST_OPTIMIZATION_API_KEY: ${{ secrets.DD_API_KEY }}
4949
permissions:
5050
contents: read
51-
packages: write
51+
id-token: write
5252
with:
5353
library: cpp_nginx
54+
ref: 1e5d6b7096279ca43ce4826fda3cc805635b63c1
5455
binaries_artifact: binaries
5556
desired_execution_time: 600 # 10 minutes
5657
scenarios_groups: ${{ (github.event_name == 'schedule' || github.event_name == 'push') && 'tracer_release' || 'appsec' }}

.gitlab/build-and-test-all.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ build-nginx-all:
5757
- "1.29.6"
5858
- "1.29.7"
5959
- "1.29.8"
60+
- "1.30.0"
6061
WAF: ["ON", "OFF"]
6162

6263
build-nginx-rum-all:
@@ -97,6 +98,7 @@ build-nginx-rum-all:
9798
- "1.29.6"
9899
- "1.29.7"
99100
- "1.29.8"
101+
- "1.30.0"
100102
WAF: ["OFF"]
101103

102104
build-ingress-nginx-all:
@@ -301,6 +303,10 @@ test-nginx-all-bis:
301303
BASE_IMAGE: ["nginx:1.29.8", "nginx:1.29.8-alpine"]
302304
NGINX_VERSION: ["1.29.8"]
303305
WAF: ["ON", "OFF"]
306+
- ARCH: ["amd64", "arm64"]
307+
BASE_IMAGE: ["nginx:1.30.0", "nginx:1.30.0-alpine"]
308+
NGINX_VERSION: ["1.30.0"]
309+
WAF: ["ON", "OFF"]
304310
- ARCH: ["amd64", "arm64"]
305311
BASE_IMAGE: ["amazonlinux:2023.3.20240219.0"]
306312
NGINX_VERSION: ["1.24.0"]
@@ -432,6 +438,10 @@ test-nginx-rum-all:
432438
BASE_IMAGE: ["nginx:1.29.8"]
433439
NGINX_VERSION: ["1.29.8"]
434440
WAF: ["OFF"]
441+
- ARCH: ["amd64", "arm64"]
442+
BASE_IMAGE: ["nginx:1.30.0"]
443+
NGINX_VERSION: ["1.30.0"]
444+
WAF: ["OFF"]
435445

436446
test-ingress-nginx-all:
437447
extends:

.gitlab/build-and-test-fast.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ build-nginx-fast:
6363
- "1.27.5"
6464
- "1.28.3"
6565
- "1.29.8"
66+
- "1.30.0"
6667
WAF: ["ON", "OFF"]
6768

6869
build-ingress-nginx-fast:
@@ -103,6 +104,7 @@ build-nginx-rum-fast:
103104
- "1.27.5"
104105
- "1.28.3"
105106
- "1.29.8"
107+
- "1.30.0"
106108
WAF: ["OFF"]
107109

108110
test-nginx-fast:
@@ -136,6 +138,10 @@ test-nginx-fast:
136138
BASE_IMAGE: ["nginx:1.29.8", "nginx:1.29.8-alpine"]
137139
NGINX_VERSION: ["1.29.8"]
138140
WAF: ["ON", "OFF"]
141+
- ARCH: ["amd64", "arm64"]
142+
BASE_IMAGE: ["nginx:1.30.0", "nginx:1.30.0-alpine"]
143+
NGINX_VERSION: ["1.30.0"]
144+
WAF: ["ON", "OFF"]
139145
- ARCH: ["amd64", "arm64"]
140146
BASE_IMAGE: ["amazonlinux:2023.3.20240219.0"]
141147
NGINX_VERSION: ["1.24.0"]
@@ -198,6 +204,10 @@ test-nginx-rum-fast:
198204
BASE_IMAGE: ["nginx:1.29.8"]
199205
NGINX_VERSION: ["1.29.8"]
200206
WAF: ["OFF"]
207+
- ARCH: ["amd64", "arm64"]
208+
BASE_IMAGE: ["nginx:1.30.0"]
209+
NGINX_VERSION: ["1.30.0"]
210+
WAF: ["OFF"]
201211

202212
coverage:
203213
extends:

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
77
cmake_policy(SET CMP0068 NEW)
88
cmake_policy(SET CMP0135 NEW)
99

10-
set(NGINX_DATADOG_VERSION 1.15.0)
10+
set(NGINX_DATADOG_VERSION 1.16.0)
1111
project(ngx_http_datadog_module VERSION ${NGINX_DATADOG_VERSION})
1212

1313
option(NGINX_DATADOG_ASM_ENABLED "Build with libddwaf" ON)

0 commit comments

Comments
 (0)