This version of Prebid.js brought to you by over 20 members of the open source community. Thank you for supporting open source software.
New Features
- New Adapter: J Carter Marketing Contributed by @JCarterGw
- New Adapter: Underdog Media Contributed by @ojotoxy
- New Adapter: Meme Global Contributed by @naamushka
- New API method
getAllWinningBids
Contributed by @d6u - New Event: Auction End Contributed by @ialex
- Full bid object available to
bidderSettings[bidderCode].bidCpmAdjustment
Contributed by @CarsonBanov
New adapter for J Carter Marketing - how to add
var adUnits = [
{
code: '/9968336/header-bid-tag-0',
sizes: [[300, 250], [300, 600]],
bids: [
{
bidder: 'jcm',
params: {
}
}
]
}
];
New adapter for Underdog Media - how to add
var adUnits = [
{
code: '/9968336/header-bid-tag-0',
sizes: [[300, 250], [300, 600]],
bids: [
{
bidder: 'underdogmedia',
params: {
siteId: 'TO ADD'
}
}
]
}
];
New adapter for Meme Global - how to add
var adUnits = [
{
code: '/9968336/header-bid-tag-0',
sizes: [[300, 250], [300, 600]],
bids: [
{
bidder: 'memeglobal',
params: {
tagid: TO_ADD
}
}
]
}
];
New API Method: getAllWinningBids
$$PREBID_GLOBAL$$.getAllWinningBids() returns an array of bid objects that have won their respective auction.
New Event: auctionEnd
An Auction End event is fired when an auction has completed.
Full bid object available to bidCpmAdjustment
bidderSettings[bidderCode].bidCpmAdjustment
now receives the full bid object.
Maintenance
- @matthewlane appnexusAst single request to
ut
endpoint - @protonate Set Bid Response ID to Bid Request ID
- @protonate Cache library scripts to improve performance
- @protonate Queue bid requests
- @nanek Update Triplelift to match bid request & response IDs
- @matthewlane Update AppNexus AST to match bid request & response IDs
- @CLKeenan
getLoadTimeDistribution
sorting fix - @mkendall07 exclude
polyfill.js
from code coverage - @mkendall07 run tests using Travis CI
- @protonate add Coveralls code coverage reporting
- @matthewlane deprecate use of Bower
- @mkendall07 fail build on jshint errors
- @protonate remove bid request lookup fallback
- @nanek Unit tests for Aardvark adapter
- @nanek Unit tests for TripleLift adapter
Bug fixes in this release
- @therazor Fixes to timeout and
timedOutBidders
- @snapwich Call
externalOneTimeCallback
only once - @ehoch IE
includes
polyfill fix - @jaiminpanchal27 IE
find
polyfill fix - @matthewlane Fix
parseInt
errors in some browsers - @snapwich Fix remove ad unit iteration
- @snapwich Rubicon adapter support multi-size bid requests
- commit log here: 0.11.0...0.12.0)