You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13
13
- New method `Redmine\Api\CustomField::fromHttpClient()` for creating the class.
14
14
- New method `Redmine\Api\Group::fromHttpClient()` for creating the class.
15
15
- New method `Redmine\Api\Issue::fromHttpClient()` for creating the class.
16
+
- New method `Redmine\Api\IssueCategory::fromHttpClient()` for creating the class.
16
17
- Add support for PHP 8.5
17
18
- Add support for Redmine 6.1.
18
19
@@ -30,6 +31,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
30
31
- Extending `Redmine\Api\Group` is deprecated and will be set to final in future, create a wrapper class instead.
31
32
-`Redmine\Api\Issue::__construct()` is deprecated and will be set to private in future, use `\Redmine\Api\Issue::fromHttpClient()` instead.
32
33
- Extending `Redmine\Api\Issue` is deprecated and will be set to final in future, create a wrapper class instead.
34
+
-`Redmine\Api\IssueCategory::__construct()` is deprecated and will be set to private in future, use `\Redmine\Api\IssueCategory::fromHttpClient()` instead.
35
+
- Extending `Redmine\Api\IssueCategory` is deprecated and will be set to final in future, create a wrapper class instead.
$className = (new \ReflectionClass($this))->isAnonymous() ? '' : ' in `' . static::class . '`';
60
+
@trigger_error('Class `' . self::class . '` will declared as final in v3.0.0, stop extending it' . $className . '.', E_USER_DEPRECATED);
61
+
} else {
62
+
@trigger_error('Method `' . __METHOD__ . '()` is deprecated since v2.9.0 and will declared as private in v3.0.0, use `' . self::class . '::fromHttpClient()` instead.', E_USER_DEPRECATED);
0 commit comments