From 4203d7d79dab3793eab4fa9ae641cb850238a142 Mon Sep 17 00:00:00 2001 From: Kazuhito Suda Date: Sat, 1 Jun 2024 14:38:31 +0900 Subject: [PATCH] Bump: 0.37.0-next -> 0.38.0 --- .config.sh | 14 +++++++------- .github/pull_request_template.md | 4 ++-- CHANGELOG.md | 2 +- CONTRIBUTING.md | 2 +- README.ja.md | 6 +++--- README.md | 6 +++--- SECURITY.md | 4 ++-- VERSION | 2 +- config.sh | 14 +++++++------- docs/en/installation/index.md | 6 +++--- docs/ja/installation/index.md | 6 +++--- lets-fiware.sh | 2 +- 12 files changed, 34 insertions(+), 34 deletions(-) diff --git a/.config.sh b/.config.sh index 375fc99..9008023 100755 --- a/.config.sh +++ b/.config.sh @@ -27,7 +27,7 @@ IDM_DEBUG=false IMAGE_KEYROCK=letsfiware/fiware-idm:8.4.0 # Docker image for Postfix -IMAGE_POSTFIX=letsfiware/postfix:0.37.0-next +IMAGE_POSTFIX=letsfiware/postfix:0.38.0 # # Wilma @@ -337,7 +337,7 @@ NODE_RED_LOGGING_METRICS= NODE_RED_LOGGING_AUDIT= # Docker image for Node-RED -IMAGE_NODE_RED=letsfiware/node-red:0.37.0-next +IMAGE_NODE_RED=letsfiware/node-red:0.38.0 # # Grafana @@ -363,7 +363,7 @@ ZEPPELIN= ZEPPELIN_DEBUG= # Docker image for Zeppelin -IMAGE_ZEPPELIN=letsfiware/zeppelin:0.37.0-next +IMAGE_ZEPPELIN=letsfiware/zeppelin:0.38.0 # # Queryproxy @@ -375,7 +375,7 @@ QUERYPROXY= QUERYPROXY_LOGLEVEL=info # Docker image for Queryproxy -IMAGE_QUERYPROXY=letsfiware/queryproxy:0.37.0-next +IMAGE_QUERYPROXY=letsfiware/queryproxy:0.38.0 # # Tokenproxy @@ -387,7 +387,7 @@ TOKENPROXY_LOGLEVEL=info TOKENPROXY_VERBOSE= # Docker image for Tokenproxy -IMAGE_TOKENPROXY=letsfiware/tokenproxy:0.37.0-next +IMAGE_TOKENPROXY=letsfiware/tokenproxy:0.38.0 # # Regproxy @@ -426,7 +426,7 @@ REGPROXY_LOGLEVEL=info REGPROXY_VERBOSE=false # Docker image for Regproxy -IMAGE_REGPROXY=letsfiware/regproxy:0.37.0-next +IMAGE_REGPROXY=letsfiware/regproxy:0.38.0 # # MongoDB @@ -462,7 +462,7 @@ IMAGE_POSTGRES=postgres:15 IMAGE_NGINX=nginx:1.26 # Docker image for pwgen -IMAGE_PWGEN=letsfiware/pwgen:0.37.0-next +IMAGE_PWGEN=letsfiware/pwgen:0.38.0 # # Firewall (firewalld) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index c056534..edf8372 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -2,7 +2,7 @@ Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request. If it fixes a bug or resolves a feature request, be sure to link to that issue. Please send a pull request to -the `v0.37.0-next` branch. +the `v0.38.0-next` branch. ## Types of changes @@ -23,7 +23,7 @@ merging your code._ - \[ \] I have read the [CONTRIBUTING](https://github.com/lets-fiware/FIWARE-Big-Bang/blob/main/CONTRIBUTING.md) doc - \[ \] I have signed the [CLA](https://github.com/lets-fiware/FIWARE-Big-Bang/blob/main/FIWARE-Big-Bang-individual-cla.pdf) - \[ \] I have updated the change log (CHANGELOG.md) -- \[ \] I send this pull request to the `v0.37.0-next` branch. +- \[ \] I send this pull request to the `v0.38.0-next` branch. - \[ \] I have added tests that prove my fix is effective or that my feature works - \[ \] I have added necessary documentation (if appropriate) - \[ \] Any dependent changes have been merged and published in downstream modules diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d046ff..1e3f1d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## FIWARE Big Bang v0.37.0-next +## FIWARE Big Bang v0.38.0 - 01 June, 2024 - Update Quantumleap to 1.0.0 (#382) - Update Perseo FE to 1.30.0 (#381) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2ffb836..c44e017 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -31,7 +31,7 @@ If you don't see your idea listed, and you think it fits into the goals of this - **If your contribution is minor,** such as a typo fix, open a pull request. - **If your contribution is major,** such as a new guide, start by opening an issue first. That way, other people can weigh in on the discussion before you do any work. -- Send a pull request to the `v0.37.0-next` branch (not main branch). +- Send a pull request to the `v0.38.0-next` branch (not main branch). ## Community diff --git a/README.ja.md b/README.ja.md index 081f346..7868acc 100644 --- a/README.ja.md +++ b/README.ja.md @@ -90,13 +90,13 @@ FI-BB は FIWARE Big Bang の略名です。 FIWARE Big Bang の tar.gz ファイルをダウンロードします。 ```bash -curl -sL https://github.com/lets-fiware/FIWARE-Big-Bang/releases/download/v0.37.0/FIWARE-Big-Bang-0.37.0.tar.gz | tar zxf - +curl -sL https://github.com/lets-fiware/FIWARE-Big-Bang/releases/download/v0.38.0/FIWARE-Big-Bang-0.38.0.tar.gz | tar zxf - ``` -`FIWARE-Big-Bang-0.37.0` ディレクトリに移動します。 +`FIWARE-Big-Bang-0.38.0` ディレクトリに移動します。 ```bash -cd FIWARE-Big-Bang-0.37.0/ +cd FIWARE-Big-Bang-0.38.0/ ``` 独自のドメイン名とパブリック IP アドレスを指定して、`lets-fiware.sh` スクリプトを実行します。 diff --git a/README.md b/README.md index abb008f..8264263 100644 --- a/README.md +++ b/README.md @@ -92,13 +92,13 @@ or CNAME records. Download a tar.gz file for the FIWARE Big Bang. ```bash -curl -sL https://github.com/lets-fiware/FIWARE-Big-Bang/releases/download/v0.37.0/FIWARE-Big-Bang-0.37.0.tar.gz | tar zxf - +curl -sL https://github.com/lets-fiware/FIWARE-Big-Bang/releases/download/v0.38.0/FIWARE-Big-Bang-0.38.0.tar.gz | tar zxf - ``` -Move to the `FIWARE-Big-Bang-0.37.0` directory. +Move to the `FIWARE-Big-Bang-0.38.0` directory. ```bash -cd FIWARE-Big-Bang-0.37.0/ +cd FIWARE-Big-Bang-0.38.0/ ``` Run the `lets-fiware.sh` script with your own domain name and a public IP address. diff --git a/SECURITY.md b/SECURITY.md index 5bdaac8..ca98fa1 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,8 +4,8 @@ | Version | Supported | | -------- | ------------------ | -| 0.37.0 | :white_check_mark: | -| < 0.37.0 | :x: | +| 0.38.0 | :white_check_mark: | +| < 0.38.0 | :x: | ## Reporting a Vulnerability diff --git a/VERSION b/VERSION index 8a72219..0193f53 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -VERSION=0.37.0-next +VERSION=0.38.0 diff --git a/config.sh b/config.sh index 375fc99..9008023 100755 --- a/config.sh +++ b/config.sh @@ -27,7 +27,7 @@ IDM_DEBUG=false IMAGE_KEYROCK=letsfiware/fiware-idm:8.4.0 # Docker image for Postfix -IMAGE_POSTFIX=letsfiware/postfix:0.37.0-next +IMAGE_POSTFIX=letsfiware/postfix:0.38.0 # # Wilma @@ -337,7 +337,7 @@ NODE_RED_LOGGING_METRICS= NODE_RED_LOGGING_AUDIT= # Docker image for Node-RED -IMAGE_NODE_RED=letsfiware/node-red:0.37.0-next +IMAGE_NODE_RED=letsfiware/node-red:0.38.0 # # Grafana @@ -363,7 +363,7 @@ ZEPPELIN= ZEPPELIN_DEBUG= # Docker image for Zeppelin -IMAGE_ZEPPELIN=letsfiware/zeppelin:0.37.0-next +IMAGE_ZEPPELIN=letsfiware/zeppelin:0.38.0 # # Queryproxy @@ -375,7 +375,7 @@ QUERYPROXY= QUERYPROXY_LOGLEVEL=info # Docker image for Queryproxy -IMAGE_QUERYPROXY=letsfiware/queryproxy:0.37.0-next +IMAGE_QUERYPROXY=letsfiware/queryproxy:0.38.0 # # Tokenproxy @@ -387,7 +387,7 @@ TOKENPROXY_LOGLEVEL=info TOKENPROXY_VERBOSE= # Docker image for Tokenproxy -IMAGE_TOKENPROXY=letsfiware/tokenproxy:0.37.0-next +IMAGE_TOKENPROXY=letsfiware/tokenproxy:0.38.0 # # Regproxy @@ -426,7 +426,7 @@ REGPROXY_LOGLEVEL=info REGPROXY_VERBOSE=false # Docker image for Regproxy -IMAGE_REGPROXY=letsfiware/regproxy:0.37.0-next +IMAGE_REGPROXY=letsfiware/regproxy:0.38.0 # # MongoDB @@ -462,7 +462,7 @@ IMAGE_POSTGRES=postgres:15 IMAGE_NGINX=nginx:1.26 # Docker image for pwgen -IMAGE_PWGEN=letsfiware/pwgen:0.37.0-next +IMAGE_PWGEN=letsfiware/pwgen:0.38.0 # # Firewall (firewalld) diff --git a/docs/en/installation/index.md b/docs/en/installation/index.md index 2bd4f61..806cd36 100644 --- a/docs/en/installation/index.md +++ b/docs/en/installation/index.md @@ -92,13 +92,13 @@ or CNAME records. Download a tar.gz file for the FIWARE Big Bang. ```bash -curl -sL https://github.com/lets-fiware/FIWARE-Big-Bang/releases/download/v0.37.0/FIWARE-Big-Bang-0.37.0.tar.gz | tar zxf - +curl -sL https://github.com/lets-fiware/FIWARE-Big-Bang/releases/download/v0.38.0/FIWARE-Big-Bang-0.38.0.tar.gz | tar zxf - ``` -Move to the `FIWARE-Big-Bang-0.37.0` directory. +Move to the `FIWARE-Big-Bang-0.38.0` directory. ```bash -cd FIWARE-Big-Bang-0.37.0/ +cd FIWARE-Big-Bang-0.38.0/ ``` Run the `lets-fiware.sh` script with your own domain name and a public IP address. diff --git a/docs/ja/installation/index.md b/docs/ja/installation/index.md index cee4924..88cf588 100644 --- a/docs/ja/installation/index.md +++ b/docs/ja/installation/index.md @@ -100,13 +100,13 @@ FIWARE Big Bang によってインストールされた Web アプリケーシ FIWARE Big Bang の tar.gz ファイルをダウンロードします。 ```bash -curl -sL https://github.com/lets-fiware/FIWARE-Big-Bang/releases/download/v0.37.0/FIWARE-Big-Bang-0.37.0.tar.gz | tar zxf - +curl -sL https://github.com/lets-fiware/FIWARE-Big-Bang/releases/download/v0.38.0/FIWARE-Big-Bang-0.38.0.tar.gz | tar zxf - ``` -`FIWARE-Big-Bang-0.37.0` ディレクトリに移動します。 +`FIWARE-Big-Bang-0.38.0` ディレクトリに移動します。 ```bash -cd FIWARE-Big-Bang-0.37.0/ +cd FIWARE-Big-Bang-0.38.0/ ``` 独自のドメイン名とパブリック IP アドレスを指定して、`lets-fiware.sh` スクリプトを実行します。 diff --git a/lets-fiware.sh b/lets-fiware.sh index 5bf1f8c..b3c4429 100755 --- a/lets-fiware.sh +++ b/lets-fiware.sh @@ -28,7 +28,7 @@ set -Ceuo pipefail -VERSION=0.37.0-next +VERSION=0.38.0 # # Syslog info