Skip to content
This repository has been archived by the owner on Dec 18, 2023. It is now read-only.

Commit

Permalink
Merge pull request #685 from thehyve/rc
Browse files Browse the repository at this point in the history
Release version 2.0.17.
  • Loading branch information
ewelinagr authored Aug 17, 2022
2 parents 21ae53c + 25ca186 commit e4bba86
Show file tree
Hide file tree
Showing 6 changed files with 115 additions and 154 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ os: linux
dist: xenial
language: node_js
node_js:
- '12'
- '14'
- '16'

services:
- xvfb
Expand Down Expand Up @@ -46,7 +46,7 @@ deploy:
skip_cleanup: true
on:
all_branches: true
node_js: '12'
node_js: '14'
condition: $TRAVIS_BRANCH =~ ^(dev|release)$

# For deployment to Docker Hub, configure the `DOCKER_USERNAME` and `DOCKER_PASSWORD` variables:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ gradle assemble
gradle publish
```

The latest release is [glowing-bear-2.0.16.tar](https://repo.thehyve.nl/service/local/repositories/releases/content/nl/thehyve/glowing-bear/2.0.16/glowing-bear-2.0.16.tar).
The latest release is [glowing-bear-2.0.17.tar](https://repo.thehyve.nl/service/local/repositories/releases/content/nl/thehyve/glowing-bear/2.0.17/glowing-bear-2.0.17.tar).

Published snapshot bundles are available in the `snapshots` repository
on https://repo.thehyve.nl with id `nl.thehyve:glowing-bear:0.0.1-SNAPSNOT:tar`.
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM nginx:alpine

ARG GB_VERSION="2.0.16"
ARG GB_VERSION="2.0.17"
ARG GB_SRC_REPOSITORY="releases"

ENV GB_SRC_URL https://repo.thehyve.nl/service/local/artifact/maven/redirect?r=${GB_SRC_REPOSITORY}&g=nl.thehyve&a=glowing-bear&v=${GB_VERSION}&p=tar
Expand Down
8 changes: 4 additions & 4 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -504,21 +504,21 @@ Glowing Bear requires:

1. Download the application and extract the contents in the `/var/www/glowingbear` directory:
```shell
GLOWING_BEAR_VERSION=2.0.16
GLOWING_BEAR_VERSION=2.0.17
curl -f -L -o "glowing-bear-${GLOWING_BEAR_VERSION}.tar" \
"https://repo.thehyve.nl/service/local/repositories/releases/content/nl/thehyve/glowing-bear/${GLOWING_BEAR_VERSION}/glowing-bear-${GLOWING_BEAR_VERSION}.tar"
sudo mkdir -p /var/www/glowingbear
sudo tar xf glowing-bear-${GLOWING_BEAR_VERSION}.tar -C /var/www/glowingbear
```

2. Override environment file `/var/www/glowingbear/glowing-bear-2.0.16/app/config/env.json` with the following:
2. Override environment file `/var/www/glowingbear/glowing-bear-2.0.17/app/config/env.json` with the following:
```json
{
"env": "default"
}
```

3. Edit configuration file `/var/www/glowingbear/glowing-bear-2.0.16/app/config/config.default.json` (overwrites the default config file in the `tar`):
3. Edit configuration file `/var/www/glowingbear/glowing-bear-2.0.17/app/config/config.default.json` (overwrites the default config file in the `tar`):
```json
{
"oidc-server-url": "CHANGE ME",
Expand Down Expand Up @@ -559,7 +559,7 @@ Glowing Bear requires:
error_log /var/log/nginx/glowingbear.example.com:443.error.log;
location / {
root /var/www/glowingbear/glowing-bear-2.0.16;
root /var/www/glowingbear/glowing-bear-2.0.17;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
}
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "glowing-bear",
"version": "2.0.16",
"version": "2.0.17",
"license": "GPL-3.0+",
"scripts": {
"ng": "ng",
Expand Down Expand Up @@ -43,7 +43,7 @@
"fractalis": "^1.4.1",
"jwt-decode": "^2.2.0",
"material-design-icons": "^3.0.1",
"moment": "^2.29.3",
"moment": "^2.29.4",
"primeicons": "^2.0.0",
"primeng": "^9.1.3",
"quill": "^1.3.7",
Expand All @@ -69,7 +69,7 @@
"@typescript-eslint/parser": "5.17.0",
"codecov": "^3.8.3",
"cucumber": "^2.3.1",
"cypress": "^7.7.0",
"cypress": "^10.4.0",
"cypress-cucumber-preprocessor": "^2.5.5",
"cypress-file-upload": "^5.0.8",
"deep-equal": "^2.0.1",
Expand Down
Loading

0 comments on commit e4bba86

Please sign in to comment.