Skip to content

Commit f503279

Browse files
authored
v2.3.0 (#240)
2 parents 980c039 + f12269f commit f503279

Some content is hidden

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

55 files changed

+681
-213
lines changed

.github/workflows/auto-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
-
1212
name: Checkout Branch ${{ github.ref_name }}
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v6
1414
-
1515
name: Create Pull Request
1616
run: gh pr create -B main --title "${{ github.ref_name }}" --body "Merging branch to create ${{ github.ref_name }}."

.github/workflows/dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
-
1414
name: Checkout code
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v6
1616
-
1717
name: Run PHPStan checks
1818
run: |
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
-
2525
name: Checkout code
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v6
2727
-
2828
name: Get repository name
2929
run: echo "REPOSITORY_NAME=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')" >> $GITHUB_ENV

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
-
1313
name: Checkout code
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v6
1515
-
1616
name: Get repository name
1717
run: echo "REPOSITORY_NAME=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')" >> $GITHUB_ENV

.github/workflows/update-readme.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
shell: bash
1616
-
1717
name: Checkout code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
-
2020
name: Login to DockerHub
2121
uses: docker/login-action@v3

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.2.8
1+
2.3.0

VERSION_MINOR

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.2
1+
2.3

cli.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bfren/php:php8.4
1+
FROM bfren/php:php8.5
22

33
ENV BF_PHP_EXT="curl session sodium pecl-yaml"
44

cmd.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
#docker buildx build -f cli.Dockerfile -t obadiah:cli --load .
3+
docker buildx build -f cli.Dockerfile -t obadiah:cli --load .
44
docker run \
55
-v $(pwd)/data:/data \
66
-v $(pwd)/src:/ws \

composer.lock

Lines changed: 8 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docker/Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bfren/nginx-php:php8.4-7.5.1
1+
FROM bfren/nginx-php:php8.5-8.1.4
22

33
LABEL org.opencontainers.image.source="https://github.com/bfren/obadiah"
44

@@ -21,6 +21,9 @@ ENV \
2121
# generate empty config.yml if one does not already exist
2222
BF_OBADIAH_GENERATE_EMPTY_CONFIG="1"
2323

24+
# remove source maps from production build
25+
RUN find /www -name "*.map" -delete
26+
2427
# run installation
2528
RUN bf-install
2629

0 commit comments

Comments
 (0)