File tree 2 files changed +24
-0
lines changed
2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
28
28
29
29
- ` Redmine\Api\AbstractApi::get() ` is deprecated, use ` \Redmine\Http\HttpClient::request() ` instead.
30
30
- ` Redmine\Api\AbstractApi::post() ` is deprecated, use ` \Redmine\Http\HttpClient::request() ` instead.
31
+ - The constant ` Redmine\Api\Issue::PRIO_LOW ` is deprecated.
32
+ - The constant ` Redmine\Api\Issue::PRIO_NORMAL ` is deprecated.
33
+ - The constant ` Redmine\Api\Issue::PRIO_HIGH ` is deprecated.
34
+ - The constant ` Redmine\Api\Issue::PRIO_URGENT ` is deprecated.
35
+ - The constant ` Redmine\Api\Issue::PRIO_IMMEDIATE ` is deprecated.
31
36
32
37
## [ v2.5.0] ( https://github.com/kbsali/php-redmine-api/compare/v2.4.0...v2.5.0 ) - 2024-02-05
33
38
Original file line number Diff line number Diff line change 22
22
*/
23
23
class Issue extends AbstractApi
24
24
{
25
+ /**
26
+ * @deprecated v2.6.0 Will be removed in v3.0.0
27
+ */
25
28
public const PRIO_LOW = 1 ;
29
+
30
+ /**
31
+ * @deprecated v2.6.0 Will be removed in v3.0.0
32
+ */
26
33
public const PRIO_NORMAL = 2 ;
34
+
35
+ /**
36
+ * @deprecated v2.6.0 Will be removed in v3.0.0
37
+ */
27
38
public const PRIO_HIGH = 3 ;
39
+
40
+ /**
41
+ * @deprecated v2.6.0 Will be removed in v3.0.0
42
+ */
28
43
public const PRIO_URGENT = 4 ;
44
+
45
+ /**
46
+ * @deprecated v2.6.0 Will be removed in v3.0.0
47
+ */
29
48
public const PRIO_IMMEDIATE = 5 ;
30
49
31
50
/**
You can’t perform that action at this time.
0 commit comments