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/idl@3.47.3 #1229

Merged
merged 1 commit into from May 17, 2024
Merged

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented May 3, 2024

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

🧐 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.47.2. Merging this pull request will release v3.47.3. 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-scroll-snap-2.idl packages/idl/css-scroll-snap-2.idl
--- webref/node_modules/@webref/idl/css-scroll-snap-2.idl
+++ packages/idl/css-scroll-snap-2.idl
@@ -14,3 +14,8 @@
   readonly attribute Node? snapTargetBlock;
   readonly attribute Node? snapTargetInline;
 };
+
+partial interface mixin GlobalEventHandlers {
+  attribute EventHandler onsnapchanged;
+  attribute EventHandler onsnapchanging;
+};

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/cssom-view.idl packages/idl/cssom-view.idl
--- webref/node_modules/@webref/idl/cssom-view.idl
+++ packages/idl/cssom-view.idl
@@ -84,7 +84,7 @@
 partial interface Document {
   Element? elementFromPoint(double x, double y);
   sequence<Element> elementsFromPoint(double x, double y);
-  CaretPosition? caretPositionFromPoint(double x, double y);
+  CaretPosition? caretPositionFromPoint(double x, double y, ShadowRoot... shadowRoots);
   readonly attribute Element? scrollingElement;
 };
 

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/digital-identities.idl packages/idl/digital-identities.idl
--- webref/node_modules/@webref/idl/digital-identities.idl
+++ packages/idl/digital-identities.idl
@@ -1,7 +1,7 @@
 // GENERATED CONTENT - DO NOT EDIT
 // Content was automatically extracted by Reffy into webref
 // (https://github.com/w3c/webref)
-// Source: Digital Credentials (https://wicg.github.io/digital-identities/)
+// Source: Digital Credentials (https://wicg.github.io/digital-credentials)
 
 partial interface Navigator {
   [SecureContext, SameObject] readonly attribute CredentialsContainer identity;

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/encrypted-media.idl packages/idl/encrypted-media.idl
--- webref/node_modules/@webref/idl/encrypted-media.idl
+++ packages/idl/encrypted-media.idl
@@ -50,19 +50,7 @@
 };
 
 dictionary MediaKeysPolicy {
-    HDCPVersion minHdcpVersion;
-};
-
-enum HDCPVersion {
-    "1.0",
-    "1.1",
-    "1.2",
-    "1.3",
-    "1.4",
-    "2.0",
-    "2.1",
-    "2.2",
-    "2.3",
+    DOMString minHdcpVersion;
 };
 
 enum MediaKeySessionClosedReason {

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/fenced-frame.idl packages/idl/fenced-frame.idl
--- webref/node_modules/@webref/idl/fenced-frame.idl
+++ packages/idl/fenced-frame.idl
@@ -20,6 +20,8 @@
 
 [Exposed=Window, Serializable]
 interface FencedFrameConfig {
+  constructor(USVString url);
+
   readonly attribute FencedFrameConfigSize? containerWidth;
   readonly attribute FencedFrameConfigSize? containerHeight;
   readonly attribute FencedFrameConfigSize? contentWidth;

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/fetch.idl packages/idl/fetch.idl
--- webref/node_modules/@webref/idl/fetch.idl
+++ packages/idl/fetch.idl
@@ -26,6 +26,7 @@
   readonly attribute boolean bodyUsed;
   [NewObject] Promise<ArrayBuffer> arrayBuffer();
   [NewObject] Promise<Blob> blob();
+  [NewObject] Promise<Uint8Array> bytes();
   [NewObject] Promise<FormData> formData();
   [NewObject] Promise<any> json();
   [NewObject] Promise<USVString> text();

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/orientation-event.idl packages/idl/orientation-event.idl
--- webref/node_modules/@webref/idl/orientation-event.idl
+++ packages/idl/orientation-event.idl
@@ -1,7 +1,7 @@
 // GENERATED CONTENT - DO NOT EDIT
 // Content was automatically extracted by Reffy into webref
 // (https://github.com/w3c/webref)
-// Source: DeviceOrientation Event Specification (https://w3c.github.io/deviceorientation/)
+// Source: Device Orientation and Motion (https://w3c.github.io/deviceorientation/)
 
 partial interface Window {
     [SecureContext] attribute EventHandler ondeviceorientation;

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
@@ -85,6 +85,7 @@
   unsigned long long reportingTimeout;
   USVString sellerCurrency;
   Promise<record<USVString, USVString>> perBuyerCurrencies;
+  record<USVString, unsigned short> perBuyerMultiBidLimits;
   record<USVString, unsigned short> perBuyerGroupLimits;
   record<USVString, unsigned short> perBuyerExperimentGroupIds;
   record<USVString, record<USVString, double>> perBuyerPrioritySignals;
@@ -125,7 +126,7 @@
          InterestGroupBiddingScriptRunnerGlobalScope)]
 interface InterestGroupBiddingScriptRunnerGlobalScope
         : InterestGroupBiddingAndScoringScriptRunnerGlobalScope {
-  boolean setBid(optional GenerateBidOutput generateBidOutput = {});
+  boolean setBid(optional (GenerateBidOutput or sequence<GenerateBidOutput>) oneOrManyBids = []);
   undefined setPriority(double priority);
   undefined setPrioritySignalsOverride(DOMString key, optional double? priority);
 };
@@ -145,6 +146,8 @@
   double adCost;
   unrestricted double modelingSignals;
   boolean allowComponentAuction = false;
+  unsigned long targetNumAdComponents;
+  unsigned long numMandatoryAdComponents = 0;
 };
 
 [Exposed=InterestGroupScoringScriptRunnerGlobalScope,
@@ -199,6 +202,7 @@
   required long bidCount;
   required long recency;
   required long adComponentsLimit;
+  required unsigned short multiBidLimit;
 
   USVString topLevelSeller;
   sequence<PreviousWin> prevWinsMs;

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/webcodecs-av1-codec-registration.idl packages/idl/webcodecs-av1-codec-registration.idl
--- webref/node_modules/@webref/idl/webcodecs-av1-codec-registration.idl
+++ packages/idl/webcodecs-av1-codec-registration.idl
@@ -3,14 +3,6 @@
 // (https://github.com/w3c/webref)
 // Source: AV1 WebCodecs Registration (https://w3c.github.io/webcodecs/av1_codec_registration.html)
 
-partial dictionary VideoEncoderConfig {
-  AV1EncoderConfig av1;
-};
-
-dictionary AV1EncoderConfig {
-  boolean forceScreenContentTools = false;
-};
-
 partial dictionary VideoEncoderEncodeOptions {
   VideoEncoderEncodeOptionsForAv1 av1;
 };

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/webnn.idl packages/idl/webnn.idl
--- webref/node_modules/@webref/idl/webnn.idl
+++ packages/idl/webnn.idl
@@ -113,7 +113,6 @@
   MLOperand bias;
   [EnforceRange] unsigned long axis = 1;
   float epsilon = 1e-5;
-  MLActivation activation;
 };
 
 partial interface MLGraphBuilder {
@@ -154,7 +153,6 @@
   MLInputOperandLayout inputLayout = "nchw";
   MLConv2dFilterOperandLayout filterLayout = "oihw";
   MLOperand bias;
-  MLActivation activation;
 };
 
 partial interface MLGraphBuilder {
@@ -179,7 +177,6 @@
   MLInputOperandLayout inputLayout = "nchw";
   MLConvTranspose2dFilterOperandLayout filterLayout = "iohw";
   MLOperand bias;
-  MLActivation activation;
 };
 
 partial interface MLGraphBuilder {

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/webrtc.idl packages/idl/webrtc.idl
--- webref/node_modules/@webref/idl/webrtc.idl
+++ packages/idl/webrtc.idl
@@ -148,7 +148,7 @@
   constructor(RTCSessionDescriptionInit descriptionInitDict);
   readonly attribute RTCSdpType type;
   readonly attribute DOMString sdp;
-  [Default] object toJSON();
+  [Default] RTCSessionDescriptionInit toJSON();
 };
 
 dictionary RTCSessionDescriptionInit {

@github-actions github-actions bot force-pushed the release-idl-20240503124257018 branch 22 times, most recently from 54e1103 to 9cd8ed0 Compare May 9, 2024 00:48
@github-actions github-actions bot force-pushed the release-idl-20240503124257018 branch 5 times, most recently from 3b8b19f to 7d64861 Compare May 10, 2024 06:38
@github-actions github-actions bot force-pushed the release-idl-20240503124257018 branch 21 times, most recently from b688ad0 to 2d99bb2 Compare May 17, 2024 00:49
@github-actions github-actions bot force-pushed the release-idl-20240503124257018 branch from 2d99bb2 to f78e017 Compare May 17, 2024 06:37
@tidoust tidoust merged commit 5f1f7f5 into main May 17, 2024
@tidoust tidoust deleted the release-idl-20240503124257018 branch May 17, 2024 09:59
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.

None yet

1 participant