Skip to content

Commit f7777aa

Browse files
committed
updated CHANGELOG: added sections and semver info at the top
1 parent 6080240 commit f7777aa

File tree

1 file changed

+47
-12
lines changed

1 file changed

+47
-12
lines changed

CHANGELOG.md

Lines changed: 47 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,97 +1,132 @@
11
# Change Log
2-
All notable changes to this project will be documented in this file.
2+
All notable changes to this project will be documented in this file.
3+
This project adheres to [Semantic Versioning](http://semver.org/).
34

4-
## 0.6.1 / 2015-xx-yy
5+
## [unreleased] / [unreleased]
56

7+
### Changed:
68
- Better parameters validation and type hints.
7-
- Fixed: Request body was build the wrong way when no ( _or wrong type of_ ) additional params where passed to Repository::create()
8-
- Fixed: `Commits::all()` should use GET instead of POST
9-
- Fixed: `Listener::delListener` did not properly deleted the listener.
10-
- Fixed: Forward all available listener when a child class is requested via Api::api or Api::childClass.
9+
10+
### Fixed:
11+
- Request body was build the wrong way when no ( _or wrong type of_ ) additional params where passed to Repository::create()
12+
- `Commits::all()` should use GET instead of POST
13+
- `Listener::delListener` did not properly deleted the listener.
14+
- Forward all available listener when a child class is requested via Api::api or Api::childClass.
1115

1216
## 0.6.0 / 2014-10-21
1317

18+
### Added:
1419
- Added Changelog
1520
- Added `Api::api()*` as a single entry point for concrete apis ( *thanks to @digitalkaoz* )
21+
22+
### Fixed:
1623
- Fixed `Privileges::grant()` parameters format ( [Fixes #22] )
24+
25+
### Changed:
1726
- Marked `eabay/bitbucket-repo-sync` as conflict in composer.json
1827
- CS fixes
1928

2029
[Fixes #22]: https://bitbucket.org/gentlero/bitbucket-api/issue/22/grant-account-privileges-to-repo
2130

2231
## 0.5.2 / 2014-07-09
2332

33+
### Fixed:
2434
- Make tests go green again. ( *My bad and I'm sorry* ).
2535

2636
## 0.5.1 / 2014-07-08
2737

38+
### Fixed:
2839
- Bug: A default content-type is added for POST and PUT, if none was given. ( [Fixes #19] )
2940

3041
[Fixes #19]: https://bitbucket.org/gentlero/bitbucket-api/issue/19
3142

3243
## 0.5.0 / 2014-06-09
3344

45+
### Added:
3446
- Allow setting custom `Request` and `Response` inside HTTP client, which should facilitate integration in 3rd party software.
47+
48+
### Changed:
3549
- Implemented basic priority for listeners.
50+
51+
### Fixed:
3652
- Bug: Missing content-type made `PullRequests::merge` and `PullRequests::declined` unusable.
3753

3854
## 0.4.1 / 2014-06-01
3955

56+
### Fixed:
4057
- Bug: OAuthListener: Parameters may be included from the body if the content-type is urlencoded. ( [Fixes #18] )
4158

4259
[Fixes #18]: https://bitbucket.org/gentlero/bitbucket-api/issue/18
4360

4461
## 0.4.0 / 2014-05-14
4562

63+
### Added:
4664
- Added API 2.0 endpoints for `Users` ( *get, followers, following, repositories* )
4765
- Added API 2.0 endpoints for `Teams`. ( *profile, members, followers, following, repositories* )
4866
- Added API 2.0 endpoints for `BranchRestrictions`. ( *all, create, get, update, delete* )
4967
- Added `delListener()` method for `ClientInterface`.
68+
69+
### Fixed:
5070
- Bug: Mandatory parameters inside PullRequest's methods were not checked.
71+
72+
### Changed:
5173
- Documentation updated.
5274

5375
## 0.3.0 / 2014-05-12
5476

55-
Started to implement version 2.0 of the API.
56-
- All 1.0 endpoints that have a "twin" in version 2.0 will be updated to use the never version.
57-
- All specific 2.0 endpoints will be added gradual.
77+
Started to implement version 2.0 of the API.
78+
- All 1.0 endpoints that have a "twin" in version 2.0 will be updated to use the never version.
79+
- All specific 2.0 endpoints will be added gradual.
5880

81+
### Added:
5982
- Implemented `Commits` and `Commits::Comments` endpoints for API 2.0
60-
- Updated `Repository` to use API 2.0 (create, delete) and implemented endpoints specific to API 2.0 ( *watchers, forks* )
6183
- Added `Repository::get()` ( *API 2.0* )
62-
- Updated `PullRequests::all()` to API 2.0
63-
- Updated `PullRequests::Comments::get()` and `PullRequests::Comments::all()` to API 2.0
6484
- Added all endpoints for PullRequests ( *API 2.0* )
6585
- Added repositories endpoint ( *API 2.0* )
86+
87+
### Changed:
88+
- Updated `Repository` to use API 2.0 (create, delete) and implemented endpoints specific to API 2.0 ( *watchers, forks* )
89+
- Updated `PullRequests::all()` to API 2.0
90+
- Updated `PullRequests::Comments::get()` and `PullRequests::Comments::all()` to API 2.0
6691
- Updated `Repositories::PullRequests::all()` to allow `state` param.
6792
- CS fixes.
6893

6994

7095
## 0.2.1 / 2014-04-21
7196

97+
### Added:
7298
- Added `Repositories::PullRequests::all()` method to get a list of all pull requests.
7399

74100

75101
## 0.2.0 / 2014-02-24
76102

103+
### Fixed:
77104
- Bug: group privileges returned 400 error ( [Fixes #14] )
105+
106+
### Added:
78107
- Implemented HttpClient which abstracts HTTP layer from base clases and allows custom HTTP libraries to be used.
79108
- Implemented simple EventListener which can be used to change request before and after its executed.
109+
110+
### Changed:
80111
- Updated `Api::setCredentials()` to use our new EventListener.
81112

82113
[Fixes #14]: https://bitbucket.org/gentlero/bitbucket-api/issue/14
83114

84115
## 0.1.2 / 2013-12-24
85116

117+
### Fixed:
86118
- Bug: Duplicate array keys in groups filters. ( [Fixes #12] )
87119

88120
[Fixes #12]: https://bitbucket.org/gentlero/bitbucket-api/issue/12
89121

90122

91123
## 0.1.1 / 2013-11-26
92124

125+
### Removed:
93126
- Removed `newuser` endpoint. ( [Fixes #10] )
94127
- Removed `repositories/changesets/likes` endpoint. ( [ref #1] )
128+
129+
### Changed:
95130
- Code clean, fixed typos.
96131

97132
[Fixes #10]: https://bitbucket.org/gentlero/bitbucket-api/issue/10

0 commit comments

Comments
 (0)