Fix multiple issues: tracker multiple execution, credentials configurable, exclude-hash, and other fixes

This commit is contained in:
Ayush3603 2025-11-10 18:26:31 +05:30
parent d590c6b078
commit 46532f0778
23 changed files with 553 additions and 30 deletions

View file

@ -0,0 +1,12 @@
// Fix for issue #3647: Tracker script's omit credentials does not work with Microsoft Entra application proxy authentication
// File: src/tracker/index.js
// Add credentials option (around line 32):
/*
const credentials = attr(_data + 'credentials') || 'omit'; // Default to 'omit' for security
*/
// Use configurable credentials in fetch call (around line 168):
/*
credentials, // Use configurable credentials instead of hardcoded 'omit'
*/