Skip to content

Commit

Permalink
Merge pull request #354 from fisuda/release/0.37.0
Browse files Browse the repository at this point in the history
Bump: 0.36.0-next -> 0.37.0
  • Loading branch information
fisuda committed Oct 9, 2023
2 parents 5d1292c + 05d992c commit dc59187
Show file tree
Hide file tree
Showing 37 changed files with 6,440 additions and 2,339 deletions.
20 changes: 10 additions & 10 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ assignees: ''
**Checklist**
_Put an `x` in the boxes that apply_

- [ ] I have run the latest release.
- [ ] I have inspeced the status of docker containers.
- [ ] I have run the sanity check described in after-installation.md.
- [ ] I have inspected all error messages.
- [ ] I have inspected the log files in the /var/log/fiware directory.
- [ ] I have run the `make collect` command.
- [ ] I have provided a Github Star to this repository.
- \[ \] I have run the latest release.
- \[ \] I have inspeced the status of docker containers.
- \[ \] I have run the sanity check described in after-installation.md.
- \[ \] I have inspected all error messages.
- \[ \] I have inspected the log files in the /var/log/fiware directory.
- \[ \] I have run the `make collect` command.
- \[ \] I have provided a Github Star to this repository.

**Describe the bug**
A clear and concise description of what the bug is.
Expand All @@ -35,9 +35,9 @@ A clear and concise description of what you expected to happen.
If applicable, add screenshots to help explain your problem.

**Server (please complete the following information):**
- OS and OS version:
- Docker version:
- Docker Compose version:
- OS and OS version:
- Docker version:
- Docker Compose version:

**Additional context**
Add any other context about the problem here.
Expand Down
16 changes: 8 additions & 8 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@ A clear and concise description of what you want to happen.

**Describe why you need this feature**

- [ ] To approach a new use case.
- [ ] To integrate a new Generic Enabler / othe open source component.
- [ ] To improve or simplify an scenario.
- [ ] Other reason (describe it)
- \[ \] To approach a new use case.
- \[ \] To integrate a new Generic Enabler / othe open source component.
- \[ \] To improve or simplify an scenario.
- \[ \] Other reason (describe it)

**Additional information**

Add any other information, diagrams or screenshots about the feature request here.

**Do you have the intention to implement the solution**

- [ ] Yes, I have the knowledge to implement this new feature.
- [ ] Yes, but I will need help.
- [ ] No, I do not have the skills.
- \[ \] Yes, I have the knowledge to implement this new feature.
- \[ \] Yes, but I will need help.
- \[ \] No, I do not have the skills.

**Other information**

- [ ] I have provided a Github Star to this repository.
- \[ \] I have provided a Github Star to this repository.
26 changes: 13 additions & 13 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,31 @@

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.36.0-next` branch.
the `v0.37.0-next` branch.

## Types of changes

What types of changes does your code introduce to the project: _Put an `x` in the boxes that apply_

- [ ] Bugfix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] Update docker image version of FIWARE GE.
- [ ] Update only documentation, not any source code.
- \[ \] Bugfix (non-breaking change which fixes an issue)
- \[ \] New feature (non-breaking change which adds functionality)
- \[ \] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- \[ \] Update docker image version of FIWARE GE.
- \[ \] Update only documentation, not any source code.

## Checklist

_Put an `x` in the boxes that apply. You can also fill these out after creating the PR. If you're unsure about any of
them, don't hesitate to ask. We're here to help! This is simply a reminder of what we are going to look for before
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.36.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
- \[ \] 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 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

## Further comments

Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
on:
pull_request_target:
branches: [main]
types: [closed]

jobs:
create-release-tag:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO: ${{ github.repository }}
TZ: 'Asia/Tokyo'
steps:
- name: Git checkout
uses: actions/checkout@v3

- name: Run release
if: github.event.pull_request.merged == true
run: ./maintenance/release.sh
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,6 @@ ngsi-go-token-cache.json
!extras/node-red/docker-compose.yml
*.jar
setup_ngsi_go.sh
*.tar.gz
*.tgz
node_modules/
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## FIWARE Big Bang v0.37.0 - 09 October, 2023

- Fix maintenance script (#353)
- Update node.js dependencies (#352)
- Fix basic authorization for Wilma (#351)
- Fix warnings by lint (#350)
- Update IoT Agent for JSON to 2.4.2 (#349)
- Update IoT Agent for UltraLight to 2.4.2 (#348)
- FIX release action (#347)
- Improve release action (#346)
- ADD release action (#345)
- Update IoT Agent for JSON to 2.3.0 (#344)
- Update IoT Agent for UltraLight to 2.3.0 (#343)
- Update Node-RED to 3.1.0 (#342)
- Fix Makefile overwrite (#341)
- Support basic authorization for Wilma (#340)
- Update Orion-LD to 1.4.0 (#339)

## FIWARE Big Bang v0.36.0 - 16 August, 2023

- Switch yum to dnf, the CentOS package manager (#336)
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.36.0-next` branch (not main branch).
- Send a pull request to the `v0.37.0-next` branch (not main branch).

## Community

Expand Down
6 changes: 3 additions & 3 deletions README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,13 @@ FI-BB は FIWARE Big Bang の略名です。
FIWARE Big Bang の tar.gz ファイルをダウンロードします。

```bash
curl -sL https://github.com/lets-fiware/FIWARE-Big-Bang/archive/refs/tags/v0.36.0.tar.gz | tar zxf -
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 -
```

`FIWARE-Big-Bang-0.36.0` ディレクトリに移動します。
`FIWARE-Big-Bang-0.37.0` ディレクトリに移動します。

```bash
cd FIWARE-Big-Bang-0.36.0/
cd FIWARE-Big-Bang-0.37.0/
```

独自のドメイン名とパブリック IP アドレスを指定して、`lets-fiware.sh` スクリプトを実行します。
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,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/archive/refs/tags/v0.36.0.tar.gz | tar zxf -
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 -
```

Move to the `FIWARE-Big-Bang-0.36.0` directory.
Move to the `FIWARE-Big-Bang-0.37.0` directory.

```bash
cd FIWARE-Big-Bang-0.36.0/
cd FIWARE-Big-Bang-0.37.0/
```

Run the `lets-fiware.sh` script with your own domain name and a public IP address.
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

| Version | Supported |
| -------- | ------------------ |
| 0.36.0 | :white_check_mark: |
| < 0.36.0 | :x: |
| 0.37.0 | :white_check_mark: |
| < 0.37.0 | :x: |

## Reporting a Vulnerability

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION=0.36.0
VERSION=0.37.0
24 changes: 14 additions & 10 deletions config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,15 @@ IDM_DEBUG=false
IMAGE_KEYROCK=letsfiware/fiware-idm:8.4.0

# Docker image for Postfix
IMAGE_POSTFIX=letsfiware/postfix:0.36.0
IMAGE_POSTFIX=letsfiware/postfix:0.37.0

#
# Wilma
#
#
# Enable basic authorization. (true or false) Default: false
WILMA_AUTH_ENABLED=

# Docker image for Wilma
IMAGE_WILMA=letsfiware/fiware-pep-proxy:8.4.0

Expand Down Expand Up @@ -63,7 +67,7 @@ ORION_LD_MULTI_SERVICE=
ORION_LD_DISABLE_FILE_LOG=

# Docker image for Orion
IMAGE_ORION_LD=quay.io/fiware/orion-ld:1.3.0
IMAGE_ORION_LD=quay.io/fiware/orion-ld:1.4.0

#
# Mintaka
Expand Down Expand Up @@ -282,7 +286,7 @@ IOTA_UL_AUTOCAST=true
IOTA_UL_LOG_LEVEL=INFO

# Docker image for IoT Agent for UltraLight 2.0
IMAGE_IOTAGENT_UL=telefonicaiot/iotagent-ul:2.2.0
IMAGE_IOTAGENT_UL=telefonicaiot/iotagent-ul:2.4.2

#
# IoT Agent for JSON
Expand All @@ -298,7 +302,7 @@ IOTA_JSON_AUTOCAST=true
IOTA_JSON_LOG_LEVEL=INFO

# Docker image for IoT Agent for JSON
IMAGE_IOTAGENT_JSON=telefonicaiot/iotagent-json:2.2.0
IMAGE_IOTAGENT_JSON=telefonicaiot/iotagent-json:2.4.2

#
# Node-RED
Expand Down Expand Up @@ -328,7 +332,7 @@ NODE_RED_LOGGING_METRICS=
NODE_RED_LOGGING_AUDIT=

# Docker image for Node-RED
IMAGE_NODE_RED=letsfiware/node-red:0.36.0
IMAGE_NODE_RED=letsfiware/node-red:0.37.0

#
# Grafana
Expand All @@ -354,7 +358,7 @@ ZEPPELIN=
ZEPPELIN_DEBUG=

# Docker image for Zeppelin
IMAGE_ZEPPELIN=letsfiware/zeppelin:0.36.0
IMAGE_ZEPPELIN=letsfiware/zeppelin:0.37.0

#
# Queryproxy
Expand All @@ -366,7 +370,7 @@ QUERYPROXY=
QUERYPROXY_LOGLEVEL=info

# Docker image for Queryproxy
IMAGE_QUERYPROXY=letsfiware/queryproxy:0.36.0
IMAGE_QUERYPROXY=letsfiware/queryproxy:0.37.0

#
# Tokenproxy
Expand All @@ -378,7 +382,7 @@ TOKENPROXY_LOGLEVEL=info
TOKENPROXY_VERBOSE=

# Docker image for Tokenproxy
IMAGE_TOKENPROXY=letsfiware/tokenproxy:0.36.0
IMAGE_TOKENPROXY=letsfiware/tokenproxy:0.37.0

#
# Regproxy
Expand Down Expand Up @@ -417,7 +421,7 @@ REGPROXY_LOGLEVEL=info
REGPROXY_VERBOSE=false

# Docker image for Regproxy
IMAGE_REGPROXY=letsfiware/regproxy:0.36.0
IMAGE_REGPROXY=letsfiware/regproxy:0.37.0

#
# MongoDB
Expand Down Expand Up @@ -453,7 +457,7 @@ IMAGE_POSTGRES=postgres:15
IMAGE_NGINX=nginx:1.25

# Docker image for pwgen
IMAGE_PWGEN=letsfiware/pwgen:0.36.0
IMAGE_PWGEN=letsfiware/pwgen:0.37.0

#
# Firewall (firewalld)
Expand Down
6 changes: 3 additions & 3 deletions docs/en/installation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,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/archive/refs/tags/v0.36.0.tar.gz | tar zxf -
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 -
```

Move to the `FIWARE-Big-Bang-0.36.0` directory.
Move to the `FIWARE-Big-Bang-0.37.0` directory.

```bash
cd FIWARE-Big-Bang-0.36.0/
cd FIWARE-Big-Bang-0.37.0/
```

Run the `lets-fiware.sh` script with your own domain name and a public IP address.
Expand Down
17 changes: 9 additions & 8 deletions docs/en/installation/keyrock.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,15 @@

You can specify configurations by editing the `config.sh` file.

| Variable name | Description | Default value |
| ----------------- | ---------------------------------------------------------------- | ------------------------------- |
| KEYROCK | A sub-domain name of Keyrock (Required) | keyrock |
| IDM\_ADMIN\_USER | A name of an admin user for Keyrock | admin |
| IDM\_ADMIN\_EMAIL | An email address of an admin user for Keyrock | IDM\_ADMIN\_USER @ DOMAIN\_NAME |
| IDM\_ADMIN\_PASS | A password of an admin user for Keyrock | (Automatically generated) |
| IDM\_DEBUG | Use logging for Keyrock (true or false) | false |
| POSTFIX | Use Postfix (local delivery). (true or false) | false |
| Variable name | Description | Default value |
| -------------------- | ------------------------------------------------------------------------ | ------------------------------- |
| KEYROCK | A sub-domain name of Keyrock (Required) | keyrock |
| IDM\_ADMIN\_USER | A name of an admin user for Keyrock | admin |
| IDM\_ADMIN\_EMAIL | An email address of an admin user for Keyrock | IDM\_ADMIN\_USER @ DOMAIN\_NAME |
| IDM\_ADMIN\_PASS | A password of an admin user for Keyrock | (Automatically generated) |
| IDM\_DEBUG | Use logging for Keyrock (true or false) | false |
| POSTFIX | Use Postfix (local delivery). (true or false) | false |
| WILMA\_AUTH\_ENABLED | Whether to enable basic authentication on the PEP proxy. (true or false) | false |

## How to setup

Expand Down
Loading

0 comments on commit dc59187

Please sign in to comment.