Skip to content

Latest commit

Β 

History

History
120 lines (72 loc) Β· 4.59 KB

CHANGELOG.md

File metadata and controls

120 lines (72 loc) Β· 4.59 KB

Changelog

0.5.0 - 2023-03-29

πŸ› οΈ Fixes

  • ✨ Fix broken links and naming issues from fork transition- adrianheine, pr29

    This PR helps clean up a variety of references and links that weren't caught when the project transitioned from a fork of the typed-html crate.

🌿 Maintenance

  • ✨ Dependency gardening - ashleygwilliams, pr32/pr33

    General dependency maintenance with two notable actions:

    • replace ansi_term with console to match the rest of the axo toolchain
    • update lalrpop to 0.19.9 (latest release) to address warning

0.4.1 - 2023-01-24

πŸ› οΈ Fixes

  • ✨ Fix capitalization for Permissions-Policy meta tag- ashleygwilliams, pr26

    This PR updates the capitalization of the Permissions Policy header from Permissions-policy to Permissions-Policy.

0.4.0 - 2023-01-24

🎁 Features

  • ✨ Add support for Permissions-Policy meta tag- SaraVieira, pr23

    This pr adds support for using the Permissions-Policy meta tag that is used for defining a set of browser APIs you do not wish your website to have.

0.3.0 - 2023-01-02

🎁 Features

  • ✨ Add twitter SEO tag support - SaraVieira, pr17

    Add support for meta tags used for twitter cards as showed in their docs

πŸ› οΈ Fixes

  • ✨ Data Attributes now work with more than one hyphen - SaraVieira, pr10

    Our support for data attributes was limited in the way that it only supported one hyphen in said attributes, well, no more, use as many hyphens as your heart pleases

  • ✨ Allow script tags in HTML - SaraVieira, pr10

    We now allow you to add script tags in the HTML after the body as the HTML standards also allow

  • ✨ Allow unescaped text inscript- SaraVieira, pr14

    Until now we were escaping the text passed down to the script tag and in the script tag is the only place we are sure we don't want to escape that so that's fixed and you can add script tags with unescaped text inside

0.2.0 - 2022-12-19

🎁 Features

  • ✨ New Attribute - aria - SaraVieira

    aria attributes are critical to making the web more accessible to everyone, but most importantly, people with disabilities. These were a to-do item from the original project, and so we to-did them. At least most of them. There are a few open issues if you'd like to help us complete the implementation.

  • ✨ New Attribute - meta:property - SaraVieira

    If you ask the internet why meta tags have a property attribute that isn't in the spec, you won't get great answers. Although not formally specified in HTML5, property attributes in meta tags are important for SEO and the Open Graph Protocol. They are documented in RDFa which is a formal W3C recommendation.

    It is outside the scope of this project to standardize standards bodies. We needed to support the property attribute, and so we did.

0.1.0 - 2022-12-16

Forked project, removed dodrio and stdweb features; initial release.