- From: Michael B. Jones via GitHub <sysbot+gh@w3.org>
- Date: Wed, 18 Dec 2024 19:09:23 +0000
- To: public-webauthn@w3.org
The following commits were just pushed by selfissued to https://github.com/w3c/webauthn: * Fix AuthenticationExtensionsAuthenticatorInputs/Outputs CDDL According to the CDDL grammar, after a control operator (called `ctlop` in the ABNF grammar), there can only be a `type2` production: https://datatracker.ietf.org/doc/html/rfc8610#appendix-B In a `type2` production, wrapping parentheses can only be used to wrap a `type` production. `tstr => any` is a `group` production, and needs to be wrapped in curly braces or brackets. In other words, from a CDDL grammar perspective, this is an invalid type: `foo .within ( tstr => any )` This is valid: `foo .within { tstr => any }` This update fixes the CDDL type definitions that used the `.within` operator with an invalid type2. by Francois Daoust https://github.com/w3c/webauthn/commit/8fa10df31c3c2eadbcb797164890563eb8ab6c5a * Move .within control to correct position in extension input/outputs CDDL by Emil Lundberg https://github.com/w3c/webauthn/commit/5d855e79c4242c330c737f00a1f6b15c85c1fd1a * Merge pull request #2221 from w3c/pr-2219-tidoust Fix AuthenticationExtensionsAuthenticatorInputs/Outputs CDDL by Michael B. Jones https://github.com/w3c/webauthn/commit/57efac8e788c3ac058fcc995dbb4c2d177545fc1 -- Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Wednesday, 18 December 2024 19:09:24 UTC