@@ -74,6 +74,10 @@ If you're a repository administrator you can enable {% data variables.product.pr
|
||||
|
||||
{% ifversion ghes or ghae or ghec %}You can also define custom {% data variables.product.prodname_secret_scanning %} patterns for a repository, organization, or enterprise. For more information, see "[Defining custom patterns for {% data variables.product.prodname_secret_scanning %}](/code-security/secret-security/defining-custom-patterns-for-secret-scanning)."
|
||||
{% endif %}
|
||||
|
||||
{% ifversion secret-scanning-ghas-store-tokens %}
|
||||
{% data variables.product.company_short %} stores detected secrets using symmetric encryption, both in transit and at rest.{% endif %}{% ifversion ghes > 3.7 %} To rotate the encryption keys used for storing the detected secrets, you can contact {% data variables.contact.contact_ent_support %}.{% endif %}
|
||||
|
||||
### About {% data variables.product.prodname_secret_scanning %} alerts
|
||||
|
||||
When you enable {% data variables.product.prodname_secret_scanning %} for a repository or push commits to a repository with {% data variables.product.prodname_secret_scanning %} enabled, {% data variables.product.prodname_dotcom %} scans the contents of those commits for secrets that match patterns defined by service providers{% ifversion ghes or ghae or ghec %} and any custom patterns defined in your enterprise, organization, or repository{% endif %}. {% ifversion secret-scanning-backfills %}{% data variables.product.prodname_dotcom %} also periodically runs a scan of all historical content in repositories with {% data variables.product.prodname_secret_scanning %} enabled.{% endif%}
|
||||
|
||||
5
data/features/secret-scanning-ghas-store-tokens.yml
Normal file
5
data/features/secret-scanning-ghas-store-tokens.yml
Normal file
@@ -0,0 +1,5 @@
|
||||
# Issue 8348
|
||||
# Secret Scanning - Persist detected secrets in encrypted storage
|
||||
versions:
|
||||
ghec: '*'
|
||||
ghes: '>=3.8'
|
||||
@@ -265,3 +265,23 @@ upcoming_changes:
|
||||
date: '2023-04-01T00:00:00+00:00'
|
||||
criticality: breaking
|
||||
owner: alcere
|
||||
- location: ProjectV2View.sortBy
|
||||
description:
|
||||
'`sortBy` will be removed. Check out the `ProjectV2View#sort_by_fields`
|
||||
API as an example for the more capable alternative.'
|
||||
reason:
|
||||
The `ProjectV2View#sort_by` API is deprecated in favour of the more capable
|
||||
`ProjectV2View#sort_by_fields` API.
|
||||
date: '2023-04-01T00:00:00+00:00'
|
||||
criticality: breaking
|
||||
owner: traumverloren
|
||||
- location: ProjectV2View.verticalGroupBy
|
||||
description:
|
||||
'`verticalGroupBy` will be removed. Check out the `ProjectV2View#vertical_group_by_fields`
|
||||
API as an example for the more capable alternative.'
|
||||
reason:
|
||||
The `ProjectV2View#vertical_group_by` API is deprecated in favour of the
|
||||
more capable `ProjectV2View#vertical_group_by_fields` API.
|
||||
date: '2023-04-01T00:00:00+00:00'
|
||||
criticality: breaking
|
||||
owner: traumverloren
|
||||
|
||||
@@ -4654,6 +4654,117 @@ input CommittableBranch {
|
||||
repositoryNameWithOwner: String
|
||||
}
|
||||
|
||||
"""
|
||||
Represents a comparison between two commit revisions.
|
||||
"""
|
||||
type Comparison implements Node {
|
||||
"""
|
||||
The number of commits ahead of the base branch.
|
||||
"""
|
||||
aheadBy: Int!
|
||||
|
||||
"""
|
||||
The base revision of this comparison.
|
||||
"""
|
||||
baseTarget: GitObject!
|
||||
|
||||
"""
|
||||
The number of commits behind the base branch.
|
||||
"""
|
||||
behindBy: Int!
|
||||
|
||||
"""
|
||||
The commits which compose this comparison.
|
||||
"""
|
||||
commits(
|
||||
"""
|
||||
Returns the elements in the list that come after the specified cursor.
|
||||
"""
|
||||
after: String
|
||||
|
||||
"""
|
||||
Returns the elements in the list that come before the specified cursor.
|
||||
"""
|
||||
before: String
|
||||
|
||||
"""
|
||||
Returns the first _n_ elements from the list.
|
||||
"""
|
||||
first: Int
|
||||
|
||||
"""
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
): ComparisonCommitConnection!
|
||||
|
||||
"""
|
||||
The head revision of this comparison.
|
||||
"""
|
||||
headTarget: GitObject!
|
||||
id: ID!
|
||||
|
||||
"""
|
||||
The status of this comparison.
|
||||
"""
|
||||
status: ComparisonStatus!
|
||||
}
|
||||
|
||||
"""
|
||||
The connection type for Commit.
|
||||
"""
|
||||
type ComparisonCommitConnection {
|
||||
"""
|
||||
The total count of authors and co-authors across all commits.
|
||||
"""
|
||||
authorCount: Int!
|
||||
|
||||
"""
|
||||
A list of edges.
|
||||
"""
|
||||
edges: [CommitEdge]
|
||||
|
||||
"""
|
||||
A list of nodes.
|
||||
"""
|
||||
nodes: [Commit]
|
||||
|
||||
"""
|
||||
Information to aid in pagination.
|
||||
"""
|
||||
pageInfo: PageInfo!
|
||||
|
||||
"""
|
||||
Identifies the total count of items in the connection.
|
||||
"""
|
||||
totalCount: Int!
|
||||
}
|
||||
|
||||
"""
|
||||
The status of a git comparison between two refs.
|
||||
"""
|
||||
enum ComparisonStatus {
|
||||
"""
|
||||
The head ref is ahead of the base ref.
|
||||
"""
|
||||
AHEAD
|
||||
|
||||
"""
|
||||
The head ref is behind the base ref.
|
||||
"""
|
||||
BEHIND
|
||||
|
||||
"""
|
||||
The head ref is both ahead and behind of the base ref, indicating git history has diverged.
|
||||
"""
|
||||
DIVERGED
|
||||
|
||||
"""
|
||||
The head ref and base ref are identical.
|
||||
"""
|
||||
IDENTICAL
|
||||
}
|
||||
|
||||
"""
|
||||
Represents a 'connected' event on a given issue or pull request.
|
||||
"""
|
||||
@@ -28738,6 +28849,16 @@ type Ref implements Node {
|
||||
Branch protection rules for this ref
|
||||
"""
|
||||
branchProtectionRule: BranchProtectionRule
|
||||
|
||||
"""
|
||||
Compares the current ref as a base ref to another head ref, if the comparison can be made.
|
||||
"""
|
||||
compare(
|
||||
"""
|
||||
The head ref to compare against.
|
||||
"""
|
||||
headRef: String!
|
||||
): Comparison
|
||||
id: ID!
|
||||
|
||||
"""
|
||||
|
||||
@@ -1756,3 +1756,23 @@ upcoming_changes:
|
||||
date: '2023-04-01T00:00:00+00:00'
|
||||
criticality: breaking
|
||||
owner: alcere
|
||||
- location: ProjectV2View.sortBy
|
||||
description:
|
||||
'`sortBy` will be removed. Check out the `ProjectV2View#sort_by_fields`
|
||||
API as an example for the more capable alternative.'
|
||||
reason:
|
||||
The `ProjectV2View#sort_by` API is deprecated in favour of the more capable
|
||||
`ProjectV2View#sort_by_fields` API.
|
||||
date: '2023-04-01T00:00:00+00:00'
|
||||
criticality: breaking
|
||||
owner: traumverloren
|
||||
- location: ProjectV2View.verticalGroupBy
|
||||
description:
|
||||
'`verticalGroupBy` will be removed. Check out the `ProjectV2View#vertical_group_by_fields`
|
||||
API as an example for the more capable alternative.'
|
||||
reason:
|
||||
The `ProjectV2View#vertical_group_by` API is deprecated in favour of the
|
||||
more capable `ProjectV2View#vertical_group_by_fields` API.
|
||||
date: '2023-04-01T00:00:00+00:00'
|
||||
criticality: breaking
|
||||
owner: traumverloren
|
||||
|
||||
@@ -5128,6 +5128,117 @@ input CommittableBranch {
|
||||
repositoryNameWithOwner: String
|
||||
}
|
||||
|
||||
"""
|
||||
Represents a comparison between two commit revisions.
|
||||
"""
|
||||
type Comparison implements Node {
|
||||
"""
|
||||
The number of commits ahead of the base branch.
|
||||
"""
|
||||
aheadBy: Int!
|
||||
|
||||
"""
|
||||
The base revision of this comparison.
|
||||
"""
|
||||
baseTarget: GitObject!
|
||||
|
||||
"""
|
||||
The number of commits behind the base branch.
|
||||
"""
|
||||
behindBy: Int!
|
||||
|
||||
"""
|
||||
The commits which compose this comparison.
|
||||
"""
|
||||
commits(
|
||||
"""
|
||||
Returns the elements in the list that come after the specified cursor.
|
||||
"""
|
||||
after: String
|
||||
|
||||
"""
|
||||
Returns the elements in the list that come before the specified cursor.
|
||||
"""
|
||||
before: String
|
||||
|
||||
"""
|
||||
Returns the first _n_ elements from the list.
|
||||
"""
|
||||
first: Int
|
||||
|
||||
"""
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
): ComparisonCommitConnection!
|
||||
|
||||
"""
|
||||
The head revision of this comparison.
|
||||
"""
|
||||
headTarget: GitObject!
|
||||
id: ID!
|
||||
|
||||
"""
|
||||
The status of this comparison.
|
||||
"""
|
||||
status: ComparisonStatus!
|
||||
}
|
||||
|
||||
"""
|
||||
The connection type for Commit.
|
||||
"""
|
||||
type ComparisonCommitConnection {
|
||||
"""
|
||||
The total count of authors and co-authors across all commits.
|
||||
"""
|
||||
authorCount: Int!
|
||||
|
||||
"""
|
||||
A list of edges.
|
||||
"""
|
||||
edges: [CommitEdge]
|
||||
|
||||
"""
|
||||
A list of nodes.
|
||||
"""
|
||||
nodes: [Commit]
|
||||
|
||||
"""
|
||||
Information to aid in pagination.
|
||||
"""
|
||||
pageInfo: PageInfo!
|
||||
|
||||
"""
|
||||
Identifies the total count of items in the connection.
|
||||
"""
|
||||
totalCount: Int!
|
||||
}
|
||||
|
||||
"""
|
||||
The status of a git comparison between two refs.
|
||||
"""
|
||||
enum ComparisonStatus {
|
||||
"""
|
||||
The head ref is ahead of the base ref.
|
||||
"""
|
||||
AHEAD
|
||||
|
||||
"""
|
||||
The head ref is behind the base ref.
|
||||
"""
|
||||
BEHIND
|
||||
|
||||
"""
|
||||
The head ref is both ahead and behind of the base ref, indicating git history has diverged.
|
||||
"""
|
||||
DIVERGED
|
||||
|
||||
"""
|
||||
The head ref and base ref are identical.
|
||||
"""
|
||||
IDENTICAL
|
||||
}
|
||||
|
||||
"""
|
||||
Represents a 'connected' event on a given issue or pull request.
|
||||
"""
|
||||
@@ -31325,6 +31436,61 @@ type ProjectV2SortByEdge {
|
||||
node: ProjectV2SortBy
|
||||
}
|
||||
|
||||
"""
|
||||
Represents a sort by field and direction.
|
||||
"""
|
||||
type ProjectV2SortByField {
|
||||
"""
|
||||
The direction of the sorting. Possible values are ASC and DESC.
|
||||
"""
|
||||
direction: OrderDirection!
|
||||
|
||||
"""
|
||||
The field by which items are sorted.
|
||||
"""
|
||||
field: ProjectV2FieldConfiguration!
|
||||
}
|
||||
|
||||
"""
|
||||
The connection type for ProjectV2SortByField.
|
||||
"""
|
||||
type ProjectV2SortByFieldConnection {
|
||||
"""
|
||||
A list of edges.
|
||||
"""
|
||||
edges: [ProjectV2SortByFieldEdge]
|
||||
|
||||
"""
|
||||
A list of nodes.
|
||||
"""
|
||||
nodes: [ProjectV2SortByField]
|
||||
|
||||
"""
|
||||
Information to aid in pagination.
|
||||
"""
|
||||
pageInfo: PageInfo!
|
||||
|
||||
"""
|
||||
Identifies the total count of items in the connection.
|
||||
"""
|
||||
totalCount: Int!
|
||||
}
|
||||
|
||||
"""
|
||||
An edge in a connection.
|
||||
"""
|
||||
type ProjectV2SortByFieldEdge {
|
||||
"""
|
||||
A cursor for use in pagination.
|
||||
"""
|
||||
cursor: String!
|
||||
|
||||
"""
|
||||
The item at the end of the edge.
|
||||
"""
|
||||
node: ProjectV2SortByField
|
||||
}
|
||||
|
||||
"""
|
||||
A view within a ProjectV2.
|
||||
"""
|
||||
@@ -31482,6 +31648,34 @@ type ProjectV2View implements Node {
|
||||
"""
|
||||
last: Int
|
||||
): ProjectV2SortByConnection
|
||||
@deprecated(
|
||||
reason: "The `ProjectV2View#sort_by` API is deprecated in favour of the more capable `ProjectV2View#sort_by_fields` API. Check out the `ProjectV2View#sort_by_fields` API as an example for the more capable alternative. Removal on 2023-04-01 UTC."
|
||||
)
|
||||
|
||||
"""
|
||||
The view's sort-by config.
|
||||
"""
|
||||
sortByFields(
|
||||
"""
|
||||
Returns the elements in the list that come after the specified cursor.
|
||||
"""
|
||||
after: String
|
||||
|
||||
"""
|
||||
Returns the elements in the list that come before the specified cursor.
|
||||
"""
|
||||
before: String
|
||||
|
||||
"""
|
||||
Returns the first _n_ elements from the list.
|
||||
"""
|
||||
first: Int
|
||||
|
||||
"""
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
): ProjectV2SortByFieldConnection
|
||||
|
||||
"""
|
||||
Identifies the date and time when the object was last updated.
|
||||
@@ -31517,6 +31711,39 @@ type ProjectV2View implements Node {
|
||||
"""
|
||||
orderBy: ProjectV2FieldOrder = {field: POSITION, direction: ASC}
|
||||
): ProjectV2FieldConnection
|
||||
@deprecated(
|
||||
reason: "The `ProjectV2View#vertical_group_by` API is deprecated in favour of the more capable `ProjectV2View#vertical_group_by_fields` API. Check out the `ProjectV2View#vertical_group_by_fields` API as an example for the more capable alternative. Removal on 2023-04-01 UTC."
|
||||
)
|
||||
|
||||
"""
|
||||
The view's vertical-group-by field.
|
||||
"""
|
||||
verticalGroupByFields(
|
||||
"""
|
||||
Returns the elements in the list that come after the specified cursor.
|
||||
"""
|
||||
after: String
|
||||
|
||||
"""
|
||||
Returns the elements in the list that come before the specified cursor.
|
||||
"""
|
||||
before: String
|
||||
|
||||
"""
|
||||
Returns the first _n_ elements from the list.
|
||||
"""
|
||||
first: Int
|
||||
|
||||
"""
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
|
||||
"""
|
||||
Ordering options for the project v2 fields returned from the connection.
|
||||
"""
|
||||
orderBy: ProjectV2FieldOrder = {field: POSITION, direction: ASC}
|
||||
): ProjectV2FieldConfigurationConnection
|
||||
|
||||
"""
|
||||
The view's visible fields.
|
||||
@@ -35898,6 +36125,16 @@ type Ref implements Node {
|
||||
Branch protection rules for this ref
|
||||
"""
|
||||
branchProtectionRule: BranchProtectionRule
|
||||
|
||||
"""
|
||||
Compares the current ref as a base ref to another head ref, if the comparison can be made.
|
||||
"""
|
||||
compare(
|
||||
"""
|
||||
The head ref to compare against.
|
||||
"""
|
||||
headRef: String!
|
||||
): Comparison
|
||||
id: ID!
|
||||
|
||||
"""
|
||||
|
||||
@@ -1756,3 +1756,23 @@ upcoming_changes:
|
||||
date: '2023-04-01T00:00:00+00:00'
|
||||
criticality: breaking
|
||||
owner: alcere
|
||||
- location: ProjectV2View.sortBy
|
||||
description:
|
||||
'`sortBy` will be removed. Check out the `ProjectV2View#sort_by_fields`
|
||||
API as an example for the more capable alternative.'
|
||||
reason:
|
||||
The `ProjectV2View#sort_by` API is deprecated in favour of the more capable
|
||||
`ProjectV2View#sort_by_fields` API.
|
||||
date: '2023-04-01T00:00:00+00:00'
|
||||
criticality: breaking
|
||||
owner: traumverloren
|
||||
- location: ProjectV2View.verticalGroupBy
|
||||
description:
|
||||
'`verticalGroupBy` will be removed. Check out the `ProjectV2View#vertical_group_by_fields`
|
||||
API as an example for the more capable alternative.'
|
||||
reason:
|
||||
The `ProjectV2View#vertical_group_by` API is deprecated in favour of the
|
||||
more capable `ProjectV2View#vertical_group_by_fields` API.
|
||||
date: '2023-04-01T00:00:00+00:00'
|
||||
criticality: breaking
|
||||
owner: traumverloren
|
||||
|
||||
@@ -5128,6 +5128,117 @@ input CommittableBranch {
|
||||
repositoryNameWithOwner: String
|
||||
}
|
||||
|
||||
"""
|
||||
Represents a comparison between two commit revisions.
|
||||
"""
|
||||
type Comparison implements Node {
|
||||
"""
|
||||
The number of commits ahead of the base branch.
|
||||
"""
|
||||
aheadBy: Int!
|
||||
|
||||
"""
|
||||
The base revision of this comparison.
|
||||
"""
|
||||
baseTarget: GitObject!
|
||||
|
||||
"""
|
||||
The number of commits behind the base branch.
|
||||
"""
|
||||
behindBy: Int!
|
||||
|
||||
"""
|
||||
The commits which compose this comparison.
|
||||
"""
|
||||
commits(
|
||||
"""
|
||||
Returns the elements in the list that come after the specified cursor.
|
||||
"""
|
||||
after: String
|
||||
|
||||
"""
|
||||
Returns the elements in the list that come before the specified cursor.
|
||||
"""
|
||||
before: String
|
||||
|
||||
"""
|
||||
Returns the first _n_ elements from the list.
|
||||
"""
|
||||
first: Int
|
||||
|
||||
"""
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
): ComparisonCommitConnection!
|
||||
|
||||
"""
|
||||
The head revision of this comparison.
|
||||
"""
|
||||
headTarget: GitObject!
|
||||
id: ID!
|
||||
|
||||
"""
|
||||
The status of this comparison.
|
||||
"""
|
||||
status: ComparisonStatus!
|
||||
}
|
||||
|
||||
"""
|
||||
The connection type for Commit.
|
||||
"""
|
||||
type ComparisonCommitConnection {
|
||||
"""
|
||||
The total count of authors and co-authors across all commits.
|
||||
"""
|
||||
authorCount: Int!
|
||||
|
||||
"""
|
||||
A list of edges.
|
||||
"""
|
||||
edges: [CommitEdge]
|
||||
|
||||
"""
|
||||
A list of nodes.
|
||||
"""
|
||||
nodes: [Commit]
|
||||
|
||||
"""
|
||||
Information to aid in pagination.
|
||||
"""
|
||||
pageInfo: PageInfo!
|
||||
|
||||
"""
|
||||
Identifies the total count of items in the connection.
|
||||
"""
|
||||
totalCount: Int!
|
||||
}
|
||||
|
||||
"""
|
||||
The status of a git comparison between two refs.
|
||||
"""
|
||||
enum ComparisonStatus {
|
||||
"""
|
||||
The head ref is ahead of the base ref.
|
||||
"""
|
||||
AHEAD
|
||||
|
||||
"""
|
||||
The head ref is behind the base ref.
|
||||
"""
|
||||
BEHIND
|
||||
|
||||
"""
|
||||
The head ref is both ahead and behind of the base ref, indicating git history has diverged.
|
||||
"""
|
||||
DIVERGED
|
||||
|
||||
"""
|
||||
The head ref and base ref are identical.
|
||||
"""
|
||||
IDENTICAL
|
||||
}
|
||||
|
||||
"""
|
||||
Represents a 'connected' event on a given issue or pull request.
|
||||
"""
|
||||
@@ -31325,6 +31436,61 @@ type ProjectV2SortByEdge {
|
||||
node: ProjectV2SortBy
|
||||
}
|
||||
|
||||
"""
|
||||
Represents a sort by field and direction.
|
||||
"""
|
||||
type ProjectV2SortByField {
|
||||
"""
|
||||
The direction of the sorting. Possible values are ASC and DESC.
|
||||
"""
|
||||
direction: OrderDirection!
|
||||
|
||||
"""
|
||||
The field by which items are sorted.
|
||||
"""
|
||||
field: ProjectV2FieldConfiguration!
|
||||
}
|
||||
|
||||
"""
|
||||
The connection type for ProjectV2SortByField.
|
||||
"""
|
||||
type ProjectV2SortByFieldConnection {
|
||||
"""
|
||||
A list of edges.
|
||||
"""
|
||||
edges: [ProjectV2SortByFieldEdge]
|
||||
|
||||
"""
|
||||
A list of nodes.
|
||||
"""
|
||||
nodes: [ProjectV2SortByField]
|
||||
|
||||
"""
|
||||
Information to aid in pagination.
|
||||
"""
|
||||
pageInfo: PageInfo!
|
||||
|
||||
"""
|
||||
Identifies the total count of items in the connection.
|
||||
"""
|
||||
totalCount: Int!
|
||||
}
|
||||
|
||||
"""
|
||||
An edge in a connection.
|
||||
"""
|
||||
type ProjectV2SortByFieldEdge {
|
||||
"""
|
||||
A cursor for use in pagination.
|
||||
"""
|
||||
cursor: String!
|
||||
|
||||
"""
|
||||
The item at the end of the edge.
|
||||
"""
|
||||
node: ProjectV2SortByField
|
||||
}
|
||||
|
||||
"""
|
||||
A view within a ProjectV2.
|
||||
"""
|
||||
@@ -31482,6 +31648,34 @@ type ProjectV2View implements Node {
|
||||
"""
|
||||
last: Int
|
||||
): ProjectV2SortByConnection
|
||||
@deprecated(
|
||||
reason: "The `ProjectV2View#sort_by` API is deprecated in favour of the more capable `ProjectV2View#sort_by_fields` API. Check out the `ProjectV2View#sort_by_fields` API as an example for the more capable alternative. Removal on 2023-04-01 UTC."
|
||||
)
|
||||
|
||||
"""
|
||||
The view's sort-by config.
|
||||
"""
|
||||
sortByFields(
|
||||
"""
|
||||
Returns the elements in the list that come after the specified cursor.
|
||||
"""
|
||||
after: String
|
||||
|
||||
"""
|
||||
Returns the elements in the list that come before the specified cursor.
|
||||
"""
|
||||
before: String
|
||||
|
||||
"""
|
||||
Returns the first _n_ elements from the list.
|
||||
"""
|
||||
first: Int
|
||||
|
||||
"""
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
): ProjectV2SortByFieldConnection
|
||||
|
||||
"""
|
||||
Identifies the date and time when the object was last updated.
|
||||
@@ -31517,6 +31711,39 @@ type ProjectV2View implements Node {
|
||||
"""
|
||||
orderBy: ProjectV2FieldOrder = {field: POSITION, direction: ASC}
|
||||
): ProjectV2FieldConnection
|
||||
@deprecated(
|
||||
reason: "The `ProjectV2View#vertical_group_by` API is deprecated in favour of the more capable `ProjectV2View#vertical_group_by_fields` API. Check out the `ProjectV2View#vertical_group_by_fields` API as an example for the more capable alternative. Removal on 2023-04-01 UTC."
|
||||
)
|
||||
|
||||
"""
|
||||
The view's vertical-group-by field.
|
||||
"""
|
||||
verticalGroupByFields(
|
||||
"""
|
||||
Returns the elements in the list that come after the specified cursor.
|
||||
"""
|
||||
after: String
|
||||
|
||||
"""
|
||||
Returns the elements in the list that come before the specified cursor.
|
||||
"""
|
||||
before: String
|
||||
|
||||
"""
|
||||
Returns the first _n_ elements from the list.
|
||||
"""
|
||||
first: Int
|
||||
|
||||
"""
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
|
||||
"""
|
||||
Ordering options for the project v2 fields returned from the connection.
|
||||
"""
|
||||
orderBy: ProjectV2FieldOrder = {field: POSITION, direction: ASC}
|
||||
): ProjectV2FieldConfigurationConnection
|
||||
|
||||
"""
|
||||
The view's visible fields.
|
||||
@@ -35898,6 +36125,16 @@ type Ref implements Node {
|
||||
Branch protection rules for this ref
|
||||
"""
|
||||
branchProtectionRule: BranchProtectionRule
|
||||
|
||||
"""
|
||||
Compares the current ref as a base ref to another head ref, if the comparison can be made.
|
||||
"""
|
||||
compare(
|
||||
"""
|
||||
The head ref to compare against.
|
||||
"""
|
||||
headRef: String!
|
||||
): Comparison
|
||||
id: ID!
|
||||
|
||||
"""
|
||||
|
||||
@@ -1,4 +1,33 @@
|
||||
[
|
||||
{
|
||||
"schemaChanges": [
|
||||
{
|
||||
"title": "The GraphQL schema includes these changes:",
|
||||
"changes": [
|
||||
"<p>Type <code>Comparison</code> was added</p>",
|
||||
"<p>Type <code>ComparisonCommitConnection</code> was added</p>",
|
||||
"<p>Type <code>ComparisonStatus</code> was added</p>",
|
||||
"<p>Type 'ProjectV2SortByField' was added</p>",
|
||||
"<p>Type 'ProjectV2SortByFieldConnection' was added</p>",
|
||||
"<p>Type 'ProjectV2SortByFieldEdge' was added</p>",
|
||||
"<p>Field <code>sortByFields</code> was added to object type 'ProjectV2View'</p>",
|
||||
"<p>Field <code>verticalGroupByFields</code> was added to object type 'ProjectV2View'</p>",
|
||||
"<p>Field <code>compare</code> was added to object type <code>Ref</code></p>"
|
||||
]
|
||||
}
|
||||
],
|
||||
"previewChanges": [],
|
||||
"upcomingChanges": [
|
||||
{
|
||||
"title": "The following changes will be made to the schema:",
|
||||
"changes": [
|
||||
"<p>On member <code>ProjectV2View.sortBy</code>:<code>sortBy</code> will be removed. Check out the <code>ProjectV2View#sort_by_fields</code> API as an example for the more capable alternative. <strong>Effective 2023-04-01</strong>.</p>",
|
||||
"<p>On member <code>ProjectV2View.verticalGroupBy</code>:<code>verticalGroupBy</code> will be removed. Check out the <code>ProjectV2View#vertical_group_by_fields</code> API as an example for the more capable alternative. <strong>Effective 2023-04-01</strong>.</p>"
|
||||
]
|
||||
}
|
||||
],
|
||||
"date": "2022-10-18"
|
||||
},
|
||||
{
|
||||
"schemaChanges": [
|
||||
{
|
||||
|
||||
@@ -13186,6 +13186,161 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Comparison",
|
||||
"kind": "objects",
|
||||
"id": "comparison",
|
||||
"href": "/graphql/reference/objects#comparison",
|
||||
"description": "<p>Represents a comparison between two commit revisions.</p>",
|
||||
"implements": [
|
||||
{
|
||||
"name": "Node",
|
||||
"id": "node",
|
||||
"href": "/graphql/reference/interfaces#node"
|
||||
}
|
||||
],
|
||||
"fields": [
|
||||
{
|
||||
"name": "aheadBy",
|
||||
"description": "<p>The number of commits ahead of the base branch.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "baseTarget",
|
||||
"description": "<p>The base revision of this comparison.</p>",
|
||||
"type": "GitObject!",
|
||||
"id": "gitobject",
|
||||
"kind": "interfaces",
|
||||
"href": "/graphql/reference/interfaces#gitobject"
|
||||
},
|
||||
{
|
||||
"name": "behindBy",
|
||||
"description": "<p>The number of commits behind the base branch.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "commits",
|
||||
"description": "<p>The commits which compose this comparison.</p>",
|
||||
"type": "ComparisonCommitConnection!",
|
||||
"id": "comparisoncommitconnection",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#comparisoncommitconnection",
|
||||
"arguments": [
|
||||
{
|
||||
"name": "after",
|
||||
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "before",
|
||||
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "first",
|
||||
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
|
||||
"type": {
|
||||
"name": "Int",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "last",
|
||||
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
|
||||
"type": {
|
||||
"name": "Int",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "headTarget",
|
||||
"description": "<p>The head revision of this comparison.</p>",
|
||||
"type": "GitObject!",
|
||||
"id": "gitobject",
|
||||
"kind": "interfaces",
|
||||
"href": "/graphql/reference/interfaces#gitobject"
|
||||
},
|
||||
{
|
||||
"name": "status",
|
||||
"description": "<p>The status of this comparison.</p>",
|
||||
"type": "ComparisonStatus!",
|
||||
"id": "comparisonstatus",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#comparisonstatus"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ComparisonCommitConnection",
|
||||
"kind": "objects",
|
||||
"id": "comparisoncommitconnection",
|
||||
"href": "/graphql/reference/objects#comparisoncommitconnection",
|
||||
"description": "<p>The connection type for Commit.</p>",
|
||||
"fields": [
|
||||
{
|
||||
"name": "authorCount",
|
||||
"description": "<p>The total count of authors and co-authors across all commits.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "edges",
|
||||
"description": "<p>A list of edges.</p>",
|
||||
"type": "[CommitEdge]",
|
||||
"id": "commitedge",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#commitedge"
|
||||
},
|
||||
{
|
||||
"name": "nodes",
|
||||
"description": "<p>A list of nodes.</p>",
|
||||
"type": "[Commit]",
|
||||
"id": "commit",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#commit"
|
||||
},
|
||||
{
|
||||
"name": "pageInfo",
|
||||
"description": "<p>Information to aid in pagination.</p>",
|
||||
"type": "PageInfo!",
|
||||
"id": "pageinfo",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#pageinfo"
|
||||
},
|
||||
{
|
||||
"name": "totalCount",
|
||||
"description": "<p>Identifies the total count of items in the connection.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ConnectedEvent",
|
||||
"kind": "objects",
|
||||
@@ -43789,6 +43944,97 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ProjectV2SortByField",
|
||||
"kind": "objects",
|
||||
"id": "projectv2sortbyfield",
|
||||
"href": "/graphql/reference/objects#projectv2sortbyfield",
|
||||
"description": "<p>Represents a sort by field and direction.</p>",
|
||||
"fields": [
|
||||
{
|
||||
"name": "direction",
|
||||
"description": "<p>The direction of the sorting. Possible values are ASC and DESC.</p>",
|
||||
"type": "OrderDirection!",
|
||||
"id": "orderdirection",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#orderdirection"
|
||||
},
|
||||
{
|
||||
"name": "field",
|
||||
"description": "<p>The field by which items are sorted.</p>",
|
||||
"type": "ProjectV2FieldConfiguration!",
|
||||
"id": "projectv2fieldconfiguration",
|
||||
"kind": "unions",
|
||||
"href": "/graphql/reference/unions#projectv2fieldconfiguration"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ProjectV2SortByFieldConnection",
|
||||
"kind": "objects",
|
||||
"id": "projectv2sortbyfieldconnection",
|
||||
"href": "/graphql/reference/objects#projectv2sortbyfieldconnection",
|
||||
"description": "<p>The connection type for ProjectV2SortByField.</p>",
|
||||
"fields": [
|
||||
{
|
||||
"name": "edges",
|
||||
"description": "<p>A list of edges.</p>",
|
||||
"type": "[ProjectV2SortByFieldEdge]",
|
||||
"id": "projectv2sortbyfieldedge",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#projectv2sortbyfieldedge"
|
||||
},
|
||||
{
|
||||
"name": "nodes",
|
||||
"description": "<p>A list of nodes.</p>",
|
||||
"type": "[ProjectV2SortByField]",
|
||||
"id": "projectv2sortbyfield",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#projectv2sortbyfield"
|
||||
},
|
||||
{
|
||||
"name": "pageInfo",
|
||||
"description": "<p>Information to aid in pagination.</p>",
|
||||
"type": "PageInfo!",
|
||||
"id": "pageinfo",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#pageinfo"
|
||||
},
|
||||
{
|
||||
"name": "totalCount",
|
||||
"description": "<p>Identifies the total count of items in the connection.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ProjectV2SortByFieldEdge",
|
||||
"kind": "objects",
|
||||
"id": "projectv2sortbyfieldedge",
|
||||
"href": "/graphql/reference/objects#projectv2sortbyfieldedge",
|
||||
"description": "<p>An edge in a connection.</p>",
|
||||
"fields": [
|
||||
{
|
||||
"name": "cursor",
|
||||
"description": "<p>A cursor for use in pagination.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "node",
|
||||
"description": "<p>The item at the end of the edge.</p>",
|
||||
"type": "ProjectV2SortByField",
|
||||
"id": "projectv2sortbyfield",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#projectv2sortbyfield"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ProjectV2View",
|
||||
"kind": "objects",
|
||||
@@ -44048,6 +44294,58 @@
|
||||
"id": "projectv2sortbyconnection",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#projectv2sortbyconnection",
|
||||
"arguments": [
|
||||
{
|
||||
"name": "after",
|
||||
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "before",
|
||||
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "first",
|
||||
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
|
||||
"type": {
|
||||
"name": "Int",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "last",
|
||||
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
|
||||
"type": {
|
||||
"name": "Int",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
}
|
||||
],
|
||||
"isDeprecated": true,
|
||||
"deprecationReason": "<p>The <code>ProjectV2View#sort_by</code> API is deprecated in favour of the more capable <code>ProjectV2View#sort_by_fields</code> API. Check out the <code>ProjectV2View#sort_by_fields</code> API as an example for the more capable alternative. Removal on 2023-04-01 UTC.</p>"
|
||||
},
|
||||
{
|
||||
"name": "sortByFields",
|
||||
"description": "<p>The view's sort-by config.</p>",
|
||||
"type": "ProjectV2SortByFieldConnection",
|
||||
"id": "projectv2sortbyfieldconnection",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#projectv2sortbyfieldconnection",
|
||||
"arguments": [
|
||||
{
|
||||
"name": "after",
|
||||
@@ -44106,6 +44404,68 @@
|
||||
"id": "projectv2fieldconnection",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#projectv2fieldconnection",
|
||||
"arguments": [
|
||||
{
|
||||
"name": "after",
|
||||
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "before",
|
||||
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "first",
|
||||
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
|
||||
"type": {
|
||||
"name": "Int",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "last",
|
||||
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
|
||||
"type": {
|
||||
"name": "Int",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "orderBy",
|
||||
"description": "<p>Ordering options for the project v2 fields returned from the connection.</p>",
|
||||
"type": {
|
||||
"name": "ProjectV2FieldOrder",
|
||||
"id": "projectv2fieldorder",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#projectv2fieldorder"
|
||||
}
|
||||
}
|
||||
],
|
||||
"isDeprecated": true,
|
||||
"deprecationReason": "<p>The <code>ProjectV2View#vertical_group_by</code> API is deprecated in favour of the more capable <code>ProjectV2View#vertical_group_by_fields</code> API. Check out the <code>ProjectV2View#vertical_group_by_fields</code> API as an example for the more capable alternative. Removal on 2023-04-01 UTC.</p>"
|
||||
},
|
||||
{
|
||||
"name": "verticalGroupByFields",
|
||||
"description": "<p>The view's vertical-group-by field.</p>",
|
||||
"type": "ProjectV2FieldConfigurationConnection",
|
||||
"id": "projectv2fieldconfigurationconnection",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#projectv2fieldconfigurationconnection",
|
||||
"arguments": [
|
||||
{
|
||||
"name": "after",
|
||||
@@ -49797,6 +50157,26 @@
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#branchprotectionrule"
|
||||
},
|
||||
{
|
||||
"name": "compare",
|
||||
"description": "<p>Compares the current ref as a base ref to another head ref, if the comparison can be made.</p>",
|
||||
"type": "Comparison",
|
||||
"id": "comparison",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#comparison",
|
||||
"arguments": [
|
||||
{
|
||||
"name": "headRef",
|
||||
"description": "<p>The head ref to compare against.</p>",
|
||||
"type": {
|
||||
"name": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "name",
|
||||
"description": "<p>The ref name.</p>",
|
||||
@@ -74543,6 +74923,31 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ComparisonStatus",
|
||||
"kind": "enums",
|
||||
"id": "comparisonstatus",
|
||||
"href": "/graphql/reference/enums#comparisonstatus",
|
||||
"description": "<p>The status of a git comparison between two refs.</p>",
|
||||
"values": [
|
||||
{
|
||||
"name": "AHEAD",
|
||||
"description": "<p>The head ref is ahead of the base ref.</p>"
|
||||
},
|
||||
{
|
||||
"name": "BEHIND",
|
||||
"description": "<p>The head ref is behind the base ref.</p>"
|
||||
},
|
||||
{
|
||||
"name": "DIVERGED",
|
||||
"description": "<p>The head ref is both ahead and behind of the base ref, indicating git history has diverged.</p>"
|
||||
},
|
||||
{
|
||||
"name": "IDENTICAL",
|
||||
"description": "<p>The head ref and base ref are identical.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ContributionLevel",
|
||||
"kind": "enums",
|
||||
|
||||
@@ -11479,6 +11479,161 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Comparison",
|
||||
"kind": "objects",
|
||||
"id": "comparison",
|
||||
"href": "/graphql/reference/objects#comparison",
|
||||
"description": "<p>Represents a comparison between two commit revisions.</p>",
|
||||
"implements": [
|
||||
{
|
||||
"name": "Node",
|
||||
"id": "node",
|
||||
"href": "/graphql/reference/interfaces#node"
|
||||
}
|
||||
],
|
||||
"fields": [
|
||||
{
|
||||
"name": "aheadBy",
|
||||
"description": "<p>The number of commits ahead of the base branch.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "baseTarget",
|
||||
"description": "<p>The base revision of this comparison.</p>",
|
||||
"type": "GitObject!",
|
||||
"id": "gitobject",
|
||||
"kind": "interfaces",
|
||||
"href": "/graphql/reference/interfaces#gitobject"
|
||||
},
|
||||
{
|
||||
"name": "behindBy",
|
||||
"description": "<p>The number of commits behind the base branch.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "commits",
|
||||
"description": "<p>The commits which compose this comparison.</p>",
|
||||
"type": "ComparisonCommitConnection!",
|
||||
"id": "comparisoncommitconnection",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#comparisoncommitconnection",
|
||||
"arguments": [
|
||||
{
|
||||
"name": "after",
|
||||
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "before",
|
||||
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "first",
|
||||
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
|
||||
"type": {
|
||||
"name": "Int",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "last",
|
||||
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
|
||||
"type": {
|
||||
"name": "Int",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "headTarget",
|
||||
"description": "<p>The head revision of this comparison.</p>",
|
||||
"type": "GitObject!",
|
||||
"id": "gitobject",
|
||||
"kind": "interfaces",
|
||||
"href": "/graphql/reference/interfaces#gitobject"
|
||||
},
|
||||
{
|
||||
"name": "status",
|
||||
"description": "<p>The status of this comparison.</p>",
|
||||
"type": "ComparisonStatus!",
|
||||
"id": "comparisonstatus",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#comparisonstatus"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ComparisonCommitConnection",
|
||||
"kind": "objects",
|
||||
"id": "comparisoncommitconnection",
|
||||
"href": "/graphql/reference/objects#comparisoncommitconnection",
|
||||
"description": "<p>The connection type for Commit.</p>",
|
||||
"fields": [
|
||||
{
|
||||
"name": "authorCount",
|
||||
"description": "<p>The total count of authors and co-authors across all commits.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "edges",
|
||||
"description": "<p>A list of edges.</p>",
|
||||
"type": "[CommitEdge]",
|
||||
"id": "commitedge",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#commitedge"
|
||||
},
|
||||
{
|
||||
"name": "nodes",
|
||||
"description": "<p>A list of nodes.</p>",
|
||||
"type": "[Commit]",
|
||||
"id": "commit",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#commit"
|
||||
},
|
||||
{
|
||||
"name": "pageInfo",
|
||||
"description": "<p>Information to aid in pagination.</p>",
|
||||
"type": "PageInfo!",
|
||||
"id": "pageinfo",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#pageinfo"
|
||||
},
|
||||
{
|
||||
"name": "totalCount",
|
||||
"description": "<p>Identifies the total count of items in the connection.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ConnectedEvent",
|
||||
"kind": "objects",
|
||||
@@ -39979,6 +40134,26 @@
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#branchprotectionrule"
|
||||
},
|
||||
{
|
||||
"name": "compare",
|
||||
"description": "<p>Compares the current ref as a base ref to another head ref, if the comparison can be made.</p>",
|
||||
"type": "Comparison",
|
||||
"id": "comparison",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#comparison",
|
||||
"arguments": [
|
||||
{
|
||||
"name": "headRef",
|
||||
"description": "<p>The head ref to compare against.</p>",
|
||||
"type": {
|
||||
"name": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "name",
|
||||
"description": "<p>The ref name.</p>",
|
||||
@@ -60980,6 +61155,31 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ComparisonStatus",
|
||||
"kind": "enums",
|
||||
"id": "comparisonstatus",
|
||||
"href": "/graphql/reference/enums#comparisonstatus",
|
||||
"description": "<p>The status of a git comparison between two refs.</p>",
|
||||
"values": [
|
||||
{
|
||||
"name": "AHEAD",
|
||||
"description": "<p>The head ref is ahead of the base ref.</p>"
|
||||
},
|
||||
{
|
||||
"name": "BEHIND",
|
||||
"description": "<p>The head ref is behind the base ref.</p>"
|
||||
},
|
||||
{
|
||||
"name": "DIVERGED",
|
||||
"description": "<p>The head ref is both ahead and behind of the base ref, indicating git history has diverged.</p>"
|
||||
},
|
||||
{
|
||||
"name": "IDENTICAL",
|
||||
"description": "<p>The head ref and base ref are identical.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ContributionLevel",
|
||||
"kind": "enums",
|
||||
|
||||
@@ -13186,6 +13186,161 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "Comparison",
|
||||
"kind": "objects",
|
||||
"id": "comparison",
|
||||
"href": "/graphql/reference/objects#comparison",
|
||||
"description": "<p>Represents a comparison between two commit revisions.</p>",
|
||||
"implements": [
|
||||
{
|
||||
"name": "Node",
|
||||
"id": "node",
|
||||
"href": "/graphql/reference/interfaces#node"
|
||||
}
|
||||
],
|
||||
"fields": [
|
||||
{
|
||||
"name": "aheadBy",
|
||||
"description": "<p>The number of commits ahead of the base branch.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "baseTarget",
|
||||
"description": "<p>The base revision of this comparison.</p>",
|
||||
"type": "GitObject!",
|
||||
"id": "gitobject",
|
||||
"kind": "interfaces",
|
||||
"href": "/graphql/reference/interfaces#gitobject"
|
||||
},
|
||||
{
|
||||
"name": "behindBy",
|
||||
"description": "<p>The number of commits behind the base branch.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "commits",
|
||||
"description": "<p>The commits which compose this comparison.</p>",
|
||||
"type": "ComparisonCommitConnection!",
|
||||
"id": "comparisoncommitconnection",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#comparisoncommitconnection",
|
||||
"arguments": [
|
||||
{
|
||||
"name": "after",
|
||||
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "before",
|
||||
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "first",
|
||||
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
|
||||
"type": {
|
||||
"name": "Int",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "last",
|
||||
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
|
||||
"type": {
|
||||
"name": "Int",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "headTarget",
|
||||
"description": "<p>The head revision of this comparison.</p>",
|
||||
"type": "GitObject!",
|
||||
"id": "gitobject",
|
||||
"kind": "interfaces",
|
||||
"href": "/graphql/reference/interfaces#gitobject"
|
||||
},
|
||||
{
|
||||
"name": "status",
|
||||
"description": "<p>The status of this comparison.</p>",
|
||||
"type": "ComparisonStatus!",
|
||||
"id": "comparisonstatus",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#comparisonstatus"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ComparisonCommitConnection",
|
||||
"kind": "objects",
|
||||
"id": "comparisoncommitconnection",
|
||||
"href": "/graphql/reference/objects#comparisoncommitconnection",
|
||||
"description": "<p>The connection type for Commit.</p>",
|
||||
"fields": [
|
||||
{
|
||||
"name": "authorCount",
|
||||
"description": "<p>The total count of authors and co-authors across all commits.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "edges",
|
||||
"description": "<p>A list of edges.</p>",
|
||||
"type": "[CommitEdge]",
|
||||
"id": "commitedge",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#commitedge"
|
||||
},
|
||||
{
|
||||
"name": "nodes",
|
||||
"description": "<p>A list of nodes.</p>",
|
||||
"type": "[Commit]",
|
||||
"id": "commit",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#commit"
|
||||
},
|
||||
{
|
||||
"name": "pageInfo",
|
||||
"description": "<p>Information to aid in pagination.</p>",
|
||||
"type": "PageInfo!",
|
||||
"id": "pageinfo",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#pageinfo"
|
||||
},
|
||||
{
|
||||
"name": "totalCount",
|
||||
"description": "<p>Identifies the total count of items in the connection.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ConnectedEvent",
|
||||
"kind": "objects",
|
||||
@@ -43789,6 +43944,97 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ProjectV2SortByField",
|
||||
"kind": "objects",
|
||||
"id": "projectv2sortbyfield",
|
||||
"href": "/graphql/reference/objects#projectv2sortbyfield",
|
||||
"description": "<p>Represents a sort by field and direction.</p>",
|
||||
"fields": [
|
||||
{
|
||||
"name": "direction",
|
||||
"description": "<p>The direction of the sorting. Possible values are ASC and DESC.</p>",
|
||||
"type": "OrderDirection!",
|
||||
"id": "orderdirection",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#orderdirection"
|
||||
},
|
||||
{
|
||||
"name": "field",
|
||||
"description": "<p>The field by which items are sorted.</p>",
|
||||
"type": "ProjectV2FieldConfiguration!",
|
||||
"id": "projectv2fieldconfiguration",
|
||||
"kind": "unions",
|
||||
"href": "/graphql/reference/unions#projectv2fieldconfiguration"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ProjectV2SortByFieldConnection",
|
||||
"kind": "objects",
|
||||
"id": "projectv2sortbyfieldconnection",
|
||||
"href": "/graphql/reference/objects#projectv2sortbyfieldconnection",
|
||||
"description": "<p>The connection type for ProjectV2SortByField.</p>",
|
||||
"fields": [
|
||||
{
|
||||
"name": "edges",
|
||||
"description": "<p>A list of edges.</p>",
|
||||
"type": "[ProjectV2SortByFieldEdge]",
|
||||
"id": "projectv2sortbyfieldedge",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#projectv2sortbyfieldedge"
|
||||
},
|
||||
{
|
||||
"name": "nodes",
|
||||
"description": "<p>A list of nodes.</p>",
|
||||
"type": "[ProjectV2SortByField]",
|
||||
"id": "projectv2sortbyfield",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#projectv2sortbyfield"
|
||||
},
|
||||
{
|
||||
"name": "pageInfo",
|
||||
"description": "<p>Information to aid in pagination.</p>",
|
||||
"type": "PageInfo!",
|
||||
"id": "pageinfo",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#pageinfo"
|
||||
},
|
||||
{
|
||||
"name": "totalCount",
|
||||
"description": "<p>Identifies the total count of items in the connection.</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ProjectV2SortByFieldEdge",
|
||||
"kind": "objects",
|
||||
"id": "projectv2sortbyfieldedge",
|
||||
"href": "/graphql/reference/objects#projectv2sortbyfieldedge",
|
||||
"description": "<p>An edge in a connection.</p>",
|
||||
"fields": [
|
||||
{
|
||||
"name": "cursor",
|
||||
"description": "<p>A cursor for use in pagination.</p>",
|
||||
"type": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "node",
|
||||
"description": "<p>The item at the end of the edge.</p>",
|
||||
"type": "ProjectV2SortByField",
|
||||
"id": "projectv2sortbyfield",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#projectv2sortbyfield"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ProjectV2View",
|
||||
"kind": "objects",
|
||||
@@ -44048,6 +44294,58 @@
|
||||
"id": "projectv2sortbyconnection",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#projectv2sortbyconnection",
|
||||
"arguments": [
|
||||
{
|
||||
"name": "after",
|
||||
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "before",
|
||||
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "first",
|
||||
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
|
||||
"type": {
|
||||
"name": "Int",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "last",
|
||||
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
|
||||
"type": {
|
||||
"name": "Int",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
}
|
||||
],
|
||||
"isDeprecated": true,
|
||||
"deprecationReason": "<p>The <code>ProjectV2View#sort_by</code> API is deprecated in favour of the more capable <code>ProjectV2View#sort_by_fields</code> API. Check out the <code>ProjectV2View#sort_by_fields</code> API as an example for the more capable alternative. Removal on 2023-04-01 UTC.</p>"
|
||||
},
|
||||
{
|
||||
"name": "sortByFields",
|
||||
"description": "<p>The view's sort-by config.</p>",
|
||||
"type": "ProjectV2SortByFieldConnection",
|
||||
"id": "projectv2sortbyfieldconnection",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#projectv2sortbyfieldconnection",
|
||||
"arguments": [
|
||||
{
|
||||
"name": "after",
|
||||
@@ -44106,6 +44404,68 @@
|
||||
"id": "projectv2fieldconnection",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#projectv2fieldconnection",
|
||||
"arguments": [
|
||||
{
|
||||
"name": "after",
|
||||
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "before",
|
||||
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
|
||||
"type": {
|
||||
"name": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "first",
|
||||
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
|
||||
"type": {
|
||||
"name": "Int",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "last",
|
||||
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
|
||||
"type": {
|
||||
"name": "Int",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "orderBy",
|
||||
"description": "<p>Ordering options for the project v2 fields returned from the connection.</p>",
|
||||
"type": {
|
||||
"name": "ProjectV2FieldOrder",
|
||||
"id": "projectv2fieldorder",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#projectv2fieldorder"
|
||||
}
|
||||
}
|
||||
],
|
||||
"isDeprecated": true,
|
||||
"deprecationReason": "<p>The <code>ProjectV2View#vertical_group_by</code> API is deprecated in favour of the more capable <code>ProjectV2View#vertical_group_by_fields</code> API. Check out the <code>ProjectV2View#vertical_group_by_fields</code> API as an example for the more capable alternative. Removal on 2023-04-01 UTC.</p>"
|
||||
},
|
||||
{
|
||||
"name": "verticalGroupByFields",
|
||||
"description": "<p>The view's vertical-group-by field.</p>",
|
||||
"type": "ProjectV2FieldConfigurationConnection",
|
||||
"id": "projectv2fieldconfigurationconnection",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#projectv2fieldconfigurationconnection",
|
||||
"arguments": [
|
||||
{
|
||||
"name": "after",
|
||||
@@ -49797,6 +50157,26 @@
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#branchprotectionrule"
|
||||
},
|
||||
{
|
||||
"name": "compare",
|
||||
"description": "<p>Compares the current ref as a base ref to another head ref, if the comparison can be made.</p>",
|
||||
"type": "Comparison",
|
||||
"id": "comparison",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#comparison",
|
||||
"arguments": [
|
||||
{
|
||||
"name": "headRef",
|
||||
"description": "<p>The head ref to compare against.</p>",
|
||||
"type": {
|
||||
"name": "String!",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "name",
|
||||
"description": "<p>The ref name.</p>",
|
||||
@@ -74543,6 +74923,31 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ComparisonStatus",
|
||||
"kind": "enums",
|
||||
"id": "comparisonstatus",
|
||||
"href": "/graphql/reference/enums#comparisonstatus",
|
||||
"description": "<p>The status of a git comparison between two refs.</p>",
|
||||
"values": [
|
||||
{
|
||||
"name": "AHEAD",
|
||||
"description": "<p>The head ref is ahead of the base ref.</p>"
|
||||
},
|
||||
{
|
||||
"name": "BEHIND",
|
||||
"description": "<p>The head ref is behind the base ref.</p>"
|
||||
},
|
||||
{
|
||||
"name": "DIVERGED",
|
||||
"description": "<p>The head ref is both ahead and behind of the base ref, indicating git history has diverged.</p>"
|
||||
},
|
||||
{
|
||||
"name": "IDENTICAL",
|
||||
"description": "<p>The head ref and base ref are identical.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ContributionLevel",
|
||||
"kind": "enums",
|
||||
|
||||
@@ -1,6 +1,22 @@
|
||||
{
|
||||
"dotcom": {
|
||||
"2023-04-01": [
|
||||
{
|
||||
"location": "ProjectV2View.verticalGroupBy",
|
||||
"description": "<p><code>verticalGroupBy</code> will be removed. Check out the <code>ProjectV2View#vertical_group_by_fields</code> API as an example for the more capable alternative.</p>",
|
||||
"reason": "<p>The <code>ProjectV2View#vertical_group_by</code> API is deprecated in favour of the more capable <code>ProjectV2View#vertical_group_by_fields</code> API.</p>",
|
||||
"date": "2023-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "traumverloren"
|
||||
},
|
||||
{
|
||||
"location": "ProjectV2View.sortBy",
|
||||
"description": "<p><code>sortBy</code> will be removed. Check out the <code>ProjectV2View#sort_by_fields</code> API as an example for the more capable alternative.</p>",
|
||||
"reason": "<p>The <code>ProjectV2View#sort_by</code> API is deprecated in favour of the more capable <code>ProjectV2View#sort_by_fields</code> API.</p>",
|
||||
"date": "2023-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "traumverloren"
|
||||
},
|
||||
{
|
||||
"location": "ProjectV2View.groupBy",
|
||||
"description": "<p><code>groupBy</code> will be removed. Check out the <code>ProjectV2View#group_by_fields</code> API as an example for the more capable alternative.</p>",
|
||||
@@ -1467,6 +1483,22 @@
|
||||
},
|
||||
"ghec": {
|
||||
"2023-04-01": [
|
||||
{
|
||||
"location": "ProjectV2View.verticalGroupBy",
|
||||
"description": "<p><code>verticalGroupBy</code> will be removed. Check out the <code>ProjectV2View#vertical_group_by_fields</code> API as an example for the more capable alternative.</p>",
|
||||
"reason": "<p>The <code>ProjectV2View#vertical_group_by</code> API is deprecated in favour of the more capable <code>ProjectV2View#vertical_group_by_fields</code> API.</p>",
|
||||
"date": "2023-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "traumverloren"
|
||||
},
|
||||
{
|
||||
"location": "ProjectV2View.sortBy",
|
||||
"description": "<p><code>sortBy</code> will be removed. Check out the <code>ProjectV2View#sort_by_fields</code> API as an example for the more capable alternative.</p>",
|
||||
"reason": "<p>The <code>ProjectV2View#sort_by</code> API is deprecated in favour of the more capable <code>ProjectV2View#sort_by_fields</code> API.</p>",
|
||||
"date": "2023-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "traumverloren"
|
||||
},
|
||||
{
|
||||
"location": "ProjectV2View.groupBy",
|
||||
"description": "<p><code>groupBy</code> will be removed. Check out the <code>ProjectV2View#group_by_fields</code> API as an example for the more capable alternative.</p>",
|
||||
@@ -3647,6 +3679,22 @@
|
||||
},
|
||||
"ghae": {
|
||||
"2023-04-01": [
|
||||
{
|
||||
"location": "ProjectV2View.verticalGroupBy",
|
||||
"description": "<p><code>verticalGroupBy</code> will be removed. Check out the <code>ProjectV2View#vertical_group_by_fields</code> API as an example for the more capable alternative.</p>",
|
||||
"reason": "<p>The <code>ProjectV2View#vertical_group_by</code> API is deprecated in favour of the more capable <code>ProjectV2View#vertical_group_by_fields</code> API.</p>",
|
||||
"date": "2023-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "traumverloren"
|
||||
},
|
||||
{
|
||||
"location": "ProjectV2View.sortBy",
|
||||
"description": "<p><code>sortBy</code> will be removed. Check out the <code>ProjectV2View#sort_by_fields</code> API as an example for the more capable alternative.</p>",
|
||||
"reason": "<p>The <code>ProjectV2View#sort_by</code> API is deprecated in favour of the more capable <code>ProjectV2View#sort_by_fields</code> API.</p>",
|
||||
"date": "2023-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "traumverloren"
|
||||
},
|
||||
{
|
||||
"location": "ProjectV2View.groupBy",
|
||||
"description": "<p><code>groupBy</code> will be removed. Check out the <code>ProjectV2View#group_by_fields</code> API as an example for the more capable alternative.</p>",
|
||||
|
||||
Reference in New Issue
Block a user