Skip to content

Conversation

@github-actions
Copy link
Contributor

@github-actions github-actions bot commented Nov 19, 2025

⚠ NEVER add commits to this pull request.

πŸ€– This pull request was automatically created to facilitate human review of @webref/idl changes triggered by curated data at b9cc46a.

🧐 Please review the diff below and version numbers. If all looks good, merge this pull request to release the changes to npm.

πŸ“¦ Latest released @webref/idl package was v3.68.4. Merging this pull request will release v3.69.0. Make sure that the bump is the right one for the changes.

✍ If any change needs to be made before release, do not add a commit to this pull request. Changes should rather be handled in a separate pull request and pushed to the main branch. You may leave this pull request open in the meantime, or close it. The pre-release job will automatically update this pull request or create a new one once the updates have made their way to the main branch.

πŸ›ˆ The actual change introduced by this pull request is a version bump in packages/idl/package.json. You do not need to review that change. The bumped version is not the version that will be released when this pull request is merged, but rather the version that will be released next time.

New repo files that are not yet in the released package:
+ webextensions.idl

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/clipboard-apis.idl packages/idl/clipboard-apis.idl
--- webref/node_modules/@webref/idl/clipboard-apis.idl
+++ packages/idl/clipboard-apis.idl
@@ -13,6 +13,18 @@
   readonly attribute DataTransfer? clipboardData;
 };
 
+dictionary ClipboardChangeEventInit : EventInit {
+  sequence<DOMString> types = [];
+  bigint changeId = 0;
+};
+
+[Exposed=Window]
+interface ClipboardChangeEvent : Event {
+  constructor(DOMString type, optional ClipboardChangeEventInit eventInitDict = {});
+  readonly attribute FrozenArray<DOMString> types;
+  readonly attribute bigint changeId;
+};
+
 partial interface Navigator {
   [SecureContext, SameObject] readonly attribute Clipboard clipboard;
 };

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/crash-reporting.idl packages/idl/crash-reporting.idl
--- webref/node_modules/@webref/idl/crash-reporting.idl
+++ packages/idl/crash-reporting.idl
@@ -7,5 +7,5 @@
   DOMString reason;
   DOMString stack;
   boolean is_top_level;
-  DocumentVisibilityState page_visibility;
+  DocumentVisibilityState visibility_state;
 };

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/css-view-transitions.idl packages/idl/css-view-transitions.idl
--- webref/node_modules/@webref/idl/css-view-transitions.idl
+++ packages/idl/css-view-transitions.idl
@@ -36,7 +36,7 @@
   readonly attribute Promise<undefined> ready;
   readonly attribute Promise<undefined> finished;
   undefined skipTransition();
-  attribute ViewTransitionTypeSet types;
+  [SameObject] attribute ViewTransitionTypeSet types;
   readonly attribute Element transitionRoot;
   undefined waitUntil(Promise<any> promise);
 };

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/dom.idl packages/idl/dom.idl
--- webref/node_modules/@webref/idl/dom.idl
+++ packages/idl/dom.idl
@@ -313,7 +313,7 @@
 interface XMLDocument : Document {};
 
 dictionary ElementCreationOptions {
-  CustomElementRegistry customElementRegistry;
+  CustomElementRegistry? customElementRegistry;
   DOMString is;
 };
 
@@ -412,7 +412,7 @@
   SlotAssignmentMode slotAssignment = "named";
   boolean clonable = false;
   boolean serializable = false;
-  CustomElementRegistry? customElementRegistry = null;
+  CustomElementRegistry? customElementRegistry;
 };
 
 [Exposed=Window,

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/html.idl packages/idl/html.idl
--- webref/node_modules/@webref/idl/html.idl
+++ packages/idl/html.idl
@@ -1613,7 +1613,7 @@
 OffscreenCanvasRenderingContext2D includes CanvasTextDrawingStyles;
 OffscreenCanvasRenderingContext2D includes CanvasPath;
 
-enum PredefinedColorSpace { "srgb", "display-p3" };
+enum PredefinedColorSpace { "srgb", "srgb-linear", "display-p3", "display-p3-linear" };
 
 [Exposed=Window]
 interface CustomElementRegistry {

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/privacy-preserving-attribution.idl packages/idl/privacy-preserving-attribution.idl
--- webref/node_modules/@webref/idl/privacy-preserving-attribution.idl
+++ packages/idl/privacy-preserving-attribution.idl
@@ -7,10 +7,10 @@
   [SecureContext, SameObject] readonly attribute Attribution attribution;
 };
 
-enum AttributionAggregationProtocol { "dap-15-histogram", "tee-00" };
+enum AttributionAggregationProtocol { "dap-15-histogram" };
 
 dictionary AttributionAggregationService {
-  required DOMString protocol;
+  required AttributionAggregationProtocol protocol;
 };
 
 [SecureContext, Exposed=Window]

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/webgpu.idl packages/idl/webgpu.idl
--- webref/node_modules/@webref/idl/webgpu.idl
+++ packages/idl/webgpu.idl
@@ -25,7 +25,11 @@
     readonly attribute unsigned long maxSampledTexturesPerShaderStage;
     readonly attribute unsigned long maxSamplersPerShaderStage;
     readonly attribute unsigned long maxStorageBuffersPerShaderStage;
+    readonly attribute unsigned long maxStorageBuffersInVertexStage;
+    readonly attribute unsigned long maxStorageBuffersInFragmentStage;
     readonly attribute unsigned long maxStorageTexturesPerShaderStage;
+    readonly attribute unsigned long maxStorageTexturesInVertexStage;
+    readonly attribute unsigned long maxStorageTexturesInFragmentStage;
     readonly attribute unsigned long maxUniformBuffersPerShaderStage;
     readonly attribute unsigned long long maxUniformBufferBindingSize;
     readonly attribute unsigned long long maxStorageBufferBindingSize;
@@ -229,6 +233,7 @@
     readonly attribute GPUTextureDimension dimension;
     readonly attribute GPUTextureFormat format;
     readonly attribute GPUFlagsConstant usage;
+    readonly attribute (GPUTextureViewDimension or undefined) textureBindingViewDimension;
 };
 GPUTexture includes GPUObjectBase;
 
@@ -241,6 +246,7 @@
     required GPUTextureFormat format;
     required GPUTextureUsageFlags usage;
     sequence<GPUTextureFormat> viewFormats = [];
+    GPUTextureViewDimension textureBindingViewDimension;
 };
 
 enum GPUTextureDimension {

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/webrtc-encoded-transform.idl packages/idl/webrtc-encoded-transform.idl
--- webref/node_modules/@webref/idl/webrtc-encoded-transform.idl
+++ packages/idl/webrtc-encoded-transform.idl
@@ -87,14 +87,6 @@
     DOMString mimeType;
 };
 
-// New enum for video frame types. Will eventually re-use the equivalent defined
-// by WebCodecs.
-enum RTCEncodedVideoFrameType {
-    "empty",
-    "key",
-    "delta",
-};
-
 dictionary RTCEncodedVideoFrameMetadata : RTCEncodedFrameMetadata {
     unsigned long long frameId;
     sequence<unsigned long long> dependencies;
@@ -109,12 +101,11 @@
     RTCEncodedVideoFrameMetadata metadata;
 };
 
-// New interfaces to define encoded video and audio frames. Will eventually
-// re-use or extend the equivalent defined in WebCodecs.
+// New interfaces to define RTC specific encoded video and audio frames used by RTCRtpScriptTransform.
 [Exposed=(Window,DedicatedWorker), Serializable]
 interface RTCEncodedVideoFrame {
     constructor(RTCEncodedVideoFrame originalFrame, optional RTCEncodedVideoFrameOptions options = {});
-    readonly attribute RTCEncodedVideoFrameType type;
+    readonly attribute EncodedVideoChunkType type;
     attribute ArrayBuffer data;
     RTCEncodedVideoFrameMetadata getMetadata();
 };

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/webxr-plane-detection.idl packages/idl/webxr-plane-detection.idl
--- webref/node_modules/@webref/idl/webxr-plane-detection.idl
+++ packages/idl/webxr-plane-detection.idl
@@ -1,7 +1,7 @@
 // GENERATED CONTENT - DO NOT EDIT
 // Content was automatically extracted by Reffy into webref
 // (https://github.com/w3c/webref)
-// Source: WebXR Plane Detection Module (https://immersive-web.github.io/real-world-geometry/plane-detection.html)
+// Source: WebXR Plane Detection Module (https://immersive-web.github.io/plane-detection/)
 
 enum XRPlaneOrientation {
     "horizontal",

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/webxrlayers.idl packages/idl/webxrlayers.idl
--- webref/node_modules/@webref/idl/webxrlayers.idl
+++ packages/idl/webxrlayers.idl
@@ -118,6 +118,7 @@
 
 dictionary XRLayerInit {
   required XRSpace space;
+  XRTextureType textureType = "texture";
   GLenum colorFormat = 0x1908; // RGBA
   GLenum? depthFormat;
   unsigned long mipLevels = 1;
@@ -129,14 +130,12 @@
 };
 
 dictionary XRQuadLayerInit : XRLayerInit {
-  XRTextureType textureType = "texture";
   XRRigidTransform? transform;
   float width = 1.0;
   float height = 1.0;
 };
 
 dictionary XRCylinderLayerInit : XRLayerInit {
-  XRTextureType textureType = "texture";
   XRRigidTransform? transform;
   float radius = 2.0;
   float centralAngle = 0.78539;
@@ -144,7 +143,6 @@
 };
 
 dictionary XREquirectLayerInit : XRLayerInit {
-  XRTextureType textureType = "texture";
   XRRigidTransform? transform;
   float radius = 0;
   float centralHorizontalAngle = 6.28318;

@github-actions github-actions bot force-pushed the release-idl-20251119075855085 branch 3 times, most recently from ce500bd to b909a35 Compare November 20, 2025 00:59
@github-actions github-actions bot force-pushed the release-idl-20251119075855085 branch 16 times, most recently from 7e086ff to 168121a Compare November 24, 2025 01:01
@github-actions github-actions bot force-pushed the release-idl-20251119075855085 branch from 168121a to d09d484 Compare November 27, 2025 09:22
@tidoust tidoust merged commit 2f93744 into main Nov 27, 2025
@tidoust tidoust deleted the release-idl-20251119075855085 branch November 27, 2025 09:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants