Skip to content

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Jul 10, 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 07278bc.

🧐 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.4. Merging this pull request will release v3.65.5. 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-mixins.idl packages/idl/css-mixins.idl
--- webref/node_modules/@webref/idl/css-mixins.idl
+++ packages/idl/css-mixins.idl
@@ -1,7 +1,7 @@
 // GENERATED CONTENT - DO NOT EDIT
 // Content was automatically extracted by Reffy into webref
 // (https://github.com/w3c/webref)
-// Source: CSS Functions and Mixins Module (https://drafts.csswg.org/css-mixins-1/)
+// Source: CSS Custom Functions and Mixins Module Level 1 (https://drafts.csswg.org/css-mixins-1/)
 
 [Exposed=Window]
 interface CSSFunctionRule : CSSGroupingRule {

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/cssom.idl packages/idl/cssom.idl
--- webref/node_modules/@webref/idl/cssom.idl
+++ packages/idl/cssom.idl
@@ -164,7 +164,7 @@
 };
 
 interface mixin ElementCSSInlineStyle {
-  [SameObject, PutForwards=cssText] readonly attribute CSSStyleDeclaration style;
+  [SameObject, PutForwards=cssText] readonly attribute CSSStyleProperties style;
 };
 
 HTMLElement includes ElementCSSInlineStyle;
@@ -174,7 +174,7 @@
 MathMLElement includes ElementCSSInlineStyle;
 
 partial interface Window {
-  [NewObject] CSSStyleDeclaration getComputedStyle(Element elt, optional CSSOMString? pseudoElt);
+  [NewObject] CSSStyleProperties getComputedStyle(Element elt, optional CSSOMString? pseudoElt);
 };
 
 [Exposed=Window]

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/privacy-preserving-attribution.idl packages/idl/privacy-preserving-attribution.idl
--- webref/node_modules/@webref/idl/privacy-preserving-attribution.idl
+++ packages/idl/privacy-preserving-attribution.idl
@@ -7,7 +7,7 @@
   [SecureContext, SameObject] readonly attribute Attribution attribution;
 };
 
-enum PrivateAttributionAggregationProtocol { "dap-12-histogram", "tee-00" };
+enum AttributionAggregationProtocol { "dap-15-histogram", "tee-00" };
 
 dictionary AttributionAggregationService {
   required DOMString protocol;
@@ -29,6 +29,7 @@
   sequence<USVString> conversionSites = [];
   sequence<USVString> conversionCallers = [];
   unsigned long lifetimeDays = 30;
+  long priority = 0;
 };
 
 dictionary AttributionImpressionResult {
@@ -50,13 +51,18 @@
   sequence<USVString> impressionSites = [];
   sequence<USVString> impressionCallers = [];
 
-  AttributionLogic logic = "last-touch";
+  AttributionLogic logic = "last-n-touch";
+  AttributionLogicOptions logicOptions;
   unsigned long value = 1;
   unsigned long maxValue = 1;
 };
 
 enum AttributionLogic {
-  "last-touch",
+  "last-n-touch",
+};
+
+dictionary AttributionLogicOptions {
+  sequence<double> credit;
 };
 
 dictionary AttributionConversionResult {

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
@@ -19,8 +19,18 @@
     "decrypt"
 };
 
+// List of supported cipher suites, as defined in [[RFC9605]] section 4.5.
+enum SFrameCipherSuite {
+     "AES_128_CTR_HMAC_SHA256_80",
+     "AES_128_CTR_HMAC_SHA256_64",
+     "AES_128_CTR_HMAC_SHA256_32",
+     "AES_128_GCM_SHA256_128",
+     "AES_256_GCM_SHA512_128"
+};
+
 dictionary SFrameTransformOptions {
     SFrameTransformRole role = "encrypt";
+    required SFrameCipherSuite cipherSuite;
 };
 
 typedef [EnforceRange] unsigned long long SmallCryptoKeyID;

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/idl/webrtc-stats.idl packages/idl/webrtc-stats.idl
--- webref/node_modules/@webref/idl/webrtc-stats.idl
+++ packages/idl/webrtc-stats.idl
@@ -140,6 +140,8 @@
              unsigned long        framesEncoded;
              unsigned long        keyFramesEncoded;
              unsigned long long   qpSum;
+             record<DOMString, double> psnrSum;
+             unsigned long long   psnrMeasurements;
              double               totalEncodeTime;
              double               totalPacketSendDelay;
              RTCQualityLimitationReason                 qualityLimitationReason;

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
@@ -74,6 +74,7 @@
   [EnforceRange] unsigned short? anticipatedConcurrentIncomingUnidirectionalStreams = null;
   [EnforceRange] unsigned short? anticipatedConcurrentIncomingBidirectionalStreams = null;
   sequence<DOMString> protocols = [];
+  DatagramsReadableMode datagramsReadableMode;
 };
 
 enum WebTransportCongestionControl {
@@ -82,6 +83,8 @@
   "low-latency",
 };
 
+enum DatagramsReadableMode { "bytes" };
+
 dictionary WebTransportCloseInfo {
   unsigned long closeCode = 0;
   USVString reason = "";

@github-actions github-actions bot force-pushed the release-idl-20250710184911940 branch 20 times, most recently from a2e4019 to dd21c2b Compare July 16, 2025 01:07
@github-actions github-actions bot force-pushed the release-idl-20250710184911940 branch from dd21c2b to 3985dd3 Compare July 16, 2025 06:51
@tidoust tidoust merged commit 428f0e1 into main Jul 16, 2025
@tidoust tidoust deleted the release-idl-20250710184911940 branch July 16, 2025 07:11
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