Skip to content

📦 Release @webref/idl@3.75.1#1885

Open
github-actions[bot] wants to merge 1 commit intomainfrom
release-idl-20260326185803552
Open

📦 Release @webref/idl@3.75.1#1885
github-actions[bot] wants to merge 1 commit intomainfrom
release-idl-20260326185803552

Conversation

@github-actions
Copy link
Copy Markdown
Contributor

@github-actions github-actions bot commented Mar 26, 2026

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

🧐 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.75.0. Merging this pull request will release v3.75.1. 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-conditional-5.idl packages/idl/css-conditional-5.idl
--- webref/node_modules/@webref/idl/css-conditional-5.idl
+++ packages/idl/css-conditional-5.idl
@@ -3,10 +3,16 @@
 // (https://github.com/w3c/webref)
 // Source: CSS Conditional Rules Module Level 5 (https://drafts.csswg.org/css-conditional-5/)
 
+dictionary CSSContainerCondition {
+  required CSSOMString name;
+  required CSSOMString query;
+};
+
 [Exposed=Window]
 interface CSSContainerRule : CSSConditionRule {
   readonly attribute CSSOMString containerName;
   readonly attribute CSSOMString containerQuery;
+  readonly attribute FrozenArray<CSSContainerCondition> conditions;
 };
 
 [Exposed=Window]

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/web-nfc.idl packages/idl/web-nfc.idl
--- webref/node_modules/@webref/idl/web-nfc.idl
+++ packages/idl/web-nfc.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 NFC (https://w3c.github.io/web-nfc/)
+// Source: Web NFC (https://w3c-cg.github.io/web-nfc/)
 
 [SecureContext, Exposed=Window]
 interface NDEFMessage {

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/webmcp.idl packages/idl/webmcp.idl
--- webref/node_modules/@webref/idl/webmcp.idl
+++ packages/idl/webmcp.idl
@@ -9,8 +9,7 @@
 
 [Exposed=Window, SecureContext]
 interface ModelContext {
-  undefined registerTool(ModelContextTool tool);
-  undefined unregisterTool(DOMString name);
+  undefined registerTool(ModelContextTool tool, optional ModelContextRegisterToolOptions options = {});
 };
 
 dictionary ModelContextTool {
@@ -27,6 +26,10 @@
 
 callback ToolExecuteCallback = Promise<any> (object input, ModelContextClient client);
 
+dictionary ModelContextRegisterToolOptions {
+  AbortSignal signal;
+};
+
 [Exposed=Window, SecureContext]
 interface ModelContextClient {
   Promise<any> requestUserInteraction(UserInteractionCallback callback);

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
@@ -28,6 +28,15 @@
     required SFrameCipherSuite cipherSuite;
 };
 
+enum SFrameType {
+    "per-frame",
+    "per-packet"
+};
+
+dictionary RTCSFrameSenderTransformOptions : SFrameTransformOptions {
+    SFrameType type = "per-frame";
+};
+
 typedef [EnforceRange] unsigned long long SmallCryptoKeyID;
 typedef (SmallCryptoKeyID or bigint) CryptoKeyID;
 
@@ -43,7 +52,7 @@
 
 [Exposed=Window]
 interface RTCSFrameSenderTransform {
-    constructor(optional SFrameTransformOptions options = {});
+    constructor(optional RTCSFrameSenderTransformOptions options = {});
 };
 RTCSFrameSenderTransform includes SFrameEncrypterManager;
 
@@ -138,9 +147,20 @@
     RTCEncodedAudioFrameMetadata getMetadata();
 };
 
+enum RTCRtpScriptTransformType {
+    "sframe"
+};
+
+dictionary WorkerAndParameters {
+     required Worker worker;
+     RTCRtpScriptTransformType type;
+};
+
+typedef (Worker or WorkerAndParameters) WorkerOrWorkerAndParameters;
+
 [Exposed=Window]
 interface RTCRtpScriptTransform {
-    constructor(Worker worker, optional any options, optional sequence<object> transfer);
+    constructor(WorkerOrWorkerAndParameters workerOrWorkerAndParameters, optional any options, optional sequence<object> transfer);
 };
 
 [Exposed=DedicatedWorker]

@github-actions github-actions bot force-pushed the release-idl-20260326185803552 branch 17 times, most recently from 2cf0b83 to 822c237 Compare March 30, 2026 18:54
@github-actions github-actions bot force-pushed the release-idl-20260326185803552 branch from 822c237 to 7ca4dc1 Compare March 31, 2026 01:07
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.

0 participants