npm prebid.js 0.12.0
Prebid 0.12.0 Release

latest releases: 9.15.0, 9.14.0, 9.13.0...
8 years ago

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

Don't miss a new prebid.js release

NewReleases is sending notifications on new releases.