Skip to content

Commit

Permalink
v7.47.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cliqz-ci committed Jul 10, 2020
1 parent 80f2854 commit 599355a
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v7.47.0
v7.47.1
6 changes: 6 additions & 0 deletions configs/common/urls-ghostery.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,10 @@ module.exports = Object.assign(urls('ghostery.net'), {
ENDPOINT_HUMAN_WEB_PATTERNS: 'https://cdn2.ghostery.com/human-web-chromium/hw-patterns.gz',
ENDPOINT_PATTERNSURL: 'https://cdn2.ghostery.com/human-web-chromium/patterns.gz',
ENDPOINT_ANONPATTERNSURL: 'https://cdn2.ghostery.com/human-web-chromium/patterns-anon.gz',

// override anti-tracking to ghostery CDN
ANTITRACKING_BASE_URL: 'https://cdn.ghostery.com/antitracking',

// adblocker assets
ADBLOCKER_BASE_URL: 'https://cdn.ghostery.com/adblocker/configs',
});
1 change: 1 addition & 0 deletions configs/common/urls.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ module.exports = (base, cdn = 'cdn') => ({
BW_URL: `https://antiphishing.${base}/api/v1/`, // anti-phishing/sources/anti-phishing.es
CDN_BASEURL: `https://${cdn}.${base}`,
ADBLOCKER_BASE_URL: `https://${cdn}.${base}/adblocker/configs`,
ANTITRACKING_BASE_URL: `https://${cdn}.${base}/anti-tracking`,
CONFIG_PROVIDER: `https://api.${base}/api/v1/config`,
ENDPOINT_ANONPATTERNSURL: `https://${cdn}.${base}/human-web/patterns-anon`,
ENDPOINT_HPNV2_DIRECT: `https://collector-hpn.${base}`, // hpnv2/sources/endpoints.es
Expand Down
6 changes: 3 additions & 3 deletions modules/antitracking/sources/config.es
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ import { fetch } from '../core/http';
import pacemaker from '../core/services/pacemaker';

const SETTINGS = config.settings;
const VERSIONCHECK_URL = `${SETTINGS.CDN_BASEURL}/anti-tracking/whitelist/versioncheck.json`;
const CONFIG_URL = `${SETTINGS.CDN_BASEURL}/anti-tracking/config.json`;
const WHITELIST2_URL = `${SETTINGS.CDN_BASEURL}/anti-tracking/whitelist/2`;
const VERSIONCHECK_URL = `${SETTINGS.ANTITRACKING_BASE_URL}/whitelist/versioncheck.json`;
const CONFIG_URL = `${SETTINGS.ANTITRACKING_BASE_URL}/config.json`;
const WHITELIST2_URL = `${SETTINGS.ANTITRACKING_BASE_URL}/whitelist/2`;
const PROTECTION = 'antitrackingProtectionEnabled';


Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "browser-core",
"version": "7.47.0",
"version": "7.47.1",
"description": "Cliqz features, shared across products including Cliqz browsers for Windows, Mac, Android and iOS",
"license": "MPL-2.0",
"author": {
Expand Down

0 comments on commit 599355a

Please sign in to comment.