Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions dev-docs/modules/gpt-pre-auction.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,14 @@ into the Prebid.js package.

Optional initialization parameters:

- enabled (on by default)
- customGptSlotMatching function
- customPbAdSlot function

{: .table .table-bordered .table-striped }
| Param | Required? | Type | Description | Example |
| enabled | no | boolean | allows turning off of module. Default value is true | true |
| customGptSlotMatching | no | function | GPT slot matching function should match the customSlotMatching function sent to [setTargetingForGptAsync](/publisher-api-reference/setTargetingForGPTAsync.html) | |
| customPbAdSlot | no | function | Custom PB AdSlot function | |
| mcmEnabled | no | boolean | Removes extra network IDs when Multiple Customer Management is active. Default is false. | true |

For example:
```
pbjs.setConfig({
gptPreAuction: {
Expand All @@ -53,7 +57,8 @@ pbjs.setConfig({
customGptSlotMatching: function(gptSlotObj) {
...
return true; // or false
}
},
mcmEnabled: true
}
});
```
Expand Down
10 changes: 10 additions & 0 deletions prebid/prebidjsReleases.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,16 @@ The table below is a summary of feature changes and important bug fixes in core
{: .table .table-bordered .table-striped }
| Release | Feature |
| --- | --- |
| 5.9 | Support numeric ad targeting keys |
| 5.8 | [GPT Pre-Auction module](/dev-docs/modules/gpt-pre-auction.html) supports mcmEnabled flag |
| 5.3 | add AD_RENDER_SUCCEEDED event |
| 5.0 | See [Prebid.js 5.0 blog](https://prebid.org/blog/prebid-5-0-release/) |
| 4.43 | Support [allowSendAllBidsTargetingKeys](/dev-docs/publisher-api-reference/setConfig.html#setConfig-targetingControls) option for control over which keys are sent to the ad server |
| 4.41 | Support [suppressStaleRender](/dev-docs/publisher-api-reference/setConfig.html#auction-options) option |
| 4.40 | First Party Data [enrichment](/dev-docs/modules/enrichmentFpdModule.html) and [validation](/dev-docs/modules/validationFpdModule.html) modules are introduced |
| 4.39 | Prebid Core: removed size check on native icons and image assets |
| 4.38 | PBS Bid Adapter allows stored impression configuration |
| 4.37 | PBS bid adapter adds support for non-purpose1 consent domains |
| 4.36 | Introduced pbjs.installedModules array |
| 4.35 | Introduced pbjs.pbjs.getHighestUnusedBidResponseForAdUnitCode function |
| 4.34 | Bug fix: canBidderRegisterSync ignoring iframe sync disabled by default |
Expand Down