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
+44-21Lines changed: 44 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,35 +19,55 @@ This project adheres to [Semantic Versioning](https://semver.org/).
19
19
- Allow getting issue count back from `Walker` class by [@aik099].
20
20
- Setup `.gitattributes` for better `CHANGELOG.md` merging by [@glensc].
21
21
- Added `Api::addWorklog` and `Api::deleteWorklog` calls for more control over the work logs [@dumconstantin] and [@aik099].
22
+
- Added `Api::getWorklogs` call for getting issue work logs by [@camspanos] (#37).
23
+
- Added `Api::createRemotelink` call for linking issue with its remote applications by [@elmi82] (#43).
24
+
- Added `Api::findVersionByName` call for getting project version information by its name by [@jpastoor] (#82).
25
+
- Added `Api::updateVersion` call for editing version by [@jpastoor] (#82).
26
+
- Added `Api::releaseVersion` call for marking version as released by [@jpastoor] (#82).
27
+
- Added `Api::getAttachmentsMetaInformation` call for getting attachments meta information by [@N-M] (#101).
28
+
- Added `Api::getProjectComponents` call for getting project components by [@N-M] (#104).
29
+
- Added `Api::getProjectIssueTypes` call for getting project issue types and issue statuses connected to them by [@N-M] (#104).
30
+
- Added `Api::getResolutions` call for getting available issue resolutions by [@N-M] (#104).
31
+
- Allow configuring issues queried per page in `Walker` class by [@aik099] (#142).
32
+
- Allow getting issue count back from `Walker` class by [@aik099] (#149).
33
+
- Setup `.gitattributes` for better `CHANGELOG.md` merging by [@glensc] (#185).
22
34
23
35
### Changed
24
-
- Classes/interfaces were renamed to use namespaces by [@chobie].
36
+
- Classes/interfaces were renamed to use namespaces by [@chobie] (#21).
25
37
- Using PSR-4 autoloader from Composer by [@chobie].
26
-
- Minimal supported PHP version changed from 5.2 to 5.3 by [@chobie].
27
-
- The `Api::getPriorties` renamed into `Api::getPriorities` by [@josevh].
28
-
- Remove trailing slash from endpoint url by [@Procta].
29
-
- Added local cache to getResolutions by [@jpastoor].
30
-
- Renamed Api::api() parameter $return_as_json to $return_as_array by [@jpastoor].
31
-
- Renamed `Api::createRemotelink` to `Api::createRemoteLink` by [@glensc].
32
-
- Minimal supported PHP version changed from 5.3 to 5.6 by [@aik099].
38
+
- Minimal supported PHP version changed from 5.2 to 5.3 by [@chobie] (#21).
39
+
- The `Api::getPriorties` renamed into `Api::getPriorities` by [@josevh] and [@jpastoor] (#68).
40
+
- The `Api::setEndPoint` now also removes trailing slash from the given url by [@Procta] (#67).
41
+
- Added local cache to getResolutions by [@jpastoor] (#131).
42
+
- Renamed Api::api() parameter `$return_as_json` to `$return_as_array` by [@jpastoor] (#134).
43
+
- Renamed `Api::createRemotelink` to `Api::createRemoteLink` by [@glensc] (#183).
44
+
- The `CurlClient::sendRequest` is throwing exception, when `$data` parameter isn't an array and `$method` is GET by [@alopex06] (#100).
45
+
- Minimal supported PHP version changed from 5.3 to 5.6 by [@aik099] (#207).
46
+
- Enhance `Api::getCreateMeta` call with an optional ability (via the new `$expand` parameter) to return issue fields by [@arnested] (#26).
47
+
- Added an optional `$name` parameter (replaces `$options` parameter) to `Api::createAttachment` for specifying name of the uploaded file by [@betterphp] (#141).
33
48
34
49
### Removed
35
50
...
36
51
37
52
### Fixed
38
-
- Attachments created using `PHPClient` were not accessible from JIRA by [@ubermuda].
39
-
- Inability to create attachment using `CurlClient` on PHP 5.6+ by [@shmaltorhbooks].
40
-
- The `Api::getIssueTypes` call wasn't working on JIRA 6.4+ due new `avatarId` parameter for issue types by [@addersuk].
41
-
- The `CurlClient` wasn't recognizing `201` response code as success (e.g. used by `/rest/api/2/issueLink` API call) by [@zuzmic].
42
-
- Anonymous access to JIRA from `CurlClient` wasn't working by [@digitalkaoz].
43
-
- Fixed PHP deprecation notice, when creating issue attachments via `CurlClient` on PHP 5.5+ by [@DerMika].
44
-
- The `Api::getRoles` call was always retuning an error by [@aik099].
45
-
- Attempt to make a `DELETE` API call using `CurlClient` wasn't working by [@aik099].
46
-
- Clearing local caches (statuses, priorities, fields and resolutions) on endpoint change by [@jpastoor].
47
-
- Error details from failed API calls were not available back from `Api::api method` call by [@betterphp].
48
-
- Warning about `count()` function usage on PHP 7.2, when searching for issues by [@aik099].
49
-
- Capitalize `globalId` properly in `createRemotelink`[@glensc].
50
-
- The `Api::getIssueTypes` was always returning an error by [@aik099].
53
+
- Attachments created using `PHPClient` were not accessible from JIRA by [@ubermuda] (#59).
54
+
- Inability to create attachment using `CurlClient` on PHP 5.6+ by [@shmaltorhbooks] (#52).
55
+
- The `Api::getIssueTypes` call wasn't working on JIRA 6.4+ due new `avatarId` parameter for issue types by [@addersuk] (#50).
56
+
- The `CurlClient` wasn't recognizing `201` response code as success (e.g. used by `/rest/api/2/issueLink` API call) by [@zuzmic] (#40).
57
+
- Anonymous access to JIRA from `CurlClient` wasn't working by [@digitalkaoz] (#32).
58
+
- Fixed PHP deprecation notice, when creating issue attachments via `CurlClient` on PHP 5.5+ by [@DerMika] (#86).
59
+
- The `Api::getRoles` call was always retuning an error by [@aik099] (#99).
60
+
- Attempt to make a `DELETE` API call using `CurlClient` wasn't working by [@aik099] (#115).
61
+
- Clearing local caches (statuses, priorities, fields and resolutions) on endpoint change by [@jpastoor] (#131).
62
+
- Error details from failed API calls were not available back from `Api::api method` call by [@betterphp] (#140).
63
+
- Warning about `count()` function usage on PHP 7.2, when searching for issues by [@aik099] (#174).
64
+
- The `Api::createRemotelink` wasn't updating an existing remote link, because given `$global_id` parameter was incorrectly passed to the Jira by [@glensc] (#178).
65
+
- The `Api::getIssueTypes` was always returning an error, because `entityId`, `hierarchyLevel` and `untranslatedName` issue type properties weren't supported by [@aik099] (#208).
66
+
- The `PHPClient` was sending wrong `Content-Type` header for GET requests by [@aik099] (#108).
67
+
- Attempt to make a `DELETE` API call using `PHPClient` wasn't working by [@aik099] (#108).
68
+
- The `PHPClient` thrown exceptions weren't inline with `CurlClient` thrown exceptions by [@aik099] (#108).
69
+
- Fixed the `CurlClient` inability to perform an SSL connection from macOS due to locked HTTP protocol version by [@benPesso] (#147).
70
+
- The `Api::getIssueTypes` method was always throwing an error due to `scope` issue type parameter wasn't supported by [@danillofb] (#181).
51
71
52
72
## [1.0.0] - 2014-07-27
53
73
### Added
@@ -73,3 +93,6 @@ This project adheres to [Semantic Versioning](https://semver.org/).
0 commit comments