Skip to content

Commit 99fc807

Browse files
authored
Merge branch 'master' into master
2 parents 3c7bd86 + 9587793 commit 99fc807

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+4249
-3355
lines changed

.github/workflows/blackfire.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
- name: Set up PHP
1414
uses: shivammathur/setup-php@v2
1515
with:
16-
php-version: 7.4
16+
php-version: 8.4
1717
coverage: none
1818

1919
- name: Checkout code
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121
with:
2222
fetch-depth: 0
2323
ref: master
@@ -26,7 +26,7 @@ jobs:
2626
id: fetch_version
2727
run: |
2828
cd layers/blackfire;
29-
for VERSION in 80 81 82; do
29+
for VERSION in 80 81 82 83 84; do
3030
BF_AGENT_VERSION=$(curl -s -o probe -D - https://blackfire.io/api/v1/releases/probe/php/linux/amd64/$VERSION | grep -i 'X-Blackfire-Release-Version: ' | sed "s%X-Blackfire-Release-Version: %%I" | sed s%.$%%);
3131
php ./store.php $VERSION $BF_AGENT_VERSION;
3232
done

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
1717

@@ -39,7 +39,7 @@ jobs:
3939

4040
steps:
4141
- name: Checkout code
42-
uses: actions/checkout@v3
42+
uses: actions/checkout@v4
4343

4444
- name: Build docker images
4545
run: layer=${{ matrix.layer }} make docker-images

.github/workflows/deploy-docker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818

1919
- name: Get the version
2020
id: get-version
@@ -53,7 +53,7 @@ jobs:
5353

5454
steps:
5555
- name: Checkout
56-
uses: actions/checkout@v3
56+
uses: actions/checkout@v4
5757
with:
5858
fetch-depth: 2
5959

@@ -84,7 +84,7 @@ jobs:
8484

8585
steps:
8686
- name: Checkout
87-
uses: actions/checkout@v3
87+
uses: actions/checkout@v4
8888

8989
- name: Set up PHP
9090
uses: shivammathur/setup-php@v2

.github/workflows/force-update-layer-versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616
with:
1717
fetch-depth: 0
1818

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818

1919
# Only find layers that have changed since last tag
2020
- id: find-layers
@@ -48,7 +48,7 @@ jobs:
4848
coverage: none
4949

5050
- name: Checkout code
51-
uses: actions/checkout@v3
51+
uses: actions/checkout@v4
5252
with:
5353
fetch-depth: 0
5454

@@ -75,7 +75,7 @@ jobs:
7575

7676
steps:
7777
- name: Checkout code
78-
uses: actions/checkout@v3
78+
uses: actions/checkout@v4
7979
with:
8080
fetch-depth: 0
8181

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,21 @@
11
# Change log
22

3-
## 1.6.1
3+
## 1.8.0
44

55
- Upgrade Imagick to version 7.1.1-38 and build with support for AVIF format (aom encoder).
66

7+
## 1.7.2
8+
9+
- Update the tideways extension
10+
11+
## 1.7.1
12+
13+
- Fix odbc extension missing files
14+
15+
## 1.7.0
16+
17+
- Add support for PHP 8.4 for most extensions.
18+
719
## 1.6.0
820

921
- Add support for PHP 8.4 for postgres

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"latest_versions": {
33
"v0": "0.12.4",
4-
"v1": "1.5.0"
4+
"v1": "1.7.0"
55
}
66
}

0 commit comments

Comments
 (0)