Skip to content

Latest commit

 

History

History
166 lines (111 loc) · 5.54 KB

CHANGELOG.md

File metadata and controls

166 lines (111 loc) · 5.54 KB

Changelog

1.2.7 (2017.11.12)

NOTES

Following a request by @JoshDobbin, support has been added for passing ADAPTER_DOMAIN_SUFFIX via dhcp-options to work with the Microsoft standard. Also included some additional notes in README.md about using down in dropped privilege situations for clarification.

IMPROVEMENTS

  • Added support for ADAPTER_DOMAIN_SUFFIX (@jonathanio)
  • Added notes in README.md about down with dropped privileges (@jonathanio)

1.2.6 (2017.07.24)

NOTES

Improvements made to the logger command to prevent issues with privilege dropping under the assistance of @dermarens, @terminalmage, @guruxu, and @benvh. Updated some documentation for consistency and clarity. Thanks to @flungo and @dawansv here.

IMPROVEMENTS

  • Updated to include a full list in PATH, including sbin paths. (@jonathanio)
  • Updated documentation regarding DNS leakage. (@jonathanio)
  • Updated all script locations to be consistent. (@jonathanio)
  • Add some installation instructions to README.md. (@flungo)
  • Update command-line parameters needed within Makefile/README.md. (@noraj1337)
  • Fix script name in command-line path within README.md. (@phR0ze)

1.2.5 (2017.03.02)

IMPROVEMENTS

  • Updated to include a full list in PATH, including sbin paths. (@jonathanio)

1.2.4 (2017.03.02)

NOTES

@piotr-dobrogost, @mgu, and @aRkadeFR helped improve the documentation.

IMPROVEMENTS

  • It was noted that the PATH setting used in the documentation doesn't work on all systems (sorry, my bad), so it has now been updated so it should now work. (@aRkadeFR)

1.2.3 (2016.12.25)

NOTES

@Nauxuron provided a patch to improve DESTDIR and PREFIX handling in Makefile.

IMPROVEMENTS

  • Improve handling of DESTDIR and PREFIX in the Makefile to follow the GNU guidelines. (@Nauxuron)

1.2.2 (2016.12.13)

NOTES

This one is a thanks to @mikken and helps support OpenVPN 2.4 as well as fix an issue with DNSSEC handling on the busctl call.

BUG FIXES

  • The incorrect usage of down-pre which as of OpenVPN 2.4 is now a fatal error when you pass it an argument (i.e. the script we were originally thought it should be calling). (@mikken)
  • Issues with busctl and bash properly handling the "empty string" case to use the default DNSSEC option. (@jonathanio)
  • Noise when busctl is called on the down case when privileges have been dropped in the client. (@mikken)
  • Added documentation for allow-downgrade support in DNSSEC option (which was supported, but not documented). (@jonathanio)

1.2.1 (2016.10.06)

NOTES

Thanks for @arjenschol for spotting this one: An error in the AF_INET value provided to SetLinkDNS prevented IPv6 DNS servers from being added.

BUG FIXES

  • Fix IPv6 DNS by specifying AF_INET6 value (10) insteadof array size (2) (@arjenschol)

1.2.0 (2016.08.29)

NOTES

Add support for DNSSEC processing, improve logic around DOMAIN and DOMAIN-SEARCH handling, add support for DOMAIN-ROUTE, and improve documentation.

BACKWARDS INCOMPATIBILITIES

  • Due to (probably) an incorrect assumption on my part (@jonathanio) in the purpose of DOMAIN-SEARCH verses DOMAIN, domains added via DOMAIN were marked as searchable, and so would be appended to bare domain names, while those added via DOMAIN-SEARCH would not. This was a divergance from how older OpenVPN handler scripts (such as update-resolv-conf and update-systemd-network) processed them (i.e. in all cases they were just made searchable). Note that both scripts didn't really have the concept of domain in the same way as /etc/resolv.conf understood it. This script now (hopefully) properly handles DOMAIN and DOMAIN-SEARCH (single of the former, and is primary, multiple of the latter and secondary).

FEATURES

  • Add support for DNSSEC option which allows you to enable or disable (or leave to system default) the DNSSEC setting for any DNS queries made to the DNS servers provided for this link. (@jonathanio)
  • Add support for DOMAIN-ROUTE which, through systemd-resolved, allows you to set domain names which should be routed over this link to the DNS servers provided. (@jonathanio)

IMPROVEMENTS

  • Correct the logic around the handling of DOMAIN and DOMAIN-SEARCH to be more compatible with previous versions of these handlers. (@jonathanio)

1.1.1 (2016.08.10)

NOTES

Thanks to the help from @pid1 for this release. The documentation mistakenly noted to use pre-down for the script now (compared to down originally, which failed as the tun or tap device would have been removed before the script ran). However, this should have in fact been down-pre.

BUG FIXES

  • Fix pre-down to down-pre in the documentation else you'll break your OpenVPN configuration. (@pid1)

1.1.0 (2016.08.08)

NOTES

Thanks to the work by @BaxterStockman, the script has been refactored, hopefully making it easier to read and follow, while additional tests around IPv6 processing have been added.

IMPROVEMENTS

  • Refactor the codebase to make it easier to read and expand. (@BaxterStockman)
  • Improve run-tests so multiple tests can be run within a file, and can expect failures within a test. (@BaxterStockman)
  • Add tests for invalid IPv6 addresses. (@BaxterStockman)

1.0.0 (2016.06.23)

NOTES

First release of update-systemd-resolved. Should fully support the three standard DHCP options in OpenVPN (DNS, DOMAIN, and DOMAIN-SEARCH) with integration tests around the code to manage and monitor regressions. Also supports multiple (and combined) IPv4 and IPv6 DNS addresses.