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

Make JSON schema allow WebGL extension spec URLs #10353

Commits on May 7, 2021

  1. Make JSON schema allow WebGL extension spec URLs

    We have 61 features with https://www.khronos.org/registry/webgl/extensions/
    spec URLs. All https://www.khronos.org/registry/webgl/extensions/ specs
    lack any ID/anchors at all, and therefore don’t conform to the JSON
    schema requirement in the compat-data.schema.json file for spec_url
    values to have a fragment identifier. So this change updates the schema
    to allow any URLs matching the following pattern:
    
    ^https://www.khronos.org/registry/webgl/extensions/[^/]+/
    
    Otherwise, without this change, our CI fails on all those URLs, because
    it expects to find the required fragment identifier in each of them.
    sideshowbarker committed May 7, 2021
    Configuration menu
    Copy the full SHA
    952a3b6 View commit details
    Browse the repository at this point in the history

Commits on May 11, 2021

  1. Configuration menu
    Copy the full SHA
    da23b06 View commit details
    Browse the repository at this point in the history