Skip to content
This repository has been archived by the owner on Jan 20, 2025. It is now read-only.

Release MIW 0.3.0 #190

Merged
merged 74 commits into from
Dec 7, 2023
Merged

Release MIW 0.3.0 #190

merged 74 commits into from
Dec 7, 2023

Conversation

borisrizov-zf
Copy link
Contributor

@borisrizov-zf borisrizov-zf commented Dec 6, 2023

Description

This PR will merge all changes necessary for the 0.3.0 release which will be included in the overall 23.12 release.

Pre-review checks

Please ensure to do as many of the following checks as possible, before asking for committer review:

pmoscode and others added 30 commits November 7, 2023 10:35
…R and repo

Separate the one workflow into two single ones to avoid pipeline failure during report generation because of missing permissions.
At the same time make all necessary/dependent changes to gradle.build and the Taskfile tasks.
ci: fix workflow "Test application (test + coverage)"
# [0.2.0-develop.3](v0.2.0-develop.2...v0.2.0-develop.3) (2023-11-22)

### Bug Fixes

* **ci:** separate workflow "Test application (test + coverage)" for PR and repo ([6de785b](6de785b))
* **dev:** add file extension and refactor called method in gradle ([6811a8b](6811a8b))
# [0.2.0-develop.4](v0.2.0-develop.3...v0.2.0-develop.4) (2023-11-22)

### Features

* add tpl to miw ingress ([#143](#143)) ([c56d133](c56d133))
* feat(helm): Make liveness & readiness probes configurable

* Add possibility to disable probes

* Update chart README.md

* add examples to ingress config

* Bump chart version

* Update README.md

* Add workflow step for checking chart readme changed

* Fix readme generation

* Add some names to the worflow steps

* Rename workflow

* Update chart README.md
# [0.2.0-develop.5](v0.2.0-develop.4...v0.2.0-develop.5) (2023-11-22)

### Features

* **helm:** Make liveness & readiness probes configurable ([#99](#99)) ([252eed1](252eed1))
* feat: add initContainers

* chore: add initContainer description

* fix: only template initContainer if present

* chore: use tpl instead common to render initContianers

As from pmoscode suggested the tpl function can be used with toYaml to avoid the Bitnami common template function.

---------

Co-authored-by: Dominik Pinsel <[email protected]>
# [0.2.0-develop.6](v0.2.0-develop.5...v0.2.0-develop.6) (2023-11-23)

### Features

* add initContainers ([#142](#142)) ([7317800](7317800))
Additions and Changes:
- add pgAdmin to docker-compose.yaml (incl. mounts)
- preconfigure pgAdmin DB server
- add tem. files to gitignore
- update README.md
- update Taskfile tasks for linux and macos
- update env.* environment files
- Match Postgresql version to the version of the Helm chart (14.5)
# [0.2.0-develop.7](v0.2.0-develop.6...v0.2.0-develop.7) (2023-11-23)

### Features

* **dev:** add pgAdmin to local dev env ([#144](#144)) ([d7f2bbe](d7f2bbe))
Make SECURITY.md reflect current example of TRG 7.01 pointing to the GitHub Security Tab instead of Eclipse
Update README.md, introduce INSTALL.md
# [0.2.0-develop.8](v0.2.0-develop.7...v0.2.0-develop.8) (2023-11-28)

### Bug Fixes

* **dev:** add important notes to INSTALL.md ([a7c1b71](a7c1b71))
* **dev:** adjust port to request against keycloak ([4a3d317](4a3d317))
* **dev:** small adjustment to INSTALL.md ([59b6df4](59b6df4))

### Features

* **devel:** make application port dynamic (parameter) ([8816c89](8816c89))
* **dev:** update README.md and introduce INSTALL.md for usage ([54b8d4a](54b8d4a))
* **readme:** add "usage" section [WIP] ([6919b71](6919b71))
@@ -63,10 +63,30 @@
networks:
- miw-net

pgadmin:
image: dpage/pgadmin4
ports:

Check warning

Code scanning / KICS

Container Traffic Not Bound To Host Interface

Docker compose file doesn't have 'ports' attribute bound to a specific host interface
@@ -63,10 +63,30 @@
networks:
- miw-net

pgadmin:

Check warning

Code scanning / KICS

Healthcheck Not Set

Healthcheck is not defined.
@@ -63,10 +63,30 @@
networks:
- miw-net

pgadmin:

Check warning

Code scanning / KICS

Host Namespace is Shared

There is no pid mode declared
@@ -63,10 +63,30 @@
networks:
- miw-net

pgadmin:

Check warning

Code scanning / KICS

Memory Not Limited

'deploy' is not defined
@@ -63,10 +63,30 @@
networks:
- miw-net

pgadmin:
image: dpage/pgadmin4
ports:

Check warning

Code scanning / KICS

Privileged Ports Mapped In Container

Docker compose file has 'ports' attribute set to privileged ports (<1024).
@@ -63,10 +63,30 @@
networks:
- miw-net

pgadmin:

Check warning

Code scanning / KICS

Security Opt Not Set

Docker compose file does not have 'security_opt' attribute
@@ -63,10 +63,30 @@
networks:
- miw-net

pgadmin:

Check notice

Code scanning / KICS

Container Capabilities Unrestricted

Docker compose file doesn't have 'cap_drop' attribute. Make sure your container only has necessary capabilities.
@@ -63,10 +63,30 @@
networks:
- miw-net

pgadmin:

Check notice

Code scanning / KICS

Cpus Not Limited

'deploy' is not defined
@borisrizov-zf borisrizov-zf self-assigned this Dec 7, 2023
@borisrizov-zf borisrizov-zf marked this pull request as ready for review December 7, 2023 06:28
# [0.3.0-develop.1](v0.2.0...v0.3.0-develop.1) (2023-12-07)

### Bug Fixes

* **ci:** separate workflow "Test application (test + coverage)" for PR and repo ([6de785b](6de785b))
* **dev:** add file extension and refactor called method in gradle ([6811a8b](6811a8b))
* **dev:** add important notes to INSTALL.md ([a7c1b71](a7c1b71))
* **dev:** adjust port to request against keycloak ([4a3d317](4a3d317))
* **dev:** small adjustment to INSTALL.md ([59b6df4](59b6df4))
* manually change the Helm chart version ([1ad16ed](1ad16ed))
* method name from the cx-ssi-lib has been renamed ([b46d084](b46d084))
* remove filter for org.eclipse packages ([af9a9e5](af9a9e5))

### Features

* add initContainers ([#142](#142)) ([7317800](7317800))
* add tpl to miw ingress ([#143](#143)) ([c56d133](c56d133))
* **dev:** add pgAdmin to local dev env ([#144](#144)) ([d7f2bbe](d7f2bbe))
* **devel:** make application port dynamic (parameter) ([8816c89](8816c89))
* **dev:** update README.md and introduce INSTALL.md for usage ([54b8d4a](54b8d4a))
* **helm:** Make liveness & readiness probes configurable ([#99](#99)) ([252eed1](252eed1))
* **readme:** add "usage" section [WIP] ([6919b71](6919b71))
Copy link

sonarqubecloud bot commented Dec 7, 2023

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
0.0% 0.0% Duplication

Copy link

github-actions bot commented Dec 7, 2023

@borisrizov-zf borisrizov-zf merged commit 303edb7 into main Dec 7, 2023
3 checks passed
borisrizov-zf added a commit that referenced this pull request Dec 7, 2023
borisrizov-zf added a commit that referenced this pull request Dec 7, 2023
github-actions bot pushed a commit that referenced this pull request Dec 7, 2023
## [0.2.1](v0.2.0...v0.2.1) (2023-12-07)

### Reverts

* Revert "Release MIW 0.3.0 (#190)" (#193) ([28978a8](28978a8)), closes [#190](#190) [#193](#193)
Copy link

github-actions bot commented Dec 7, 2023

🎉 This PR is included in version 0.2.1 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

@borisrizov-zf borisrizov-zf mentioned this pull request Dec 7, 2023
2 tasks
github-actions bot pushed a commit that referenced this pull request Dec 7, 2023
# [0.3.0-develop.3](v0.3.0-develop.2...v0.3.0-develop.3) (2023-12-07)

### Reverts

* Revert "Release MIW 0.3.0 (#190)" (#193) ([28978a8](28978a8)), closes [#190](#190) [#193](#193)
Copy link

github-actions bot commented Dec 7, 2023

🎉 This PR is included in version 0.3.0-develop.3 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

Copy link

github-actions bot commented Dec 7, 2023

🎉 This PR is included in version 0.3.0 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants