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

v238 #651

Merged
merged 8 commits into from
Sep 1, 2023
Merged

v238 #651

Show file tree
Hide file tree
Changes from 7 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
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
# heroku-buildpack-php CHANGELOG

## v238 (2023-08-??)
## v238 (2023-08-31)

### ADD

- ext-phalcon/5.3.0 [David Zuelke]
- ext-mongodb/1.16.2 [David Zuelke]
- ext-amqp/2.0.0 [David Zuelke]
- PHP/8.1.23 [David Zuelke]
- PHP/8.2.10 [David Zuelke]

### CHG

- Import telemetry helper shell functions previously vendored from 'lang-common' S3 bucket [David Zuelke]
- blackfire/2.21.0 [David Zuelke]

## v237 (2023-08-04)

Expand Down
2 changes: 1 addition & 1 deletion bin/compile
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ fi
mkdir -p $build_dir/.heroku/php-min
ln -s $build_dir/.heroku/php-min /app/.heroku/php-min

curl_retry_on_18 --retry-connrefused --retry 3 --connect-timeout 5 --fail --silent --location -o $build_dir/.heroku/php-min.tar.gz "${s3_url}php-min-8.1.22.tar.gz" || {
curl_retry_on_18 --retry-connrefused --retry 3 --connect-timeout 5 --fail --silent --location -o $build_dir/.heroku/php-min.tar.gz "${s3_url}php-min-8.1.23.tar.gz" || {
mcount "failures.bootstrap.download.php-min"
error <<-EOF
Failed to download minimal PHP for bootstrapping!
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env bash
# Build Path: /app/.heroku/php
# Build Deps: php-8.0.*

source $(dirname $0)/../no-debug-non-zts-20180731/amqp
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env bash
# Build Path: /app/.heroku/php
# Build Deps: php-8.1.*

source $(dirname $0)/../no-debug-non-zts-20180731/amqp
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env bash
# Build Path: /app/.heroku/php
# Build Deps: php-8.2.*

source $(dirname $0)/../no-debug-non-zts-20180731/amqp
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading