Download Latest Version v8.1.1 source code.zip (3.9 MB) Google Add to Preferred Sources
Home / v8.1.0
Name Modified Size InfoDownloads / Week
Parent folder
data.json 2026-09-03 20.2 MB
README.md 2026-09-03 1.2 kB
v8.1.0 source code.tar.gz 2026-09-03 1.9 MB
v8.1.0 source code.zip 2026-09-03 3.9 MB
Totals: 4 Items   26.0 MB 1

Notable changes

This release includes one notable change.

1. Add index to published browser release objects (#30008)

Previously, reconstructing the release order of a browser meant relying on JavaScript object key enumeration order or parsing and comparing version strings yourself.

Now, every release object in the published data.json carries a 0-based index property, ordered ascending by version, which you can sort on directly:

:::js
const releases = Object.entries(bcd.browsers.chrome.releases);
releases.sort(([, a], [, b]) => a.index - b.index);
// [["1", {…}], ["2", {…}], …, ["151", {…}]]

For details, see the Build-time transformations section of the published data JSON schema documentation.

Statistics

  • 3 contributors have changed 15 files with 127 additions and 54 deletions in 2 commits (v8.0.14...v8.1.0)
  • 20,510 total features
  • 1,270 total contributors
  • 5,736 total stargazers
Source: README.md, updated 2026-09-03