diff --git a/overview/analytics.md b/overview/analytics.md
index 01adbe12f4..b48707220a 100644
--- a/overview/analytics.md
+++ b/overview/analytics.md
@@ -14,6 +14,7 @@ There are several analytics adapter plugins available to track header bidding pe
{: .table .table-bordered .table-striped }
| Analytics Adapter | Cost | Contact |
| ------------- | ------------- | ----------- |
+| Appier | Contact vendor | [Website](https://www.appier.com) |
| Adagio | Contact vendor| [Website](https://adagio.io)|
| Assertive Yield (contact for adapter) | Free to try (Large accounts $0.002 CPM or sampled < 10mm/m imp.) | [Website](https://yield.assertcom.de) |
| Finteza Analytics |
Contact vendor | [Website](https://www.finteza.com/) |
@@ -29,6 +30,7 @@ There are several analytics adapter plugins available to track header bidding pe
| RealVu | Free | [Website](https://www.realvu.com/rvaa/) |
| Rivr Analytics | Contact vendor | [Website](https://www.rivr.ai/)|
| Rubicon Project |
Contact vendor | [Website](https://rubiconproject.com/header-bidding-for-publishers/) |
+| Scaleable.ai Analytics | Free & Paid | [Website](https://scaleable.ai) |
| ShareThrough | Contact vendor | |
| Sortable | Contact vendor | [Website](https://www.sortable.com) |
| Sovrn |
Contact vendor | [Website](https://www.sovrn.com/analytics/)|
diff --git a/prebid-mobile/pbm-api/android/code-integration-android.md b/prebid-mobile/pbm-api/android/code-integration-android.md
index b9e01086d2..1979b3f139 100644
--- a/prebid-mobile/pbm-api/android/code-integration-android.md
+++ b/prebid-mobile/pbm-api/android/code-integration-android.md
@@ -25,7 +25,7 @@ implementation 'org.prebid:prebid-mobile-sdk:[1,2)'
If you wish to explicitly state the lastest stable release, please use the following:
```
-implementation 'org.prebid:prebid-mobile-sdk:1.1'
+implementation 'org.prebid:prebid-mobile-sdk:1.1.1'
```
@@ -67,6 +67,29 @@ For details on creating the specific ad units and additional parameters and meth
[Banner Ad Unit](/prebid-mobile/pbm-api/android/banneradunit-android.html)
[Interstitial Ad Unit](/prebid-mobile/pbm-api/android/interstitialadunit-android.html)
+### Resize ad slot
+
+Prebid recommends app developers to resize ads slots to the Prebid rendering ad size using native code due to an unresolved bug in the Google Mobile Ads SDK (described [here](https://groups.google.com/forum/?utm_medium=email&utm_source=footer#!category-topic/google-admob-ads-sdk/ios/648jzAP2EQY)) where render failures can occur with 3rd party creatives (such as Prebid Universal Creative) using size overrides.
+
+{% capture warning_note %}
+Failure to resize rendering Prebid ads can cause revenue loss under certain conditions. For this reason, we advise using the below resize function in all scenarios. {% endcapture %}
+{% include /alerts/alert_warning.html content=warning_note %}
+
+
+```
+ dfpAdView.setAdListener(new AdListener() {
+ @Override
+ public void onAdLoaded() {
+ super.onAdLoaded();
+
+ dfpAdView.setAdSizes(dfpAdView.getAdSize());
+
+ }
+ });
+ ```
+
+
+
### Add Custom Keywords
Once an ad unit has been instantiated, custom keywords can be added to it to improve its targeting.
diff --git a/prebid-mobile/pbm-api/ios/code-integration-ios.md b/prebid-mobile/pbm-api/ios/code-integration-ios.md
index 34b5e025ab..def4b4ede3 100644
--- a/prebid-mobile/pbm-api/ios/code-integration-ios.md
+++ b/prebid-mobile/pbm-api/ios/code-integration-ios.md
@@ -20,13 +20,8 @@ Get started with Prebid Mobile by creating a [Prebid Server account]({{site.gith
If you are not familar with using Cocoapods for dependency management visit their [getting started page](https://guides.cocoapods.org/using/getting-started.html). Once you have your `podfile` setup, include the following:
-{% capture warning_note %}
-• Ensure that you set the platform to :ios, '11.0', setting the the platform to an earlier version might return unexpected results.
-• Replace MyAmazingApp with your application's name. {% endcapture %}
-{% include /alerts/alert_warning.html content=warning_note %}
-
```
-platform :ios, '11.0'
+platform :ios, '9.0'
target 'MyAmazingApp' do
pod 'PrebidMobile'
@@ -98,6 +93,29 @@ For details on creating the specific ad units and additional parameters and meth
[Banner Ad Unit](/prebid-mobile/pbm-api/ios/pbm-bannerad-ios.html)
[Interstitial Ad Unit](/prebid-mobile/pbm-api/ios/pbm-interstitial-ad-ios.html)
+### Resize ad slot
+
+Prebid recommends app developers to resize ads slots to the Prebid rendering ad size using native code due to an unresolved bug in the Google Mobile Ads SDK (described [here](https://groups.google.com/forum/?utm_medium=email&utm_source=footer#!category-topic/google-admob-ads-sdk/ios/648jzAP2EQY)) where render failures can occur with 3rd party creatives (such as Prebid Universal Creative) using size overrides.
+
+{% capture warning_note %}
+Failure to resize rendering Prebid ads can cause revenue loss under certain conditions. For this reason, we advise using the below resize function in all scenarios. {% endcapture %}
+{% include /alerts/alert_warning.html content=warning_note %}
+
+
+```
+ func adViewDidReceiveAd(_ bannerView: GADBannerView) {
+ print("adViewDidReceiveAd")
+
+ Utils.shared.findPrebidCreativeSize(bannerView) { (size) in
+ if let bannerView = bannerView as? DFPBannerView, let size = size {
+ bannerView.resize(GADAdSizeFromCGSize(size))
+ }
+ }
+ }
+ ```
+
+
+
### Add Custom Keywords
diff --git a/prebid/prebidjsReleases.md b/prebid/prebidjsReleases.md
index e6cef7a1d7..18018ea15a 100644
--- a/prebid/prebidjsReleases.md
+++ b/prebid/prebidjsReleases.md
@@ -6,20 +6,21 @@ description: Noteworthy updates in Prebid.js
sidebarType: 1
---
-## Prebid.js Releases
+## Important Prebid.js Releases
Not every Prebid.js release contains noteworthy core features, and
-the [GitHub releases page](https://github.com/prebid/Prebid.js/releases) can be hard to search for when a given change or bugfix was made.
+the [GitHub releases page](https://github.com/prebid/Prebid.js/releases) can be hard to search for when an important change or bugfix was made.
-The table below is a summary of feature changes and important bug fixes in core Prebid.js.
+The table below is a summary of feature changes and important bug fixes in core of Prebid.js. Almost [all releases](https://github.com/prebid/Prebid.js/releases) have new bid adapters or updates to existing adapters -- what's listed here is limited to core functionality. Releases with only minor core changes may not be shown here, and releases with multiple important changes may be shown more than once.
{: .table .table-bordered .table-striped }
| Release | Feature |
| --- | --- |
+| 2.20 | AuctionEnd event now always execute when auction completes even when there's no callback handler |
| 2.18 | Currency Module: always adding originalCpm and originalCurrency to bid object |
| 2.17 | Ability to limit the size of keys sent to ad server via [targeting controls](http://prebid.org/dev-docs/publisher-api-reference.html#setConfig-targetingControls) |
| 2.16 | [User ID module](/dev-docs/modules/userId.html) refactored to support external sub-modules |
-| 2.10 | [User ID module](/dev-docs/modules/userId.html) |
+| 2.10 | [User ID module](/dev-docs/modules/userId.html) released with support for PubCommon ID and Unified ID |
| 2.10 | A bidder which responded in time is now considered a timely bidder, even if it responded with no bids. See [PR 3696](https://github.com/prebid/Prebid.js/pull/3696) |
| 2.9 | Add 'hb_cache_host' targeting for video bids when cache is set to support upcoming video cache redirector |
| 2.9 | remove removeRequestId logic. See [PR 3698](https://github.com/prebid/Prebid.js/pull/3698)