prebid.js 5.20.0 → 6.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.babelrc.js CHANGED
@@ -16,12 +16,9 @@ module.exports = {
16
16
  {
17
17
  "targets": {
18
18
  "browsers": [
19
- "chrome >= 75",
20
- "safari >=10",
21
- "edge >= 70",
22
- "ff >= 70",
23
- "ie >= 11",
24
- "ios >= 11"
19
+ ">0.25%",
20
+ "not ie 11",
21
+ "not op_mini all"
25
22
  ]
26
23
  }
27
24
  }
package/README.md CHANGED
@@ -59,6 +59,8 @@ module.exports = {
59
59
  loader: 'babel-loader',
60
60
  // presets and plugins for Prebid.js must be manually specified separate from your other babel rule.
61
61
  // this can be accomplished by requiring prebid's .babelrc.js file (requires Babel 7 and Node v8.9.0+)
62
+ // as of Prebid 6, babelrc.js only targets modern browsers. One can change the targets and build for
63
+ // older browsers if they prefer, but integration tests on ie11 were removed in Prebid.js 6.0
62
64
  options: require('prebid.js/.babelrc.js')
63
65
  }
64
66
  }
@@ -314,7 +316,7 @@ For instructions on writing tests for Prebid.js, see [Testing Prebid.js](http://
314
316
 
315
317
  ### Supported Browsers
316
318
 
317
- Prebid.js is supported on IE11 and modern browsers.
319
+ Prebid.js is supported on IE11 and modern browsers until 5.x. 6.x+ transpiles to target >0.25%; not Opera Mini; not IE11.
318
320
 
319
321
  ### Governance
320
322
  Review our governance model [here](https://github.com/prebid/Prebid.js/tree/master/governance.md).
package/browsers.json CHANGED
@@ -15,14 +15,6 @@
15
15
  "device": null,
16
16
  "os": "Windows"
17
17
  },
18
- "bs_ie_11_windows_10": {
19
- "base": "BrowserStack",
20
- "os_version": "10",
21
- "browser": "ie",
22
- "browser_version": "11.0",
23
- "device": null,
24
- "os": "Windows"
25
- },
26
18
  "bs_chrome_90_windows_10": {
27
19
  "base": "BrowserStack",
28
20
  "os_version": "10",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prebid.js",
3
- "version": "5.20.0",
3
+ "version": "6.0.0",
4
4
  "description": "Header Bidding Management Library",
5
5
  "main": "src/prebid.js",
6
6
  "scripts": {
package/wdio.conf.js CHANGED
@@ -9,7 +9,7 @@ function getCapabilities() {
9
9
  return platformMap[os];
10
10
  }
11
11
 
12
- // only IE 11, Chrome 80 & Firefox 73 run as part of functional tests
12
+ // only Chrome 80 & Firefox 73 run as part of functional tests
13
13
  // rest of the browsers are discarded.
14
14
  delete browsers['bs_chrome_79_windows_10'];
15
15
  delete browsers['bs_firefox_72_windows_10'];