Skip to content

Commit 5ccb1cd

Browse files
committed
Drop support for redmine 5.0
1 parent 757b338 commit 5ccb1cd

File tree

5 files changed

+6
-26
lines changed

5 files changed

+6
-26
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414

1515
### Changed
1616

17-
- Behaviour-driven tests are run against Redmine 6.0.7, 5.1.10, 5.0.14.
17+
- Behaviour-driven tests are run against Redmine 6.1.0, 6.0.7, 5.1.10.
18+
19+
### Removed
20+
21+
- Drop support for Redmine 5.0.x.
1822

1923
## [v2.8.0](https://github.com/kbsali/php-redmine-api/compare/v2.7.0...v2.8.0) - 2025-05-30
2024

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ that receive security updates.
4141
- Redmine 6.1.x
4242
- Redmine 6.0.x
4343
- Redmine 5.1.x
44-
- Redmine 5.0.x
4544

4645
Nevertheless, you can also use this library for all older Redmine versions.
4746
In this case, however, be aware that some features might not be supported by your Redmine server.

composer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@
5555
"Composer\\Config::disableProcessTimeout",
5656
"@behat --format=progress --suite=redmine_6_1",
5757
"@behat --format=progress --suite=redmine_6_0",
58-
"@behat --format=progress --suite=redmine_5_1",
59-
"@behat --format=progress --suite=redmine_5_0"
58+
"@behat --format=progress --suite=redmine_5_1"
6059
],
6160
"behat": "behat --config tests/Behat/behat.yml",
6261
"codestyle": "php-cs-fixer fix",

docker-compose.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,3 @@ services:
6363
volumes:
6464
- ./.docker/redmine-50110_data/files:/usr/src/redmine/files
6565
- ./.docker/redmine-50110_data/sqlite:/usr/src/redmine/sqlite
66-
67-
redmine-5-0:
68-
image: redmine:5.0.12 # There is no tag for 5.0.14 on Docker hub
69-
user: "1000:1000"
70-
ports:
71-
- "5050:3000"
72-
environment:
73-
REDMINE_SECRET_KEY_BASE: supersecretkey
74-
REDMINE_PLUGINS_MIGRATE: true
75-
volumes:
76-
- ./.docker/redmine-50014_data/files:/usr/src/redmine/files
77-
- ./.docker/redmine-50014_data/sqlite:/usr/src/redmine/sqlite

tests/Behat/behat.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,6 @@ default:
1818
- Redmine\Tests\Behat\Bootstrap\FeatureContext:
1919
redmineVersion: '5.1.10'
2020
rootPath: '%paths.base%/../../.docker'
21-
redmine_5_0:
22-
contexts:
23-
- Redmine\Tests\Behat\Bootstrap\FeatureContext:
24-
redmineVersion: '5.0.14'
25-
rootPath: '%paths.base%/../../.docker'
2621

2722
github-actions:
2823
suites:
@@ -41,8 +36,3 @@ github-actions:
4136
- Redmine\Tests\Behat\Bootstrap\FeatureContext:
4237
redmineVersion: '5.1.10'
4338
rootPath: '/home/runner/work/_temp'
44-
redmine_5_0:
45-
contexts:
46-
- Redmine\Tests\Behat\Bootstrap\FeatureContext:
47-
redmineVersion: '5.0.14'
48-
rootPath: '/home/runner/work/_temp'

0 commit comments

Comments
 (0)