Skip to content

Prebid 0.12.0 Release

Compare
Choose a tag to compare
@protonate protonate released this 22 Aug 23:08
· 7958 commits to master since this release

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


Bug fixes in this release