Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
## 5.1.2
## 5.1.3
* Changed resolv.conf handling format to make it compatible with alpine linux see [#627][5_1_0_1][1].
* Refactoring Linux amd64 static build to work on Github Actions
* Creating the docs for config v3
* Fixing Hostname Entry Update API
* Fixing intermittent unit test
* MutableConfigFileDAO: Caching queries

[5_1_0_1]: https://github.com/mageddo/dns-proxy-server/issues/627

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=5.1.2-snapshot
version=5.1.3-snapshot
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,13 @@ public Config find() {
.find();
}

Config findCached() {
return Configs.getInstance();
}

@Override
public Env findActiveEnv() {
final var config = this.find();
final var config = this.findCached();
return findEnv(config.getActiveEnv(), config);
}

Expand Down