File tree Expand file tree Collapse file tree 8 files changed +86
-15
lines changed Expand file tree Collapse file tree 8 files changed +86
-15
lines changed Original file line number Diff line number Diff line change @@ -11750,12 +11750,12 @@ The possible roles for enterprise membership.
11750
11750
"""
11751
11751
enum EnterpriseUserAccountMembershipRole {
11752
11752
"""
11753
- The user is a member of the enterprise membership .
11753
+ The user is a member of an organization in the enterprise.
11754
11754
"""
11755
11755
MEMBER
11756
11756
11757
11757
"""
11758
- The user is an owner of the enterprise membership .
11758
+ The user is an owner of an organization in the enterprise.
11759
11759
"""
11760
11760
OWNER
11761
11761
}
@@ -32816,6 +32816,11 @@ type Repository implements Node & ProjectOwner & RepositoryInfo & Starrable & Su
32816
32816
"""
32817
32817
squashMergeAllowed: Boolean!
32818
32818
32819
+ """
32820
+ Whether a squash merge commit can use the pull request title as default.
32821
+ """
32822
+ squashPrTitleUsedAsDefault: Boolean!
32823
+
32819
32824
"""
32820
32825
The SSH URL to clone this repository
32821
32826
"""
Original file line number Diff line number Diff line change @@ -8174,6 +8174,11 @@ enum DependencyGraphEcosystem {
8174
8174
Ruby gems hosted at RubyGems.org
8175
8175
"""
8176
8176
RUBYGEMS
8177
+
8178
+ """
8179
+ Rust crates
8180
+ """
8181
+ RUST
8177
8182
}
8178
8183
8179
8184
"""
@@ -12813,12 +12818,12 @@ The possible roles for enterprise membership.
12813
12818
"""
12814
12819
enum EnterpriseUserAccountMembershipRole {
12815
12820
"""
12816
- The user is a member of the enterprise membership .
12821
+ The user is a member of an organization in the enterprise.
12817
12822
"""
12818
12823
MEMBER
12819
12824
12820
12825
"""
12821
- The user is an owner of the enterprise membership .
12826
+ The user is an owner of an organization in the enterprise.
12822
12827
"""
12823
12828
OWNER
12824
12829
}
@@ -37285,6 +37290,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & RepositoryInfo &
37285
37290
"""
37286
37291
squashMergeAllowed: Boolean!
37287
37292
37293
+ """
37294
+ Whether a squash merge commit can use the pull request title as default.
37295
+ """
37296
+ squashPrTitleUsedAsDefault: Boolean!
37297
+
37288
37298
"""
37289
37299
The SSH URL to clone this repository
37290
37300
"""
Original file line number Diff line number Diff line change @@ -8174,6 +8174,11 @@ enum DependencyGraphEcosystem {
8174
8174
Ruby gems hosted at RubyGems.org
8175
8175
"""
8176
8176
RUBYGEMS
8177
+
8178
+ """
8179
+ Rust crates
8180
+ """
8181
+ RUST
8177
8182
}
8178
8183
8179
8184
"""
@@ -12813,12 +12818,12 @@ The possible roles for enterprise membership.
12813
12818
"""
12814
12819
enum EnterpriseUserAccountMembershipRole {
12815
12820
"""
12816
- The user is a member of the enterprise membership .
12821
+ The user is a member of an organization in the enterprise.
12817
12822
"""
12818
12823
MEMBER
12819
12824
12820
12825
"""
12821
- The user is an owner of the enterprise membership .
12826
+ The user is an owner of an organization in the enterprise.
12822
12827
"""
12823
12828
OWNER
12824
12829
}
@@ -37285,6 +37290,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & RepositoryInfo &
37285
37290
"""
37286
37291
squashMergeAllowed: Boolean!
37287
37292
37293
+ """
37294
+ Whether a squash merge commit can use the pull request title as default.
37295
+ """
37296
+ squashPrTitleUsedAsDefault: Boolean!
37297
+
37288
37298
"""
37289
37299
The SSH URL to clone this repository
37290
37300
"""
Original file line number Diff line number Diff line change 1
1
[
2
+ {
3
+ "schemaChanges" : [
4
+ {
5
+ "title" : " The GraphQL schema includes these changes:" ,
6
+ "changes" : [
7
+ " Enum value `RUST` was added to enum `DependencyGraphEcosystem`" ,
8
+ " Field `squashPrTitleUsedAsDefault` was added to object type `Repository`"
9
+ ]
10
+ }
11
+ ],
12
+ "previewChanges" : [],
13
+ "upcomingChanges" : [],
14
+ "date" : " 2022-06-10"
15
+ },
2
16
{
3
17
"schemaChanges" : [
4
18
{
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 52967
52967
"kind": "scalars",
52968
52968
"href": "/graphql/reference/scalars#boolean"
52969
52969
},
52970
+ {
52971
+ "name": "squashPrTitleUsedAsDefault",
52972
+ "description": "<p>Whether a squash merge commit can use the pull request title as default.</p>",
52973
+ "type": "Boolean!",
52974
+ "id": "boolean",
52975
+ "kind": "scalars",
52976
+ "href": "/graphql/reference/scalars#boolean"
52977
+ },
52970
52978
{
52971
52979
"name": "sshUrl",
52972
52980
"description": "<p>The SSH URL to clone this repository.</p>",
69165
69173
{
69166
69174
"name": "RUBYGEMS",
69167
69175
"description": "<p>Ruby gems hosted at RubyGems.org.</p>"
69176
+ },
69177
+ {
69178
+ "name": "RUST",
69179
+ "description": "<p>Rust crates.</p>"
69168
69180
}
69169
69181
]
69170
69182
},
@@ -69622,11 +69634,11 @@
69622
69634
"values": [
69623
69635
{
69624
69636
"name": "MEMBER",
69625
- "description": "<p>The user is a member of the enterprise membership .</p>"
69637
+ "description": "<p>The user is a member of an organization in the enterprise.</p>"
69626
69638
},
69627
69639
{
69628
69640
"name": "OWNER",
69629
- "description": "<p>The user is an owner of the enterprise membership .</p>"
69641
+ "description": "<p>The user is an owner of an organization in the enterprise.</p>"
69630
69642
}
69631
69643
]
69632
69644
},
Original file line number Diff line number Diff line change 46712
46712
"kind": "scalars",
46713
46713
"href": "/graphql/reference/scalars#boolean"
46714
46714
},
46715
+ {
46716
+ "name": "squashPrTitleUsedAsDefault",
46717
+ "description": "<p>Whether a squash merge commit can use the pull request title as default.</p>",
46718
+ "type": "Boolean!",
46719
+ "id": "boolean",
46720
+ "kind": "scalars",
46721
+ "href": "/graphql/reference/scalars#boolean"
46722
+ },
46715
46723
{
46716
46724
"name": "sshUrl",
46717
46725
"description": "<p>The SSH URL to clone this repository.</p>",
@@ -60566,11 +60574,11 @@
60566
60574
"values": [
60567
60575
{
60568
60576
"name": "MEMBER",
60569
- "description": "<p>The user is a member of the enterprise membership .</p>"
60577
+ "description": "<p>The user is a member of an organization in the enterprise.</p>"
60570
60578
},
60571
60579
{
60572
60580
"name": "OWNER",
60573
- "description": "<p>The user is an owner of the enterprise membership .</p>"
60581
+ "description": "<p>The user is an owner of an organization in the enterprise.</p>"
60574
60582
}
60575
60583
]
60576
60584
},
Original file line number Diff line number Diff line change 52967
52967
"kind": "scalars",
52968
52968
"href": "/graphql/reference/scalars#boolean"
52969
52969
},
52970
+ {
52971
+ "name": "squashPrTitleUsedAsDefault",
52972
+ "description": "<p>Whether a squash merge commit can use the pull request title as default.</p>",
52973
+ "type": "Boolean!",
52974
+ "id": "boolean",
52975
+ "kind": "scalars",
52976
+ "href": "/graphql/reference/scalars#boolean"
52977
+ },
52970
52978
{
52971
52979
"name": "sshUrl",
52972
52980
"description": "<p>The SSH URL to clone this repository.</p>",
69165
69173
{
69166
69174
"name": "RUBYGEMS",
69167
69175
"description": "<p>Ruby gems hosted at RubyGems.org.</p>"
69176
+ },
69177
+ {
69178
+ "name": "RUST",
69179
+ "description": "<p>Rust crates.</p>"
69168
69180
}
69169
69181
]
69170
69182
},
@@ -69622,11 +69634,11 @@
69622
69634
"values": [
69623
69635
{
69624
69636
"name": "MEMBER",
69625
- "description": "<p>The user is a member of the enterprise membership .</p>"
69637
+ "description": "<p>The user is a member of an organization in the enterprise.</p>"
69626
69638
},
69627
69639
{
69628
69640
"name": "OWNER",
69629
- "description": "<p>The user is an owner of the enterprise membership .</p>"
69641
+ "description": "<p>The user is an owner of an organization in the enterprise.</p>"
69630
69642
}
69631
69643
]
69632
69644
},
You can’t perform that action at this time.
0 commit comments