I need to be sure the BCD for RTCDataChannel correctly reflects the changes in its name over time.
In Firefox, it was originally introduced in Firefox 22 under the name DataChannel. Then in Firefox 24, alternative support for the name RTCDataChannel was added as an alias, although DataChannel was still the primary name.
In Firefox 60, that is reversing: the primary name becomes RTCDataChanneland support for the old name, DataChannel, is gone.
The current version data for RTCDataChannel is:
"firefox": [
{
"version_added": "24"
},
{
"alternative_name": "DataChannel",
"version_added": "22"
}
],
I’m a little unsure that this is 100% correct as it stands, and am even less sure how to finish the job. Do I just add a "version_removed" line to the "alternative_name" block?
Sheppy