Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nginx/1.26.2 #128

Merged
merged 3 commits into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [unreleased] - XXXX-XX-XX
## [unreleased] - YYYY-MM-DD

## [1.13] - 2024-08-30
### Changes
- Update Nginx to 1.26.2

## [1.12] - 2024-06-06
### Changes
- Update Nginx to 1.26.1

Expand Down
Binary file modified nginx-heroku-20.tgz
Binary file not shown.
Binary file modified nginx-heroku-22.tgz
Binary file not shown.
Binary file modified nginx-heroku-24-amd64.tgz
Binary file not shown.
Binary file modified nginx-heroku-24-arm64.tgz
Binary file not shown.
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ These are auto-selected based on the app's stack at build time.

| Heroku Stack | Nginx Version | PCRE version |
|--------------|--------------:|-------------:|
| `Heroku-20` | `1.26.1` | PCRE1 (8.x) |
| `Heroku-22` | `1.26.1` | PCRE1 (8.x) |
| `Heroku-24` | `1.26.1` | PCRE2 (10.x) |
| `Heroku-20` | `1.26.2` | PCRE1 (8.x) |
| `Heroku-22` | `1.26.2` | PCRE1 (8.x) |
| `Heroku-24` | `1.26.2` | PCRE2 (10.x) |

## Presets

Expand Down
2 changes: 1 addition & 1 deletion scripts/build_nginx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set -o pipefail
# fail harder
set -eu

NGINX_VERSION=${NGINX_VERSION-1.26.1}
NGINX_VERSION=${NGINX_VERSION-1.26.2}
HEADERS_MORE_VERSION=${HEADERS_MORE_VERSION-0.37}
UUID4_VERSION=${UUID4_VERSION-f8f7ff44e6a8c6cf75232ae4b63d011f2f3b34c1}

Expand Down