Skip to content

v6.0.0

Compare
Choose a tag to compare
@neilime neilime released this 18 Jun 16:42
· 11 commits to main since this release

Release Summary

Four updates in this release:

  • 🛠 Build: Updated the Codecov GitHub Action dependency from 5.4.2 to 5.4.3 in the github-actions-dependencies group, addressing minor version improvements.
  • 🎉 Feature: Refreshed the CSS referential definitions to keep up with the latest CSS features.
  • ⚠️ Breaking change: Parsing logic is now completely separate from linting logic—this affects any integrations expecting combined behavior.
  • ⚠️ Breaking change: Introduced a new output formatter interface; existing consumers must implement or adjust to the new formatter API.

Breaking changes

  • Parser–linter separation (/feat!/)
    The parsing mechanism has been extracted and can now be used independently of the linting stage. Integrations relying on the previous unified parser‑lint workflow may break and need to be updated to explicitly invoke both stages in sequence.

  • Output formatter added (/feat!/)
    A dedicated formatter layer has been added for lint output. Users must now provide or select a formatter compatible with the new interface, or adjust existing code to supply the required formatter component.


🆕 New Features

  • Updated CSS referential data was integrated, improving CSS validity checks.
  • New output formatter enhances flexibility in rendering lint results.

🐛 Bug Fixes & Maintenance

  • Bumped codecov/codecov-action from v5.4.2 to v5.4.3 to apply latest CI improvements.

Let me know if you'd like the detailed changes from any of these pull requests!

What's Changed

  • build(deps): bump codecov/codecov-action from 5.4.2 to 5.4.3 in the github-actions-dependencies group by @dependabot in #121
  • feat: update CSS Referential by @github-actions in #122
  • feat!: separate parsing from linting by @neilime in #123
  • feat!: add output formatter by @neilime in #124

New Contributors

  • @github-actions made their first contribution in #122

Full Changelog: v5.0.0...v6.0.0