Skip to content

Commit

Permalink
fix a regression introduced by #1146 (#1155)
Browse files Browse the repository at this point in the history
* bump dependencies

* fix a regression introduced by #1146
  • Loading branch information
akphi authored May 10, 2022
1 parent 381c3aa commit aa992e5
Show file tree
Hide file tree
Showing 10 changed files with 136 additions and 119 deletions.
9 changes: 9 additions & 0 deletions .changeset/happy-cobras-change.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
'@finos/eslint-plugin-legend-studio': patch
'@finos/legend-art': patch
'@finos/legend-dev-utils': patch
'@finos/legend-query-deployment': patch
'@finos/legend-studio': patch
'@finos/legend-studio-deployment': patch
'@finos/legend-taxonomy-deployment': patch
---
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
"envinfo": "7.8.1",
"eslint": "8.15.0",
"fs-extra": "10.1.0",
"husky": "8.0.0",
"husky": "8.0.1",
"inquirer": "8.2.4",
"jest": "28.1.0",
"lint-staged": "12.4.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/eslint-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
"dependencies": {
"@babel/core": "7.17.10",
"@babel/eslint-parser": "7.17.0",
"@typescript-eslint/eslint-plugin": "5.22.0",
"@typescript-eslint/parser": "5.22.0",
"@typescript-eslint/eslint-plugin": "5.23.0",
"@typescript-eslint/parser": "5.23.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/legend-art/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"@fontsource/roboto": "4.5.5",
"@fontsource/roboto-condensed": "4.5.8",
"@fontsource/roboto-mono": "4.5.7",
"@mui/material": "5.6.4",
"@mui/material": "5.7.0",
"@types/react": "18.0.9",
"@types/react-select": "4.0.18",
"@types/react-window": "1.8.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/legend-dev-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
"sass": "1.51.0",
"sass-loader": "12.6.0",
"typescript": "4.6.4",
"webpack": "5.72.0"
"webpack": "5.72.1"
},
"devDependencies": {
"cross-env": "7.0.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/legend-query-deployment/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"typescript": "4.6.4",
"webpack": "5.72.0",
"webpack": "5.72.1",
"webpack-bundle-analyzer": "4.5.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.9.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/legend-studio-deployment/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"typescript": "4.6.4",
"webpack": "5.72.0",
"webpack": "5.72.1",
"webpack-bundle-analyzer": "4.5.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.9.0"
Expand Down
3 changes: 1 addition & 2 deletions packages/legend-studio/src/stores/ChangeDetectionState.ts
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,6 @@ export class ChangeDetectionState {
}

stop(force = false): void {
this.graphObserveState.reset();
this.changeDetectionReaction?.();
this.changeDetectionReaction = undefined;
if (force) {
Expand Down Expand Up @@ -752,7 +751,7 @@ export class ChangeDetectionState {
}

*observeGraph(): GeneratorFn<void> {
if (!this.graphObserveState.isInInitialState) {
if (this.initState.hasSucceeded) {
throw new IllegalStateError(
`Can't observe graph: change detection must be stopped first`,
);
Expand Down
2 changes: 1 addition & 1 deletion packages/legend-taxonomy-deployment/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"typescript": "4.6.4",
"webpack": "5.72.0",
"webpack": "5.72.1",
"webpack-bundle-analyzer": "4.5.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.9.0"
Expand Down
Loading

0 comments on commit aa992e5

Please sign in to comment.