Skip to content

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

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 29, 2025

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Jul 22, 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 720a868.

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

New repo files that are not yet in the released package:
+ cookiestore.idl

Released package files that no longer exist in the repo:
- cookie-store.idl

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/fs.idl packages/idl/fs.idl
--- webref/node_modules/@webref/idl/fs.idl
+++ packages/idl/fs.idl
@@ -42,7 +42,7 @@
 
 [Exposed=(Window,Worker), SecureContext, Serializable]
 interface FileSystemDirectoryHandle : FileSystemHandle {
-  async iterable<USVString, FileSystemHandle>;
+  async_iterable<USVString, FileSystemHandle>;
 
   Promise<FileSystemFileHandle> getFileHandle(USVString name, optional FileSystemGetFileOptions options = {});
   Promise<FileSystemDirectoryHandle> getDirectoryHandle(USVString name, optional FileSystemGetDirectoryOptions options = {});

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/html.idl packages/idl/html.idl
--- webref/node_modules/@webref/idl/html.idl
+++ packages/idl/html.idl
@@ -1166,6 +1166,11 @@
   // also has obsolete members
 };
 
+[Exposed=Window]
+interface HTMLSelectedContentElement : HTMLElement {
+  [HTMLConstructor] constructor();
+};
+
 enum SelectionMode {
   "select",
   "start",

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/mediaqueries-5.idl packages/idl/mediaqueries-5.idl
--- webref/node_modules/@webref/idl/mediaqueries-5.idl
+++ packages/idl/mediaqueries-5.idl
@@ -3,6 +3,14 @@
 // (https://github.com/w3c/webref)
 // Source: Media Queries Level 5 (https://drafts.csswg.org/mediaqueries-5/)
 
+typedef (MediaList or boolean) CustomMediaQuery;
+
+[Exposed=Window]
+interface CSSCustomMediaRule : CSSRule {
+    readonly attribute CSSOMString name;
+    readonly attribute CustomMediaQuery query;
+};
+
 [Exposed=Window, SecureContext]
 partial interface Navigator {
   [SameObject] readonly attribute PreferenceManager preferences;

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
@@ -105,7 +105,7 @@
   Promise<double> remainingBudget();
 
   [Exposed=SharedStorageWorklet]
-  async iterable<DOMString, DOMString>;
+  async_iterable<DOMString, DOMString>;
 };
 
 dictionary SharedStoragePrivateAggregationConfig {

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/streams.idl packages/idl/streams.idl
--- webref/node_modules/@webref/idl/streams.idl
+++ packages/idl/streams.idl
@@ -17,7 +17,7 @@
   Promise<undefined> pipeTo(WritableStream destination, optional StreamPipeOptions options = {});
   sequence<ReadableStream> tee();
 
-  async iterable<any>(optional ReadableStreamIteratorOptions options = {});
+  async_iterable<any>(optional ReadableStreamIteratorOptions options = {});
 };
 
 typedef (ReadableStreamDefaultReader or ReadableStreamBYOBReader) ReadableStreamReader;

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/webidl.idl packages/idl/webidl.idl
--- webref/node_modules/@webref/idl/webidl.idl
+++ packages/idl/webidl.idl
@@ -3,6 +3,19 @@
 // (https://github.com/w3c/webref)
 // Source: Web IDL Standard (https://webidl.spec.whatwg.org/)
 
+[Exposed=*, Serializable]
+interface QuotaExceededError : DOMException {
+  constructor(optional DOMString message = "", optional QuotaExceededErrorOptions options = {});
+
+  readonly attribute double? quota;
+  readonly attribute double? requested;
+};
+
+dictionary QuotaExceededErrorOptions {
+  double quota;
+  double requested;
+};
+
 typedef (Int8Array or Int16Array or Int32Array or
          Uint8Array or Uint16Array or Uint32Array or Uint8ClampedArray or
          BigInt64Array or BigUint64Array or

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
@@ -400,6 +400,7 @@
   MLOperand log(MLOperand input, optional MLOperatorOptions options = {});
   MLOperand neg(MLOperand input, optional MLOperatorOptions options = {});
   MLOperand reciprocal(MLOperand input, optional MLOperatorOptions options = {});
+  MLOperand roundEven(MLOperand input, optional MLOperatorOptions options = {});
   MLOperand sin(MLOperand input, optional MLOperatorOptions options = {});
   MLOperand sign(MLOperand input, optional MLOperatorOptions options = {});
   MLOperand sqrt(MLOperand input, optional MLOperatorOptions options = {});
@@ -417,6 +418,7 @@
   MLSingleInputSupportLimits log;
   MLSingleInputSupportLimits neg;
   MLSingleInputSupportLimits reciprocal;
+  MLSingleInputSupportLimits roundEven;
   MLSingleInputSupportLimits sin;
   MLSingleInputSupportLimits sign;
   MLSingleInputSupportLimits sqrt;

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/webrtc-identity.idl packages/idl/webrtc-identity.idl
--- webref/node_modules/@webref/idl/webrtc-identity.idl
+++ packages/idl/webrtc-identity.idl
@@ -19,7 +19,7 @@
 };
 
 callback GenerateAssertionCallback = Promise<RTCIdentityAssertionResult>
-(DOMString contents, DOMString origin, RTCIdentityProviderOptions options);
+(DOMString contents, DOMString origin, optional RTCIdentityProviderOptions options = {});
 
 callback ValidateAssertionCallback = Promise<RTCIdentityValidationResult>
 (DOMString assertion, DOMString origin);

@github-actions github-actions bot force-pushed the release-idl-20250722065147769 branch from 24eca4e to 03468cb Compare July 29, 2025 07:21
@github-actions github-actions bot changed the title πŸ“¦ Release @webref/[email protected] πŸ“¦ Release @webref/[email protected] Jul 29, 2025
@tidoust tidoust merged commit a13ca88 into main Jul 29, 2025
@tidoust tidoust deleted the release-idl-20250722065147769 branch July 29, 2025 07:27
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