- From: Emil Lundberg via GitHub <sysbot+gh@w3.org>
- Date: Wed, 11 Dec 2024 20:00:00 +0000
- To: public-webauthn@w3.org
The following commits were just pushed by emlun 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 -- Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Wednesday, 11 December 2024 20:00:02 UTC