···1616- Change import syntax to allow multi-level imports
1717- Changed the startup logging to use JSON formatting as all the other logs do.
1818- Added the ability to do [expression matching with CEL](./admin/configuration/expressions.mdx)
1919+- Add a warning for clients that don't store cookies
1920- Disable Open Graph passthrough by default ([#435](https://github.com/TecharoHQ/anubis/issues/435))
20212122## v1.17.1: Asahi sas Brutus: Echo 1
+6
web/js/main.mjs
···2828 msg: "Your browser doesn't support web workers (Anubis uses this to avoid freezing your browser). Do you have a plugin like JShelter installed?",
2929 value: window.Worker,
3030 },
3131+ {
3232+ name: "Cookies",
3333+ msg: "Your browser doesn't store cookies. Anubis uses cookies to determine which clients have passed challenges by storing a signed token in a cookie. Please enable storing cookies for this domain. The names of the cookies Anubis stores may vary without notice. Cookie names and values are not part of the public API.",
3434+ value: navigator.cookieEnabled,
3535+ },
3136];
32373338function showContinueBar(hash, nonce, t0, t1) {
···131136 statusMsg: msg,
132137 imageSrc: imageURL("reject", anubisVersion, basePrefix),
133138 });
139139+ return;
134140 }
135141 }
136142