From 1d8faad663cc51a3f84688c9c39ab980bf225c0c Mon Sep 17 00:00:00 2001 From: Ruslan Pislari Date: Thu, 11 Jun 2026 17:24:04 +0300 Subject: [PATCH 1/3] fix: update copyright year in wrapper.h to 2026 --- nginx_module/wrapper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx_module/wrapper.h b/nginx_module/wrapper.h index 3c976cc..bf74274 100644 --- a/nginx_module/wrapper.h +++ b/nginx_module/wrapper.h @@ -1,5 +1,5 @@ /* - * Copyright 2024 G-Core Innovations SARL + * Copyright 2026 G-Core Innovations SARL */ #include From f039b40893a0f58e2f89fcad6aaec48a94dcd971 Mon Sep 17 00:00:00 2001 From: Ruslan Pislari Date: Thu, 11 Jun 2026 17:25:17 +0300 Subject: [PATCH 2/3] fix: update nginx version to 1.31.1 in rust.yml --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 408a841..63efd4a 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -22,7 +22,7 @@ jobs: run: | apt update apt install -y curl build-essential libpcre3 libpcre3-dev zlib1g zlib1g-dev libssl-dev libgd-dev libxml2 libxml2-dev uuid-dev clang - curl http://nginx.org/download/nginx-1.25.3.tar.gz | tar xz - cd nginx-1.25.3 && ./configure --conf-path=/etc/nginx/nginx.conf --with-pcre --lock-path=/var/lock/nginx.lock --pid-path=/var/run/nginx.pid --with-http_ssl_module --modules-path=/etc/nginx/modules --with-http_v2_module --add-module=../examples/simple && make && make install + curl http://nginx.org/download/nginx-1.31.1.zip | tar xz + cd nginx-1.31.1 && ./configure --conf-path=/etc/nginx/nginx.conf --with-pcre --lock-path=/var/lock/nginx.lock --pid-path=/var/run/nginx.pid --with-http_ssl_module --modules-path=/etc/nginx/modules --with-http_v2_module --add-module=../examples/simple && make && make install - name: Run tests run: cargo test --verbose From 44501c676b94c33e79085a6c313cdeba3b9a1001 Mon Sep 17 00:00:00 2001 From: Ruslan Pislari Date: Fri, 12 Jun 2026 13:43:05 +0300 Subject: [PATCH 3/3] Apply suggestions from code review Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- .github/workflows/rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 63efd4a..859ab31 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -22,7 +22,7 @@ jobs: run: | apt update apt install -y curl build-essential libpcre3 libpcre3-dev zlib1g zlib1g-dev libssl-dev libgd-dev libxml2 libxml2-dev uuid-dev clang - curl http://nginx.org/download/nginx-1.31.1.zip | tar xz + curl -fsSL https://nginx.org/download/nginx-1.31.1.tar.gz | tar xz cd nginx-1.31.1 && ./configure --conf-path=/etc/nginx/nginx.conf --with-pcre --lock-path=/var/lock/nginx.lock --pid-path=/var/run/nginx.pid --with-http_ssl_module --modules-path=/etc/nginx/modules --with-http_v2_module --add-module=../examples/simple && make && make install - name: Run tests run: cargo test --verbose