Skip to content

Commit

Permalink
Beta v9.11.2 (#7429)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaIng authored Feb 23, 2025
2 parents 6a060ae + 17d8878 commit 4133303
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .update/patches
Original file line number Diff line number Diff line change
Expand Up @@ -2137,6 +2137,9 @@ Patch_9_11()
# Change web UI port to 8089 to avoid conflict with webservers and other web applications
G_EXEC pihole-FTL --config webserver.port 8089

# Migrate QUERY_LOGGING=false: https://github.com/pi-hole/FTL/pull/2264
grep -q '^QUERY_LOGGING=false$' /etc/pihole/migration_backup_v6/setupVars.conf && G_EXEC pihole-FTL --config dns.queryLogging 'false'

# Inform user about differences to stock Pi-hole installation
G_WHIP_MSG "[ INFO ] Pi-hole network port changed to 8089
\nTo align migrated Pi-hole v6 instances with fresh installs, and avoid possible conflicts with dedicated webservers, the network port has been changed to 8089. Your Pi-hole instance will hence be available at:
Expand Down
2 changes: 1 addition & 1 deletion .update/version
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Available DietPi version
G_REMOTE_VERSION_CORE=9
G_REMOTE_VERSION_SUB=11
G_REMOTE_VERSION_RC=1
G_REMOTE_VERSION_RC=2
# Minimum DietPi version to allow update
G_MIN_VERSION_CORE=7
G_MIN_VERSION_SUB=0
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
v9.11
(2025-02-22)
(2025-02-23)

Bug fixes:
- Quartz64/Star64/VisionFive 2 | Resolves an issue where the import of config files from the setup FAT partition and root filesystem expansion on first boot could have failed. Many thanks to @disconn3ct for reporting this issue: https://github.com/MichaIng/DietPi/issues/6838
- DietPi-FirstBoot | Resolved an issue, where the automatic first run setup could have failed, if the network adapter, wpa_supplicant or DHCP client took a little longer to receive an IP address, without "ifup" further halting the script. In case of "AUTO_SETUP_AUTOMATED=1" in dietpi.txt, the very first network check is assured to try at least 4 times, with a 5 seconds delay between each attempt.
- DietPi-Config | Resolved an issue where selecting the linux-image-rpi-v8 kernel on 32-bit images failed. Many thanks to @SOULV1CE for reporting this issue: https://github.com/MichaIng/DietPi/issues/7402
- DietPi-Config | Resolved an issue on Raspberry Pi where selecting the linux-image-rpi-v8 kernel on 32-bit images failed. Many thanks to @SOULV1CE for reporting this issue: https://github.com/MichaIng/DietPi/issues/7402
- DietPi-Software | Fail2Ban: Resolved an issue where the install failed while downloading updated Dropbear filters. Many thanks to @Stream5710 for reporting this issue: https://github.com/MichaIng/DietPi/issues/7413
- DietPi-Software | Pi-hole: Support for Pi-hole v6 was added. During the DietPi update, we check whether your Pi-hole has been updated already, and in case perform some migration and cleanup of DietPi-specific configs. Also, since Pi-hole v6 ships with its internal webserver and PHP interpreter, if a webserver and PHP are installed without any dependant among dietpi-software options, it is offered to uninstall them.

Expand Down
2 changes: 1 addition & 1 deletion dietpi/func/dietpi-globals
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
# - Assign defaults/code version as fallback
[[ $G_DIETPI_VERSION_CORE ]] || G_DIETPI_VERSION_CORE=9
[[ $G_DIETPI_VERSION_SUB ]] || G_DIETPI_VERSION_SUB=11
[[ $G_DIETPI_VERSION_RC ]] || G_DIETPI_VERSION_RC=1
[[ $G_DIETPI_VERSION_RC ]] || G_DIETPI_VERSION_RC=2
[[ $G_GITBRANCH ]] || G_GITBRANCH='master'
[[ $G_GITOWNER ]] || G_GITOWNER='MichaIng'
# - Save current version and Git branch
Expand Down

0 comments on commit 4133303

Please sign in to comment.