Skip to content

Commit dcc3da6

Browse files
author
Hubot
committed
P U B L I S H 🤘
1 parent dbfd85f commit dcc3da6

93 files changed

Lines changed: 446 additions & 353 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

changes.atom

Lines changed: 23 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,35 @@
22
<feed xmlns="http://www.w3.org/2005/Atom">
33
<id>http://developer.github.com/</id>
44
<title>GitHub API Changes</title>
5-
<updated>2014-09-16T00:00:00Z</updated>
5+
<updated>2014-09-23T00:00:00Z</updated>
66
<link rel="alternate" href="http://developer.github.com/" />
77
<link rel="self" href="http://developer.github.com/changes.atom" />
88
<author>
99
<name>technoweenie</name>
1010
<uri>https://github.com/technoweenie</uri>
1111
</author>
12+
<entry>
13+
<id>tag:developer.github.com,2014-09-23:/changes/2014-09-23-one-more-week-before-the-add-team-member-api-breaking-change/</id>
14+
<title type="html">One more week before the "Add team member" API breaking change</title>
15+
<published>2014-09-23T00:00:00Z</published>
16+
<updated>2014-09-23T00:00:00Z</updated>
17+
<author>
18+
<name>jakeboxer</name>
19+
<uri>https://github.com/technoweenie</uri>
20+
</author>
21+
<link rel="alternate" href="http://developer.github.com/changes/2014-09-23-one-more-week-before-the-add-team-member-api-breaking-change/" />
22+
<content type="html">&lt;p&gt;We’re delaying the breaking change to the &lt;a href="/v3/orgs/teams/#add-team-member"&gt;“Add team member” API&lt;/a&gt; by another week to give developers more time to update their applications.&lt;/p&gt;
23+
24+
&lt;p&gt;The &lt;a href="/changes/2014-09-16-finalizing-the-organization-and-team-membership-apis/"&gt;breaking change to the “Add team member” API&lt;/a&gt; will go into effect for all requests on &lt;strong&gt;September 30, 2014&lt;/strong&gt;. At that time, if you use &lt;a href="/v3/orgs/teams/#add-team-member"&gt;the “Add team member” API&lt;/a&gt; to add a user to a team and that user isn’t already on another team in your organization, the request will fail. To avoid this, be sure to use the &lt;a href="/v3/orgs/teams/#add-team-membership"&gt;the “Add team membership” API&lt;/a&gt;.&lt;/p&gt;
25+
26+
&lt;h3 id="the-organization-and-team-membership-apis-are-now-official"&gt;The Organization and Team Membership APIs are now official&lt;/h3&gt;
27+
28+
&lt;p&gt;As promised in &lt;a href="/changes/2014-09-16-finalizing-the-organization-and-team-membership-apis/"&gt;our blog post last week&lt;/a&gt;, the &lt;a href="/changes/2014-08-28-accepting-organization-invitations-from-the-api/"&gt;Organization Membership&lt;/a&gt; and &lt;a href="/changes/2014-08-05-team-memberships-api/"&gt;Team Membership&lt;/a&gt; APIs are now an official part of the GitHub API! The preview media type is no longer required to access them.&lt;/p&gt;
29+
30+
&lt;p&gt;If you have any questions or feedback, please &lt;a href="https://github.com/contact?form%5Bsubject%5D=Organization+and+Team+Membership+APIs"&gt;get in touch with us&lt;/a&gt;!&lt;/p&gt;
31+
32+
</content>
33+
</entry>
1234
<entry>
1335
<id>tag:developer.github.com,2014-09-16:/changes/2014-09-16-finalizing-the-organization-and-team-membership-apis/</id>
1436
<title type="html">Finalizing the Organization and Team Membership APIs</title>
@@ -1019,35 +1041,6 @@ to create the git commit.&lt;/p&gt;
10191041

10201042
&lt;p&gt;As always, if you have any questions or feedback, please &lt;a href="https://github.com/contact?form%5Bsubject%5D=Deployments+API"&gt;get in touch&lt;/a&gt;.&lt;/p&gt;
10211043

1022-
</content>
1023-
</entry>
1024-
<entry>
1025-
<id>tag:developer.github.com,2014-02-28:/changes/2014-02-28-issue-and-pull-query-enhancements/</id>
1026-
<title type="html">Query enhancements for listing issues and pull requests</title>
1027-
<published>2014-02-28T00:00:00Z</published>
1028-
<updated>2014-02-28T00:00:00Z</updated>
1029-
<author>
1030-
<name>pengwynn</name>
1031-
<uri>https://github.com/technoweenie</uri>
1032-
</author>
1033-
<link rel="alternate" href="http://developer.github.com/changes/2014-02-28-issue-and-pull-query-enhancements/" />
1034-
<content type="html">&lt;p&gt;We’ve made it even easier to list all &lt;a href="/v3/issues/#list-issues"&gt;issues&lt;/a&gt; and &lt;a href="/v3/pulls/#list-pull-requests"&gt;pull requests&lt;/a&gt; via the API.
1035-
The &lt;code&gt;state&lt;/code&gt; parameter now supports a value of &lt;code&gt;all&lt;/code&gt; that will return issues and
1036-
pull requests regardless of state.&lt;/p&gt;
1037-
1038-
&lt;pre class="terminal"&gt;
1039-
$ curl https://api.github.com/repos/atom/vim-mode/issues\?state\=all
1040-
&lt;/pre&gt;
1041-
1042-
&lt;p&gt;We’ve also introduced new sorting options for &lt;a href="/v3/pulls/#list-pull-requests"&gt;listing pull requests&lt;/a&gt;. You can now sort pull requests by &lt;code&gt;created&lt;/code&gt;, &lt;code&gt;updated&lt;/code&gt;,
1043-
&lt;code&gt;popularity&lt;/code&gt;, and &lt;code&gt;long-running&lt;/code&gt;.&lt;/p&gt;
1044-
1045-
&lt;pre class="terminal"&gt;
1046-
$ curl https://api.github.com/repos/rails/rails/pulls\?sort\=long-running\&amp;amp;direction\=desc
1047-
&lt;/pre&gt;
1048-
1049-
&lt;p&gt;Happy querying. If you have any questions or feedback &lt;a href="https://github.com/contact?form%5Bsubject%5D=API+query+enhancements"&gt;get in touch&lt;/a&gt;.&lt;/p&gt;
1050-
10511044
</content>
10521045
</entry>
10531046
</feed>

changes/2012-10-14-rate-limit-changes/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ <h2 class="title">
8686
<h2>Recent Posts</h2>
8787
<ul class="headlines sidebar-module">
8888

89+
<li><a href="/changes/2014-09-23-one-more-week-before-the-add-team-member-api-breaking-change/">One more week before the "Add team member" API breaking change<br /><span class="date">September 23, 2014</span></a></li>
90+
8991
<li><a href="/changes/2014-09-16-finalizing-the-organization-and-team-membership-apis/">Finalizing the Organization and Team Membership APIs<br /><span class="date">September 16, 2014</span></a></li>
9092

9193
<li><a href="/changes/2014-09-12-changing-organization-feeds/">Changing organization feeds in the Feeds API<br /><span class="date">September 12, 2014</span></a></li>
@@ -100,8 +102,6 @@ <h2>Recent Posts</h2>
100102

101103
<li><a href="/changes/2014-07-28-assignee-and-label-actions-for-issue-events/">New assigned/labeled actions for issue and pull request events<br /><span class="date">July 28, 2014</span></a></li>
102104

103-
<li><a href="/changes/2014-07-09-status-contexts-are-official/">The Combined Status API is official<br /><span class="date">July 9, 2014</span></a></li>
104-
105105
</ul>
106106

107107

changes/2012-10-17-org-members-redirection/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ <h2 class="title">
8888
<h2>Recent Posts</h2>
8989
<ul class="headlines sidebar-module">
9090

91+
<li><a href="/changes/2014-09-23-one-more-week-before-the-add-team-member-api-breaking-change/">One more week before the "Add team member" API breaking change<br /><span class="date">September 23, 2014</span></a></li>
92+
9193
<li><a href="/changes/2014-09-16-finalizing-the-organization-and-team-membership-apis/">Finalizing the Organization and Team Membership APIs<br /><span class="date">September 16, 2014</span></a></li>
9294

9395
<li><a href="/changes/2014-09-12-changing-organization-feeds/">Changing organization feeds in the Feeds API<br /><span class="date">September 12, 2014</span></a></li>
@@ -102,8 +104,6 @@ <h2>Recent Posts</h2>
102104

103105
<li><a href="/changes/2014-07-28-assignee-and-label-actions-for-issue-events/">New assigned/labeled actions for issue and pull request events<br /><span class="date">July 28, 2014</span></a></li>
104106

105-
<li><a href="/changes/2014-07-09-status-contexts-are-official/">The Combined Status API is official<br /><span class="date">July 9, 2014</span></a></li>
106-
107107
</ul>
108108

109109

changes/2012-10-24-set-default-branch/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ <h2 class="title">
8383
<h2>Recent Posts</h2>
8484
<ul class="headlines sidebar-module">
8585

86+
<li><a href="/changes/2014-09-23-one-more-week-before-the-add-team-member-api-breaking-change/">One more week before the "Add team member" API breaking change<br /><span class="date">September 23, 2014</span></a></li>
87+
8688
<li><a href="/changes/2014-09-16-finalizing-the-organization-and-team-membership-apis/">Finalizing the Organization and Team Membership APIs<br /><span class="date">September 16, 2014</span></a></li>
8789

8890
<li><a href="/changes/2014-09-12-changing-organization-feeds/">Changing organization feeds in the Feeds API<br /><span class="date">September 12, 2014</span></a></li>
@@ -97,8 +99,6 @@ <h2>Recent Posts</h2>
9799

98100
<li><a href="/changes/2014-07-28-assignee-and-label-actions-for-issue-events/">New assigned/labeled actions for issue and pull request events<br /><span class="date">July 28, 2014</span></a></li>
99101

100-
<li><a href="/changes/2014-07-09-status-contexts-are-official/">The Combined Status API is official<br /><span class="date">July 9, 2014</span></a></li>
101-
102102
</ul>
103103

104104

changes/2012-10-26-notifications-api/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,8 @@ <h2 id="polling">Polling</h2>
129129
<h2>Recent Posts</h2>
130130
<ul class="headlines sidebar-module">
131131

132+
<li><a href="/changes/2014-09-23-one-more-week-before-the-add-team-member-api-breaking-change/">One more week before the "Add team member" API breaking change<br /><span class="date">September 23, 2014</span></a></li>
133+
132134
<li><a href="/changes/2014-09-16-finalizing-the-organization-and-team-membership-apis/">Finalizing the Organization and Team Membership APIs<br /><span class="date">September 16, 2014</span></a></li>
133135

134136
<li><a href="/changes/2014-09-12-changing-organization-feeds/">Changing organization feeds in the Feeds API<br /><span class="date">September 12, 2014</span></a></li>
@@ -143,8 +145,6 @@ <h2>Recent Posts</h2>
143145

144146
<li><a href="/changes/2014-07-28-assignee-and-label-actions-for-issue-events/">New assigned/labeled actions for issue and pull request events<br /><span class="date">July 28, 2014</span></a></li>
145147

146-
<li><a href="/changes/2014-07-09-status-contexts-are-official/">The Combined Status API is official<br /><span class="date">July 9, 2014</span></a></li>
147-
148148
</ul>
149149

150150

changes/2012-10-31-gist-comment-uris/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,8 @@ <h2 class="title">
7474
<h2>Recent Posts</h2>
7575
<ul class="headlines sidebar-module">
7676

77+
<li><a href="/changes/2014-09-23-one-more-week-before-the-add-team-member-api-breaking-change/">One more week before the "Add team member" API breaking change<br /><span class="date">September 23, 2014</span></a></li>
78+
7779
<li><a href="/changes/2014-09-16-finalizing-the-organization-and-team-membership-apis/">Finalizing the Organization and Team Membership APIs<br /><span class="date">September 16, 2014</span></a></li>
7880

7981
<li><a href="/changes/2014-09-12-changing-organization-feeds/">Changing organization feeds in the Feeds API<br /><span class="date">September 12, 2014</span></a></li>
@@ -88,8 +90,6 @@ <h2>Recent Posts</h2>
8890

8991
<li><a href="/changes/2014-07-28-assignee-and-label-actions-for-issue-events/">New assigned/labeled actions for issue and pull request events<br /><span class="date">July 28, 2014</span></a></li>
9092

91-
<li><a href="/changes/2014-07-09-status-contexts-are-official/">The Combined Status API is official<br /><span class="date">July 9, 2014</span></a></li>
92-
9393
</ul>
9494

9595

changes/2012-11-27-forking-to-organizations/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,8 @@ <h2 class="title">
9393
<h2>Recent Posts</h2>
9494
<ul class="headlines sidebar-module">
9595

96+
<li><a href="/changes/2014-09-23-one-more-week-before-the-add-team-member-api-breaking-change/">One more week before the "Add team member" API breaking change<br /><span class="date">September 23, 2014</span></a></li>
97+
9698
<li><a href="/changes/2014-09-16-finalizing-the-organization-and-team-membership-apis/">Finalizing the Organization and Team Membership APIs<br /><span class="date">September 16, 2014</span></a></li>
9799

98100
<li><a href="/changes/2014-09-12-changing-organization-feeds/">Changing organization feeds in the Feeds API<br /><span class="date">September 12, 2014</span></a></li>
@@ -107,8 +109,6 @@ <h2>Recent Posts</h2>
107109

108110
<li><a href="/changes/2014-07-28-assignee-and-label-actions-for-issue-events/">New assigned/labeled actions for issue and pull request events<br /><span class="date">July 28, 2014</span></a></li>
109111

110-
<li><a href="/changes/2014-07-09-status-contexts-are-official/">The Combined Status API is official<br /><span class="date">July 9, 2014</span></a></li>
111-
112112
</ul>
113113

114114

changes/2012-11-29-gitignore-templates/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,8 @@ <h2 class="title">
118118
<h2>Recent Posts</h2>
119119
<ul class="headlines sidebar-module">
120120

121+
<li><a href="/changes/2014-09-23-one-more-week-before-the-add-team-member-api-breaking-change/">One more week before the "Add team member" API breaking change<br /><span class="date">September 23, 2014</span></a></li>
122+
121123
<li><a href="/changes/2014-09-16-finalizing-the-organization-and-team-membership-apis/">Finalizing the Organization and Team Membership APIs<br /><span class="date">September 16, 2014</span></a></li>
122124

123125
<li><a href="/changes/2014-09-12-changing-organization-feeds/">Changing organization feeds in the Feeds API<br /><span class="date">September 12, 2014</span></a></li>
@@ -132,8 +134,6 @@ <h2>Recent Posts</h2>
132134

133135
<li><a href="/changes/2014-07-28-assignee-and-label-actions-for-issue-events/">New assigned/labeled actions for issue and pull request events<br /><span class="date">July 28, 2014</span></a></li>
134136

135-
<li><a href="/changes/2014-07-09-status-contexts-are-official/">The Combined Status API is official<br /><span class="date">July 9, 2014</span></a></li>
136-
137137
</ul>
138138

139139

changes/2012-12-04-List-comments-for-repo/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ <h2 class="title">
8989
<h2>Recent Posts</h2>
9090
<ul class="headlines sidebar-module">
9191

92+
<li><a href="/changes/2014-09-23-one-more-week-before-the-add-team-member-api-breaking-change/">One more week before the "Add team member" API breaking change<br /><span class="date">September 23, 2014</span></a></li>
93+
9294
<li><a href="/changes/2014-09-16-finalizing-the-organization-and-team-membership-apis/">Finalizing the Organization and Team Membership APIs<br /><span class="date">September 16, 2014</span></a></li>
9395

9496
<li><a href="/changes/2014-09-12-changing-organization-feeds/">Changing organization feeds in the Feeds API<br /><span class="date">September 12, 2014</span></a></li>
@@ -103,8 +105,6 @@ <h2>Recent Posts</h2>
103105

104106
<li><a href="/changes/2014-07-28-assignee-and-label-actions-for-issue-events/">New assigned/labeled actions for issue and pull request events<br /><span class="date">July 28, 2014</span></a></li>
105107

106-
<li><a href="/changes/2014-07-09-status-contexts-are-official/">The Combined Status API is official<br /><span class="date">July 9, 2014</span></a></li>
107-
108108
</ul>
109109

110110

changes/2012-12-06-create-authorization-for-app/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@ <h2 class="title">
9797
<h2>Recent Posts</h2>
9898
<ul class="headlines sidebar-module">
9999

100+
<li><a href="/changes/2014-09-23-one-more-week-before-the-add-team-member-api-breaking-change/">One more week before the "Add team member" API breaking change<br /><span class="date">September 23, 2014</span></a></li>
101+
100102
<li><a href="/changes/2014-09-16-finalizing-the-organization-and-team-membership-apis/">Finalizing the Organization and Team Membership APIs<br /><span class="date">September 16, 2014</span></a></li>
101103

102104
<li><a href="/changes/2014-09-12-changing-organization-feeds/">Changing organization feeds in the Feeds API<br /><span class="date">September 12, 2014</span></a></li>
@@ -111,8 +113,6 @@ <h2>Recent Posts</h2>
111113

112114
<li><a href="/changes/2014-07-28-assignee-and-label-actions-for-issue-events/">New assigned/labeled actions for issue and pull request events<br /><span class="date">July 28, 2014</span></a></li>
113115

114-
<li><a href="/changes/2014-07-09-status-contexts-are-official/">The Combined Status API is official<br /><span class="date">July 9, 2014</span></a></li>
115-
116116
</ul>
117117

118118

0 commit comments

Comments
 (0)