File: Changes

package info (click to toggle)
libpithub-perl 0.01043-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,148 kB
  • sloc: perl: 9,098; makefile: 7
file content (204 lines) | stat: -rw-r--r-- 7,992 bytes parent folder | download
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
Revision history for Pithub

0.01043   2025-05-31 02:50:21Z
    - Allow fetching closed PRs as well. (GH#238) (Rich Bowen)

0.01042   2025-05-23 12:06:16Z
    - Allow fetching additional pages of pull requests (GH#236) (Rich Bowen)
    - Fix that `per_page` parameter is sent if a query_form is set (GH#230)
      (Roland Hu)

0.01041   2023-08-24 18:12:33Z
          - Boolean documentation updates (GH#233) (Timothy Legge)

0.01040   2022-09-23 21:39:46Z
          - Add Pithub::Repos::Actions::Workflows class which has methods to
            get and list repository workflows (GH#227) (Olaf Alders)

0.01039   2022-08-08 21:00:15Z
          - Use CHI for caching (GH#224) (Olaf Alders)
          - Update docs, tidy imports and make Perl::Critic happier (GH#226)
            (Olaf Alders)

0.01038   2022-08-03 17:26:08Z
          - Replace external Array::Iterator with internal Pithub::ResultSet
            (GH#222) (H.Merijn Brand and Olaf Alders)
          - Internal stylistic changes (GH#223) (Olaf Alders)

0.01037   2022-07-20 01:12:07Z
          - Add rename_branch() and merge_branch() branch to Repos class
            (GH#220) (thibaultduponchelle)
          - Tidy some tests (GH#218) (Olaf Alders)

0.01036   2021-02-08 02:47:17Z
          - Add pull request review requests (GH#217) (Shigeki SUGAI)
          - Tidy module imports (GH#216) (Olaf Alders)

0.01035   2019-11-23 16:59:49Z
          - fix error in example (GH#211) (Graham✈️✈️)

0.01034   2018-02-21 16:03:21Z
          - Add support for the Github markdown API (GH#205) (JosJoaqu Atria)
          - Add .mailmap file (GH#206) (JosJoaqu Atria)
          - Add issues() and pull_requestions() methods to Pithub::Repos.
            (GH#201) (JosJoaqu Atria)
          - Add a rate_limit method to base (GH#204) (JosJoaqu Atria)
          - CPANTS fixes (PRC) (GH#200) (JosJoaqu Atria)

0.01033   2016-01-22 17:54:52-05:00 America/Toronto
          - Bump minimum version of JSON::MaybeXS to 1.003003 (Slaven Rezić and
            Zoffix Znet)

0.01032   2016-01-13 22:21:12-05:00 America/Toronto
          - Pass utf8 option to child instances (Ichinose Shogo)

0.01031   2016-01-11 23:35:23-05:00 America/Toronto
          - Add disabling utf8 as a constructor option (Ichinose Shogo)
          - Pod fixes (Ivan Bessarabov and Zoffix Znet)

0.01030   2015-10-18 21:32:29-04:00 America/Toronto
          - Add add/remove team membership API (SUZUKI Masashi)
          - Handle unicode when en/de-coding json (Randy Stauner)

0.01029   2015-07-07 10:35:24-04:00 America/Toronto
          - Document the URL required for connecting to a GitHub Enterprise
            instance.
          - Add Pithub::SearchV3, which gives you the option to use the v3
            search rather than the current default of legacy (Florian Ragwitz)

0.01028   2014-11-19 16:50:32-08:00 America/Los_Angeles
          - #178 Fixed the minimum version of Moo.
          - #176 Using JSON::MaybeXS instead of JSON to allow
            alternatives to JSON::XS such as Cpanel::JSON::XS.
          - #177 Using Path::Tiny instead of File::Slurp to simplify file
            access and avoid File::Slurp unicode bugs.
          - #175 Now using Github for issue tracking.

0.01027   2014-11-04 10:55:03-08:00 America/Los_Angeles
          - Forgot to update the change log last release.

0.01026   2014-11-04 10:28:22-08:00 America/Los_Angeles
          - #173 Document Pithub::Result->code, raw_content, request,
            etag and success.
          - #171 Add Pithub::Repos->branch to get information about a
            branch.
          - #169 Add Pithub::Repos->delete to delete a repository.
          - #168 Allow inherited attributes to be changed when making
            a sub-object.  $p->repos( per_page => 100 )
          - #163 The default per_page is now 100, the maximum allowed
            by Github, for more efficient pagination.
          - #162 Requests are now cached (aka Conditional Requests)
            for more efficient use of the API.
          - Pithub::Repos::Keys->update and Pithub::Users::Keys->update
            have been removed.  Deploy and public keys are immutable.
            removed.  If you need to update a key, remove it and create
            a new one.
          - Gist comments have been fixed.

0.01025   2014-05-18 16:16:38+02:00 Europe/Berlin
          - Fix #159 - forking repo into organization

0.01024   2014-04-06 09:59:51+02:00 Europe/Berlin
          - No changes.

0.01023   2014-04-04 16:55:58+02:00 Europe/Berlin
          - Add Pithub::Repos::Releases::Assets (Johannes Plunien)

0.01022   2014-03-27 13:59:44+01:00 Europe/Oslo
          - Add Pithub::Repos::Releases (Johannes Plunien)
          - Missing accessors and docs, typos (Johannes Plunien)

0.01021   2014-01-15 15:14:43 Asia/Bangkok
          - Add Pithub::Repos::Statuses->list and ->create
            (Andreas Marienborg)

0.01020   2013-08-09 17:21:22 Asia/Bangkok
          - Add Pithub::Repos::Stats->contributors
            (Andreas Marienborg)

0.01019   2013-06-23 07:47:53 Europe/Berlin
          - Replace JSON::Any with JSON (Alessandro Ghedini)

0.01018   2013-03-13 11:24:16 Europe/Berlin
          - Support setting Authorization in prepare_request
            (Andreas Marienborg)

0.01017   2012-12-15 10:34:03 Europe/Berlin
          - Fix tests on 5.17.x

0.01016   2012-09-24 19:55:04 Europe/Berlin
          - Implement search api #RT-79819

0.01015   2012-09-23 09:55:40 Europe/Berlin
          - Implement new repo starring api
          - Fix usage on a Github:FI or Github:Enterprise
            installation

0.01014   2012-08-09 08:24:42 Europe/Berlin
          - Implement new issues assignee api
          - Implement new repos contents api

0.01013   2012-07-13 14:00:13 Europe/Berlin
          - Fix wrong usage of Moo

0.01012   2011-12-29 13:18:02 Europe/Berlin
          - The /gists/:id/fork action becomes /gists/:id/forks

0.01011   2011-11-04 12:00:07 Asia/Dubai
          - Tiny POD fixes

0.01010   2011-11-02 18:35:10 Asia/Dubai
          - Support new Events API

0.01009   2011-10-29 09:50:12 Asia/Dubai
          - Implement Pithub::Repos::Commits->compare

0.01008   2011-10-21 14:46:39 Asia/Dubai

          - Mention Net::Github supporting v3 now

0.01007   2011-10-21 10:13:23 Asia/Dubai
          - Implement new repos hooks API

0.01006   2011-08-13 13:22:39 Asia/Dubai
          - Fix bug in link header parser

0.01005   2011-07-20 14:28:59 Asia/Dubai
          - replace Moose with Moo

0.01004   2011-07-15 14:43:34 Asia/Dubai
          - change "label_id" key to "label" everywhere since [!!!]
            it's not really an id, but just a label
          - fix Pithub::Users->list_following
          - fix Pithub::Repos->update
          - rename Orgs->Teams->get_repo to ->has_repo [!!!]
          - make access to response headers easier
          - remove Pithub::Request and Pithub::Response [!!!]
          - replace prepare_uri with more flexible
            prepare_request [!!!]
          - prepare_request is now available globally and can be set
            on any object to modify all HTTP requests

0.01003   2011-07-06 19:54:52 Asia/Dubai
          - add some more tests to live.t
          - implement $result->count
          - implement Downloads create and upload
          - change Repos->create and Repos->update interface
          - set content-length (fix PUT request without body)
          - implement $result->first

0.01002   2011-06-30 17:05:58 Asia/Dubai
          - implement $result->getpage(n)
          - add per_age parameter/attribute
          - be less restrictive building api urls using sprintf
          - implement jsonp_callback
          - implement $result->next
          - auto_pagination
          - sanitize tests which loaded an HTTP response from file

0.01001   2011-06-28 08:59:16 Asia/Dubai
          - minor POD changes

0.01000   2011-06-27 12:36:44 Asia/Dubai
          - first release