Skip to content

Commit ba412d4

Browse files
authored
Merge branch 'master' into chore/eslint9
2 parents c2c74dd + 6d7dd1c commit ba412d4

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

.github/workflows/publish-npm.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ jobs:
2626
with:
2727
# use the default GITHUB_TOKEN, this is possible because we are dispatching the same repository
2828
event-type: new_version_available_on_npm
29-
client-payload: "{ version: ${{ env.VERSION }} }"
29+
client-payload: '{ "version": "${{ env.VERSION }}" }'

docs/contributors/mxgraph-version-bump.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
- check the [mxGraph changelog](https://github.com/jgraph/mxgraph/blob/master/ChangeLog) to see what could impact the lib
66
- review issues list, in particular in the [BPMN Rendering Improvements milestone](https://github.com/process-analytics/bpmn-visualization-js/milestone/14) which could be impacted or fixed by the version bump
77
- apply the version bump
8-
- review the overridden mxgraph code, generally, we redefine prototype, so search for the `prototype` string
8+
- review the overridden mxGraph code, generally, we extends the mxGraph objects, so search for the `extends mxgraph.mx` string
99
- ensure we have enough visual tests to cover any regression or changes introduced
1010
- run the [performance tests](./testing.md#performance-tests) on all OS, ensure we don't see any performance regressions and save the results
1111

@@ -24,7 +24,7 @@ In the repository of `bpmn-visualization`, test pages are also available (some a
2424
## Resources
2525

2626
- Examples of visual testing failures: [Pull Request #502](https://github.com/process-analytics/bpmn-visualization-js/pull/502)
27-
- Attempt to Bump mxgraph from 4.1.0 to 4.1.1: [Pull Request #547](https://github.com/process-analytics/bpmn-visualization-js/pull/547#issuecomment-678959718)
27+
- Attempt to "Bump mxgraph from 4.1.0 to 4.1.1": [Pull Request #547](https://github.com/process-analytics/bpmn-visualization-js/pull/547#issuecomment-678959718)
2828

2929

3030

package-lock.json

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bpmn-visualization",
3-
"version": "0.45.0-post",
3+
"version": "0.45.1-post",
44
"type": "module",
55
"sideEffects": false,
66
"description": "A TypeScript library for visualizing process execution data on BPMN diagrams",
@@ -151,7 +151,7 @@
151151
"npm-run-all": "~4.1.5",
152152
"pinst": "~3.0.0",
153153
"playwright": "~1.50.0",
154-
"postcss": "~8.5.1",
154+
"postcss": "~8.5.2",
155155
"postcss-cli": "~11.0.0",
156156
"prettier": "~3.5.0",
157157
"rimraf": "~6.0.1",
@@ -160,7 +160,7 @@
160160
"rollup-plugin-node-externals": "~8.0.0",
161161
"rollup-plugin-sizes": "~1.1.0",
162162
"rollup-plugin-typescript2": "~0.36.0",
163-
"tailwindcss": "~4.0.5",
163+
"tailwindcss": "~4.0.6",
164164
"ts-jest": "~29.2.5",
165165
"typedoc": "~0.27.6",
166166
"typescript": "~5.4.5",

sonar-project.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ sonar.organization=process-analytics
44

55
# This is the name and version displayed in the SonarCloud UI.
66
sonar.projectName=bpmn-visualization
7-
sonar.projectVersion=0.45.0-post
7+
sonar.projectVersion=0.45.1-post
88

99
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
1010
sonar.sources=src

src/component/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { mxClient } from './mxgraph/initializer';
1818

1919
// WARN: this constant is automatically updated at release time by the 'manage-version-in-files.mjs' script.
2020
// So, if you modify the name of this file or this constant, please update the script accordingly.
21-
const libraryVersion = '0.45.0-post';
21+
const libraryVersion = '0.45.1-post';
2222

2323
/**
2424
* Returns the version of `bpmn-visualization` and the version of its dependencies.

0 commit comments

Comments
 (0)