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

📦 Release @webref/[email protected] #1110

Merged
merged 1 commit into from
Dec 21, 2023
Merged

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Dec 13, 2023

⚠ 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 d499bc7.

🧐 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.42.1. Merging this pull request will release v3.42.2. 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.

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/css-view-transitions-2.idl packages/idl/css-view-transitions-2.idl
--- webref/node_modules/@webref/idl/css-view-transitions-2.idl
+++ packages/idl/css-view-transitions-2.idl
@@ -3,11 +3,6 @@
 // (https://github.com/w3c/webref)
 // Source: CSS View Transitions Module Level 2 (https://drafts.csswg.org/css-view-transitions-2/)
 
-[Exposed=Window]
-interface PageRevealEvent : Event {
-  readonly attribute ViewTransition? viewTransition;
-};
-
 dictionary StartViewTransitionOptions {
   UpdateCallback? update = null;
   sequence<DOMString>? type = null;

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
@@ -339,6 +339,7 @@
   readonly attribute ShadowRootMode mode;
   readonly attribute boolean delegatesFocus;
   readonly attribute SlotAssignmentMode slotAssignment;
+  readonly attribute boolean clonable;
   readonly attribute Element host;
   attribute EventHandler onslotchange;
 };

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
@@ -2053,6 +2053,16 @@
 };
 
 [Exposed=Window]
+interface PageRevealEvent : Event {
+  constructor(DOMString type, optional PageRevealEventInit eventInitDict = {});
+  readonly attribute ViewTransition? viewTransition;
+};
+
+dictionary PageRevealEventInit : EventInit {
+  ViewTransition? viewTransition = null;
+};
+
+[Exposed=Window]
 interface PageTransitionEvent : Event {
   constructor(DOMString type, optional PageTransitionEventInit eventInitDict = {});
 
@@ -2201,6 +2211,7 @@
   attribute EventHandler onoffline;
   attribute EventHandler ononline;
   attribute EventHandler onpagehide;
+  attribute EventHandler onpagereveal;
   attribute EventHandler onpageshow;
   attribute EventHandler onpopstate;
   attribute EventHandler onrejectionhandled;

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/media-source.idl packages/idl/media-source.idl
--- webref/node_modules/@webref/idl/media-source.idl
+++ packages/idl/media-source.idl
@@ -76,6 +76,32 @@
 };
 
 [Exposed=(Window,DedicatedWorker)]
+interface ManagedMediaSource : MediaSource {
+  constructor();
+  readonly attribute boolean streaming;
+  attribute EventHandler onstartstreaming;
+  attribute EventHandler onendstreaming;
+};
+
+[Exposed=(Window,DedicatedWorker)]
+interface BufferedChangeEvent : Event {
+  constructor(DOMString type, optional BufferedChangeEventInit eventInitDict = {});
+
+  [SameObject] readonly attribute TimeRanges addedRanges;
+  [SameObject] readonly attribute TimeRanges removedRanges;
+};
+
+dictionary BufferedChangeEventInit : EventInit {
+  TimeRanges addedRanges;
+  TimeRanges removedRanges;
+};
+
+[Exposed=(Window,DedicatedWorker)]
+interface ManagedSourceBuffer : SourceBuffer {
+  attribute EventHandler onbufferedchange;
+};
+
+[Exposed=(Window,DedicatedWorker)]
 partial interface AudioTrack {
     readonly        attribute SourceBuffer? sourceBuffer;
 };

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/storage-buckets.idl packages/idl/storage-buckets.idl
--- webref/node_modules/@webref/idl/storage-buckets.idl
+++ packages/idl/storage-buckets.idl
@@ -20,8 +20,8 @@
 
 dictionary StorageBucketOptions {
   boolean persisted = false;
-  unsigned long long? quota;
-  DOMHighResTimeStamp? expires;
+  unsigned long long quota;
+  DOMHighResTimeStamp expires;
 };
 
 [Exposed=(Window,Worker),

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/turtledove.idl packages/idl/turtledove.idl
--- webref/node_modules/@webref/idl/turtledove.idl
+++ packages/idl/turtledove.idl
@@ -69,6 +69,7 @@
   USVString trustedScoringSignalsURL;
   sequence<USVString> interestGroupBuyers;
   Promise<any> auctionSignals;
+  record<DOMString, DOMString> requestedSize;
   Promise<any> sellerSignals;
   Promise<DOMString> directFromSellerSignalsHeaderAdSlot;
   unsigned long long sellerTimeout;
@@ -150,6 +151,10 @@
   boolean adAuctionHeaders;
 };
 
+partial interface HTMLIFrameElement {
+  [CEReactions] attribute boolean adAuctionHeaders;
+};
+
 dictionary PreviousWin {
   required long long timeDelta;
   required DOMString adJSON;

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/webauthn.idl packages/idl/webauthn.idl
--- webref/node_modules/@webref/idl/webauthn.idl
+++ packages/idl/webauthn.idl
@@ -32,7 +32,7 @@
     required Base64URLString authenticatorData;
     required sequence<DOMString> transports;
     // The publicKey field will be missing if pubKeyCredParams was used to
-    // negotiate a public-key algorithm that the user agent doesn’t
+    // negotiate a public-key algorithm that the user agent doesn't
     // understand. (See section “Easily accessing credential data” for a
     // list of which algorithms user agents must support.) If using such an
     // algorithm then the public key must be parsed directly from

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/webgl1.idl packages/idl/webgl1.idl
--- webref/node_modules/@webref/idl/webgl1.idl
+++ packages/idl/webgl1.idl
@@ -467,6 +467,7 @@
 
     const GLenum RGBA4                          = 0x8056;
     const GLenum RGB5_A1                        = 0x8057;
+    const GLenum RGBA8                          = 0x8058;
     const GLenum RGB565                         = 0x8D62;
     const GLenum DEPTH_COMPONENT16              = 0x81A5;
     const GLenum STENCIL_INDEX8                 = 0x8D48;
@@ -516,6 +517,7 @@
     readonly attribute (HTMLCanvasElement or OffscreenCanvas) canvas;
     readonly attribute GLsizei drawingBufferWidth;
     readonly attribute GLsizei drawingBufferHeight;
+    readonly attribute GLenum drawingBufferFormat;
     attribute PredefinedColorSpace drawingBufferColorSpace;
     attribute PredefinedColorSpace unpackColorSpace;
 
@@ -525,6 +527,8 @@
     sequence<DOMString>? getSupportedExtensions();
     object? getExtension(DOMString name);
 
+    undefined drawingBufferStorage(GLenum sizedFormat, unsigned long width, unsigned long height);
+
     undefined activeTexture(GLenum texture);
     undefined attachShader(WebGLProgram program, WebGLShader shader);
     undefined bindAttribLocation(WebGLProgram program, GLuint index, DOMString name);

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/webgl2.idl packages/idl/webgl2.idl
--- webref/node_modules/@webref/idl/webgl2.idl
+++ packages/idl/webgl2.idl
@@ -42,7 +42,6 @@
   const GLenum STENCIL                                       = 0x1802;
   const GLenum RED                                           = 0x1903;
   const GLenum RGB8                                          = 0x8051;
-  const GLenum RGBA8                                         = 0x8058;
   const GLenum RGB10_A2                                      = 0x8059;
   const GLenum TEXTURE_BINDING_3D                            = 0x806A;
   const GLenum UNPACK_SKIP_IMAGES                            = 0x806D;

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/webrtc-stats.idl packages/idl/webrtc-stats.idl
--- webref/node_modules/@webref/idl/webrtc-stats.idl
+++ packages/idl/webrtc-stats.idl
@@ -171,10 +171,6 @@
               double              totalSamplesDuration;
               double              echoReturnLoss;
               double              echoReturnLossEnhancement;
-              double              droppedSamplesDuration;
-              unsigned long       droppedSamplesEvents;
-              double              totalCaptureDelay;
-              unsigned long long  totalSamplesCaptured;
 };
 
 dictionary RTCVideoSourceStats : RTCMediaSourceStats {

@github-actions github-actions bot force-pushed the release-idl-20231213124206478 branch 2 times, most recently from 190606d to feef90e Compare December 14, 2023 00:49
@github-actions github-actions bot force-pushed the release-idl-20231213124206478 branch 4 times, most recently from d8ce267 to 1cb0f72 Compare December 21, 2023 10:04
@github-actions github-actions bot force-pushed the release-idl-20231213124206478 branch from 1cb0f72 to e1a19f7 Compare December 21, 2023 12:41
@tidoust tidoust merged commit 152b10e into main Dec 21, 2023
@tidoust tidoust deleted the release-idl-20231213124206478 branch December 21, 2023 14:46
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.

1 participant