Skip to content

Commit 9da206d

Browse files
authored
Merge pull request #215 from aik099/actualize-changelog-2024
Actualize changelog
2 parents ecbe2c0 + 1b9d1c5 commit 9da206d

File tree

1 file changed

+44
-21
lines changed

1 file changed

+44
-21
lines changed

CHANGELOG.md

Lines changed: 44 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -19,35 +19,55 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1919
- Allow getting issue count back from `Walker` class by [@aik099].
2020
- Setup `.gitattributes` for better `CHANGELOG.md` merging by [@glensc].
2121
- 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).
2234

2335
### Changed
24-
- Classes/interfaces were renamed to use namespaces by [@chobie].
36+
- Classes/interfaces were renamed to use namespaces by [@chobie] (#21).
2537
- 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).
3348

3449
### Removed
3550
...
3651

3752
### 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).
5171

5272
## [1.0.0] - 2014-07-27
5373
### Added
@@ -73,3 +93,6 @@ This project adheres to [Semantic Versioning](https://semver.org/).
7393
[@betterphp]: https://github.com/betterphp
7494
[@glensc]: https://github.com/glensc
7595
[@dumconstantin]: https://github.com/dumconstantin
96+
[@alopex06]: https://github.com/alopex06
97+
[@benPesso]: https://github.com/benPesso
98+
[@danillofb]: https://github.com/danillofb

0 commit comments

Comments
 (0)