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

Updates for Chrome 122 beta #21998

Merged
merged 3 commits into from
Jan 29, 2024
Merged

Updates for Chrome 122 beta #21998

merged 3 commits into from
Jan 29, 2024

Conversation

Elchi3
Copy link
Member

@Elchi3 Elchi3 commented Jan 25, 2024

The Open Web Docs BCD collector v10.7.1 found new features shipping in Chrome 122 beta which was released yesterday. Currently, the collector covers about 82% of BCD, so the following list might not be exhaustive. Also, if a feature is in Chrome Canary/behind origin trials/enrollment, it is not considered here.

With this PR, BCD considers the following 44 features as shipping in Chrome 122:

  • api.IdentityCredential.disconnect_static
  • api.Navigator.storageBuckets
  • api.StorageBucket
  • api.StorageBucket.caches
  • api.StorageBucket.estimate
  • api.StorageBucket.expires
  • api.StorageBucket.getDirectory
  • api.StorageBucket.indexedDB
  • api.StorageBucket.name
  • api.StorageBucket.persist
  • api.StorageBucket.persisted
  • api.StorageBucket.setExpires
  • api.StorageBucketManager
  • api.StorageBucketManager.delete
  • api.StorageBucketManager.keys
  • api.StorageBucketManager.open
  • api.URLPattern.hasRegExpGroups
  • api.WebGL2RenderingContext.drawingBufferFormat
  • api.WebGL2RenderingContext.drawingBufferStorage
  • api.WebGLRenderingContext.drawingBufferFormat
  • api.WebGLRenderingContext.drawingBufferStorage
  • api.WorkerNavigator.storageBuckets
  • css.types.color.rgb.mixed_type_parameters (not in this PR but added to BCD manually previously)
  • css.types.color.rgba.mixed_type_parameters (ditto)
  • javascript.builtins.Iterator.Iterator
  • javascript.builtins.Iterator.drop
  • javascript.builtins.Iterator.every
  • javascript.builtins.Iterator.filter
  • javascript.builtins.Iterator.find
  • javascript.builtins.Iterator.flatMap
  • javascript.builtins.Iterator.forEach
  • javascript.builtins.Iterator.from
  • javascript.builtins.Iterator.map
  • javascript.builtins.Iterator.reduce
  • javascript.builtins.Iterator.some
  • javascript.builtins.Iterator.take
  • javascript.builtins.Iterator.toArray
  • javascript.builtins.Set.difference
  • javascript.builtins.Set.intersection
  • javascript.builtins.Set.isDisjointFrom
  • javascript.builtins.Set.isSubsetOf
  • javascript.builtins.Set.isSupersetOf
  • javascript.builtins.Set.symmetricDifference
  • javascript.builtins.Set.union

I think all of this is in line with what https://chromestatus.com says currently.

Again, I hope this auto-generated PR is useful to update BCD for the new Chrome 122 more easily and faster. If you have feedback, let me know! /cc @chrisdavidmills

@github-actions github-actions bot added data:api 🐇 Compat data for Web APIs. https://developer.mozilla.org/docs/Web/API data:js 📟 Compat data for JS/ECMAScript features. https://developer.mozilla.org/docs/Web/JavaScript labels Jan 25, 2024
api/IdentityCredential.json Outdated Show resolved Hide resolved
Copy link
Collaborator

@chrisdavidmills chrisdavidmills left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Elchi3 I checked the features added in this PR against the features listed as enabled in Chrome 122 beta release (see https://chromestatus.com/roadmap), and this is what I found:

Found by the collector and listed as enabled in the 122 beta

  • Feature: FedCM: disconnect
    • api.IdentityCredential.disconnect_static
  • Feature: Iterator helpers
    • javascript.builtins.Iterator.Iterator
    • javascript.builtins.Iterator.drop
    • javascript.builtins.Iterator.every
    • javascript.builtins.Iterator.filter
    • javascript.builtins.Iterator.find
    • javascript.builtins.Iterator.flatMap
    • javascript.builtins.Iterator.forEach
    • javascript.builtins.Iterator.from
    • javascript.builtins.Iterator.map
    • javascript.builtins.Iterator.reduce
    • javascript.builtins.Iterator.some
    • javascript.builtins.Iterator.take
    • javascript.builtins.Iterator.toArray
  • Feature: Set methods
    • javascript.builtins.Set.difference
    • javascript.builtins.Set.intersection
    • javascript.builtins.Set.isDisjointFrom
    • javascript.builtins.Set.isSubsetOf
    • javascript.builtins.Set.isSupersetOf
    • javascript.builtins.Set.symmetricDifference
    • javascript.builtins.Set.union
  • Feature: Storage Buckets API
    • api.Navigator.storageBuckets
    • api.StorageBucket
    • api.StorageBucket.caches
    • api.StorageBucket.estimate
    • api.StorageBucket.expires
    • api.StorageBucket.getDirectory
    • api.StorageBucket.indexedDB
    • api.StorageBucket.name
    • api.StorageBucket.persist
    • api.StorageBucket.persisted
    • api.StorageBucket.setExpires
    • api.StorageBucketManager
    • api.StorageBucketManager.delete
    • api.StorageBucketManager.keys
    • api.StorageBucketManager.open
    • api.WorkerNavigator.storageBuckets
  • Feature: URLPattern: hasRegExpGroups
    • api.URLPattern.hasRegExpGroups
  • Feature: WebGL drawingBufferStorage
    • api.WebGL2RenderingContext.drawingBufferFormat
    • api.WebGL2RenderingContext.drawingBufferStorage
    • api.WebGLRenderingContext.drawingBufferFormat
    • api.WebGLRenderingContext.drawingBufferStorage

Found by the collector, but not listed in the 122 beta list

  • css.types.color.rgb.mixed_type_parameters (not in this PR but added to BCD manually previously)
  • css.types.color.rgba.mixed_type_parameters (ditto)

Not found by the collector

@Elchi3
Copy link
Member Author

Elchi3 commented Jan 29, 2024

Thanks again for your detailed look, @chrisdavidmills! Sounds like everything this PR is proposing is correct then and there are few things that could be added as manual additions to BCD as follow-ups. If you're happy with this PR, then I think you could approve and merge :)

@chrisdavidmills
Copy link
Collaborator

Thanks again for your detailed look, @chrisdavidmills! Sounds like everything this PR is proposing is correct then and there are few things that could be added as manual additions to BCD as follow-ups. If you're happy with this PR, then I think you could approve and merge :)

Yup, agreed. I will do so ;-)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
data:api 🐇 Compat data for Web APIs. https://developer.mozilla.org/docs/Web/API data:js 📟 Compat data for JS/ECMAScript features. https://developer.mozilla.org/docs/Web/JavaScript
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants