-
Notifications
You must be signed in to change notification settings - Fork 0
add the Consent field as specified in OpenRTB 2.6 #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -8,10 +8,10 @@ on: | |||||
| - main | ||||||
| jobs: | ||||||
| go: | ||||||
| runs-on: ubuntu-latest | ||||||
| runs-on: gha-rtg-adikteev-runners-large-amd64 | ||||||
| strategy: | ||||||
| matrix: | ||||||
| go-version: [1.18.x, 1.19.x] | ||||||
| go-version: [1.18.x, 1.19.x, 1.25.x] | ||||||
|
||||||
| go-version: [1.18.x, 1.19.x, 1.25.x] | |
| go-version: [1.18.x, 1.19.x, 1.20.x, 1.21.x, 1.22.x, 1.23.x, 1.24.x, 1.25.x] |
Copilot
AI
Dec 3, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The golangci-lint job's Go version was changed from 1.x (which always uses the latest stable Go version) to a pinned version 1.19.x. This is inconsistent with adding Go 1.25.x to the test matrix. If the project now supports Go 1.25.x, the linter should run on a compatible or newer version. Consider using 1.x to always use the latest Go version, or update to at least 1.25.x to match the highest version being tested.
| go-version: 1.19.x | |
| go-version: 1.25.x |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -807,6 +807,7 @@ type User struct { | |
| CustomData string `json:"customdata,omitempty"` // Optional feature to pass bidder data that was set in the exchange's cookie. The string must be in base85 cookie safe characters and be in any format. Proper JSON encoding must be used to include "escaped" quotation marks. | ||
| Geo *Geo `json:"geo,omitempty"` | ||
| Data []Data `json:"data,omitempty"` | ||
| Consent string `json:"consent,omitempty"` // When GDPR regulations are in effect this attribute contains the Transparency and Consent Framework's Consent String data structure. | ||
|
||
| Ext json.RawMessage `json:"ext,omitempty"` | ||
| } | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: Organization-specific CI runner accidentally committed in unrelated PR
The PR description indicates this change adds the
Consentfield to OpenRTB, but the CI workflow was modified to usegha-rtg-adikteev-runners(an organization-specific self-hosted runner) and includes1.25.xin the Go version matrix. These changes appear unintentionally included since they're unrelated to the stated PR purpose and would cause CI failures for contributors without access to the custom runner infrastructure.