Skip to content

2021.02

Compare
Choose a tag to compare
@jdorweiler jdorweiler released this 01 Mar 20:17
· 391 commits to main since this release
3c82647
  • 📨 Update from February crawl
  • ‼️Tacker Radar doubled in size - we now have over 23k domains (up from 11.8k) because we stopped filtering out domains that don't set cookies or call JS APIs (PR).
  • 🍪 We are now including information about first party cookies being set by 3rd party scripts (PR):
"resources": [
    {
      "rule": "google-analytics\\.com\\/analytics\\.js",
      "firstPartyCookies": {
        "_ga": {
          "ttl": 63072001, // median expiry of this cookie, in seconds from set time.
          "length": 26, // mean string length of the cookie value
          "prevalence": 0.23242023108118448, // proportion of sites in the crawl where this cookie was set by this script
          "uniqueness": 1 // number of distinct values seen divided by times set (0 = we have only seen one value, 1 = unique value on very load)
        },
    ...
  • 🍪 AND information about first party cookie values being sent in another 3rd party request (PR):
"resources": [
...
   {
      "firstPartyCookiesSent": {
        "_ga": 0.03884765475552835, // proportion of sites in the crawl where the value of this 1st party cookie was sent to this endpoint
        "G_ENABLED_IDPS": 0.0005126635549774275
      },
  • 🔧 We have fixed last few places where we were not using private entries for calculating eTLD+1 (PR).