w3c / webref

Machine-readable references of terms defined in web browser specifications
https://w3c.github.io/webref/
MIT License
303 stars 72 forks source link

πŸ“¦ Release @webref/idl@3.56.0 #1380

Closed github-actions[bot] closed 4 days ago

github-actions[bot] commented 1 week ago

⚠ 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 5c9610550e77f1ec4ef73dbf7defbbdf9f93cfd2.

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

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
@@ -74,6 +74,7 @@
     undefined reportEvent(optional ReportEventType event = {});
     undefined setReportEventDataForAutomaticBeacons(optional FenceEvent event = {});
     sequence<FencedFrameConfig> getNestedConfigs();
+    Promise<undefined> disableUntrustedNetwork();
     undefined notifyEvent(Event event);
 };

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/paint-timing.idl packages/idl/paint-timing.idl
--- webref/node_modules/@webref/idl/paint-timing.idl
+++ packages/idl/paint-timing.idl
@@ -4,4 +4,11 @@
 // Source: Paint Timing (https://w3c.github.io/paint-timing/)

 [Exposed=Window]
+interface mixin PaintTimingMixin {
+    readonly attribute DOMHighResTimeStamp paintTime;
+    readonly attribute DOMHighResTimeStamp? presentationTime;
+};
+
+[Exposed=Window]
 interface PerformancePaintTiming : PerformanceEntry {};
+PerformancePaintTiming includes PaintTimingMixin;

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/shared-storage.idl packages/idl/shared-storage.idl
--- webref/node_modules/@webref/idl/shared-storage.idl
+++ packages/idl/shared-storage.idl
@@ -5,8 +5,6 @@

 typedef (USVString or FencedFrameConfig) SharedStorageResponse;

-enum SharedStorageDataOrigin { "context-origin", "script-origin" };
-
 [Exposed=(Window)]
 interface SharedStorageWorklet : Worklet {
   Promise<SharedStorageResponse> selectURL(DOMString name,
@@ -25,6 +23,8 @@

   readonly attribute SharedStorage sharedStorage;
   readonly attribute PrivateAggregation privateAggregation;
+
+  Promise<sequence<StorageInterestGroup>> interestGroups();
 };

 dictionary SharedStorageUrlWithMetadata {
@@ -93,7 +93,7 @@
 };

 dictionary SharedStorageWorkletOptions : WorkletOptions {
-  SharedStorageDataOrigin dataOrigin = "context-origin";
+  USVString dataOrigin = "context-origin";
 };

 interface mixin HTMLSharedStorageWritableElementUtils {

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
@@ -330,7 +330,6 @@

 dictionary CredentialPropertiesOutput {
     boolean rk;
-    DOMString authenticatorDisplayName;
 };

 partial dictionary AuthenticationExtensionsClientOutputs {

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
@@ -78,7 +78,7 @@
 };

 dictionary GPURequestAdapterOptions {
-    DOMString featureLevel;
+    DOMString featureLevel = "core";
     GPUPowerPreference powerPreference;
     boolean forceFallbackAdapter = false;
 };
@@ -128,6 +128,7 @@
 interface GPUDevice : EventTarget {
     [SameObject] readonly attribute GPUSupportedFeatures features;
     [SameObject] readonly attribute GPUSupportedLimits limits;
+    [SameObject] readonly attribute GPUAdapterInfo adapterInfo;

     [SameObject] readonly attribute GPUQueue queue;

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
@@ -96,6 +96,9 @@
  unsigned long long   retransmittedBytesReceived;
  unsigned long        rtxSsrc;
  unsigned long        fecSsrc;
+ double               totalCorruptionProbability;
+ double               totalSquaredCorruptionProbability;
+ unsigned long long   corruptionMeasurements;
 };

 dictionary RTCRemoteInboundRtpStreamStats : RTCReceivedRtpStreamStats {