Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OWD BCD project: Implement a process for updating BCD whenever a new browser release is available #168

Open
1 of 3 tasks
Elchi3 opened this issue Jun 27, 2023 · 14 comments
Open
1 of 3 tasks
Assignees
Labels
H1 2024 Projects for the first half of 2024 H2 2023 Projects for July-December 2023

Comments

@Elchi3
Copy link
Member

Elchi3 commented Jun 27, 2023

Problem statement

When browser vendors release a new version of a browser, compatibility information in the BCD project becomes outdated. Known web platform features might become supported in more browsers or entirely new web platform features might ship in any of the browsers for the first time.

Proposed solutions

To ensure web developers have up-to-date browser support information available as fast as possible and MDN author know about newly available web platform features, the BCD project should introduce a process that is triggered automatically whenever a new browser release is available. It should update existing data points and add new data points for features shipping for the first time in any of the browsers.

We can start by making this work for stable browser releases and expand it to beta and preview versions if desirable.

Task list

Previously, @queengooborg described the process like this:

  1. Initial setup: Locally check out BCD, the collector and the collector results repos (preferably adjacent to each other)
  2. Run the collector website on the new browser version
  3. Submit the results to GitHub using the appropriate export button, then checkout the PR branch while waiting for merge
  4. Run the update-bcd script using --browser=<browser_id> --release=<browser_version>
  5. Start submitting BCD PRs from the changes made to the BCD local copy

We should investigate how to automate more of this and also look into how we will be notified about new browser releases as the trigger point of this whole process. Thoughts around this are also in mdn/browser-compat-data#1664.

It's OK and desired that there is a human control step in this process. Most of the mechanical work should be automated, though. BCD peers are required to assure quality of the pull requests (as usual).

  • Figure out how to get notified about browser releases and update the data in the browsers/ folder
  • Automate the process described above as much as possible. Existing features should get updated and entirely new web platform features shipping in a browser for the first time should be added.
  • Report about new features of a browser release and about which features have newly become interoperable ("baseline").

Priority assessment

  • Effort: Medium. Estimating 8-12 weeks. (a quarter).
  • Dependencies: BCD collector, GitHub actions, information/API about new browser releases
  • Community enablement: n/a This is infrastructure work that can likely only be worked on by team members. It will take off work from contributors who work on adding and updating data manually for a given release.
  • Momentum: We can create momentum by reporting all new features of a browser release to the community.
  • Enabling learners: n/a
  • Enabling professionals:
  • Underrepresented topics / Ethical web: n/a
  • Operational necessities: no
  • Addressing needs of the web industry: Accurate compatibility info helps reducing web developer's pain with compatibility. Could also look into reporting features that have become interoperable (or "baseline") as we update data for a release.

More information

Open Web Docs (OWD) is a non-profit collective funded by corporate and individual donations.

In order for this project to happen, please consider donating to OWD on https://opencollective.com/open-web-docs.
For more information on sponsorship and membership tiers, see https://openwebdocs.org/membership/

More information is available at https://openwebdocs.org/.
For questions, please reach out to florian@openwebdocs.org.

@tomayac
Copy link
Contributor

tomayac commented Jun 27, 2023

This is a very important project!

Quick question on step 2. if I may: Where can I find the collector website ?

@Elchi3
Copy link
Member Author

Elchi3 commented Jun 27, 2023

Quick question on step 2. if I may: Where can I find the collector website ?

It currently lives here https://mdn-bcd-collector.gooborg.com

@tomayac
Copy link
Contributor

tomayac commented Jun 27, 2023

Wow, thank you! Very helpful!

@Elchi3 Elchi3 added H2 2023 Projects for July-December 2023 and removed not ready labels Jun 27, 2023
@queengooborg queengooborg changed the title OWD project: Implement a process for updating BCD whenever a new browser release is available OWD BCD project: Implement a process for updating BCD whenever a new browser release is available Jul 8, 2023
@lolaodelola
Copy link
Contributor

@lolaodelola
Copy link
Contributor

@queengooborg @Elchi3 This is something the Bocoup team have on our roadmap to tackle, can we please add it to the agenda for discussion at Tuesday's (03/Oct/23) meeting?

@Elchi3
Copy link
Member Author

Elchi3 commented Sep 28, 2023

@lolaodelola Yes, it has been on the agenda already. Would be lovely if you could join!

@foolip
Copy link
Member

foolip commented Oct 3, 2023

One important piece here is automating the creation of pull requests, as discussed in openwebdocs/mdn-bcd-collector#726. The most important use case is submitting changes for a single browser release, and a mock invocation of that script might look like:

npm run create-pr --browser chrome --version 116

That pull request should then only include changes that affect Chrome 116, and have a reasonable subject and body, similar to the pull requests that @queengooborg submits using a standalone script.

@foolip
Copy link
Member

foolip commented Oct 3, 2023

Open question: is it best to have a PR creation script internally invoke update-bcd with certain filters, or to start from the local changes in the BCD repo and try to summarize them?

@Elchi3
Copy link
Member Author

Elchi3 commented Oct 30, 2023

We achieved a first milestone in this project. @teoli2003 was leading this work! 🎉

Jean-Yves landed 9 pull request in mdn/browser-compat-data to automatically update the browser release information which BCD stores for these 6 BCD browsers:

  • Firefox and Firefox Android (using whattrainisitnow.com)
  • Chrome, Chrome Android, WebView Android (using chromestatus.com/api)
  • Edge (using edgeupdates.microsoft.com/api/products)

More browsers can easily be added in the future and we reached out to WebKit/Safari if they could provide a data source for their release information for us.

All scripts created can be found here: https://github.com/mdn/browser-compat-data/tree/main/scripts/update-browser-releases and the new GitHub workflow lives here: https://github.com/mdn/browser-compat-data/blob/main/.github/workflows/update-browser-releases.yml

The PRs this script creates will look like this: mdn/browser-compat-data#21113.

Now we get to know automatically when browsers released a new version. As a next step we will look into providing more automation for updating the compatibility data itself for those new browser releases.

@foolip
Copy link
Member

foolip commented Oct 30, 2023

Very cool, thanks @teoli2003 for driving this!

@foolip
Copy link
Member

foolip commented Oct 31, 2023

@Elchi3, given mdn/browser-compat-data#21084 and mdn/browser-compat-data#21083, are you (personally) planning any work to create these pull requests automatically? I'm discussing PR creation with @lolaodelola and @mzgoddard and want to make sure we don't have overlapping plans.

@Elchi3
Copy link
Member Author

Elchi3 commented Nov 1, 2023

are you (personally) planning any work to create these pull requests automatically?

Yes we are woking on this. We are investigating how such automatically created PRs should look like exactly. We've started our research by creating such PRs manually and we're collecting feedback from key people (release drivers, tech writers). I'm happy to sync about implementation and we've been using the #bcd channel on the OWD Slack to coordinate and share our progress and thoughts as well as the weekly BCD calls.

@queengooborg
Copy link
Member

queengooborg commented Jan 12, 2024

Update on how this project is going:

  • The Selenium script runs have been integrated into the collector's deployment workflow
  • We're still running into some issues with the script that are getting worked out over time
  • Some browsers (Safari and mobile browsers) still need to be run manually
    • Most Safari minor versions are not available on CTs, so I've been creating VMs for them
    • For Android browsers, CTs track the Android version, not the browser version, so we have no way of knowing if the browser version is the most recent

@Elchi3 Elchi3 added the H1 2024 Projects for the first half of 2024 label Jan 19, 2024
@queengooborg
Copy link
Member

Update on the project: the Selenium autorun is now functional and live! Results will now be automatically collected and pushed to the results repo on every release!

There are still some browsers and browser versions that require manual runs due to the limitations explained above, but we now have a path forward!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
H1 2024 Projects for the first half of 2024 H2 2023 Projects for July-December 2023
Projects
None yet
Development

No branches or pull requests

5 participants