Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
titleCreate release branch
# Go to /streampipes-backendservice-core/src/main/resources/openapi.yaml in dev

# adapt the streampipes version 
openAPI:
  info:
    version: '0.7091.0'


Checkout dev and change the aforementioned versions to the next release version (e.g., 0.67.0-SNAPSHOT)

...

In case modules are changed, update the docker-compose files in incubator-streampipes and incubator-streampipes-extensions streampipes project by adding/modifying/removing defined services.

...

  • JDK (starting from v0.70, JDK 11 17 is the new minimum java version)
  • Maven (tested with 3.6)
  • NodeJS + NPM (tested with v12+/ v6+)
  • Docker + Docker-Compose

...

First, create a new folder and checkout the release branches of incubator- streampipes:

Code Block
languagebash
titleCheckout release branches
# Clone & checkout a clean copy from the release branch

mkdir test-streampipes-rc && cd test-streampipes-rc
git clone git@github.com:apache/incubator-streampipes.git

# ALTERNATIVE: git clone https://github.com/apache/incubator-streampipes.git 

cd incubator-streampipes
# Change VERSION to the current release branch
git checkout rel/VERSION

...