Conversation
This was referenced Mar 25, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
(This release was generated by the project's release script.)
Fixes #25778.
v6.0.0
March 25, 2025
Breaking changes
This major release introduces three breaking changes that may require updates from consumers of
@mdn/browser-compat-data.1. Removal of
nullandtrueversion values (#24174)Previously, the
version_added,version_removedandversion_lastfields allowednull(indicating support is unknown) andtrue(indicating support added/removed in an unknown version).Now, these values have been removed from the schema. All existing instances have been replaced with explicit or ranged version numbers (e.g. “≤37“).
Impact: Consumers handling
nullortruevalues may need to update their code.2. Improved TypeScript definitions for array values (#26172)
Several fields, such as
notes, accept either a single value or an array of at least two values.Previously, TypeScript definitions used
string | string[], requiring consumers to validate array values manually.Now, these types are more precisely defined as
string | [string, string, ...string[]], ensuring that arrays contain at least two values when used.Impact: Consumers validating array values may need to update their code.
3. New top-level
manifestsfolder (#26109)Previously, support data for the Web Application Manifest was placed under
html/manifest, which inaccurately implied it was an HTML subfeature.Now, a new top-level
manifestsfolder has been created to host the Web Application Manifest undermanifests/webappto better reflect its independence, and to support future manifest types like the Payment Method Manifest.Impact: Consumers referencing Web Application Manifest data may need to update their code.
Renamings
html.manifest.*tomanifest.webapp.*(#26109)Statistics
v5.7.6...v6.0.0)