Skip to content

πŸ“¦ Release @webref/[email protected] #1606

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

Merged
merged 1 commit into from
Jul 10, 2025

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Jul 3, 2025

⚠ 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 53234d3.

🧐 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.65.3. Merging this pull request will release v3.65.4. 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
@@ -5,6 +5,6 @@
 
 [Exposed=Window]
 interface CSSContainerRule : CSSConditionRule {
-    readonly attribute CSSOMString containerName;
-    readonly attribute CSSOMString containerQuery;
+  readonly attribute CSSOMString containerName;
+  readonly attribute CSSOMString containerQuery;
 };

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/digital-credentials.idl packages/idl/digital-credentials.idl
--- webref/node_modules/@webref/idl/digital-credentials.idl
+++ packages/idl/digital-credentials.idl
@@ -8,7 +8,7 @@
 };
 
 dictionary DigitalCredentialRequestOptions {
-  sequence<DigitalCredentialGetRequest> requests;
+  required sequence<DigitalCredentialGetRequest> requests;
 };
 
 dictionary DigitalCredentialGetRequest {

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
@@ -21,14 +21,14 @@
 
 dictionary IdentityCredentialErrorInit {
   DOMString error;
-  DOMString url;
+  USVString url;
 };
 
 [Exposed=Window, SecureContext]
 interface IdentityCredentialError : DOMException {
   constructor(optional DOMString message = "", optional IdentityCredentialErrorInit options = {});
   readonly attribute DOMString error;
-  readonly attribute DOMString url;
+  readonly attribute USVString url;
 };
 
 partial dictionary CredentialRequestOptions {

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/speech-api.idl packages/idl/speech-api.idl
--- webref/node_modules/@webref/idl/speech-api.idl
+++ packages/idl/speech-api.idl
@@ -14,7 +14,7 @@
     attribute boolean interimResults;
     attribute unsigned long maxAlternatives;
     attribute boolean processLocally;
-    attribute SpeechRecognitionPhraseList phrases;
+    attribute ObservableArray<SpeechRecognitionPhrase> phrases;
 
     // methods to drive the speech interaction
     undefined start();
@@ -135,16 +135,6 @@
     readonly attribute float boost;
 };
 
-// The object representing a list of phrases for contextual biasing.
-[SecureContext, Exposed=Window]
-interface SpeechRecognitionPhraseList {
-    constructor(sequence<SpeechRecognitionPhrase> phrases);
-    readonly attribute unsigned long length;
-    SpeechRecognitionPhrase item(unsigned long index);
-    undefined addItem(SpeechRecognitionPhrase item);
-    undefined removeItem(unsigned long index);
-};
-
 [Exposed=Window]
 interface SpeechSynthesis : EventTarget {
     readonly attribute boolean pending;

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/webcrypto.idl packages/idl/webcrypto.idl
--- webref/node_modules/@webref/idl/webcrypto.idl
+++ packages/idl/webcrypto.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 Cryptography API (https://w3c.github.io/webcrypto/)
+// Source: Web Cryptography API Level 2 (https://w3c.github.io/webcrypto/)
 
 partial interface mixin WindowOrWorkerGlobalScope {
   [SameObject] readonly attribute Crypto crypto;

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
@@ -565,6 +565,7 @@
 };
 
 typedef (GPUSampler or
+         GPUTexture or
          GPUTextureView or
          GPUBuffer or
          GPUBufferBinding or
@@ -1077,9 +1078,9 @@
 };
 
 dictionary GPURenderPassColorAttachment {
-    required GPUTextureView view;
+    required (GPUTexture or GPUTextureView) view;
     GPUIntegerCoordinate depthSlice;
-    GPUTextureView resolveTarget;
+    (GPUTexture or GPUTextureView) resolveTarget;
 
     GPUColor clearValue;
     required GPULoadOp loadOp;
@@ -1087,7 +1088,7 @@
 };
 
 dictionary GPURenderPassDepthStencilAttachment {
-    required GPUTextureView view;
+    required (GPUTexture or GPUTextureView) view;
 
     float depthClearValue;
     GPULoadOp depthLoadOp;

@SaaSCh

This comment was marked as off-topic.

@github-actions github-actions bot force-pushed the release-idl-20250703125223366 branch 21 times, most recently from a394599 to a30b75e Compare July 8, 2025 18:51
@github-actions github-actions bot force-pushed the release-idl-20250703125223366 branch from a30b75e to 5a389ec Compare July 10, 2025 14:19
@tidoust tidoust merged commit 6fabf34 into main Jul 10, 2025
@tidoust tidoust deleted the release-idl-20250703125223366 branch July 10, 2025 14:45
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.

2 participants