New Features
- New adapter: DefyMedia (#650- @mkendall07)
- Support for device size detection and size mapping - see below (#651- @mkendall07)
adUnit.sizeMapping
- Prebid.js now supports variable sizing based on device width detected.
-Example configuration:
var adUnit = {
code: 'code',
sizeMapping: [ //new!
{
minWidth : 1024, //if device screen width is greater than 1024, use these sizes
sizes : [[300,250],[728,90]]
},
{
minWidth : 480, //if device screen width is < 1024 && > 480, use these sizes
sizes : [120,60]
},
{
minWidth : 0, //if device screen width is < 480 && > 0, use these sizes
sizes : [20,20]
}
],
bids: [...]
}
-If sizeMapping
is defined, then using adUnit.size
param is optional. If device screen width is not able to be determined, the adUnit.size
will be used.
New Adapters
DefyMedia
DefyMedia is available as a AppNexus aliased bidder.
{
bidder: 'defymedia',
params: {
placementId : '12345',
}
}
Maintenance
- New sizes available on Rubicon Adapter (#646, #649 - @mlommatzsch, @tegner)
- add an
--https
flag to run local dev server over https (#670 - @protonate)
Bug Fixes
- Stabilize unit tests by fixing random TypeErrors - various commits (#642 - @matthewlane )
- Initial value 0 for adder. (#656 - @CarsonBanov )
- fixed bug with using non standard "standard" keys and alwaysSendBid config (#665 - @mkendall07 )
- XDomainRequest does not support
readyState
(#668 - @mkendall07) - test ie variant of url parse pathname (#669 - @protonate)