-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from Caleydo/release-5.0.0
Release 5.0.0
- Loading branch information
Showing
79 changed files
with
2,744 additions
and
2,593 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
import tdp_core.dbmigration.env | ||
import visyn_core.dbmigration.env | ||
|
||
tdp_core.dbmigration.env.run_migrations_online() | ||
visyn_core.dbmigration.env.run_migrations_online() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "coral", | ||
"description": "Coral is a web-based cohort analysis tool to interactively create, refine, and analyze patient cohorts.", | ||
"homepage": "https://caleydo.org", | ||
"version": "4.1.0", | ||
"version": "5.0.0", | ||
"author": { | ||
"name": "PatrickAdelberger", | ||
"email": "[email protected]", | ||
|
@@ -32,7 +32,7 @@ | |
"dist": "mkdir lib && cd dist && tar cvzf ../lib/bundle.tar.gz *", | ||
"docs": "visyn_scripts docs", | ||
"lint:fix": "visyn_scripts lint --fix", | ||
"lint": "visyn_scripts lint || true", | ||
"lint": "visyn_scripts lint", | ||
"prepack": "yarn run build", | ||
"start": "visyn_scripts start --env workspace_mode=single", | ||
"storybook:build": "NODE_OPTIONS=--max_old_space_size=4096 build-storybook", | ||
|
@@ -72,27 +72,30 @@ | |
"react-dom": "^16.13.0", | ||
"react-router-dom": "^5.2.0", | ||
"split-grid": "^1.0.9", | ||
"tdp_core": "^17.0.0", | ||
"tdp_publicdb": "git+ssh://[email protected]/caleydo/tdp_publicdb#semver:^13.0.3", | ||
"tdp_core": "^20.1.0", | ||
"tdp_publicdb": "git+ssh://[email protected]:Caleydo/tdp_publicdb#semver:^14.0.0", | ||
"tippy.js": "^6.2.6", | ||
"tourdino": "git+ssh://[email protected]/caleydo/tourdino#semver:^7.0.1", | ||
"tourdino": "git+ssh://[email protected]:Caleydo/tourdino#semver:^8.0.0", | ||
"vega": "~5.20.0", | ||
"vega-embed": "6.19.1", | ||
"vega-functions": "5.12.0", | ||
"vega-lite": "5.1.1", | ||
"vega-parser": "6.1.3", | ||
"visyn_scripts": "^1.1.1" | ||
"visyn_scripts": "^4.1.0" | ||
}, | ||
"devDependencies": { | ||
"@types/d3-selection": "^3.0.2", | ||
"@types/d3-transition": "^3.0.1", | ||
"@types/react": "^16.14.6", | ||
"@types/react-dom": "^16.9.5", | ||
"@types/react-router-dom": "^5.1.7", | ||
"mkdirp": "0.5.1", | ||
"tslint": "~5.20.1", | ||
"worker-loader": "^2.0.0" | ||
}, | ||
"resolutions": { | ||
"@types/react": "~18.2.0", | ||
"@types/react-dom": "~18.2.0", | ||
"react": "~18.2.0", | ||
"react-dom": "~18.2.0" | ||
}, | ||
"browser": { | ||
"fs": false, | ||
"os": false, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
tdp_core>=17.0.0,<18.0.0 | ||
tdp_publicdb@git+https://github.com/Caleydo/[email protected]#egg=tdp_publicdb | ||
tdp_core>=20.1.0,<21.0.0 |
Oops, something went wrong.