This repository was archived by the owner on Sep 8, 2021. It is now read-only.
Merged
Conversation
changes for release-2.2.0 (develop)
Update node-sass to ^4.12.0
Closes #18 - Update docker base images from `caleydo/phovea_python:v1.0` to `caleydo/phovea_python:v1.1` - Update CircleCI config - Update dev dependencies - Update buildPython.js
Add TS compiler flags for i18n to tsconfig.json
Remove and ignore package-lock.json
Docker image
Update to Python 3.7
Update webpack.config.js
cannot be higher due to compatiblity issues with currently used redis version
dvvanessastoiber
previously approved these changes
Jan 13, 2020
dvvanessastoiber
approved these changes
Jan 13, 2020
Closed
This file contains hidden or 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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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
Checklists
Release preparation
release-x.x.xbranch (based ondevelopbranch)release-x.x.xinto themasterbranchRelease dependencies first
In case of dependent Phovea/TDP repositories follow dependency tree from the top:
"phovea_core": "^2.3.1")phovea_server>=2.3.0,<3.0.0)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 builddocker run -it -v $(pwd):/phovea circleci/python:3.7-buster-node-browsers /bin/bashand continue inside the containercd /phoveasudo pip install -r requirements.txt && sudo pip install -r requirements_dev.txt && sudo pip install twinenpm run dist:pythontwine upload --repository-url https://upload.pypi.org/legacy/ dist/*caleydo-botPublish 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.jsondocker run -it -v $(pwd):/phovea circleci/node:12.13-buster-browsers /bin/bashand continue inside the containercd /phoveanpm installnpm run build:webto build the bundlesnpm loginas caleydo-botnpm publishCreate GitHub release
v2.3.1)Prepeare next develop release
developbranchmasterbranch intodevelop(git merge origin/master)<next patch version>-SNAPSHOT(e.g.,2.3.1to2.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