forked from ornicar/php-github-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
executable file
·123 lines (84 loc) · 2.85 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
V3.2 - 2011-06-09
* Add pull request API thanks to https://github.com/jeanvoye
V3.1 - 2011-02-24
Bugfixes release
* Fix PHP 5.2 compatibility
* Fix bug when instantiating a client without passing a http client
* Fix bug when sending authenticated requests using curl driver
V3.0 - 2011-02-12
Major refactoring, nearly BC compatible. See migration in same dir.
* PEAR conventions for files and class names
* PEAR coding standards
* Builtin optional autoloader
* Demeter's law compliance
* PHPUnit for tests instead of lime
* Mock github responses in tests
* Allow different http drivers
V2.12 - 2010-10-17
* add support for HTTP authentication
* complete repository API
* complete user API
V2.11 - 2010-07-22
* add phpGitHubIssueApi->searchLabel
v2.10 - 2010-07-10
* add phpGitHubRepoApi->getRepoContributors
v2.9 - 2010-07-03
* add advanced repository search
v2.8 - 2010-06-07
* add phpGitHubRepoApi->create
* add phpGitHubRepoApi->delete
v2.7 - 2010-05-20
* add phpGitHubApiCommit->getCommit
* allow 201 as valid HTTP response code
* fix issues unit tests
v2.6 - 2010-04-10
* add phpGitHubApiRepo->search
* add phpGitHubApiRepo->show
* add phpGitHubApiRepo->getUserRepos
* add phpGitHubApiRepo->getRepoTags
* add phpGitHubApiRepo->getRepoBranches
* encode url parameters properly
* move tests
* improve documentation
v2.5 - 2010-04-08
* add phpGitHubApiIssue->open()
* add phpGitHubApiIssue->close()
* add phpGitHubApiIssue->reOpen()
* add phpGitHubApiIssue->update()
* add phpGitHubApiIssue->getComments()
* add phpGitHubApiIssue->addComment()
* add phpGitHubApiIssue->getLabels()
* add phpGitHubApiIssue->addLabel()
* add phpGitHubApiIssue->removeLabel()
* Issue API completed.
v2.4 - 2010-04-08
* add phpGitHubApiUser->getEmails()
* add phpGitHubApiUser->addEmail()
* add phpGitHubApiUser->removeEmail()
v2.3 - 2010-04-08
* add phpGitHubApiUser->follow()
* add phpGitHubApiUser->unFollow()
* improved user documentation and phpDoc
v2.2 - 2010-04-08
* add phpGitHubApiUser->getFollowing()
* add phpGitHubApiUser->getFollowers()
v2.1 - 2010-04-08
* add phpGitHubApiObject->getRawData()
* allow to reconfigure the request for one call only
* make response support text format
v2.0 - 2010-04-08
* refactored the whole API for better extensibility and performance; BC compatibility preserved
* each API part has a dedicated class
* request instance can be injected with phpGitHubApi->setRequest($request)
* API instances can be injected with phpGitHubApi->setApi($name, $api)
* request and API instances are lazy loaded for best performance
* added phpGitHubApiUser->update method
* 100% unit test coverage
v1.2 - 2010-04-07
* addition of the deAuthenticate method
* added unit tests
* refactored the request class
v1.1 - 2010-04-06
* addition of GitHub Object API
v1.0 - 2010-02-13
* Created initial 1.0 version