Skip to content

Commit 68310d4

Browse files
authored
v6.4.11 (#264)
Minor updates * Don't install NinjaFirewall by default for new installations Build updates * Using GitHub CLI for auto PR
1 parent ae93204 commit 68310d4

File tree

9 files changed

+37
-33
lines changed

9 files changed

+37
-33
lines changed

.github/workflows/auto-pr.yml

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,11 @@ jobs:
88
if: github.ref_type == 'branch'
99
runs-on: ubuntu-latest
1010
steps:
11-
-
12-
name: Checkout Branch ${{ github.ref_name }}
13-
uses: actions/checkout@v4
14-
-
15-
name: Create Pull Request
16-
uses: bfren/pull-request@v2
17-
with:
18-
github_token: ${{ secrets.PAT }}
19-
destination_branch: main
20-
pr_title: ${{ github.ref_name }}
21-
pr_body: "Merging branch to create ${{ github.ref_name }}."
11+
-
12+
name: Checkout Branch ${{ github.ref_name }}
13+
uses: actions/checkout@v4
14+
-
15+
name: Create Pull Request
16+
run: gh pr create -B main --title "${{ github.ref_name }}" --body "Merging branch to create ${{ github.ref_name }}."
17+
env:
18+
GITHUB_TOKEN: ${{ secrets.PAT }}

Dockerfile.esh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@ ENV \
3232
BF_WP_DISABLE_MAJOR_UPDATES=1 \
3333
# whether or not to enable HTTPS behind a proxy server
3434
BF_WP_ENABLE_HTTPS_BEHIND_PROXY=1 \
35-
# set to 0 if you don't want the NinjaFirewall plugin to be installed automatically and setup
36-
# to run in full WAF mode (you will still have to enable it in the WordPress backend)
37-
BF_WP_INSTALL_NINJAFIREWALL=1 \
35+
# set to 1 if you want the NinjaFirewall plugin to be setup to run in full WAF mode
36+
# (you will still have to enable it in the WordPress backend)
37+
# NB: this must be 0 until you have installed WordPress or you will not be able to access the site
38+
BF_WP_INSTALL_NINJAFIREWALL=0 \
3839
# set to 0 if you don't want the WebAuthn plugin to be installed automatically
3940
BF_WP_INSTALL_WEBAUTHN=1 \
4041
# set to 0 to use WordPress cron instead of system cron (will reduce performance)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.4.10
1+
6.4.11

php7.4/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@ ENV \
3232
BF_WP_DISABLE_MAJOR_UPDATES=1 \
3333
# whether or not to enable HTTPS behind a proxy server
3434
BF_WP_ENABLE_HTTPS_BEHIND_PROXY=1 \
35-
# set to 0 if you don't want the NinjaFirewall plugin to be installed automatically and setup
36-
# to run in full WAF mode (you will still have to enable it in the WordPress backend)
37-
BF_WP_INSTALL_NINJAFIREWALL=1 \
35+
# set to 1 if you want the NinjaFirewall plugin to be setup to run in full WAF mode
36+
# (you will still have to enable it in the WordPress backend)
37+
# NB: this must be 0 until you have installed WordPress or you will not be able to access the site
38+
BF_WP_INSTALL_NINJAFIREWALL=0 \
3839
# set to 0 if you don't want the WebAuthn plugin to be installed automatically
3940
BF_WP_INSTALL_WEBAUTHN=1 \
4041
# set to 0 to use WordPress cron instead of system cron (will reduce performance)

php8.0/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@ ENV \
3232
BF_WP_DISABLE_MAJOR_UPDATES=1 \
3333
# whether or not to enable HTTPS behind a proxy server
3434
BF_WP_ENABLE_HTTPS_BEHIND_PROXY=1 \
35-
# set to 0 if you don't want the NinjaFirewall plugin to be installed automatically and setup
36-
# to run in full WAF mode (you will still have to enable it in the WordPress backend)
37-
BF_WP_INSTALL_NINJAFIREWALL=1 \
35+
# set to 1 if you want the NinjaFirewall plugin to be setup to run in full WAF mode
36+
# (you will still have to enable it in the WordPress backend)
37+
# NB: this must be 0 until you have installed WordPress or you will not be able to access the site
38+
BF_WP_INSTALL_NINJAFIREWALL=0 \
3839
# set to 0 if you don't want the WebAuthn plugin to be installed automatically
3940
BF_WP_INSTALL_WEBAUTHN=1 \
4041
# set to 0 to use WordPress cron instead of system cron (will reduce performance)

php8.1/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@ ENV \
3232
BF_WP_DISABLE_MAJOR_UPDATES=1 \
3333
# whether or not to enable HTTPS behind a proxy server
3434
BF_WP_ENABLE_HTTPS_BEHIND_PROXY=1 \
35-
# set to 0 if you don't want the NinjaFirewall plugin to be installed automatically and setup
36-
# to run in full WAF mode (you will still have to enable it in the WordPress backend)
37-
BF_WP_INSTALL_NINJAFIREWALL=1 \
35+
# set to 1 if you want the NinjaFirewall plugin to be setup to run in full WAF mode
36+
# (you will still have to enable it in the WordPress backend)
37+
# NB: this must be 0 until you have installed WordPress or you will not be able to access the site
38+
BF_WP_INSTALL_NINJAFIREWALL=0 \
3839
# set to 0 if you don't want the WebAuthn plugin to be installed automatically
3940
BF_WP_INSTALL_WEBAUTHN=1 \
4041
# set to 0 to use WordPress cron instead of system cron (will reduce performance)

php8.2/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@ ENV \
3232
BF_WP_DISABLE_MAJOR_UPDATES=1 \
3333
# whether or not to enable HTTPS behind a proxy server
3434
BF_WP_ENABLE_HTTPS_BEHIND_PROXY=1 \
35-
# set to 0 if you don't want the NinjaFirewall plugin to be installed automatically and setup
36-
# to run in full WAF mode (you will still have to enable it in the WordPress backend)
37-
BF_WP_INSTALL_NINJAFIREWALL=1 \
35+
# set to 1 if you want the NinjaFirewall plugin to be setup to run in full WAF mode
36+
# (you will still have to enable it in the WordPress backend)
37+
# NB: this must be 0 until you have installed WordPress or you will not be able to access the site
38+
BF_WP_INSTALL_NINJAFIREWALL=0 \
3839
# set to 0 if you don't want the WebAuthn plugin to be installed automatically
3940
BF_WP_INSTALL_WEBAUTHN=1 \
4041
# set to 0 to use WordPress cron instead of system cron (will reduce performance)

php8.3/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@ ENV \
3232
BF_WP_DISABLE_MAJOR_UPDATES=1 \
3333
# whether or not to enable HTTPS behind a proxy server
3434
BF_WP_ENABLE_HTTPS_BEHIND_PROXY=1 \
35-
# set to 0 if you don't want the NinjaFirewall plugin to be installed automatically and setup
36-
# to run in full WAF mode (you will still have to enable it in the WordPress backend)
37-
BF_WP_INSTALL_NINJAFIREWALL=1 \
35+
# set to 1 if you want the NinjaFirewall plugin to be setup to run in full WAF mode
36+
# (you will still have to enable it in the WordPress backend)
37+
# NB: this must be 0 until you have installed WordPress or you will not be able to access the site
38+
BF_WP_INSTALL_NINJAFIREWALL=0 \
3839
# set to 0 if you don't want the WebAuthn plugin to be installed automatically
3940
BF_WP_INSTALL_WEBAUTHN=1 \
4041
# set to 0 to use WordPress cron instead of system cron (will reduce performance)

php8.4/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@ ENV \
3232
BF_WP_DISABLE_MAJOR_UPDATES=1 \
3333
# whether or not to enable HTTPS behind a proxy server
3434
BF_WP_ENABLE_HTTPS_BEHIND_PROXY=1 \
35-
# set to 0 if you don't want the NinjaFirewall plugin to be installed automatically and setup
36-
# to run in full WAF mode (you will still have to enable it in the WordPress backend)
37-
BF_WP_INSTALL_NINJAFIREWALL=1 \
35+
# set to 1 if you want the NinjaFirewall plugin to be setup to run in full WAF mode
36+
# (you will still have to enable it in the WordPress backend)
37+
# NB: this must be 0 until you have installed WordPress or you will not be able to access the site
38+
BF_WP_INSTALL_NINJAFIREWALL=0 \
3839
# set to 0 if you don't want the WebAuthn plugin to be installed automatically
3940
BF_WP_INSTALL_WEBAUTHN=1 \
4041
# set to 0 to use WordPress cron instead of system cron (will reduce performance)

0 commit comments

Comments
 (0)