-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release 10.0.0 #406
Merged
Merged
Release 10.0.0 #406
Conversation
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
Added extension point to manage database migrations
Migrate to jest for testing
…_fix Avoid raising an exception in DBMigrationManager
…are now called correctly
regExp before turning it to a string #331
Remove unused date column check
Changed CSS selector for main LineUp ranking
There is an alternative version of this file in the develop branch (with commit b9d40d0) that contains already some fixes. We copied it here now. We do not understand yet how we got an alternative history for this file in the first place.
With the merge of the refactoring branches this code snippet got lost.
…lder-revisited Re-add missing select2 placeholder of PR #382
dg-datavisyn
approved these changes
Jul 30, 2020
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Release notes
groupingChanged
LineUp event Track in provenance graph thegroupingChanged
LineUp event #385ARankingView
Disable propagation of aggregation state for child groups inARankingView
#387doubleClick
andsubmitForm
helper Improve tour documentation and adddoubleClick
andsubmitForm
helper #398Checklists
Release preparation
release-x.x.x
branch (based ondevelop
branch)release-x.x.x
into themaster
branchRelease dependencies first
In case of dependent Phovea/TDP repositories follow dependency tree from the top:
"phovea_core": "^2.3.1"
when published on npm or"phovea_core": "github:datavisyn/tdp_core#semver:^8.0.0"
for non-published repositories)phovea_server>=2.3.0,<3.0.0
when published on pipy or-e git+https://github.com/datavisyn/tdp_core.git@v8.0.0#egg=tdp_core
for non-published repositories)Update version
release: major
,release: minor
, orrelease: patch
)Publish pip release
The steps of this section are only necessary if the code is public and should be published to the pypi registry.
chmod -R o+w .
in the cloned repository directory (to provide write access to the CircleCI Linux user)rm -rf dist && rm -rf build
docker run -it -v $(pwd):/phovea circleci/python:3.7-buster-node-browsers /bin/bash
and continue inside the containercd /phovea
sudo pip install -r requirements.txt && sudo pip install -r requirements_dev.txt && sudo pip install twine
npm run dist:python
twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
caleydo-bot
Publish npm release
The steps of this section are only necessary if the code is public and should be published to the npm registry.
chmod -R o+w .
in the cloned repository directory (to provide write access to the CircleCI Linux user)rm -rf dist && rm -rf build && rm -rf node_modules/ && rm -rf package-lock.json
docker run -it -v $(pwd):/phovea circleci/node:12.13-buster-browsers /bin/bash
and continue inside the containercd /phovea
npm install
npm run build:web
to build the bundlesnpm login
as caleydo-botnpm publish
Create GitHub release
v2.3.1
)Prepeare next develop release
develop
branchmaster
branch intodevelop
(git merge origin/master
)<next patch version>-SNAPSHOT
(e.g.,2.3.1
to2.3.2-SNAPSHOT
)"phovea_core": "github:phovea/phovea_core#develop"
)-e git+https://github.com/phovea/phovea_server.git@develop#egg=phovea_server
)🏁 Finish line