Handle GVL deletions#4519
Open
Lightwood13 wants to merge 12 commits into
Open
Conversation
CTMBNara
previously approved these changes
Jun 3, 2026
CTMBNara
requested changes
Jul 3, 2026
# Conflicts: # src/main/java/org/prebid/server/privacy/gdpr/vendorlist/VendorListService.java # src/test/java/org/prebid/server/privacy/gdpr/vendorlist/VendorListServiceTest.java
And1sS
previously approved these changes
Jul 22, 2026
CTMBNara
requested changes
Jul 22, 2026
| - `gdpr.purpose-one-treatment-interpretation` - option that allows to skip the Purpose one enforcement workflow. | ||
| - `gdpr.vendorlist.default-timeout-ms` - default operation timeout for obtaining new vendor list. | ||
| - `gdpr.vendorlist.live-gvl-url` - URL of the latest TCF GVL used to detect vendors with a past `deletedDate`. Default `https://vendor-list.consensu.org/v3/vendor-list.json`. | ||
| - `gdpr.vendorlist.live-gvl-refresh-period-ms` - how often to refresh the live GVL deleted-vendor set, in milliseconds. Default `86400000` (24 hours). |
| - `privacy.tcf.(v1,v2).in-geo` - number of requests received from TCF-concerned geo region with consent string of particular version | ||
| - `privacy.tcf.(v1,v2).out-geo` - number of requests received outside of TCF-concerned geo region with consent string of particular version | ||
| - `privacy.tcf.(v1,v2).vendorlist.(missing|ok|err|fallback)` - number of processed vendor lists of particular version | ||
| - `privacy.tcf.vendorlist.latest.(ok|err)` - number of successful or failed refreshes of the live GVL used for deleted-vendor detection |
|
|
||
| // The purpose of this wrapper class is to avoid filtering the whole vendor list for deleted vendors | ||
| // TODO: move filtering logic to vendor list service | ||
| @RequiredArgsConstructor(staticName = "of") |
Collaborator
There was a problem hiding this comment.
RequiredArgsConstructor -> AllArgsConstructor
CTMBNara
approved these changes
Jul 23, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🔧 Type of changes
✨ What's the context?
What's the context for the changes?
Periodically fetch latest GVL and handle deleted vendors.