-
Notifications
You must be signed in to change notification settings - Fork 457
KDL support for removals #2250
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
+105
−58
Merged
KDL support for removals #2250
Changes from 20 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
743c7a3
KDL support for removals
Bashamega 8b611f7
Update src/build/patches.ts
Bashamega 5184d40
Update src/build/patches.ts
Bashamega 94ee9a9
Support removals
Bashamega d656a14
Refactor readPatches to separate removals from the main result object
Bashamega 117e76b
Clean
Bashamega 790f3ef
-
Bashamega 8ffb44c
Refactor
Bashamega b61ee71
-
Bashamega 184eb7e
-
Bashamega 6b779dd
-
Bashamega 6e76de9
-
Bashamega 8350852
Update src/build/patches.ts
Bashamega d2ce62e
-
Bashamega a92bc94
-
Bashamega 26e7af8
-
Bashamega 162b92c
Update src/build/patches.ts
Bashamega e227deb
Update src/build/patches.ts
Bashamega 2a4aa6a
-
Bashamega 54ec2f5
-
Bashamega fdd8294
hotfix
saschanaz 729d58a
undefinedifempty
saschanaz 894101d
webauthn
saschanaz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| removals { | ||
| enum AuthenticatorTransport { | ||
| smart-card // WebKit only as of 2023-05 | ||
| } | ||
| dictionary AuthenticationExtensionsClientInputs { | ||
| // https://searchfox.org/mozilla-central/source/dom/webidl/WebAuthentication.webidl | ||
| // https://searchfox.org/wubkat/source/Source/WebCore/Modules/webauthn/AuthenticationExtensionsClientInputs.idl | ||
| // https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/modules/credentialmanagement/authentication_extensions_client_inputs.idl | ||
| member appidExclude | ||
| member credBlob | ||
| member getCredBlob | ||
| member hmacGetSecret // No implementation as of 2025-05 | ||
| member payment | ||
| } | ||
| dictionary AuthenticationExtensionsClientInputsJSON { | ||
| member appidExclude | ||
| } | ||
| dictionary AuthenticationExtensionsClientOutputs { | ||
| // (same as *Inputs) | ||
| member appidExclude // No implementation as of 2025-05 | ||
| member hmacGetSecret // No implementation as of 2025-05 | ||
| member payment // Blink only as of 2025-06 | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this matter - if we omit this does the test fail?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes without it the tests fail
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes without it the tests fail
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes without it the tests fail
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah because
interface: {}becomesinterface: null. Hmmmmm I think this may be a footgun later when some patches become redundant and are removed...