Skip to content

Prebid 0.10.0 Release

Compare
Choose a tag to compare
@protonate protonate released this 29 Jun 20:19
· 8317 commits to master since this release

This release of Prebid.js highlights another milestone in the growth of the project: over 20 bidder adapters are now included. The community continues to grow with people joining in on reporting bugs, suggesting features and providing code. Thank you for supporting open source software.

New Features

  • Enable Deals in Prebid Return a dealId in a bid response and include with ad server targeting
  • New adapter for RTK Aardvark (contributed by @naegelin)
  • New adapter for WideOrbit (contributed by @bjorn-wo)
  • New adapter for Sekindo (contributed by @sekindo)
  • New adapter for Krux Link (contributed by @sethyates)
  • New adapter for AdMedia (contributed by @devmusings)

Maintenance

  • Add 3 additional size options to Rubicon adapter (contributed by @aurelienjoneau)

Enable Deals in Prebid

If a dealId is returned in the bid response it will be included in ad server targeting. Learn more about how to enable deals in Prebid.

New adapter for RTK Aardvark - how to add

var adUnits = [
  {
    code: '/9968336/header-bid-tag-0',
    sizes: [[300, 250], [300, 600]],
    bids: [
      {
        bidder: 'aardvark',
        params: {
          //The RTK Auction ID
          ai: "TO ADD",
          //The RTK Ad Unit ID (shortcode)
          sc: "TO ADD"        
        }
      }
    ]
  }
];

New adapter for WideOrbit - how to add

var adUnits = [
  {
    code: '/9968336/header-bid-tag-0',
    sizes: [[300, 250], [300, 600]],
    bids: [
      {
        bidder: 'wideorbit',
        params: {
          pbId: 123, // REQUIRED Publisher Id,
          pId: 123456 // REQUIRED Placement Id        
        }
      }
    ]
  }
];

New adapter for Sekindo - how to add

var adUnits = [
  {
    code: '/9968336/header-bid-tag-0',
    sizes: [[300, 250], [300, 600]],
    bids: [
      {
        bidder: 'sekindo',
        params: {
          spaceId: 14071,   // REQUIRED int. To get one, contact http://www.sekindo.com
      bidfloor: 0.2     // OPTIONAL float bid floor in $ CPM
        }
      }
    ]
  }
];

New adapter for Krux Link - how to add

var adUnits = [
  {
    code: '/9968336/header-bid-tag-0',
    sizes: [[300, 250], [300, 600]],
    bids: [
      {
        bidder: 'kruxlink',
        params: {
          impid: 37
        }
      }
    ]
  }
];

New adapter for AdMedia - how to add

var adUnits = [
  {
    code: '/9968336/header-bid-tag-0',
    sizes: [[300, 250], [300, 600]],
    bids: [
      {
        bidder: 'admedia',
        params: {
          //Publisher ID
          aid: '1234' //Use 1234 for test ads 
        }
      }
    ]
  }
];

Bug fixes in this release

  • GPT Clear Targeting Fix: #391
  • IndexExchange issue with clearing old bids: #396
  • commit log here: 0.9.2...0.10.0)