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

Commit e4bba86

Browse files
author
Ewelina Grudzień
authored
Merge pull request #685 from thehyve/rc
Release version 2.0.17.
2 parents 21ae53c + 25ca186 commit e4bba86

6 files changed

Lines changed: 115 additions & 154 deletions

File tree

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ os: linux
22
dist: xenial
33
language: node_js
44
node_js:
5-
- '12'
65
- '14'
6+
- '16'
77

88
services:
99
- xvfb
@@ -46,7 +46,7 @@ deploy:
4646
skip_cleanup: true
4747
on:
4848
all_branches: true
49-
node_js: '12'
49+
node_js: '14'
5050
condition: $TRAVIS_BRANCH =~ ^(dev|release)$
5151

5252
# For deployment to Docker Hub, configure the `DOCKER_USERNAME` and `DOCKER_PASSWORD` variables:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ gradle assemble
9292
gradle publish
9393
```
9494

95-
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).
95+
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).
9696

9797
Published snapshot bundles are available in the `snapshots` repository
9898
on https://repo.thehyve.nl with id `nl.thehyve:glowing-bear:0.0.1-SNAPSNOT:tar`.

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM nginx:alpine
22

3-
ARG GB_VERSION="2.0.16"
3+
ARG GB_VERSION="2.0.17"
44
ARG GB_SRC_REPOSITORY="releases"
55

66
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

docs/installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -504,21 +504,21 @@ Glowing Bear requires:
504504

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

514-
2. Override environment file `/var/www/glowingbear/glowing-bear-2.0.16/app/config/env.json` with the following:
514+
2. Override environment file `/var/www/glowingbear/glowing-bear-2.0.17/app/config/env.json` with the following:
515515
```json
516516
{
517517
"env": "default"
518518
}
519519
```
520520

521-
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`):
521+
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`):
522522
```json
523523
{
524524
"oidc-server-url": "CHANGE ME",
@@ -559,7 +559,7 @@ Glowing Bear requires:
559559
error_log /var/log/nginx/glowingbear.example.com:443.error.log;
560560
561561
location / {
562-
root /var/www/glowingbear/glowing-bear-2.0.16;
562+
root /var/www/glowingbear/glowing-bear-2.0.17;
563563
index index.html index.htm;
564564
try_files $uri $uri/ /index.html =404;
565565
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "glowing-bear",
3-
"version": "2.0.16",
3+
"version": "2.0.17",
44
"license": "GPL-3.0+",
55
"scripts": {
66
"ng": "ng",
@@ -43,7 +43,7 @@
4343
"fractalis": "^1.4.1",
4444
"jwt-decode": "^2.2.0",
4545
"material-design-icons": "^3.0.1",
46-
"moment": "^2.29.3",
46+
"moment": "^2.29.4",
4747
"primeicons": "^2.0.0",
4848
"primeng": "^9.1.3",
4949
"quill": "^1.3.7",
@@ -69,7 +69,7 @@
6969
"@typescript-eslint/parser": "5.17.0",
7070
"codecov": "^3.8.3",
7171
"cucumber": "^2.3.1",
72-
"cypress": "^7.7.0",
72+
"cypress": "^10.4.0",
7373
"cypress-cucumber-preprocessor": "^2.5.5",
7474
"cypress-file-upload": "^5.0.8",
7575
"deep-equal": "^2.0.1",

0 commit comments

Comments
 (0)