Skip to content

Commit

Permalink
Merge branch 'master' into ADG-7965
Browse files Browse the repository at this point in the history
  • Loading branch information
IldarKamalov committed Jan 16, 2024
2 parents 76df040 + 58b47ad commit 69d2310
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
13 changes: 11 additions & 2 deletions CHANGELOG.md
Expand Up @@ -41,11 +41,14 @@ NOTE: Add new changes BELOW THIS COMMENT.

#### Configuration changes

In this release, the schema version has changed from 27 to 28.

- The new property `clients.persistent.*.uid`, which is unique identifier of the
persistent client.
- The properties `dns.'all_servers` and `dns.fastest_addr` were removed, their
- The properties `dns.all_servers` and `dns.fastest_addr` were removed, their
values migrated to newly added field `dns.upstream_mode` that describes the
logic through which upstreams will be used.
logic through which upstreams will be used. See also a [Wiki
page][wiki-config].

```yaml
# BEFORE:
Expand All @@ -60,6 +63,10 @@ NOTE: Add new changes BELOW THIS COMMENT.
'upstream_mode': 'parallel'
```

To rollback this change, remove the new field `upstream_mode`, set back
`dns.all_servers` and `dns.fastest_addr` properties in `dns` section, and
change the `schema_version` back to `27`.

### Fixed

- Zero value in `querylog.size_memory` disables logging ([#6570]).
Expand All @@ -85,6 +92,8 @@ NOTE: Add new changes BELOW THIS COMMENT.
[#6574]: https://github.com/AdguardTeam/AdGuardHome/issues/6574
[#6584]: https://github.com/AdguardTeam/AdGuardHome/issues/6584

[wiki-config]: https://github.com/AdguardTeam/AdGuardHome/wiki/Configuration

<!--
NOTE: Add new changes ABOVE THIS COMMENT.
-->
Expand Down
9 changes: 9 additions & 0 deletions README.md
Expand Up @@ -276,6 +276,15 @@ Open your terminal and execute these commands:
git clone https://github.com/AdguardTeam/AdGuardHome
cd AdGuardHome
make
```

#### <a href="#building-node" id="building-node" name="building-node">Building with Node.js 17 and later</a>

In order to build AdGuard Home with Node.js 17 and later, specify
`--openssl-legacy-provider` option.

```sh
export NODE_OPTIONS=--openssl-legacy-provider
```

**NOTE:** The non-standard `-j` flag is currently not supported, so building
Expand Down

0 comments on commit 69d2310

Please sign in to comment.