Skip to content

Commit

Permalink
v2.87.0 augen shared/utils shared/types server client front container…
Browse files Browse the repository at this point in the history
…/server container/full
  • Loading branch information
PPTeam CI authored and PPTeam CI committed Nov 19, 2024
1 parent cc30d84 commit 226c5b9
Show file tree
Hide file tree
Showing 11 changed files with 47 additions and 47 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

## Unreleased
## 2.87.0

Features:
- Box plot: new features include tooltips for the label and outliers, dark mode, list samples (when available), and hide/unhide plots.
Expand Down
2 changes: 1 addition & 1 deletion augen/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sjcrh/augen",
"version": "2.86.0",
"version": "2.87.0",
"description": "Automatic generator of server routes, unit tests, and API documentation",
"type": "module",
"main": "src/augen.js",
Expand Down
6 changes: 3 additions & 3 deletions client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sjcrh/proteinpaint-client",
"version": "2.86.0",
"version": "2.87.0",
"description": "a genomics visualization tool for exploring a cohort's genotype and phenotype data",
"type": "module",
"main": "dist/app.js",
Expand Down Expand Up @@ -51,8 +51,8 @@
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.21.4",
"@sjcrh/proteinpaint-shared": "2.86.0",
"@sjcrh/proteinpaint-types": "2.86.0",
"@sjcrh/proteinpaint-shared": "2.87.0",
"@sjcrh/proteinpaint-types": "2.87.0",
"@types/d3": "^7.4.3",
"@types/openseadragon": "^3.0.10",
"@typescript-eslint/eslint-plugin": "^8.13.0",
Expand Down
6 changes: 3 additions & 3 deletions container/full/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"private": true,
"name": "@sjcrh/ppfull",
"version": "2.86.1",
"version": "2.87.0",
"bin": "app-full.js",
"scripts": {
"release": ""
},
"dependencies": {
"@sjcrh/proteinpaint-front": "2.86.0",
"@sjcrh/proteinpaint-server": "2.86.1"
"@sjcrh/proteinpaint-front": "2.87.0",
"@sjcrh/proteinpaint-server": "2.87.0"
},
"files": [
"app-full.js"
Expand Down
4 changes: 2 additions & 2 deletions container/server/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"private": true,
"name": "@sjcrh/ppserver",
"version": "2.86.1",
"version": "2.87.0",
"bin": "app-server.js",
"scripts": {
"release": ""
},
"dependencies": {
"@sjcrh/proteinpaint-server": "2.86.1"
"@sjcrh/proteinpaint-server": "2.87.0"
},
"files": [
"app-server.js"
Expand Down
4 changes: 2 additions & 2 deletions front/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sjcrh/proteinpaint-front",
"version": "2.86.0",
"version": "2.87.0",
"browser": "src/app.js",
"main": "src/index.js",
"bin": "init.js",
Expand All @@ -12,7 +12,7 @@
"test:integration": "echo 'TODO: front integration tests'"
},
"devDependencies": {
"@sjcrh/proteinpaint-client": "2.86.0",
"@sjcrh/proteinpaint-client": "2.87.0",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^3.0.0",
Expand Down
56 changes: 28 additions & 28 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.86.1",
"version": "2.87.0",
"name": "@sjcrh/proteinpaint",
"description": "a genomics visualization tool for exploring a cohort's genotype and phenotype data",
"main": "server/main.js",
Expand Down
8 changes: 4 additions & 4 deletions server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sjcrh/proteinpaint-server",
"version": "2.86.1",
"version": "2.87.0",
"type": "module",
"description": "a genomics visualization tool for exploring a cohort's genotype and phenotype data",
"main": "src/app.js",
Expand Down Expand Up @@ -58,10 +58,10 @@
"typescript": "^5.6.3"
},
"dependencies": {
"@sjcrh/augen": "2.86.0",
"@sjcrh/augen": "2.87.0",
"@sjcrh/proteinpaint-rust": "2.84.0",
"@sjcrh/proteinpaint-shared": "2.86.0",
"@sjcrh/proteinpaint-types": "2.86.0",
"@sjcrh/proteinpaint-shared": "2.87.0",
"@sjcrh/proteinpaint-types": "2.87.0",
"better-sqlite3": "^9.4.1",
"body-parser": "^1.15.2",
"canvas": "~2.11.2",
Expand Down
2 changes: 1 addition & 1 deletion shared/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sjcrh/proteinpaint-types",
"version": "2.86.0",
"version": "2.87.0",
"type": "module",
"description": "Shared type definitions between ProteinPaint server and client code",
"main": "src/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion shared/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sjcrh/proteinpaint-shared",
"version": "2.86.0",
"version": "2.87.0",
"description": "ProteinPaint code that is shared between server and client-side workspaces",
"type": "module",
"main": "src/index.js",
Expand Down

0 comments on commit 226c5b9

Please sign in to comment.