Skip to content

Commit ddeea12

Browse files
authored
Merge pull request #977 from projectstorm/changeset-release/master
Version Packages
2 parents f1c38fb + fcdbce5 commit ddeea12

File tree

17 files changed

+321
-112
lines changed

17 files changed

+321
-112
lines changed

.changeset/cyan-yaks-rescue.md

Lines changed: 0 additions & 29 deletions
This file was deleted.

diagrams-demo-gallery/CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# @projectstorm/react-diagrams-gallery
2+
3+
## 7.0.0
4+
5+
### Major Changes
6+
7+
- b051697: - [internal] moves to `Pnpm` (instead of yarn -\_-)
8+
- [internal]moves to `Changesets` for releases
9+
- [internal]removes `Lerna`
10+
- [internal] upgrades all dependencies
11+
- [internal] switches to workspace protocol syntax (Changesets will bake in the correct version when a publish occurs)
12+
- [internal] Changesets will open a release PR which can wrap up several changes in 1 go
13+
- [internal] Changesets will run the storybook deploy automatically upon merging the release PR
14+
- [internal] removes a lot of the stuff from the root package.json
15+
- [internal] cleans up the build and clean commands
16+
- [internal] remove E2E tests, they are a nightmare to maintain and the ROI is far too low
17+
- [fix] Wrong type name for react-canvas model listener
18+
- [fix] export more stuff form the main react-diagrams package
19+
- [fix] circular deps with Rectangle and Polygon (turns out this was a problem but only with UMD builds, sorry @everyone who I doubted, but this is also why I could never reproduce the issue)
20+
- [breaking change] compile both ES6 and UMD
21+
- [breaking change] moves dependencies back to each package. (After years of working on libraries, I've come to actually hate peer dependencies, and this is easily solved with build systems / package managers).
22+
- [breaking change] static methods on `Polygon` and `Rectangle` moved to standalone methods
23+
- [breaking change] static construction methods to rather deal with different Rectangle constructor overloads (I now consider this bad design)
24+
- [breaking change] introduce `Bounds` as a simpler point-array type to deal with boundary computation instead
25+
26+
### Patch Changes
27+
28+
- Updated dependencies [b051697]
29+
- @projectstorm/react-diagrams-defaults@7.0.0
30+
- @projectstorm/react-diagrams-core@7.0.0
31+
- @projectstorm/react-canvas-core@7.0.0
32+
- @projectstorm/react-diagrams@7.0.0

diagrams-demo-gallery/package.json

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@projectstorm/react-diagrams-gallery",
3-
"version": "6.7.4",
3+
"version": "7.0.0",
44
"author": "dylanvorster",
55
"license": "MIT",
66
"private": true,
@@ -23,26 +23,26 @@
2323
"links",
2424
"nodes"
2525
],
26-
"dependencies": {
27-
"lodash": "^4.17.21",
28-
"@projectstorm/react-canvas-core": "workspace:*",
29-
"@projectstorm/react-diagrams": "workspace:*",
30-
"@projectstorm/react-diagrams-core": "workspace:*",
31-
"@projectstorm/react-diagrams-defaults": "workspace:*",
32-
"gsap": "^3.11.4",
33-
"json-beautify": "^1.1.1",
34-
"react": "^18.2.0"
35-
},
36-
"devDependencies": {
37-
"@types/lodash": "^4.14.191",
38-
"@types/react": "^18.0.27",
39-
"@storybook/addons": "^6.5.15",
40-
"@storybook/addon-actions": "^6.5.15",
41-
"@storybook/addon-options": "^5.3.21",
42-
"@storybook/builder-webpack5": "^6.5.15",
43-
"@storybook/manager-webpack5": "^6.5.15",
44-
"@storybook/react": "^6.5.15",
45-
"@storybook/storybook-deployer": "^2.8.16",
46-
"@storybook/theming": "^6.5.15"
47-
}
26+
"dependencies": {
27+
"lodash": "^4.17.21",
28+
"@projectstorm/react-canvas-core": "workspace:*",
29+
"@projectstorm/react-diagrams": "workspace:*",
30+
"@projectstorm/react-diagrams-core": "workspace:*",
31+
"@projectstorm/react-diagrams-defaults": "workspace:*",
32+
"gsap": "^3.11.4",
33+
"json-beautify": "^1.1.1",
34+
"react": "^18.2.0"
35+
},
36+
"devDependencies": {
37+
"@types/lodash": "^4.14.191",
38+
"@types/react": "^18.0.27",
39+
"@storybook/addons": "^6.5.15",
40+
"@storybook/addon-actions": "^6.5.15",
41+
"@storybook/addon-options": "^5.3.21",
42+
"@storybook/builder-webpack5": "^6.5.15",
43+
"@storybook/manager-webpack5": "^6.5.15",
44+
"@storybook/react": "^6.5.15",
45+
"@storybook/storybook-deployer": "^2.8.16",
46+
"@storybook/theming": "^6.5.15"
47+
}
4848
}

diagrams-demo-project/CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# @projectstorm/react-diagrams-demo
2+
3+
## 7.0.0
4+
5+
### Major Changes
6+
7+
- b051697: - [internal] moves to `Pnpm` (instead of yarn -\_-)
8+
- [internal]moves to `Changesets` for releases
9+
- [internal]removes `Lerna`
10+
- [internal] upgrades all dependencies
11+
- [internal] switches to workspace protocol syntax (Changesets will bake in the correct version when a publish occurs)
12+
- [internal] Changesets will open a release PR which can wrap up several changes in 1 go
13+
- [internal] Changesets will run the storybook deploy automatically upon merging the release PR
14+
- [internal] removes a lot of the stuff from the root package.json
15+
- [internal] cleans up the build and clean commands
16+
- [internal] remove E2E tests, they are a nightmare to maintain and the ROI is far too low
17+
- [fix] Wrong type name for react-canvas model listener
18+
- [fix] export more stuff form the main react-diagrams package
19+
- [fix] circular deps with Rectangle and Polygon (turns out this was a problem but only with UMD builds, sorry @everyone who I doubted, but this is also why I could never reproduce the issue)
20+
- [breaking change] compile both ES6 and UMD
21+
- [breaking change] moves dependencies back to each package. (After years of working on libraries, I've come to actually hate peer dependencies, and this is easily solved with build systems / package managers).
22+
- [breaking change] static methods on `Polygon` and `Rectangle` moved to standalone methods
23+
- [breaking change] static construction methods to rather deal with different Rectangle constructor overloads (I now consider this bad design)
24+
- [breaking change] introduce `Bounds` as a simpler point-array type to deal with boundary computation instead
25+
26+
### Patch Changes
27+
28+
- Updated dependencies [b051697]
29+
- @projectstorm/react-diagrams@7.0.0

diagrams-demo-project/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@projectstorm/react-diagrams-demo",
3-
"version": "6.7.4",
3+
"version": "7.0.0",
44
"author": "dylanvorster",
55
"license": "MIT",
66
"private": true,
@@ -30,15 +30,15 @@
3030
"react-dom": "^18.2.0"
3131
},
3232
"devDependencies": {
33-
"source-map-loader": "^4.0.1",
34-
"html-webpack-plugin": "^5.5.0",
35-
"@babel/core": "^7.20.12",
36-
"@babel/preset-react": "^7.18.6",
33+
"source-map-loader": "^4.0.1",
34+
"html-webpack-plugin": "^5.5.0",
35+
"@babel/core": "^7.20.12",
36+
"@babel/preset-react": "^7.18.6",
3737
"@types/react": "^18.0.27",
3838
"@types/react-dom": "^18.0.10",
39-
"babel-loader": "^9.1.2",
40-
"css-loader": "^6.7.3",
41-
"style-loader": "^3.3.1",
39+
"babel-loader": "^9.1.2",
40+
"css-loader": "^6.7.3",
41+
"style-loader": "^3.3.1",
4242
"webpack": "^5.75.0",
4343
"webpack-cli": "^5.0.1",
4444
"webpack-dev-server": "^4.11.1"

packages/geometry/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# @projectstorm/geometry
2+
3+
## 7.0.0
4+
5+
### Major Changes
6+
7+
- b051697: - [internal] moves to `Pnpm` (instead of yarn -\_-)
8+
- [internal]moves to `Changesets` for releases
9+
- [internal]removes `Lerna`
10+
- [internal] upgrades all dependencies
11+
- [internal] switches to workspace protocol syntax (Changesets will bake in the correct version when a publish occurs)
12+
- [internal] Changesets will open a release PR which can wrap up several changes in 1 go
13+
- [internal] Changesets will run the storybook deploy automatically upon merging the release PR
14+
- [internal] removes a lot of the stuff from the root package.json
15+
- [internal] cleans up the build and clean commands
16+
- [internal] remove E2E tests, they are a nightmare to maintain and the ROI is far too low
17+
- [fix] Wrong type name for react-canvas model listener
18+
- [fix] export more stuff form the main react-diagrams package
19+
- [fix] circular deps with Rectangle and Polygon (turns out this was a problem but only with UMD builds, sorry @everyone who I doubted, but this is also why I could never reproduce the issue)
20+
- [breaking change] compile both ES6 and UMD
21+
- [breaking change] moves dependencies back to each package. (After years of working on libraries, I've come to actually hate peer dependencies, and this is easily solved with build systems / package managers).
22+
- [breaking change] static methods on `Polygon` and `Rectangle` moved to standalone methods
23+
- [breaking change] static construction methods to rather deal with different Rectangle constructor overloads (I now consider this bad design)
24+
- [breaking change] introduce `Bounds` as a simpler point-array type to deal with boundary computation instead

packages/geometry/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@projectstorm/geometry",
3-
"version": "6.7.4",
3+
"version": "7.0.0",
44
"author": "dylanvorster",
55
"license": "MIT",
66
"repository": {
@@ -28,10 +28,10 @@
2828
"main": "./dist/index.umd.js",
2929
"module": "./dist/index.js",
3030
"typings": "./dist/@types/index",
31-
"dependencies": {
32-
"lodash": "^4.17.21"
33-
},
34-
"devDependencies": {
35-
"@types/lodash": "^4.14.191"
36-
}
31+
"dependencies": {
32+
"lodash": "^4.17.21"
33+
},
34+
"devDependencies": {
35+
"@types/lodash": "^4.14.191"
36+
}
3737
}
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# @projectstorm/react-canvas-core
2+
3+
## 7.0.0
4+
5+
### Major Changes
6+
7+
- b051697: - [internal] moves to `Pnpm` (instead of yarn -\_-)
8+
- [internal]moves to `Changesets` for releases
9+
- [internal]removes `Lerna`
10+
- [internal] upgrades all dependencies
11+
- [internal] switches to workspace protocol syntax (Changesets will bake in the correct version when a publish occurs)
12+
- [internal] Changesets will open a release PR which can wrap up several changes in 1 go
13+
- [internal] Changesets will run the storybook deploy automatically upon merging the release PR
14+
- [internal] removes a lot of the stuff from the root package.json
15+
- [internal] cleans up the build and clean commands
16+
- [internal] remove E2E tests, they are a nightmare to maintain and the ROI is far too low
17+
- [fix] Wrong type name for react-canvas model listener
18+
- [fix] export more stuff form the main react-diagrams package
19+
- [fix] circular deps with Rectangle and Polygon (turns out this was a problem but only with UMD builds, sorry @everyone who I doubted, but this is also why I could never reproduce the issue)
20+
- [breaking change] compile both ES6 and UMD
21+
- [breaking change] moves dependencies back to each package. (After years of working on libraries, I've come to actually hate peer dependencies, and this is easily solved with build systems / package managers).
22+
- [breaking change] static methods on `Polygon` and `Rectangle` moved to standalone methods
23+
- [breaking change] static construction methods to rather deal with different Rectangle constructor overloads (I now consider this bad design)
24+
- [breaking change] introduce `Bounds` as a simpler point-array type to deal with boundary computation instead
25+
26+
### Patch Changes
27+
28+
- Updated dependencies [b051697]
29+
- @projectstorm/geometry@7.0.0

packages/react-canvas-core/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@projectstorm/react-canvas-core",
3-
"version": "6.7.4",
3+
"version": "7.0.0",
44
"author": "dylanvorster",
55
"license": "MIT",
66
"repository": {
@@ -29,14 +29,14 @@
2929
"module": "./dist/index.js",
3030
"typings": "./dist/@types/index",
3131
"dependencies": {
32-
"@emotion/react": "^11.10.5",
33-
"@emotion/styled": "^11.10.5",
32+
"@emotion/react": "^11.10.5",
33+
"@emotion/styled": "^11.10.5",
3434
"@projectstorm/geometry": "workspace:*",
35-
"react": "^18.2.0",
36-
"lodash": "^4.17.21"
35+
"react": "^18.2.0",
36+
"lodash": "^4.17.21"
3737
},
38-
"devDependencies": {
39-
"@types/react": "^18.0.27",
40-
"@types/lodash": "^4.14.191"
41-
}
38+
"devDependencies": {
39+
"@types/react": "^18.0.27",
40+
"@types/lodash": "^4.14.191"
41+
}
4242
}
Lines changed: 35 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,44 @@
11
# Changelog
22

3+
## 7.0.0
4+
5+
### Major Changes
6+
7+
- b051697: - [internal] moves to `Pnpm` (instead of yarn -\_-)
8+
- [internal]moves to `Changesets` for releases
9+
- [internal]removes `Lerna`
10+
- [internal] upgrades all dependencies
11+
- [internal] switches to workspace protocol syntax (Changesets will bake in the correct version when a publish occurs)
12+
- [internal] Changesets will open a release PR which can wrap up several changes in 1 go
13+
- [internal] Changesets will run the storybook deploy automatically upon merging the release PR
14+
- [internal] removes a lot of the stuff from the root package.json
15+
- [internal] cleans up the build and clean commands
16+
- [internal] remove E2E tests, they are a nightmare to maintain and the ROI is far too low
17+
- [fix] Wrong type name for react-canvas model listener
18+
- [fix] export more stuff form the main react-diagrams package
19+
- [fix] circular deps with Rectangle and Polygon (turns out this was a problem but only with UMD builds, sorry @everyone who I doubted, but this is also why I could never reproduce the issue)
20+
- [breaking change] compile both ES6 and UMD
21+
- [breaking change] moves dependencies back to each package. (After years of working on libraries, I've come to actually hate peer dependencies, and this is easily solved with build systems / package managers).
22+
- [breaking change] static methods on `Polygon` and `Rectangle` moved to standalone methods
23+
- [breaking change] static construction methods to rather deal with different Rectangle constructor overloads (I now consider this bad design)
24+
- [breaking change] introduce `Bounds` as a simpler point-array type to deal with boundary computation instead
25+
26+
### Patch Changes
27+
28+
- Updated dependencies [b051697]
29+
- @projectstorm/react-canvas-core@7.0.0
30+
- @projectstorm/geometry@7.0.0
31+
332
## 6.0.0
433

534
### Breaking changes
635

7-
* `AbstractFactory:getNewInstance` renamed to `AbstractFactory:generateModel` and now gets given an event object
8-
so that we can add to the event object without relying on more parameters
36+
- `AbstractFactory:getNewInstance` renamed to `AbstractFactory:generateModel` and now gets given an event object
37+
so that we can add to the event object without relying on more parameters
938

10-
* `AbstractFactory::generateReactWidget` now receives an event object
39+
- `AbstractFactory::generateReactWidget` now receives an event object
1140

12-
* Moved factories in the diagramEngine into `FactoryBank`'s, which means we can remove the listeners in the DiagramEngine.
13-
methods such as factoryAdded and factoryRemoved are now available on the FactoryBank (better design that allows more control)
41+
- Moved factories in the diagramEngine into `FactoryBank`'s, which means we can remove the listeners in the DiagramEngine.
42+
methods such as factoryAdded and factoryRemoved are now available on the FactoryBank (better design that allows more control)
1443

15-
* `addListener` renamed to `registerListener`
44+
- `addListener` renamed to `registerListener`

packages/react-diagrams-core/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@projectstorm/react-diagrams-core",
3-
"version": "6.7.4",
3+
"version": "7.0.0",
44
"author": "dylanvorster",
55
"license": "MIT",
66
"repository": {
@@ -31,15 +31,15 @@
3131
"module": "./dist/index.js",
3232
"typings": "./dist/@types/index",
3333
"dependencies": {
34-
"@emotion/styled": "^11.10.5",
34+
"@emotion/styled": "^11.10.5",
3535
"@projectstorm/geometry": "workspace:*",
3636
"@projectstorm/react-canvas-core": "workspace:*",
37-
"lodash": "^4.17.21",
38-
"react": "^18.2.0",
39-
"resize-observer-polyfill": "^1.5.1"
37+
"lodash": "^4.17.21",
38+
"react": "^18.2.0",
39+
"resize-observer-polyfill": "^1.5.1"
4040
},
41-
"devDependencies": {
42-
"@types/react": "^18.0.27",
43-
"@types/lodash": "^4.14.191"
44-
}
41+
"devDependencies": {
42+
"@types/react": "^18.0.27",
43+
"@types/lodash": "^4.14.191"
44+
}
4545
}

0 commit comments

Comments
 (0)