Skip to content
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

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

Merged
merged 1 commit into from
Sep 13, 2024

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Sep 10, 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 92cf383.

🧐 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.53.1. Merging this pull request will release v3.54.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:
+ digital-credentials.idl
+ fedcm.idl
+ observable.idl
+ private-aggregation-api.idl

Released package files that no longer exist in the repo:
- FedCM.idl
- digital-identities.idl

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/css-fonts.idl packages/idl/css-fonts.idl
--- webref/node_modules/@webref/idl/css-fonts.idl
+++ packages/idl/css-fonts.idl
@@ -38,7 +38,7 @@
 
 [Exposed=Window]
 interface CSSFontFaceRule : CSSRule {
-  readonly attribute CSSFontFaceDescriptors style;
+  [SameObject, PutForwards=cssText] readonly attribute CSSFontFaceDescriptors style;
 };
 
 partial interface CSSRule {  const unsigned short FONT_FEATURE_VALUES_RULE = 14;

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/ink-enhancement.idl packages/idl/ink-enhancement.idl
--- webref/node_modules/@webref/idl/ink-enhancement.idl
+++ packages/idl/ink-enhancement.idl
@@ -5,7 +5,7 @@
 
 [Exposed=Window]
 interface Ink {
-    Promise<InkPresenter> requestPresenter(
+    Promise<DelegatedInkTrailPresenter> requestPresenter(
         optional InkPresenterParam param = {});
 };
 
@@ -14,7 +14,7 @@
 };
 
 [Exposed=Window]
-interface InkPresenter {
+interface DelegatedInkTrailPresenter {
     readonly attribute Element? presentationArea;
 
     undefined updateInkTrailStartPoint(PointerEvent event, InkTrailStyle style);

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
@@ -24,6 +24,7 @@
                      Function operationCtor);
 
   readonly attribute SharedStorage sharedStorage;
+  readonly attribute PrivateAggregation privateAggregation;
 };
 
 dictionary SharedStorageUrlWithMetadata {
@@ -77,10 +78,17 @@
   boolean ignoreIfPresent = false;
 };
 
+dictionary SharedStoragePrivateAggregationConfig {
+  USVString aggregationCoordinatorOrigin;
+  USVString contextId;
+  [EnforceRange] unsigned long long filteringIdMaxBytes;
+};
+
 dictionary SharedStorageRunOperationMethodOptions {
   object data;
   boolean resolveToConfig = false;
   boolean keepAlive = false;
+  SharedStoragePrivateAggregationConfig privateAggregationConfig;
 };
 
 dictionary SharedStorageWorkletOptions : WorkletOptions {

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/uievents.idl packages/idl/uievents.idl
--- webref/node_modules/@webref/idl/uievents.idl
+++ packages/idl/uievents.idl
@@ -235,26 +235,3 @@
         optional Window? view = null,
         optional DOMString data = "undefined");
 };
-
-[Exposed=Window]
-interface MutationEvent : Event {
-  // attrChangeType
-  const unsigned short MODIFICATION = 1;
-  const unsigned short ADDITION = 2;
-  const unsigned short REMOVAL = 3;
-
-  readonly attribute Node? relatedNode;
-  readonly attribute DOMString prevValue;
-  readonly attribute DOMString newValue;
-  readonly attribute DOMString attrName;
-  readonly attribute unsigned short attrChange;
-
-  undefined initMutationEvent(DOMString typeArg,
-    optional boolean bubblesArg = false,
-    optional boolean cancelableArg = false,
-    optional Node? relatedNodeArg = null,
-    optional DOMString prevValueArg = "",
-    optional DOMString newValueArg = "",
-    optional DOMString attrNameArg = "",
-    optional unsigned short attrChangeArg = 0);
-};

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,6 +78,7 @@
 };
 
 dictionary GPURequestAdapterOptions {
+    any featureLevel;
     GPUPowerPreference powerPreference;
     boolean forceFallbackAdapter = false;
 };
@@ -111,6 +112,7 @@
     "texture-compression-bc-sliced-3d",
     "texture-compression-etc2",
     "texture-compression-astc",
+    "texture-compression-astc-sliced-3d",
     "timestamp-query",
     "indirect-first-instance",
     "shader-f16",
@@ -639,7 +641,7 @@
 dictionary GPUProgrammableStage {
     required GPUShaderModule module;
     USVString entryPoint;
-    record<USVString, GPUPipelineConstantValue> constants;
+    record<USVString, GPUPipelineConstantValue> constants = {};
 };
 
 typedef double GPUPipelineConstantValue; // May represent WGSL's bool, f32, i32, u32, and f16 if enabled.

@github-actions github-actions bot force-pushed the release-idl-20240910101432511 branch 8 times, most recently from 3a5909d to b7ecd91 Compare September 12, 2024 00:59
@github-actions github-actions bot force-pushed the release-idl-20240910101432511 branch 4 times, most recently from 45803da to 4c44a26 Compare September 13, 2024 00:59
@tidoust tidoust merged commit 507d3a2 into main Sep 13, 2024
@tidoust tidoust deleted the release-idl-20240910101432511 branch September 13, 2024 07:12
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