Skip to content

Commit 8df2277

Browse files
committed
Merge branch 'v2.x' into phpstan-level-6
2 parents 01f5fe5 + 5dbf37a commit 8df2277

File tree

3 files changed

+153
-105
lines changed

3 files changed

+153
-105
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased](https://github.com/kbsali/php-redmine-api/compare/v2.6.0...v2.x)
8+
## [Unreleased](https://github.com/kbsali/php-redmine-api/compare/v2.7.0...v2.x)
9+
10+
## [v2.7.0](https://github.com/kbsali/php-redmine-api/compare/v2.6.0...v2.7.0) - 2024-07-10
911

1012
### Added
1113

@@ -19,6 +21,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1921
- New method `Redmine\Api\Tracker::listNames()` for listing the ids and names of all trackers.
2022
- New method `Redmine\Api\User::listLogins()` for listing the ids and logins of all users.
2123
- New method `Redmine\Api\Version::listNamesByProject()` for listing the ids and names of all versions of a project.
24+
- Support for Redmine 4.2.x was added.
25+
26+
### Changed
27+
28+
- Behaviour-driven tests are run against Redmine 4.2.10, 5.0.9 and 5.1.3.
2229

2330
### Deprecated
2431

@@ -41,6 +48,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4148
- `Redmine\Api\Version::listing()` is deprecated, use `\Redmine\Api\Version::listNamesByProject()` instead.
4249
- `Redmine\Api\Version::getIdByName()` is deprecated, use `\Redmine\Api\Version::listNamesByProject()` instead.
4350

51+
### Removed
52+
53+
- Tests and development files were removed from releases.
54+
4455
## [v2.6.0](https://github.com/kbsali/php-redmine-api/compare/v2.5.0...v2.6.0) - 2024-03-25
4556

4657
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ You can now use the `getApi()` method to create and get a specific Redmine API.
308308
<?php
309309

310310
$client->getApi('user')->list();
311-
$client->getApi('user')->listing();
311+
$client->getApi('user')->listLogins();
312312

313313
$client->getApi('issue')->create([
314314
'project_id' => 'test',

0 commit comments

Comments
 (0)