diff --git a/CHANGELOG.md b/CHANGELOG.md index ffdb8da..b1990c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,23 @@ +## 8.0.0 (2023-06-09) + +### Breaking + +- Refactor to use `@dnd-kit` library for the internal drag and drop @sneridagh + + ## Breaking notes: + + The Grid block edit component has been heavily refactored, we changed the drag and drop library that the block is using. + Instead of using `react-beautiful-dnd` library now it uses `@dnd-kit` library. + You should expect HTML structure and classe name changes inside this component due to this change. + Please make sure that you haven't customized anything relying in neither structure or class names (such as styling). + Also, we splitted the internal components below the edit component of the Grid block. + If you've customized any of them for some reason, your component should still work, but without the refactoring, it will be still using `react-beautiful-dnd` library. + If you want to update your customization, you'll need to update them appropiately following the changes made in the #87 PR. [#87](https://github.com/kitconcept/volto-export/pull/87) + + ## 7.2.0 (2023-06-07) ### Feature diff --git a/news/87.breaking b/news/87.breaking deleted file mode 100644 index 3ce39a8..0000000 --- a/news/87.breaking +++ /dev/null @@ -1,11 +0,0 @@ -Refactor to use `@dnd-kit` library for the internal drag and drop @sneridagh - -## Breaking notes: - -The Grid block edit component has been heavily refactored, we changed the drag and drop library that the block is using. -Instead of using `react-beautiful-dnd` library now it uses `@dnd-kit` library. -You should expect HTML structure and classe name changes inside this component due to this change. -Please make sure that you haven't customized anything relying in neither structure or class names (such as styling). -Also, we splitted the internal components below the edit component of the Grid block. -If you've customized any of them for some reason, your component should still work, but without the refactoring, it will be still using `react-beautiful-dnd` library. -If you want to update your customization, you'll need to update them appropiately following the changes made in the #87 PR. diff --git a/package.json b/package.json index fbdcc26..918434b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@kitconcept/volto-blocks-grid", - "version": "7.2.0", + "version": "8.0.0", "description": "kitconcept's Volto Grids add-on - Unidimensional grids FTW", "main": "src/index.js", "scripts": {