Skip to content

Commit fae510d

Browse files
authored
repo sync
2 parents 5b17e72 + ed0734f commit fae510d

10 files changed

+90
-120
lines changed

data/graphql/ghae/graphql_upcoming_changes.public-ghae.yml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -66,18 +66,6 @@ upcoming_changes:
6666
date: '2020-10-01T00:00:00+00:00'
6767
criticality: breaking
6868
owner: mikesea
69-
- location: RepositoryCollaboratorEdge.permission
70-
description: Type for `permission` will change from `RepositoryPermission!` to `String`.
71-
reason: This field may return additional values
72-
date: '2020-10-01T00:00:00+00:00'
73-
criticality: breaking
74-
owner: oneill38
75-
- location: RepositoryInvitation.permission
76-
description: Type for `permission` will change from `RepositoryPermission!` to `String`.
77-
reason: This field may return additional values
78-
date: '2020-10-01T00:00:00+00:00'
79-
criticality: breaking
80-
owner: oneill38
8169
- location: RepositoryInvitationOrderField.INVITEE_LOGIN
8270
description: "`INVITEE_LOGIN` will be removed."
8371
reason: "`INVITEE_LOGIN` is no longer a valid field value. Repository invitations
@@ -91,12 +79,6 @@ upcoming_changes:
9179
date: '2020-10-01T00:00:00+00:00'
9280
criticality: breaking
9381
owner: nholden
94-
- location: TeamRepositoryEdge.permission
95-
description: Type for `permission` will change from `RepositoryPermission!` to `String`.
96-
reason: This field may return additional values
97-
date: '2020-10-01T00:00:00+00:00'
98-
criticality: breaking
99-
owner: oneill38
10082
- location: EnterpriseMemberEdge.isUnlicensed
10183
description: "`isUnlicensed` will be removed."
10284
reason: All members consume a license

data/graphql/ghae/schema.docs-ghae.graphql

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1180,6 +1180,16 @@ type Bot implements Actor & Node & UniformResourceLocatable {
11801180
A branch protection rule.
11811181
"""
11821182
type BranchProtectionRule implements Node {
1183+
"""
1184+
Can this branch be deleted.
1185+
"""
1186+
allowsDeletions: Boolean!
1187+
1188+
"""
1189+
Are force pushes allowed on this branch.
1190+
"""
1191+
allowsForcePushes: Boolean!
1192+
11831193
"""
11841194
A list of conflicts matching branches protection rule and other branch protection rules
11851195
"""
@@ -1316,6 +1326,11 @@ type BranchProtectionRule implements Node {
13161326
"""
13171327
requiresCommitSignatures: Boolean!
13181328

1329+
"""
1330+
Are merge commits prohibited from being pushed to this branch.
1331+
"""
1332+
requiresLinearHistory: Boolean!
1333+
13191334
"""
13201335
Are status checks required to update matching branches.
13211336
"""
@@ -27827,10 +27842,6 @@ type RepositoryCollaboratorEdge {
2782727842

2782827843
"""
2782927844
The permission the user has on the repository.
27830-
27831-
**Upcoming Change on 2020-10-01 UTC**
27832-
**Description:** Type for `permission` will change from `RepositoryPermission!` to `String`.
27833-
**Reason:** This field may return additional values
2783427845
"""
2783527846
permission: RepositoryPermission!
2783627847

@@ -28117,10 +28128,6 @@ type RepositoryInvitation implements Node {
2811728128

2811828129
"""
2811928130
The permission granted on this repository by this invitation.
28120-
28121-
**Upcoming Change on 2020-10-01 UTC**
28122-
**Description:** Type for `permission` will change from `RepositoryPermission!` to `String`.
28123-
**Reason:** This field may return additional values
2812428131
"""
2812528132
permission: RepositoryPermission!
2812628133

@@ -32583,10 +32590,6 @@ type TeamRepositoryEdge {
3258332590

3258432591
"""
3258532592
The permission level the team has on the repository
32586-
32587-
**Upcoming Change on 2020-10-01 UTC**
32588-
**Description:** Type for `permission` will change from `RepositoryPermission!` to `String`.
32589-
**Reason:** This field may return additional values
3259032593
"""
3259132594
permission: RepositoryPermission!
3259232595
}

data/graphql/graphql_upcoming_changes.public.yml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -73,18 +73,6 @@ upcoming_changes:
7373
date: '2020-10-01T00:00:00+00:00'
7474
criticality: breaking
7575
owner: mikesea
76-
- location: RepositoryCollaboratorEdge.permission
77-
description: Type for `permission` will change from `RepositoryPermission!` to `String`.
78-
reason: This field may return additional values
79-
date: '2020-10-01T00:00:00+00:00'
80-
criticality: breaking
81-
owner: oneill38
82-
- location: RepositoryInvitation.permission
83-
description: Type for `permission` will change from `RepositoryPermission!` to `String`.
84-
reason: This field may return additional values
85-
date: '2020-10-01T00:00:00+00:00'
86-
criticality: breaking
87-
owner: oneill38
8876
- location: RepositoryInvitationOrderField.INVITEE_LOGIN
8977
description: "`INVITEE_LOGIN` will be removed."
9078
reason: "`INVITEE_LOGIN` is no longer a valid field value. Repository invitations
@@ -98,12 +86,6 @@ upcoming_changes:
9886
date: '2020-10-01T00:00:00+00:00'
9987
criticality: breaking
10088
owner: nholden
101-
- location: TeamRepositoryEdge.permission
102-
description: Type for `permission` will change from `RepositoryPermission!` to `String`.
103-
reason: This field may return additional values
104-
date: '2020-10-01T00:00:00+00:00'
105-
criticality: breaking
106-
owner: oneill38
10789
- location: EnterpriseMemberEdge.isUnlicensed
10890
description: "`isUnlicensed` will be removed."
10991
reason: All members consume a license

data/graphql/schema.docs.graphql

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1200,6 +1200,16 @@ type Bot implements Actor & Node & UniformResourceLocatable {
12001200
A branch protection rule.
12011201
"""
12021202
type BranchProtectionRule implements Node {
1203+
"""
1204+
Can this branch be deleted.
1205+
"""
1206+
allowsDeletions: Boolean!
1207+
1208+
"""
1209+
Are force pushes allowed on this branch.
1210+
"""
1211+
allowsForcePushes: Boolean!
1212+
12031213
"""
12041214
A list of conflicts matching branches protection rule and other branch protection rules
12051215
"""
@@ -1336,6 +1346,11 @@ type BranchProtectionRule implements Node {
13361346
"""
13371347
requiresCommitSignatures: Boolean!
13381348

1349+
"""
1350+
Are merge commits prohibited from being pushed to this branch.
1351+
"""
1352+
requiresLinearHistory: Boolean!
1353+
13391354
"""
13401355
Are status checks required to update matching branches.
13411356
"""
@@ -29748,10 +29763,6 @@ type RepositoryCollaboratorEdge {
2974829763

2974929764
"""
2975029765
The permission the user has on the repository.
29751-
29752-
**Upcoming Change on 2020-10-01 UTC**
29753-
**Description:** Type for `permission` will change from `RepositoryPermission!` to `String`.
29754-
**Reason:** This field may return additional values
2975529766
"""
2975629767
permission: RepositoryPermission!
2975729768

@@ -30033,10 +30044,6 @@ type RepositoryInvitation implements Node {
3003330044

3003430045
"""
3003530046
The permission granted on this repository by this invitation.
30036-
30037-
**Upcoming Change on 2020-10-01 UTC**
30038-
**Description:** Type for `permission` will change from `RepositoryPermission!` to `String`.
30039-
**Reason:** This field may return additional values
3004030047
"""
3004130048
permission: RepositoryPermission!
3004230049

@@ -34897,10 +34904,6 @@ type TeamRepositoryEdge {
3489734904

3489834905
"""
3489934906
The permission level the team has on the repository
34900-
34901-
**Upcoming Change on 2020-10-01 UTC**
34902-
**Description:** Type for `permission` will change from `RepositoryPermission!` to `String`.
34903-
**Reason:** This field may return additional values
3490434907
"""
3490534908
permission: RepositoryPermission!
3490634909
}

lib/graphql/static/prerendered-objects.json

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

lib/graphql/static/schema-dotcom.json

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6606,6 +6606,22 @@
66066606
}
66076607
],
66086608
"fields": [
6609+
{
6610+
"name": "allowsDeletions",
6611+
"description": "<p>Can this branch be deleted.</p>",
6612+
"type": "Boolean!",
6613+
"id": "boolean",
6614+
"kind": "scalars",
6615+
"href": "/graphql/reference/scalars#boolean"
6616+
},
6617+
{
6618+
"name": "allowsForcePushes",
6619+
"description": "<p>Are force pushes allowed on this branch.</p>",
6620+
"type": "Boolean!",
6621+
"id": "boolean",
6622+
"kind": "scalars",
6623+
"href": "/graphql/reference/scalars#boolean"
6624+
},
66096625
{
66106626
"name": "branchProtectionRuleConflicts",
66116627
"description": "<p>A list of conflicts matching branches protection rule and other branch protection rules.</p>",
@@ -6854,6 +6870,14 @@
68546870
"kind": "scalars",
68556871
"href": "/graphql/reference/scalars#boolean"
68566872
},
6873+
{
6874+
"name": "requiresLinearHistory",
6875+
"description": "<p>Are merge commits prohibited from being pushed to this branch.</p>",
6876+
"type": "Boolean!",
6877+
"id": "boolean",
6878+
"kind": "scalars",
6879+
"href": "/graphql/reference/scalars#boolean"
6880+
},
68576881
{
68586882
"name": "requiresStatusChecks",
68596883
"description": "<p>Are status checks required to update matching branches.</p>",
@@ -44354,7 +44378,7 @@
4435444378
},
4435544379
{
4435644380
"name": "permission",
44357-
"description": "<p>The permission the user has on the repository.</p>\n<p><strong>Upcoming Change on 2020-10-01 UTC</strong>\n<strong>Description:</strong> Type for <code>permission</code> will change from <code>RepositoryPermission!</code> to <code>String</code>.\n<strong>Reason:</strong> This field may return additional values.</p>",
44381+
"description": "<p>The permission the user has on the repository.</p>",
4435844382
"type": "RepositoryPermission!",
4435944383
"id": "repositorypermission",
4436044384
"kind": "enums",
@@ -44525,7 +44549,7 @@
4452544549
},
4452644550
{
4452744551
"name": "permission",
44528-
"description": "<p>The permission granted on this repository by this invitation.</p>\n<p><strong>Upcoming Change on 2020-10-01 UTC</strong>\n<strong>Description:</strong> Type for <code>permission</code> will change from <code>RepositoryPermission!</code> to <code>String</code>.\n<strong>Reason:</strong> This field may return additional values.</p>",
44552+
"description": "<p>The permission granted on this repository by this invitation.</p>",
4452944553
"type": "RepositoryPermission!",
4453044554
"id": "repositorypermission",
4453144555
"kind": "enums",
@@ -51056,7 +51080,7 @@
5105651080
},
5105751081
{
5105851082
"name": "permission",
51059-
"description": "<p>The permission level the team has on the repository</p>\n<p><strong>Upcoming Change on 2020-10-01 UTC</strong>\n<strong>Description:</strong> Type for <code>permission</code> will change from <code>RepositoryPermission!</code> to <code>String</code>.\n<strong>Reason:</strong> This field may return additional values.</p>",
51083+
"description": "<p>The permission level the team has on the repository.</p>",
5106051084
"type": "RepositoryPermission!",
5106151085
"id": "repositorypermission",
5106251086
"kind": "enums",

lib/graphql/static/schema-ghae.json

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5996,6 +5996,22 @@
59965996
}
59975997
],
59985998
"fields": [
5999+
{
6000+
"name": "allowsDeletions",
6001+
"description": "<p>Can this branch be deleted.</p>",
6002+
"type": "Boolean!",
6003+
"id": "boolean",
6004+
"kind": "scalars",
6005+
"href": "/graphql/reference/scalars#boolean"
6006+
},
6007+
{
6008+
"name": "allowsForcePushes",
6009+
"description": "<p>Are force pushes allowed on this branch.</p>",
6010+
"type": "Boolean!",
6011+
"id": "boolean",
6012+
"kind": "scalars",
6013+
"href": "/graphql/reference/scalars#boolean"
6014+
},
59996015
{
60006016
"name": "branchProtectionRuleConflicts",
60016017
"description": "<p>A list of conflicts matching branches protection rule and other branch protection rules.</p>",
@@ -6244,6 +6260,14 @@
62446260
"kind": "scalars",
62456261
"href": "/graphql/reference/scalars#boolean"
62466262
},
6263+
{
6264+
"name": "requiresLinearHistory",
6265+
"description": "<p>Are merge commits prohibited from being pushed to this branch.</p>",
6266+
"type": "Boolean!",
6267+
"id": "boolean",
6268+
"kind": "scalars",
6269+
"href": "/graphql/reference/scalars#boolean"
6270+
},
62476271
{
62486272
"name": "requiresStatusChecks",
62496273
"description": "<p>Are status checks required to update matching branches.</p>",
@@ -41603,7 +41627,7 @@
4160341627
},
4160441628
{
4160541629
"name": "permission",
41606-
"description": "<p>The permission the user has on the repository.</p>\n<p><strong>Upcoming Change on 2020-10-01 UTC</strong>\n<strong>Description:</strong> Type for <code>permission</code> will change from <code>RepositoryPermission!</code> to <code>String</code>.\n<strong>Reason:</strong> This field may return additional values.</p>",
41630+
"description": "<p>The permission the user has on the repository.</p>",
4160741631
"type": "RepositoryPermission!",
4160841632
"id": "repositorypermission",
4160941633
"kind": "enums",
@@ -41774,7 +41798,7 @@
4177441798
},
4177541799
{
4177641800
"name": "permission",
41777-
"description": "<p>The permission granted on this repository by this invitation.</p>\n<p><strong>Upcoming Change on 2020-10-01 UTC</strong>\n<strong>Description:</strong> Type for <code>permission</code> will change from <code>RepositoryPermission!</code> to <code>String</code>.\n<strong>Reason:</strong> This field may return additional values.</p>",
41801+
"description": "<p>The permission granted on this repository by this invitation.</p>",
4177841802
"type": "RepositoryPermission!",
4177941803
"id": "repositorypermission",
4178041804
"kind": "enums",
@@ -47929,7 +47953,7 @@
4792947953
},
4793047954
{
4793147955
"name": "permission",
47932-
"description": "<p>The permission level the team has on the repository</p>\n<p><strong>Upcoming Change on 2020-10-01 UTC</strong>\n<strong>Description:</strong> Type for <code>permission</code> will change from <code>RepositoryPermission!</code> to <code>String</code>.\n<strong>Reason:</strong> This field may return additional values.</p>",
47956+
"description": "<p>The permission level the team has on the repository.</p>",
4793347957
"type": "RepositoryPermission!",
4793447958
"id": "repositorypermission",
4793547959
"kind": "enums",

lib/graphql/static/upcoming-changes.json

Lines changed: 0 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -97,22 +97,6 @@
9797
"criticality": "breaking",
9898
"owner": "mikesea"
9999
},
100-
{
101-
"location": "RepositoryCollaboratorEdge.permission",
102-
"description": "<p>Type for <code>permission</code> will change from <code>RepositoryPermission!</code> to <code>String</code>.</p>",
103-
"reason": "<p>This field may return additional values</p>",
104-
"date": "2020-10-01",
105-
"criticality": "breaking",
106-
"owner": "oneill38"
107-
},
108-
{
109-
"location": "RepositoryInvitation.permission",
110-
"description": "<p>Type for <code>permission</code> will change from <code>RepositoryPermission!</code> to <code>String</code>.</p>",
111-
"reason": "<p>This field may return additional values</p>",
112-
"date": "2020-10-01",
113-
"criticality": "breaking",
114-
"owner": "oneill38"
115-
},
116100
{
117101
"location": "RepositoryInvitationOrderField.INVITEE_LOGIN",
118102
"description": "<p><code>INVITEE_LOGIN</code> will be removed.</p>",
@@ -128,14 +112,6 @@
128112
"date": "2020-10-01",
129113
"criticality": "breaking",
130114
"owner": "nholden"
131-
},
132-
{
133-
"location": "TeamRepositoryEdge.permission",
134-
"description": "<p>Type for <code>permission</code> will change from <code>RepositoryPermission!</code> to <code>String</code>.</p>",
135-
"reason": "<p>This field may return additional values</p>",
136-
"date": "2020-10-01",
137-
"criticality": "breaking",
138-
"owner": "oneill38"
139115
}
140116
],
141117
"2021-01-01": [
@@ -1811,22 +1787,6 @@
18111787
"criticality": "breaking",
18121788
"owner": "mikesea"
18131789
},
1814-
{
1815-
"location": "RepositoryCollaboratorEdge.permission",
1816-
"description": "<p>Type for <code>permission</code> will change from <code>RepositoryPermission!</code> to <code>String</code>.</p>",
1817-
"reason": "<p>This field may return additional values</p>",
1818-
"date": "2020-10-01",
1819-
"criticality": "breaking",
1820-
"owner": "oneill38"
1821-
},
1822-
{
1823-
"location": "RepositoryInvitation.permission",
1824-
"description": "<p>Type for <code>permission</code> will change from <code>RepositoryPermission!</code> to <code>String</code>.</p>",
1825-
"reason": "<p>This field may return additional values</p>",
1826-
"date": "2020-10-01",
1827-
"criticality": "breaking",
1828-
"owner": "oneill38"
1829-
},
18301790
{
18311791
"location": "RepositoryInvitationOrderField.INVITEE_LOGIN",
18321792
"description": "<p><code>INVITEE_LOGIN</code> will be removed.</p>",
@@ -1842,14 +1802,6 @@
18421802
"date": "2020-10-01",
18431803
"criticality": "breaking",
18441804
"owner": "nholden"
1845-
},
1846-
{
1847-
"location": "TeamRepositoryEdge.permission",
1848-
"description": "<p>Type for <code>permission</code> will change from <code>RepositoryPermission!</code> to <code>String</code>.</p>",
1849-
"reason": "<p>This field may return additional values</p>",
1850-
"date": "2020-10-01",
1851-
"criticality": "breaking",
1852-
"owner": "oneill38"
18531805
}
18541806
],
18551807
"2021-01-01": [

0 commit comments

Comments
 (0)