⚡ This new version renames the npm package. ⚡
List of issues: milestone 0.8.0
Breaking changes
Usage
The GitHub repository and npm package have been renamed from bv-experimental-add-ons
to bpmn-visualization-addons
to better reflect the library's purpose.
ℹ️ For more details on this choice, see #310.
If your application was using the package under its old name (version 0.7.1 or earlier), proceed as follows 👇 :
# first uninstall the old package
npm uninstall @process-analytics/bv-experimental-add-ons
# then install the new package
npm install @process-analytics/bpmn-visualization-addons
Then, update the imports in your application code to use the new package name as follows 👇:
- import {BpmnVisualization} from "@process-analytics/bv-experimental-add-ons";
+ import {BpmnVisualization} from "@process-analytics/bpmn-visualization-addons";
For developers of bpmn-visualization-addons
As the GitHub repository URL has changed, we strongly recommend updating any existing local clones to point to the new repository URL. You can do this by using git remote on the command line:
# using ssh
git remote set-url origin [email protected]:process-analytics/bpmn-visualization-addons.git
# using https
git remote set-url origin https://github.com/process-analytics/bpmn-visualization-addons.git
For more details, see the related GitHub documentation.
What's Changed
📝 Documentation
- docs: use the new
bpmn-visualization-addons
repository name by @tbouffard in #311 - docs: update SonarCloud badge in README by @tbouffard in #313
- docs(StyleByNamePlugin): mention the match of several elements by @tbouffard in #314
⚙️ Other Changes
- refactor: improve internal types based on SonarCloud feedback by @tbouffard in #315
- refactor!: rename the package to
bpmn-visualization-addons
by @tbouffard in #316
Full Changelog: v0.7.1...v0.8.0