[PR #443] [MERGED] Feature toggle to turn off Host Machine IP fallback #497

Closed
opened 2026-02-26 04:35:26 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mageddo/dns-proxy-server/pull/443
Author: @mageddo
Created: 5/8/2024
Status: Merged
Merged: 5/8/2024
Merged by: @mageddo

Base: masterHead: feat/442


📝 Commits (10+)

📊 Changes

19 files changed (+182 additions, -15 deletions)

View changed files

📝 RELEASE-NOTES.md (+3 -0)
📝 docs/content/3-configuration/_index.en.md (+12 -1)
📝 gradle.properties (+1 -1)
📝 src/main/java/com/mageddo/dnsproxyserver/config/Config.java (+2 -0)
📝 src/main/java/com/mageddo/dnsproxyserver/config/Configs.java (+5 -0)
📝 src/main/java/com/mageddo/dnsproxyserver/config/entrypoint/ConfigEnv.java (+4 -0)
📝 src/main/java/com/mageddo/dnsproxyserver/config/entrypoint/ConfigFlag.java (+10 -0)
📝 src/main/java/com/mageddo/dnsproxyserver/config/entrypoint/ConfigJson.java (+2 -0)
📝 src/main/java/com/mageddo/dnsproxyserver/config/entrypoint/ConfigJsonV1.java (+10 -0)
📝 src/main/java/com/mageddo/dnsproxyserver/config/entrypoint/ConfigJsonV2.java (+7 -0)
📝 src/main/java/com/mageddo/dnsproxyserver/docker/ContainerSolvingService.java (+24 -7)
src/test/java/com/mageddo/dnsproxyserver/docker/ContainerSolvingServiceTest.java (+86 -0)
📝 src/test/resources/config-json-v1-test/002.json (+1 -0)
📝 src/test/resources/configs-test/001.json (+1 -0)
📝 src/test/resources/configs-test/002.json (+1 -0)
📝 src/test/resources/configs-test/004.json (+1 -0)
📝 src/test/resources/flags-test/001.json (+1 -0)
📝 src/test/resources/flags-test/002.txt (+10 -6)
📝 src/test/resources/json-configs-test/001.json (+1 -0)

📄 Description

Fixe #442


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/mageddo/dns-proxy-server/pull/443 **Author:** [@mageddo](https://github.com/mageddo) **Created:** 5/8/2024 **Status:** ✅ Merged **Merged:** 5/8/2024 **Merged by:** [@mageddo](https://github.com/mageddo) **Base:** `master` ← **Head:** `feat/442` --- ### 📝 Commits (10+) - [`a2e430e`](https://github.com/mageddo/dns-proxy-server/commit/a2e430ecb40a890ba09f6271a1aba0dfddb4c734) creating feature toggle - [`f944efc`](https://github.com/mageddo/dns-proxy-server/commit/f944efcd8c6e94825f5fe40aa7a4290e5b9bd3ac) fixing tests - [`bc26bcf`](https://github.com/mageddo/dns-proxy-server/commit/bc26bcf4e51bd1db0015e26a895d296672824f87) all tests fixed - [`d45d964`](https://github.com/mageddo/dns-proxy-server/commit/d45d964592462324c8fc3928197a1f6d2993caab) introduced toggle check, tests are passing - [`2fc84e1`](https://github.com/mageddo/dns-proxy-server/commit/2fc84e1610cb18eef8d48388a18493be2df37a59) test created - [`b7f4971`](https://github.com/mageddo/dns-proxy-server/commit/b7f4971ec88e76032328f3b3780170c77060a64b) all tested - [`ca80cd2`](https://github.com/mageddo/dns-proxy-server/commit/ca80cd2e825d4a5be643284c3c987df356b19d2b) adjustments - [`f1b625d`](https://github.com/mageddo/dns-proxy-server/commit/f1b625d149cb82ca7ff7ceeb5afd414901d49be9) formatting - [`42f04e3`](https://github.com/mageddo/dns-proxy-server/commit/42f04e340eb37800fe87b2deee34f7c58d41a781) fixing test - [`04d8acf`](https://github.com/mageddo/dns-proxy-server/commit/04d8acf46f0feca18f09f8f18d424af57a9de47f) updating the docs about the new feature ### 📊 Changes **19 files changed** (+182 additions, -15 deletions) <details> <summary>View changed files</summary> 📝 `RELEASE-NOTES.md` (+3 -0) 📝 `docs/content/3-configuration/_index.en.md` (+12 -1) 📝 `gradle.properties` (+1 -1) 📝 `src/main/java/com/mageddo/dnsproxyserver/config/Config.java` (+2 -0) 📝 `src/main/java/com/mageddo/dnsproxyserver/config/Configs.java` (+5 -0) 📝 `src/main/java/com/mageddo/dnsproxyserver/config/entrypoint/ConfigEnv.java` (+4 -0) 📝 `src/main/java/com/mageddo/dnsproxyserver/config/entrypoint/ConfigFlag.java` (+10 -0) 📝 `src/main/java/com/mageddo/dnsproxyserver/config/entrypoint/ConfigJson.java` (+2 -0) 📝 `src/main/java/com/mageddo/dnsproxyserver/config/entrypoint/ConfigJsonV1.java` (+10 -0) 📝 `src/main/java/com/mageddo/dnsproxyserver/config/entrypoint/ConfigJsonV2.java` (+7 -0) 📝 `src/main/java/com/mageddo/dnsproxyserver/docker/ContainerSolvingService.java` (+24 -7) ➕ `src/test/java/com/mageddo/dnsproxyserver/docker/ContainerSolvingServiceTest.java` (+86 -0) 📝 `src/test/resources/config-json-v1-test/002.json` (+1 -0) 📝 `src/test/resources/configs-test/001.json` (+1 -0) 📝 `src/test/resources/configs-test/002.json` (+1 -0) 📝 `src/test/resources/configs-test/004.json` (+1 -0) 📝 `src/test/resources/flags-test/001.json` (+1 -0) 📝 `src/test/resources/flags-test/002.txt` (+10 -6) 📝 `src/test/resources/json-configs-test/001.json` (+1 -0) </details> ### 📄 Description Fixe #442 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 04:35:26 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/dns-proxy-server-mageddo#497
No description provided.