Skip to content

home.arpa and internal TLDs may be non-local without revServer#2772

Merged
DL6ER merged 3 commits into
developmentfrom
fix/dns_domain_local
Feb 16, 2026
Merged

home.arpa and internal TLDs may be non-local without revServer#2772
DL6ER merged 3 commits into
developmentfrom
fix/dns_domain_local

Conversation

@DL6ER

@DL6ER DL6ER commented Feb 1, 2026

Copy link
Copy Markdown
Member

What does this implement/fix?

Fix that dns.domain = "home.arpa" ( or "internal") and dns.domain.local = false should result in these domains being sent to regular upstreams - even in the absence of matching revServer settings. So far, a valid revServer line for this configuration is needed to function as expected.

This is a direct fix for #2769


Related issue or feature (if applicable): Closes #2769

Pull request in docs with documentation (if applicable): N/A


By submitting this pull request, I confirm the following:

  1. I have read and understood the contributors guide, as well as this entire template. I understand which branch to base my commits and Pull Requests against.
  2. I have commented my proposed changes within the code.
  3. I am willing to help maintain this change if there are issues with it later.
  4. It is compatible with the EUPL 1.2 license
  5. I have squashed any insignificant commits. (git rebase)

Checklist:

  • The code change is tested and works locally.
  • I based my code and PRs against the repositories development branch.
  • I signed off all commits. Pi-hole enforces the DCO for all contributions
  • I signed all my commits. Pi-hole requires signatures to verify authorship
  • I have read the above and my PR is ready for review.

…= false should result in these domains being sent to regular upstreams in the absence of matching revServer settings

Signed-off-by: Dominik <dl6er@dl6er.de>

@Aerankas Aerankas left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My vote doesn't count, but looks good to me and thanks for the fix.

@yubiuser

yubiuser commented Feb 2, 2026

Copy link
Copy Markdown
Member

@Aerankas did you actually test this brach in your setup?

You can switch to this implementation by runing

pihole checkout ftl fix/dns_domain_local

@Aerankas

Aerankas commented Feb 3, 2026

Copy link
Copy Markdown

I did attempt to verify this, thanks for the command to switch to dev branch. I left revServers blank, set dns.domain.name to home.arpa and dns.domain.local to disabled, as I wanted. I can see the dnsmasq.conf line (local=/home.arpa/) is gone. However I can't seem to resolve a home.arpa address (NXDOMAIN). This could be a problem on my end since I did change to a different domain and tried to just create a test - In opnsense unbound I set query forwarding for home.arpa to point to dnsmasq. In dnsmasq I added a hosts record with name piholeverify, domain home.arpa and a valid IP on my network. I'm not yet sure where the request is failing.
Edit: nslookup direct to opnsense also returns NXDOMAIN, so I think it's possible the request is being forwarded correctly and my test setup is poor.

@Aerankas

Aerankas commented Feb 3, 2026

Copy link
Copy Markdown

I was able to set up a proper test and unfortunately it's not working as expected.

Direct to opnsense works:

nslookup piholeverify.home.arpa 192.168.0.1
Server: opnsense.lan
Address: 192.168.0.1

Name: piholeverify.home.arpa
Address: 192.168.0.10

Via pihole fails (it's forwarding to 192.168.0.1):
nslookup piholeverify.home.arpa
Server: pi.hole
Address: 192.168.1.10

*** pi.hole can't find piholeverify.home.arpa: Non-existent domain

@Aerankas

Aerankas commented Feb 3, 2026

Copy link
Copy Markdown

Ah. It's appending .lan which is why it fails.

root@pihole:/etc/pihole# pihole -t | grep home.arpa
Feb 3 11:01:55: query[A] piholeverify.home.arpa.lan from 192.168.0.50
Feb 3 11:01:55: forwarded piholeverify.home.arpa.lan to 192.168.1.1
Feb 3 11:01:55: reply piholeverify.home.arpa.lan is NXDOMAIN

That's probably my connection-specific suffix? I tried setting is manually to prevent this (I'm committed to keeping my internal domain as .lan now so I don't want to reconfigure it back to home.arpa, so the testing is a little finicky).

Now I can see both the .lan request and the proper request, but getting a cached nxdomain

root@pihole:/etc/pihole# pihole -t | grep home.arpa
Feb 3 11:19:13: query[A] piholeverify.home.arpa.lan from 192.168.0.50
Feb 3 11:19:13: forwarded piholeverify.home.arpa.lan to 192.168.1.1
Feb 3 11:19:13: reply piholeverify.home.arpa.lan is NXDOMAIN
Feb 3 11:19:13: query[AAAA] piholeverify.home.arpa.lan from 192.168.0.50
Feb 3 11:19:13: forwarded piholeverify.home.arpa.lan to 192.168.1.1
Feb 3 11:19:13: reply piholeverify.home.arpa.lan is NXDOMAIN
Feb 3 11:19:13: query[A] piholeverify.home.arpa from 192.168.0.50
Feb 3 11:19:13: cached piholeverify.home.arpa is NXDOMAIN
Feb 3 11:19:13: query[AAAA] piholeverify.home.arpa from 192.168.0.50
Feb 3 11:19:13: cached piholeverify.home.arpa is NXDOMAIN

@Aerankas

Aerankas commented Feb 3, 2026

Copy link
Copy Markdown

And it works!

root@pihole:/etc/pihole# pihole reloaddns
[✓] Flushing DNS cache
root@pihole:/etc/pihole# pihole -t | grep home.arpa
Feb 3 11:22:02: query[A] piholeverify.home.arpa.lan from 192.168.0.50
Feb 3 11:22:02: forwarded piholeverify.home.arpa.lan to 192.168.1.1
Feb 3 11:22:02: reply piholeverify.home.arpa.lan is NXDOMAIN
Feb 3 11:22:02: query[AAAA] piholeverify.home.arpa.lan from 192.168.0.50
Feb 3 11:22:02: forwarded piholeverify.home.arpa.lan to 192.168.1.1
Feb 3 11:22:02: reply piholeverify.home.arpa.lan is NXDOMAIN
Feb 3 11:22:02: query[A] piholeverify.home.arpa from 192.168.0.50
Feb 3 11:22:02: forwarded piholeverify.home.arpa to 192.168.1.1
Feb 3 11:22:02: reply piholeverify.home.arpa is 192.168.0.10
Feb 3 11:22:02: query[AAAA] piholeverify.home.arpa from 192.168.0.50
Feb 3 11:22:02: forwarded piholeverify.home.arpa to 192.168.1.1
Feb 3 11:22:02: reply piholeverify.home.arpa is NODATA-IPv6

@yubiuser

yubiuser commented Feb 3, 2026

Copy link
Copy Markdown
Member

Thanks for testing!

Comment thread src/config/dnsmasq_config.c Outdated
@andreasbehnke

Copy link
Copy Markdown

I had the exact same problem (using upstream DNS for resolving local hosts to FQN xyz.home.arpa) and setting domain name to home.arpa and local to false plus checking out this branch fixed it.

Signed-off-by: Dominik <dl6er@dl6er.de>

@yubiuser yubiuser left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I still find it confusing that the comments talk about two conditions connected with OR but the code only uses AND. But maybe need a fresh look tomorrow.

Comment thread src/config/dnsmasq_config.c Outdated
@PromoFaux PromoFaux changed the title home.arpa and internal TLDs may be non-lcoal without revServer home.arpa and internal TLDs may be non-local without revServer Feb 15, 2026
Signed-off-by: Dominik <dl6er@dl6er.de>

@yubiuser yubiuser left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Now a simple mind can understand this as well :-)

@DL6ER DL6ER merged commit 77cd161 into development Feb 16, 2026
18 checks passed
@DL6ER DL6ER deleted the fix/dns_domain_local branch February 16, 2026 13:30
@PromoFaux PromoFaux mentioned this pull request Feb 17, 2026
alfi0812 pushed a commit to trueforge-org/truecharts that referenced this pull request Feb 21, 2026
…1 → 2026.02.0 (#45320)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/pi-hole/pihole](https://redirect.github.com/pi-hole/docker-pi-hole)
| major | `91dc91d` → `ee34852` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the [Dependency
Dashboard](../issues/18710) for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>pi-hole/docker-pi-hole (ghcr.io/pi-hole/pihole)</summary>

###
[`v2026.02.0`](https://redirect.github.com/pi-hole/docker-pi-hole/releases/tag/2026.02.0)

[Compare
Source](https://redirect.github.com/pi-hole/docker-pi-hole/compare/2025.11.1...2026.02.0)

<!-- Release notes generated using configuration in .github/release.yml
at master -->

#### What's Changed (Docker Specific)

- Pin base image by sha to catch silent rebuilds by
[@&#8203;yubiuser](https://redirect.github.com/yubiuser) in
[#&#8203;1965](https://redirect.github.com/pi-hole/docker-pi-hole/pull/1965)
- Set fixed buildx version to mitigate issues with buildx version 0.31.1
by [@&#8203;yubiuser](https://redirect.github.com/yubiuser) in
[#&#8203;1987](https://redirect.github.com/pi-hole/docker-pi-hole/pull/1987)

**Full Changelog**:
<pi-hole/docker-pi-hole@2025.11.1...2026.02.0>

***

<!-- Release notes generated using configuration in .github/release.yml
at development -->

#### What's Changed (FTL v6.5)

- Tweak undocumented wait-for option subtly by
[@&#8203;DL6ER](https://redirect.github.com/DL6ER) in
[pi-hole/FTL#2707](https://redirect.github.com/pi-hole/FTL/pull/2707)
- update gravity - improve domain validation processing speed by
[@&#8203;rrobgill](https://redirect.github.com/rrobgill) in
[pi-hole/FTL#2710](https://redirect.github.com/pi-hole/FTL/pull/2710)
- Update embedded SQLite3 to 3.51.1 by
[@&#8203;DL6ER](https://redirect.github.com/DL6ER) in
[pi-hole/FTL#2731](https://redirect.github.com/pi-hole/FTL/pull/2731)
- Update embedded dnsmasq to 2.92rc1 by
[@&#8203;DL6ER](https://redirect.github.com/DL6ER) in
[pi-hole/FTL#2730](https://redirect.github.com/pi-hole/FTL/pull/2730)
- Fix documentation - Do not use equal sign with `pihole-FTL --config`
command by
[@&#8203;rdwebdesign](https://redirect.github.com/rdwebdesign) in
[pi-hole/FTL#2736](https://redirect.github.com/pi-hole/FTL/pull/2736)
- Add dns.cache.rrtype by
[@&#8203;Manakuremati](https://redirect.github.com/Manakuremati) in
[pi-hole/FTL#2740](https://redirect.github.com/pi-hole/FTL/pull/2740)
- Enhancements to the documentation markdown generator by
[@&#8203;PromoFaux](https://redirect.github.com/PromoFaux) in
[pi-hole/FTL#2741](https://redirect.github.com/pi-hole/FTL/pull/2741)
- Network Overview - obtain MAC and hostname from dhcp.leases by
[@&#8203;rrobgill](https://redirect.github.com/rrobgill) in
[pi-hole/FTL#2727](https://redirect.github.com/pi-hole/FTL/pull/2727)
- fix: make `get_domains` parameters optional by
[@&#8203;tien](https://redirect.github.com/tien) in
[pi-hole/FTL#2278](https://redirect.github.com/pi-hole/FTL/pull/2278)
- Escape unprintable characters in invalid host names by
[@&#8203;DL6ER](https://redirect.github.com/DL6ER) in
[pi-hole/FTL#2601](https://redirect.github.com/pi-hole/FTL/pull/2601)
- Implement better allOf handling in API verifier by
[@&#8203;DL6ER](https://redirect.github.com/DL6ER) in
[pi-hole/FTL#2745](https://redirect.github.com/pi-hole/FTL/pull/2745)
- Update build containers to Alpine 3.23 by
[@&#8203;DL6ER](https://redirect.github.com/DL6ER) in
[pi-hole/FTL#2743](https://redirect.github.com/pi-hole/FTL/pull/2743)
- Add option to hide network connection errors by
[@&#8203;DL6ER](https://redirect.github.com/DL6ER) in
[pi-hole/FTL#2749](https://redirect.github.com/pi-hole/FTL/pull/2749)
- Harden default Content Security Policy (CSP) by
[@&#8203;Erasure5959](https://redirect.github.com/Erasure5959) in
[pi-hole/FTL#2754](https://redirect.github.com/pi-hole/FTL/pull/2754)
- Fix computation of NTP server's root delay by
[@&#8203;DL6ER](https://redirect.github.com/DL6ER) in
[pi-hole/FTL#2760](https://redirect.github.com/pi-hole/FTL/pull/2760)
- Teleporter: Fix for custom gravity.db path by
[@&#8203;DL6ER](https://redirect.github.com/DL6ER) in
[pi-hole/FTL#2758](https://redirect.github.com/pi-hole/FTL/pull/2758)
- Upgrade embedded Lua to 5.5 by
[@&#8203;DL6ER](https://redirect.github.com/DL6ER) in
[pi-hole/FTL#2626](https://redirect.github.com/pi-hole/FTL/pull/2626)
- Add missing \[forwarded] property in GET /api/history/database by
[@&#8203;DL6ER](https://redirect.github.com/DL6ER) in
[pi-hole/FTL#2750](https://redirect.github.com/pi-hole/FTL/pull/2750)
- Update SQLite3 to 3.51.2 by
[@&#8203;DL6ER](https://redirect.github.com/DL6ER) in
[pi-hole/FTL#2761](https://redirect.github.com/pi-hole/FTL/pull/2761)
- Low-memory hardware optimizations by
[@&#8203;DL6ER](https://redirect.github.com/DL6ER) in
[pi-hole/FTL#2757](https://redirect.github.com/pi-hole/FTL/pull/2757)
- Reduce startup delay by
[@&#8203;DL6ER](https://redirect.github.com/DL6ER) in
[pi-hole/FTL#2725](https://redirect.github.com/pi-hole/FTL/pull/2725)
- home.arpa and internal TLDs may be non-local without revServer by
[@&#8203;DL6ER](https://redirect.github.com/DL6ER) in
[pi-hole/FTL#2772](https://redirect.github.com/pi-hole/FTL/pull/2772)

#### New Contributors

- [@&#8203;Erasure5959](https://redirect.github.com/Erasure5959) made
their first contribution in
[pi-hole/FTL#2754](https://redirect.github.com/pi-hole/FTL/pull/2754)

**Full Changelog**:
<pi-hole/FTL@v6.4.1...v6.5>

<!-- Release notes generated using configuration in .github/release.yml
at development -->

#### What's Changed (Web v6.4.1)

- Set the end date for live query update to end of epoch by
[@&#8203;rrobgill](https://redirect.github.com/rrobgill) in
[pi-hole/web#3677](https://redirect.github.com/pi-hole/web/pull/3677)
- Improve initial loading of Query Log by
[@&#8203;DL6ER](https://redirect.github.com/DL6ER) in
[pi-hole/web#3715](https://redirect.github.com/pi-hole/web/pull/3715)

Also fixes two security advisories:

-
<GHSA-6xp4-jw73-f4qp>:
fixed with
[pi-hole/web@`d328f14`](https://redirect.github.com/pi-hole/web/commit/d328f143718022d82dc94c8751121ca41be3b996)
-
<GHSA-8rw8-vjgp-rwj6>:
fixed with
[pi-hole/web@`1a0c6f4`](https://redirect.github.com/pi-hole/web/commit/1a0c6f4fe6d0116fd2846b2adaae95996b7f194d)

**Full Changelog**:
<pi-hole/web@v6.4...v6.4.1>

<!-- Release notes generated using configuration in .github/release.yml
at development -->

#### What's Changed (Core v6.4)

- Remove wget from alpine dependencies by
[@&#8203;darkexplosiveqwx](https://redirect.github.com/darkexplosiveqwx)
in
[pi-hole/pi-hole#6484](https://redirect.github.com/pi-hole/pi-hole/pull/6484)
- Remove custom FTL FirewallD zone checks from debug log by
[@&#8203;rdwebdesign](https://redirect.github.com/rdwebdesign) in
[pi-hole/pi-hole#6481](https://redirect.github.com/pi-hole/pi-hole/pull/6481)
- Add Alpine 3.23 to test suite by
[@&#8203;yubiuser](https://redirect.github.com/yubiuser) in
[pi-hole/pi-hole#6488](https://redirect.github.com/pi-hole/pi-hole/pull/6488)
- Debug log - Add colors to gravity tables by
[@&#8203;rdwebdesign](https://redirect.github.com/rdwebdesign) in
[pi-hole/pi-hole#6485](https://redirect.github.com/pi-hole/pi-hole/pull/6485)
- Use configured location for web repo when updating or repairing by
[@&#8203;rrobgill](https://redirect.github.com/rrobgill) in
[pi-hole/pi-hole#6470](https://redirect.github.com/pi-hole/pi-hole/pull/6470)
- Add missing `-g` to the message in gravity recovery command by
[@&#8203;rdwebdesign](https://redirect.github.com/rdwebdesign) in
[pi-hole/pi-hole#6513](https://redirect.github.com/pi-hole/pi-hole/pull/6513)
- Don't install unused /usr/local/share/man/man5 by
[@&#8203;darkexplosiveqwx](https://redirect.github.com/darkexplosiveqwx)
in
[pi-hole/pi-hole#6526](https://redirect.github.com/pi-hole/pi-hole/pull/6526)

**Full Changelog**:
<pi-hole/pi-hole@v6.3...v6.4>

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNi4xIiwidXBkYXRlZEluVmVyIjoiNDMuMjkuMiIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhcHAvcGlob2xlIiwicmVub3ZhdGUvY29udGFpbmVyIiwidHlwZS9tYWpvciJdfQ==-->
github-actions Bot pushed a commit to bigbeartechworld/big-bear-universal-apps that referenced this pull request Feb 26, 2026
…ag to v2026

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [bigbeartechworld/big-bear-pihole-unbound](https://redirect.github.com/pi-hole/docker-pi-hole) | major | `2025.11.1` → `2026.02.0` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/17) for more information.

---

### Release Notes

<details>
<summary>pi-hole/docker-pi-hole (bigbeartechworld/big-bear-pihole-unbound)</summary>

### [`v2026.02.0`](https://redirect.github.com/pi-hole/docker-pi-hole/releases/tag/2026.02.0)

[Compare Source](https://redirect.github.com/pi-hole/docker-pi-hole/compare/2025.11.1...2026.02.0)

<!-- Release notes generated using configuration in .github/release.yml at master -->

#### What's Changed (Docker Specific)

- Pin base image by sha to catch silent rebuilds by [@&#8203;yubiuser](https://redirect.github.com/yubiuser) in [#&#8203;1965](https://redirect.github.com/pi-hole/docker-pi-hole/pull/1965)
- Set fixed buildx version to mitigate issues with buildx version 0.31.1 by [@&#8203;yubiuser](https://redirect.github.com/yubiuser) in [#&#8203;1987](https://redirect.github.com/pi-hole/docker-pi-hole/pull/1987)

**Full Changelog**: <pi-hole/docker-pi-hole@2025.11.1...2026.02.0>

***

<!-- Release notes generated using configuration in .github/release.yml at development -->

#### What's Changed (FTL v6.5)

- Tweak undocumented wait-for option subtly by [@&#8203;DL6ER](https://redirect.github.com/DL6ER) in [pi-hole/FTL#2707](https://redirect.github.com/pi-hole/FTL/pull/2707)
- update gravity - improve domain validation processing speed by [@&#8203;rrobgill](https://redirect.github.com/rrobgill) in [pi-hole/FTL#2710](https://redirect.github.com/pi-hole/FTL/pull/2710)
- Update embedded SQLite3 to 3.51.1 by [@&#8203;DL6ER](https://redirect.github.com/DL6ER) in [pi-hole/FTL#2731](https://redirect.github.com/pi-hole/FTL/pull/2731)
- Update embedded dnsmasq to 2.92rc1 by [@&#8203;DL6ER](https://redirect.github.com/DL6ER) in [pi-hole/FTL#2730](https://redirect.github.com/pi-hole/FTL/pull/2730)
- Fix documentation - Do not use equal sign with `pihole-FTL --config` command by [@&#8203;rdwebdesign](https://redirect.github.com/rdwebdesign) in [pi-hole/FTL#2736](https://redirect.github.com/pi-hole/FTL/pull/2736)
- Add dns.cache.rrtype by [@&#8203;Manakuremati](https://redirect.github.com/Manakuremati) in [pi-hole/FTL#2740](https://redirect.github.com/pi-hole/FTL/pull/2740)
- Enhancements to the documentation markdown generator by [@&#8203;PromoFaux](https://redirect.github.com/PromoFaux) in [pi-hole/FTL#2741](https://redirect.github.com/pi-hole/FTL/pull/2741)
- Network Overview - obtain MAC and hostname from dhcp.leases by [@&#8203;rrobgill](https://redirect.github.com/rrobgill) in [pi-hole/FTL#2727](https://redirect.github.com/pi-hole/FTL/pull/2727)
- fix: make `get_domains` parameters optional by [@&#8203;tien](https://redirect.github.com/tien) in [pi-hole/FTL#2278](https://redirect.github.com/pi-hole/FTL/pull/2278)
- Escape unprintable characters in invalid host names by [@&#8203;DL6ER](https://redirect.github.com/DL6ER) in [pi-hole/FTL#2601](https://redirect.github.com/pi-hole/FTL/pull/2601)
- Implement better allOf handling in API verifier by [@&#8203;DL6ER](https://redirect.github.com/DL6ER) in [pi-hole/FTL#2745](https://redirect.github.com/pi-hole/FTL/pull/2745)
- Update build containers to Alpine 3.23 by [@&#8203;DL6ER](https://redirect.github.com/DL6ER) in [pi-hole/FTL#2743](https://redirect.github.com/pi-hole/FTL/pull/2743)
- Add option to hide network connection errors by [@&#8203;DL6ER](https://redirect.github.com/DL6ER) in [pi-hole/FTL#2749](https://redirect.github.com/pi-hole/FTL/pull/2749)
- Harden default Content Security Policy (CSP) by [@&#8203;Erasure5959](https://redirect.github.com/Erasure5959) in [pi-hole/FTL#2754](https://redirect.github.com/pi-hole/FTL/pull/2754)
- Fix computation of NTP server's root delay by [@&#8203;DL6ER](https://redirect.github.com/DL6ER) in [pi-hole/FTL#2760](https://redirect.github.com/pi-hole/FTL/pull/2760)
- Teleporter: Fix for custom gravity.db path by [@&#8203;DL6ER](https://redirect.github.com/DL6ER) in [pi-hole/FTL#2758](https://redirect.github.com/pi-hole/FTL/pull/2758)
- Upgrade embedded Lua to 5.5 by [@&#8203;DL6ER](https://redirect.github.com/DL6ER) in [pi-hole/FTL#2626](https://redirect.github.com/pi-hole/FTL/pull/2626)
- Add missing \[forwarded] property in GET /api/history/database by [@&#8203;DL6ER](https://redirect.github.com/DL6ER) in [pi-hole/FTL#2750](https://redirect.github.com/pi-hole/FTL/pull/2750)
- Update SQLite3 to 3.51.2 by [@&#8203;DL6ER](https://redirect.github.com/DL6ER) in [pi-hole/FTL#2761](https://redirect.github.com/pi-hole/FTL/pull/2761)
- Low-memory hardware optimizations by [@&#8203;DL6ER](https://redirect.github.com/DL6ER) in [pi-hole/FTL#2757](https://redirect.github.com/pi-hole/FTL/pull/2757)
- Reduce startup delay by [@&#8203;DL6ER](https://redirect.github.com/DL6ER) in [pi-hole/FTL#2725](https://redirect.github.com/pi-hole/FTL/pull/2725)
- home.arpa and internal TLDs may be non-local without revServer by [@&#8203;DL6ER](https://redirect.github.com/DL6ER) in [pi-hole/FTL#2772](https://redirect.github.com/pi-hole/FTL/pull/2772)

#### New Contributors

- [@&#8203;Erasure5959](https://redirect.github.com/Erasure5959) made their first contribution in [pi-hole/FTL#2754](https://redirect.github.com/pi-hole/FTL/pull/2754)

**Full Changelog**: <pi-hole/FTL@v6.4.1...v6.5>

<!-- Release notes generated using configuration in .github/release.yml at development -->

#### What's Changed (Web v6.4.1)

- Set the end date for live query update to end of epoch by [@&#8203;rrobgill](https://redirect.github.com/rrobgill) in [pi-hole/web#3677](https://redirect.github.com/pi-hole/web/pull/3677)
- Improve initial loading of Query Log by [@&#8203;DL6ER](https://redirect.github.com/DL6ER) in [pi-hole/web#3715](https://redirect.github.com/pi-hole/web/pull/3715)

Also fixes two security advisories:

- <GHSA-6xp4-jw73-f4qp>: fixed with [pi-hole/web@`d328f14`](https://redirect.github.com/pi-hole/web/commit/d328f143718022d82dc94c8751121ca41be3b996)
- <GHSA-8rw8-vjgp-rwj6>: fixed with [pi-hole/web@`1a0c6f4`](https://redirect.github.com/pi-hole/web/commit/1a0c6f4fe6d0116fd2846b2adaae95996b7f194d)

**Full Changelog**: <pi-hole/web@v6.4...v6.4.1>

<!-- Release notes generated using configuration in .github/release.yml at development -->

#### What's Changed (Core v6.4)

- Remove wget from alpine dependencies by [@&#8203;darkexplosiveqwx](https://redirect.github.com/darkexplosiveqwx) in [pi-hole/pi-hole#6484](https://redirect.github.com/pi-hole/pi-hole/pull/6484)
- Remove custom FTL FirewallD zone checks from debug log by [@&#8203;rdwebdesign](https://redirect.github.com/rdwebdesign) in [pi-hole/pi-hole#6481](https://redirect.github.com/pi-hole/pi-hole/pull/6481)
- Add Alpine 3.23 to test suite by [@&#8203;yubiuser](https://redirect.github.com/yubiuser) in [pi-hole/pi-hole#6488](https://redirect.github.com/pi-hole/pi-hole/pull/6488)
- Debug log - Add colors to gravity tables by [@&#8203;rdwebdesign](https://redirect.github.com/rdwebdesign) in [pi-hole/pi-hole#6485](https://redirect.github.com/pi-hole/pi-hole/pull/6485)
- Use configured location for web repo when updating or repairing by [@&#8203;rrobgill](https://redirect.github.com/rrobgill) in [pi-hole/pi-hole#6470](https://redirect.github.com/pi-hole/pi-hole/pull/6470)
- Add missing `-g` to the message in gravity recovery command by [@&#8203;rdwebdesign](https://redirect.github.com/rdwebdesign) in [pi-hole/pi-hole#6513](https://redirect.github.com/pi-hole/pi-hole/pull/6513)
- Don't install unused /usr/local/share/man/man5 by [@&#8203;darkexplosiveqwx](https://redirect.github.com/darkexplosiveqwx) in [pi-hole/pi-hole#6526](https://redirect.github.com/pi-hole/pi-hole/pull/6526)

**Full Changelog**: <pi-hole/pi-hole@v6.3...v6.4>

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/bigbeartechworld/big-bear-universal-apps).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4zNi4yIiwidXBkYXRlZEluVmVyIjoiNDMuMzYuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGUiXX0=-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Cannot forward home.arpa unless revServer configured, even when pihole domain is home.arpa

5 participants