diff --git a/.changeset/healthy-dolls-wonder.md b/.changeset/healthy-dolls-wonder.md deleted file mode 100644 index 6a8c06e4..00000000 --- a/.changeset/healthy-dolls-wonder.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@nordeck/matrix-neoboard-react-sdk': patch ---- - -A snapshot is sent when a new document is created diff --git a/.changeset/pink-bags-watch.md b/.changeset/pink-bags-watch.md deleted file mode 100644 index a33114d9..00000000 --- a/.changeset/pink-bags-watch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@nordeck/matrix-neoboard-react-sdk': minor ---- - -New API functions: WhiteboardManager.clear, WhiteboardInstance.persist and WhiteboardInstance.destroy diff --git a/.changeset/rotten-lemons-provide.md b/.changeset/rotten-lemons-provide.md deleted file mode 100644 index 6f14117d..00000000 --- a/.changeset/rotten-lemons-provide.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -'@nordeck/matrix-neoboard-widget': major -'@nordeck/matrix-neoboard-react-sdk': major ---- - -Migrate neoboard to vitejs + vitest - -We replaced react-scripts with vitejs and jest with vitest. This change should not affect the functionality of the widget, -but it allows us to update dependencies and modernize the build process. It also improves the ability to react to security issues in the future. - -However there are changes to the tooling. This will only affect you if you are building the widget yourself and do not use the provided build script. -This means that you will need to update your build script to use vitejs instead of react-scripts. Additionally, if you had custom changes to the configurations you will have to update them to the vitejs equivalent. - -Finally, the package is now an ECMAScript module (ESM). This means that you might have to update your imports if you consumed the package directly. diff --git a/.changeset/seven-oranges-wonder.md b/.changeset/seven-oranges-wonder.md deleted file mode 100644 index 2d45bd21..00000000 --- a/.changeset/seven-oranges-wonder.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@nordeck/matrix-neoboard-widget': patch ---- - -Add Border to the color picker icon diff --git a/.changeset/silver-owls-cheer.md b/.changeset/silver-owls-cheer.md deleted file mode 100644 index d8792878..00000000 --- a/.changeset/silver-owls-cheer.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@nordeck/matrix-neoboard-widget': minor ---- - -Hide about menu item if the widget is embedded diff --git a/.changeset/sweet-meals-pay.md b/.changeset/sweet-meals-pay.md deleted file mode 100644 index 7ca4199c..00000000 --- a/.changeset/sweet-meals-pay.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@nordeck/matrix-neoboard-react-sdk': patch -'@nordeck/matrix-neoboard-widget': patch ---- - -Change rounded corner rectangle element position in the toolbar. diff --git a/matrix-neoboard-widget/CHANGELOG.md b/matrix-neoboard-widget/CHANGELOG.md index 983e5788..4c6263a2 100644 --- a/matrix-neoboard-widget/CHANGELOG.md +++ b/matrix-neoboard-widget/CHANGELOG.md @@ -1,5 +1,33 @@ # @nordeck/matrix-neoboard-widget +## 2.0.0 + +### Major Changes + +- d1aa5b7: Migrate neoboard to vitejs + vitest + + We replaced react-scripts with vitejs and jest with vitest. This change should not affect the functionality of the widget, + but it allows us to update dependencies and modernize the build process. It also improves the ability to react to security issues in the future. + + However there are changes to the tooling. This will only affect you if you are building the widget yourself and do not use the provided build script. + This means that you will need to update your build script to use vitejs instead of react-scripts. Additionally, if you had custom changes to the configurations you will have to update them to the vitejs equivalent. + + Finally, the package is now an ECMAScript module (ESM). This means that you might have to update your imports if you consumed the package directly. + +### Minor Changes + +- 5535a20: Hide about menu item if the widget is embedded + +### Patch Changes + +- 79ea35f: Add Border to the color picker icon +- a4e9a8b: Change rounded corner rectangle element position in the toolbar. +- Updated dependencies [db08392] +- Updated dependencies [9eed0b8] +- Updated dependencies [d1aa5b7] +- Updated dependencies [a4e9a8b] + - @nordeck/matrix-neoboard-react-sdk@1.0.0 + ## 1.20.0 ### Minor Changes diff --git a/matrix-neoboard-widget/package.json b/matrix-neoboard-widget/package.json index 50aeee81..932d1f24 100644 --- a/matrix-neoboard-widget/package.json +++ b/matrix-neoboard-widget/package.json @@ -3,13 +3,13 @@ "description": "A whiteboard widget for the Element messenger", "author": "Nordeck IT + Consulting GmbH", "license": "Apache-2.0", - "version": "1.20.0", + "version": "2.0.0", "private": true, "type": "module", "dependencies": { "@matrix-widget-toolkit/api": "^3.4.2", "@matrix-widget-toolkit/mui": "^2.0.6", - "@nordeck/matrix-neoboard-react-sdk": "0.2.2", + "@nordeck/matrix-neoboard-react-sdk": "1.0.0", "i18next": "^23.15.2", "i18next-browser-languagedetector": "^8.0.0", "i18next-chained-backend": "^4.6.2", diff --git a/packages/react-sdk/CHANGELOG.md b/packages/react-sdk/CHANGELOG.md index 6830a004..00daf93e 100644 --- a/packages/react-sdk/CHANGELOG.md +++ b/packages/react-sdk/CHANGELOG.md @@ -1,5 +1,28 @@ # @nordeck/matrix-neoboard-react-sdk +## 1.0.0 + +### Major Changes + +- d1aa5b7: Migrate neoboard to vitejs + vitest + + We replaced react-scripts with vitejs and jest with vitest. This change should not affect the functionality of the widget, + but it allows us to update dependencies and modernize the build process. It also improves the ability to react to security issues in the future. + + However there are changes to the tooling. This will only affect you if you are building the widget yourself and do not use the provided build script. + This means that you will need to update your build script to use vitejs instead of react-scripts. Additionally, if you had custom changes to the configurations you will have to update them to the vitejs equivalent. + + Finally, the package is now an ECMAScript module (ESM). This means that you might have to update your imports if you consumed the package directly. + +### Minor Changes + +- 9eed0b8: New API functions: WhiteboardManager.clear, WhiteboardInstance.persist and WhiteboardInstance.destroy + +### Patch Changes + +- db08392: A snapshot is sent when a new document is created +- a4e9a8b: Change rounded corner rectangle element position in the toolbar. + ## 0.2.2 ### Patch Changes diff --git a/packages/react-sdk/package.json b/packages/react-sdk/package.json index b80bd791..5db7fb85 100644 --- a/packages/react-sdk/package.json +++ b/packages/react-sdk/package.json @@ -3,7 +3,7 @@ "description": "SDK with react components to develop neoboard", "author": "Nordeck IT + Consulting GmbH", "license": "Apache-2.0", - "version": "0.2.2", + "version": "1.0.0", "private": true, "source": "./src/index.ts", "module": "./src/index.ts",