This file contains guidelines that are specific to the browser data.
The schema docs list initial versions for BCD browsers. These are the earliest possible version numbers allowed to be used.
If the table indicates an initial version of “1” and an information source says a feature was implemented in a (beta) version “0.8”, record the initial version number “1” for it. In other words, a lower version number is always elevated to a browser's initial version number.
This guideline was proposed in #6861.
When a browser releases a new major or minor version, we will want to add it to our browser data. In some cases, the new browser version may already be defined, and we simply need to mark it as the current version.
To add a new browser release:
browsers/ folder (ex. browsers/chrome.json for Google Chrome)browsers.[browser_id].releases object...status of the current browser to "current"status to "beta"status of the previous browser release to "retired"You should only add releases with major and minor semver bump. See Choosing a version number for more details.
Node.js follows a different release cycle than most software. Every even-numbered major release (ex. v14, v16, v18) is considered a Long-Term Support version and receives new features and bug fixes even after the next major version is released. For example, Node.js may release v16.10.0, then v17.0.0, and then v16.11.0 to backport a feature that is also introduced in v17.0.0.
The most recent minor release of an LTS release of Node.js should be marked as status: "esr" instead of status: "current"; only the Node.js version with the highest version number should be marked as status: "current". For example, if Node.js releases v16.10.0, v17.0.0, and v16.11.0 in that order, v17.0.0 should be marked as status: "current", v16.11.0 as status: "esr", and v16.10.0 as status: "retired".
For Node.js, new versions may be added if:
To add a new Node.js release:
browsers/nodejs.jsonbrowsers.nodejs.releases object, add a new entry with the version number as the key, referencing the schemastatus property to..."current", if it is the version with the highest semver"esr", if it is the latest version within that major versionstatus all other versions within that major version to "retired"BCD's owners may choose to adopt a new browser or engine. To add a new browser to BCD, we need evidence of (in decreasing order of importance):
browsers/ file (containing release notes with version numbers and dates)This decision was proposed in #7238 and adopted in #7244.
To maintain data quality, BCD's owners may choose to remove a browser or engine from the project. To remove a browser from BCD, we need habitual (six months or more) evidence of (in decreasing order of importance):
null or true, etc.)Removing a browser from BCD does not constitute a ban; browsers may be readmitted under the Addition of browsers guideline.