Skip to content

Commit 0c59db1

Browse files
authored
feat: add dnscheck, urlgetter experiment names (#205)
1 parent 080ac01 commit 0c59db1

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

newapi/debian/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
ooni-api (0.13) unstable; urgency=medium
2+
3+
* add dnscheck, urlgetter experiment names
4+
5+
-- Federico Ceratto <[email protected]> Wed, 02 Dec 2020 16:12:30 +0000
6+
17
ooni-api (0.12) unstable; urgency=medium
28

39
* Add reactive test-lists

newapi/ooniapi/measurements.py

+4
Original file line numberDiff line numberDiff line change
@@ -490,6 +490,8 @@ def list_measurements():
490490
- psiphon
491491
- tor
492492
- riseupvpn
493+
- dnscheck
494+
- urlgetter
493495
- name: since
494496
in: query
495497
type: string
@@ -940,6 +942,8 @@ def get_aggregated():
940942
- psiphon
941943
- tor
942944
- riseupvpn
945+
- dnscheck
946+
- urlgetter
943947
- name: since
944948
in: query
945949
type: string

newapi/ooniapi/private.py

+2
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,8 @@ def api_private_test_names():
167167
"web_connectivity": "Web Connectivity",
168168
"whatsapp": "WhatsApp",
169169
"riseupvpn": "RiseupVPN",
170+
"dnscheck": "DNS Check",
171+
"urlgetter": "URL Getter",
170172
}
171173
test_names = [{"id": k, "name": v} for k, v in TEST_NAMES.items()]
172174
return cachedjson(1, test_names=test_names)

0 commit comments

Comments
 (0)