Skip to content

Commit 3f26cca

Browse files
committed
Sync v2.22.0
1 parent b4faca2 commit 3f26cca

206 files changed

Lines changed: 12299 additions & 1575 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/ISSUE_TEMPLATE/config.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
'blank_issues_enabled': false
22
'contact_links':
33
- 'about': >
4-
Please report filtering issues, for example advertising filters
5-
misfiring or safe browsing false positives, using the form on our
6-
website
4+
Please report filtering issues, for example advertising filters misfiring or safe browsing false positives, using the form on our website
5+
76
'name': 'AdGuard filters issues'
87
'url': 'https://link.adtidy.org/forward.html?action=report&app=home&from=github'
98
- 'about': >
10-
Please send requests for new blocked services and vetted filtering lists
11-
to the Hostlists Registry repository
9+
Please send requests for new blocked services and vetted filtering lists to the Hostlists Registry repository
10+
1211
'name': 'Blocked services and vetted filtering rule lists: AdGuard Hostlists Registry'
1312
'url': 'https://github.com/AdguardTeam/HostlistsRegistry'

.github/ISSUE_TEMPLATE/feature_request_template.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
---
2-
31
name: 🌱 Feature request
42
description: Create a feature request to help us improve AdGuard DNS.
5-
labels: [ 'feature request' ]
3+
labels: ['feature request']
64
body:
75
- type: textarea
86
id: what-happened

.github/ISSUE_TEMPLATE/issue_template.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
---
2-
31
name: 🐞 Bug report
42
description: Create a bug report to help us improve AdGuard DNS.
5-
labels: [ 'bug' ]
3+
labels: ['bug']
64
body:
75
- type: markdown
86
attributes:

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ The format is **not** based on [Keep a Changelog][kec], since the project **does
77
[kec]: https://keepachangelog.com/en/1.0.0/
88
[sem]: https://semver.org/spec/v2.0.0.html
99

10+
## AGDNS-3939 / Build 1200
11+
12+
- New environment variables have been added:
13+
14+
- `HOMOGLYPH_CACHE_COUNT`; recommended value: same as `safe_browsing.cache_size`.
15+
- `HOMOGLYPH_ENABLED`; recommended value: `1`.
16+
17+
## AGDNS-3897 / Build 1185
18+
19+
- The new environment variable `FILTER_CACHE_MAX_STALENESS` has been added. It defines the maximum duration of staleness for files in the filter cache as a human-readable duration.
20+
1021
## AGDNS-3798 / Build 1180
1122

1223
- New environment variables have been added:

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,19 @@
1818
GO.MACRO = $${GO:-go}
1919
VERBOSE.MACRO = $${VERBOSE:-0}
2020

21+
APP_VERSION = 0
2122
BRANCH = $${BRANCH:-$$(git rev-parse --abbrev-ref HEAD)}
2223
GOAMD64 = v1
2324
GOPROXY = https://proxy.golang.org|direct
2425
GOTELEMETRY = off
25-
GOTOOLCHAIN = go1.26.2
26+
GOTOOLCHAIN = go1.26.3
2627
RACE = 0
2728
REVISION = $${REVISION:-$$(git rev-parse --short HEAD)}
28-
VERSION = 0
2929

3030
# TODO(f.setrakov): Remove the bin directory from the paths, as it is no longer
3131
# needed.
3232
ENV = env \
33+
APP_VERSION="$(APP_VERSION)" \
3334
BRANCH="$(BRANCH)" \
3435
GO="$(GO.MACRO)" \
3536
GOAMD64='$(GOAMD64)' \
@@ -41,7 +42,6 @@ ENV = env \
4142
RACE='$(RACE)' \
4243
REVISION="$(REVISION)" \
4344
VERBOSE="$(VERBOSE.MACRO)" \
44-
VERSION="$(VERSION)" \
4545

4646
# Keep the line above blank.
4747

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,6 @@ You can sign up for a personal AdGuard DNS account and get access to the followi
7171

7272
## Software license
7373

74-
Copyright (C) 2022-2025 AdGuard Software Ltd.
74+
Copyright (C) 2022-2026 AdGuard Software Ltd.
7575

7676
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, version 3.

0 commit comments

Comments
 (0)