Open schlessera opened 3 years ago
- The spec will need to be adapted to be informed by https://github.com/ampproject/amphtml/blob/main/build-system/compile/bundles.config.extensions.json, where the latestVersion is stored with the spec (and the highest version is not always the same as latest), as well as any additional Bento metadata.
See https://github.com/ampproject/amphtml/pull/34838 for the latest on where the Bento information is stored.
In order to determine which Bento versions are stable enough to be used, we have to cross-reference to make sure the version
is among the versions which are present in the validator spec. See https://github.com/ampproject/amp-wp/pull/6373.
@ediamin Some of the above TODOs should already be solved by https://github.com/ampproject/amp-toolbox-php/pull/297. Can you check in detail what was done, and what is still missing to update the issue description?
Here are my findings about the current state of this issue:
TagWithExtensionSpec
was introduced. In which getLatestVersion()
simply returns self::LATEST_VERSION
.
- The spec has adapted the bundles.config.extensions.json well from the ampproject/amphtml project. The latestVersion is stored with the spec as well as additional Bento metadata. It was handled in #297 .
The Bento version is also now indicated in the validator spec via a bento_supported_version
attribute: https://github.com/ampproject/amphtml/pull/35757. The plugin is still using the version data in bundles.config.extensions.json
, but I believe we could skip consuming that JSON file now that the validator has the data as well.
Multiple TODOs are still open in the
ExtensionSpec
template. These need to be resolved be generally improving the handling of latest versions of extensions.'latest'
version, but maybe not for long. See https://github.com/ampproject/amphtml/pull/34636.getLatestVersion()
could just be doing something likereturn self::LATEST_VERSION
.https://github.com/ampproject/amp-toolbox-php/blob/c680d60e9cf03c0e4c8a0f0ff4b3b3c662058eea/bin/src/Validator/SpecGenerator/Template/ExtensionSpec.php#L29-L67