Skip to content

Commit f8b39c2

Browse files
jelemuxcesmarvin
authored andcommitted
Merge branch 'release/v6.1.1-5'
2 parents 57a9011 + 9daae17 commit f8b39c2

6 files changed

Lines changed: 19 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [v6.1.1-5] - 2026-02-24
11+
### Fixed
12+
- [#185] fix inter dogu https communication with self sigend certificates
13+
1014
## [v6.1.1-4] - 2026-02-18
1115
### Security
1216
- [#183] upgrade base image to fix CVE-2025-61732 and CVE-2025-68121

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM registry.cloudogu.com/official/base:3.23.3-4
22

33
LABEL NAME="official/redmine" \
4-
VERSION="6.1.1-4" \
4+
VERSION="6.1.1-5" \
55
maintainer="hello@cloudogu.com"
66

77
ENV USER=redmine \

docs/gui/release_notes_de.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ Technische Details zu einem Release finden Sie im zugehörigen [Changelog](https
66

77
## [Unreleased]
88

9+
## [v6.1.1-5] - 2026-02-24
10+
### Fixed
11+
- [#185] HTTPS-Kommunikation von Redmine zu einem anderen Dogu mit
12+
selbstsignierten Zertifikaten behoben
13+
914
## [v6.1.1-4] - 2026-02-18
1015
### Security
1116
- [#183] Sicherheitslücke CVE-2025-61732 und CVE-2025-68121 geschlossen

docs/gui/release_notes_en.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ Technical details on a release can be found in the corresponding [Changelog](htt
66

77
## [Unreleased]
88

9+
## [v6.1.1-5] - 2026-02-24
10+
### Fixed
11+
- [#185] Fixed inter dogu https communication with self sigend certificates
12+
913
## [v6.1.1-4] - 2026-02-18
1014
### Security
1115
* Fixed CVE-2025-61732 and CVE-2025-68121

dogu.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"Name": "official/redmine",
3-
"Version": "6.1.1-4",
3+
"Version": "6.1.1-5",
44
"DisplayName": "Redmine",
55
"Description": "Redmine is a flexible project management web application",
66
"Category": "Development Apps",

resources/startup.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,12 @@ function runMain() {
176176
doguctl state "ready"
177177
doguctl config --rm "local_state"
178178

179+
# install ca certificates, to allow communication with other dogus via https
180+
create-ca-certificates.sh
181+
179182
# Start redmine
180183
echo "Starting redmine..."
181-
exec su - redmine -c "RAILS_MASTER_KEY=\$(cat ${WORKDIR}/config/credentials/production.key) AUTO_MANAGED=true RAILS_RELATIVE_URL_ROOT=${RAILS_RELATIVE_URL_ROOT} puma -e ${RAILS_ENV} -p 3000"
184+
exec su - redmine -c "RAILS_MASTER_KEY=\$(cat ${WORKDIR}/config/credentials/production.key) AUTO_MANAGED=true RAILS_RELATIVE_URL_ROOT=${RAILS_RELATIVE_URL_ROOT} SSL_CERT_FILE=/etc/ssl/ca-certificates.crt puma -e ${RAILS_ENV} -p 3000"
182185
}
183186

184187
# make the script only run when executed, not when sourced from bats tests)

0 commit comments

Comments
 (0)