CHANGELOG.md in ccs-frontend_helpers-0.1.2 vs CHANGELOG.md in ccs-frontend_helpers-0.2.0

- old
+ new

@@ -1,4 +1,34 @@ +## [0.2.0] - 2024-03-13 + +### 💥 Breaking changes + +Update components to be compatible with GOV.UK Frontend v5.2 + +For pagination, the option to enable ellipsis is now: +```ruby +{ + ellipsis: true +} +``` +instead of: +```ruby +{ + type: :ellipsis +} +``` + +### 🏠 Internal changes + +Add tests for GOV.UK Frontend fixtures + +### 🆕 New features + +The following GOV.UK helpers have been added: + +- Exit this page +- Task list + ## [0.1.2] - 2023-11-16 Fix issue with radios component which, when passed a model or form, would treat the value as an array. This did not cause an issue for strings as the `include?` method still works for them but if the value was a boolean or a number then an error would be thrown.