Skip to content

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Oct 4, 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 c12d845.

🧐 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.1. Merging this pull request will release v3.55.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/fedcm.idl packages/idl/fedcm.idl
--- webref/node_modules/@webref/idl/fedcm.idl
+++ packages/idl/fedcm.idl
@@ -43,6 +43,7 @@
   USVString nonce;
   DOMString loginHint;
   DOMString domainHint;
+  any params;
 };
 
 dictionary IdentityProviderWellKnown {

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/mediasession.idl packages/idl/mediasession.idl
--- webref/node_modules/@webref/idl/mediasession.idl
+++ packages/idl/mediasession.idl
@@ -59,7 +59,7 @@
   attribute DOMString title;
   attribute DOMString artist;
   attribute DOMString album;
-  attribute FrozenArray<MediaImage> artwork;
+  attribute FrozenArray<object> artwork;
   [SameObject] readonly attribute FrozenArray<ChapterInformation> chapterInfo;
 };
 

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/webaudio.idl packages/idl/webaudio.idl
--- webref/node_modules/@webref/idl/webaudio.idl
+++ packages/idl/webaudio.idl
@@ -1,7 +1,7 @@
 // GENERATED CONTENT - DO NOT EDIT
 // Content was automatically extracted by Reffy into webref
 // (https://github.com/w3c/webref)
-// Source: Web Audio API (https://webaudio.github.io/web-audio-api/)
+// Source: Web Audio API 1.1 (https://webaudio.github.io/web-audio-api/)
 
 enum AudioContextState {
     "suspended",
@@ -33,8 +33,8 @@
     AnalyserNode createAnalyser ();
     BiquadFilterNode createBiquadFilter ();
     AudioBuffer createBuffer (unsigned long numberOfChannels,
-                              unsigned long length,
-                              float sampleRate);
+                                unsigned long length,
+                                float sampleRate);
     AudioBufferSourceNode createBufferSource ();
     ChannelMergerNode createChannelMerger (optional unsigned long numberOfInputs = 6);
     ChannelSplitterNode createChannelSplitter (
@@ -45,12 +45,12 @@
     DynamicsCompressorNode createDynamicsCompressor ();
     GainNode createGain ();
     IIRFilterNode createIIRFilter (sequence<double> feedforward,
-                                   sequence<double> feedback);
+                                    sequence<double> feedback);
     OscillatorNode createOscillator ();
     PannerNode createPanner ();
     PeriodicWave createPeriodicWave (sequence<float> real,
-                                     sequence<float> imag,
-                                     optional PeriodicWaveConstraints constraints = {});
+                                        sequence<float> imag,
+                                        optional PeriodicWaveConstraints constraints = {});
     ScriptProcessorNode createScriptProcessor(
         optional unsigned long bufferSize = 0,
         optional unsigned long numberOfInputChannels = 2,

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/webcodecs.idl packages/idl/webcodecs.idl
--- webref/node_modules/@webref/idl/webcodecs.idl
+++ packages/idl/webcodecs.idl
@@ -340,7 +340,7 @@
   AlphaOption alpha = "keep";
 
   // Default matches image. May be used to efficiently crop. Will trigger
-  // new computation of displayWidth and displayHeight using image’s pixel
+  // new computation of displayWidth and displayHeight using image's pixel
   // aspect ratio unless an explicit displayWidth and displayHeight are given.
   DOMRectInit visibleRect;
 

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
@@ -119,6 +119,7 @@
     "rg11b10ufloat-renderable",
     "bgra8unorm-storage",
     "float32-filterable",
+    "float32-blendable",
     "clip-distances",
     "dual-source-blending",
 };

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/webtransport.idl packages/idl/webtransport.idl
--- webref/node_modules/@webref/idl/webtransport.idl
+++ packages/idl/webtransport.idl
@@ -96,7 +96,8 @@
   required DOMHighResTimeStamp rttVariation;
   required DOMHighResTimeStamp minRtt;
   required WebTransportDatagramStats datagrams;
-  required unsigned long long? estimatedSendRate;
+  unsigned long long? estimatedSendRate = null;
+  boolean atSendCapacity = false;
 };
 
 dictionary WebTransportDatagramStats {

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/webusb.idl packages/idl/webusb.idl
--- webref/node_modules/@webref/idl/webusb.idl
+++ packages/idl/webusb.idl
@@ -40,7 +40,7 @@
 };
 
 [
-  Exposed=(DedicatedWorker,SharedWorker,Window),
+  Exposed=(Worker,Window),
   SecureContext
 ]
 interface USBConnectionEvent : Event {
@@ -55,7 +55,7 @@
 };
 
 [
-  Exposed=(DedicatedWorker,SharedWorker,Window),
+  Exposed=(Worker,Window),
   SecureContext
 ]
 interface USBInTransferResult {
@@ -65,7 +65,7 @@
 };
 
 [
-  Exposed=(DedicatedWorker,SharedWorker,Window),
+  Exposed=(Worker,Window),
   SecureContext
 ]
 interface USBOutTransferResult {
@@ -75,7 +75,7 @@
 };
 
 [
-  Exposed=(DedicatedWorker,SharedWorker,Window),
+  Exposed=(Worker,Window),
   SecureContext
 ]
 interface USBIsochronousInTransferPacket {
@@ -85,7 +85,7 @@
 };
 
 [
-  Exposed=(DedicatedWorker,SharedWorker,Window),
+  Exposed=(Worker,Window),
   SecureContext
 ]
 interface USBIsochronousInTransferResult {
@@ -95,7 +95,7 @@
 };
 
 [
-  Exposed=(DedicatedWorker,SharedWorker,Window),
+  Exposed=(Worker,Window),
   SecureContext
 ]
 interface USBIsochronousOutTransferPacket {
@@ -105,7 +105,7 @@
 };
 
 [
-  Exposed=(DedicatedWorker,SharedWorker,Window),
+  Exposed=(Worker,Window),
   SecureContext
 ]
 interface USBIsochronousOutTransferResult {
@@ -113,7 +113,7 @@
   readonly attribute FrozenArray<USBIsochronousOutTransferPacket> packets;
 };
 
-[Exposed=(DedicatedWorker,SharedWorker,Window), SecureContext]
+[Exposed=(Worker,Window), SecureContext]
 interface USBDevice {
   readonly attribute octet usbVersionMajor;
   readonly attribute octet usbVersionMinor;
@@ -171,7 +171,7 @@
 };
 
 [
-  Exposed=(DedicatedWorker,SharedWorker,Window),
+  Exposed=(Worker,Window),
   SecureContext
 ]
 interface USBConfiguration {
@@ -182,7 +182,7 @@
 };
 
 [
-  Exposed=(DedicatedWorker,SharedWorker,Window),
+  Exposed=(Worker,Window),
   SecureContext
 ]
 interface USBInterface {
@@ -194,7 +194,7 @@
 };
 
 [
-  Exposed=(DedicatedWorker,SharedWorker,Window),
+  Exposed=(Worker,Window),
   SecureContext
 ]
 interface USBAlternateInterface {
@@ -219,7 +219,7 @@
 };
 
 [
-  Exposed=(DedicatedWorker,SharedWorker,Window),
+  Exposed=(Worker,Window),
   SecureContext
 ]
 interface USBEndpoint {
@@ -252,7 +252,7 @@
   sequence<AllowedUSBDevice> allowedDevices = [];
 };
 
-[Exposed=(DedicatedWorker,SharedWorker,Window)]
+[Exposed=(Worker,Window)]
 interface USBPermissionResult : PermissionStatus {
   attribute FrozenArray<USBDevice> devices;
 };

@github-actions github-actions bot force-pushed the release-idl-20241004184925270 branch 18 times, most recently from b13e0b3 to 18c3c63 Compare October 9, 2024 18:44
@github-actions github-actions bot force-pushed the release-idl-20241004184925270 branch 3 times, most recently from 906cf40 to d1d5664 Compare October 11, 2024 00:56
@github-actions github-actions bot force-pushed the release-idl-20241004184925270 branch from d1d5664 to db76846 Compare October 11, 2024 06:45
@tidoust tidoust merged commit ad11627 into main Oct 11, 2024
@tidoust tidoust deleted the release-idl-20241004184925270 branch October 11, 2024 07:21
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