Merge branch 'main' into repo-sync
This commit is contained in:
@@ -21792,6 +21792,11 @@ enum OrganizationMembersCanCreateRepositoriesSettingValue {
|
||||
"""
|
||||
DISABLED
|
||||
|
||||
"""
|
||||
Members will be able to create only internal repositories.
|
||||
"""
|
||||
INTERNAL
|
||||
|
||||
"""
|
||||
Members will be able to create only private repositories.
|
||||
"""
|
||||
|
||||
@@ -22119,6 +22119,11 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr
|
||||
"""
|
||||
email: String
|
||||
|
||||
"""
|
||||
The estimated next GitHub Sponsors payout for this user/organization in cents (USD).
|
||||
"""
|
||||
estimatedNextSponsorsPayoutInCents: Int!
|
||||
|
||||
"""
|
||||
True if this user/organization has a GitHub Sponsors listing.
|
||||
"""
|
||||
@@ -22261,6 +22266,11 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr
|
||||
last: Int
|
||||
): OrganizationMemberConnection!
|
||||
|
||||
"""
|
||||
The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).
|
||||
"""
|
||||
monthlyEstimatedSponsorsIncomeInCents: Int!
|
||||
|
||||
"""
|
||||
The organization's public profile name.
|
||||
"""
|
||||
@@ -23425,6 +23435,11 @@ enum OrganizationMembersCanCreateRepositoriesSettingValue {
|
||||
"""
|
||||
DISABLED
|
||||
|
||||
"""
|
||||
Members will be able to create only internal repositories.
|
||||
"""
|
||||
INTERNAL
|
||||
|
||||
"""
|
||||
Members will be able to create only private repositories.
|
||||
"""
|
||||
@@ -37069,6 +37084,11 @@ enum SponsorOrderField {
|
||||
Entities that can be sponsored through GitHub Sponsors
|
||||
"""
|
||||
interface Sponsorable {
|
||||
"""
|
||||
The estimated next GitHub Sponsors payout for this user/organization in cents (USD).
|
||||
"""
|
||||
estimatedNextSponsorsPayoutInCents: Int!
|
||||
|
||||
"""
|
||||
True if this user/organization has a GitHub Sponsors listing.
|
||||
"""
|
||||
@@ -37089,6 +37109,11 @@ interface Sponsorable {
|
||||
"""
|
||||
isSponsoringViewer: Boolean!
|
||||
|
||||
"""
|
||||
The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).
|
||||
"""
|
||||
monthlyEstimatedSponsorsIncomeInCents: Int!
|
||||
|
||||
"""
|
||||
List of users and organizations this entity is sponsoring.
|
||||
"""
|
||||
@@ -43673,6 +43698,11 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
|
||||
"""
|
||||
email: String!
|
||||
|
||||
"""
|
||||
The estimated next GitHub Sponsors payout for this user/organization in cents (USD).
|
||||
"""
|
||||
estimatedNextSponsorsPayoutInCents: Int!
|
||||
|
||||
"""
|
||||
A list of users the given user is followed by.
|
||||
"""
|
||||
@@ -43960,6 +43990,11 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
|
||||
"""
|
||||
login: String!
|
||||
|
||||
"""
|
||||
The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).
|
||||
"""
|
||||
monthlyEstimatedSponsorsIncomeInCents: Int!
|
||||
|
||||
"""
|
||||
The user's public profile name.
|
||||
"""
|
||||
|
||||
@@ -1,4 +1,23 @@
|
||||
[
|
||||
{
|
||||
"schemaChanges": [
|
||||
{
|
||||
"title": "The GraphQL schema includes these changes:",
|
||||
"changes": [
|
||||
"Field `estimatedNextSponsorsPayoutInCents` was added to object type `Organization`",
|
||||
"Field `monthlyEstimatedSponsorsIncomeInCents` was added to object type `Organization`",
|
||||
"Enum value `INTERNAL` was added to enum `OrganizationMembersCanCreateRepositoriesSettingValue`",
|
||||
"Field `estimatedNextSponsorsPayoutInCents` was added to interface `Sponsorable`",
|
||||
"Field `monthlyEstimatedSponsorsIncomeInCents` was added to interface `Sponsorable`",
|
||||
"Field `estimatedNextSponsorsPayoutInCents` was added to object type `User`",
|
||||
"Field `monthlyEstimatedSponsorsIncomeInCents` was added to object type `User`"
|
||||
]
|
||||
}
|
||||
],
|
||||
"previewChanges": [],
|
||||
"upcomingChanges": [],
|
||||
"date": "2021-08-18"
|
||||
},
|
||||
{
|
||||
"schemaChanges": [
|
||||
{
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -667,255 +667,6 @@
|
||||
"href": "/graphql/overview/schema-previews#team-review-assignments-preview"
|
||||
}
|
||||
],
|
||||
"ghes-2.21": [
|
||||
{
|
||||
"title": "Access to package version deletion preview",
|
||||
"description": "This preview adds support for the DeletePackageVersion mutation which enables deletion of private package versions.",
|
||||
"toggled_by": "package-deletes-preview",
|
||||
"toggled_on": [
|
||||
"Mutation.deletePackageVersion",
|
||||
"RegistryPackageVersion.deleted"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/pe-package-registry"
|
||||
],
|
||||
"accept_header": "application/vnd.github.package-deletes-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#access-to-package-version-deletion-preview"
|
||||
},
|
||||
{
|
||||
"title": "GitHub packages preview",
|
||||
"description": "This preview adds support for objects relating to GitHub Packages.",
|
||||
"toggled_by": "packages-preview",
|
||||
"toggled_on": [
|
||||
"Package",
|
||||
"PackageFile",
|
||||
"PackageFileOrder",
|
||||
"PackageFileOrderField",
|
||||
"PackageOrder",
|
||||
"PackageOrderField",
|
||||
"PackageOwner",
|
||||
"PackageStatistics",
|
||||
"PackageTag",
|
||||
"PackageVersion",
|
||||
"PackageVersionOrder",
|
||||
"PackageVersionOrderField",
|
||||
"PackageVersionStatistics",
|
||||
"Organization.packages",
|
||||
"PackageMetadatum.packageVersion",
|
||||
"Repository.packages",
|
||||
"User.packages",
|
||||
"PackageConnection.nodes",
|
||||
"PackageFileConnection.nodes",
|
||||
"PackageTagConnection.nodes",
|
||||
"PackageVersionConnection.nodes",
|
||||
"PackageEdge.node",
|
||||
"PackageFileEdge.node",
|
||||
"PackageTagEdge.node",
|
||||
"PackageVersionEdge.node",
|
||||
"CreatePackageVersionPayload.packageVersion",
|
||||
"UpdatePackageVersionPayload.packageVersion",
|
||||
"CreatePackageFilePayload.packageFile",
|
||||
"UpdatePackageFilePayload.packageFile",
|
||||
"CreatePackageVersionMetadataPayload.packageVersion",
|
||||
"AddPackageTagPayload.package",
|
||||
"DeletePackageTagPayload.package"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/pe-package-registry"
|
||||
],
|
||||
"accept_header": "application/vnd.github.packages-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#github-packages-preview"
|
||||
},
|
||||
{
|
||||
"title": "Deployments preview",
|
||||
"description": "This preview adds support for deployments mutations and new deployments features.",
|
||||
"toggled_by": "flash-preview",
|
||||
"toggled_on": [
|
||||
"DeploymentStatus.environment",
|
||||
"Mutation.createDeploymentStatus",
|
||||
"Mutation.createDeployment"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/ecosystem-api"
|
||||
],
|
||||
"accept_header": "application/vnd.github.flash-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#deployments-preview"
|
||||
},
|
||||
{
|
||||
"title": "Checks preview",
|
||||
"description": "This preview adds support for reading checks created by GitHub Apps.",
|
||||
"toggled_by": "antiope-preview",
|
||||
"toggled_on": [
|
||||
"CheckAnnotationRange",
|
||||
"CheckAnnotationPosition",
|
||||
"CheckAnnotationSpan",
|
||||
"CheckAnnotation",
|
||||
"CheckAnnotationConnection.nodes",
|
||||
"CheckAnnotationData",
|
||||
"CheckAnnotationEdge.node",
|
||||
"CheckAnnotationLevel",
|
||||
"CheckConclusionState",
|
||||
"CheckStatusState",
|
||||
"CheckSuiteAutoTriggerPreference",
|
||||
"CheckRun",
|
||||
"CheckRunConnection.nodes",
|
||||
"CheckRunEdge.node",
|
||||
"CheckRunAction",
|
||||
"CheckRunFilter",
|
||||
"CheckRunOutput",
|
||||
"CheckRunOutputImage",
|
||||
"CheckRunType",
|
||||
"CheckSuite",
|
||||
"CheckSuiteConnection.nodes",
|
||||
"CheckSuiteEdge.node",
|
||||
"CheckSuiteFilter",
|
||||
"Commit.checkSuites",
|
||||
"Mutation.createCheckRun",
|
||||
"Mutation.createCheckSuite",
|
||||
"Mutation.rerequestCheckSuite",
|
||||
"Mutation.updateCheckRun",
|
||||
"Mutation.updateCheckSuitePreferences",
|
||||
"Push",
|
||||
"RequestableCheckStatusState",
|
||||
"UpdateCheckSuitePayload.checkSuite"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/ce-extensibility"
|
||||
],
|
||||
"accept_header": "application/vnd.github.antiope-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#checks-preview"
|
||||
},
|
||||
{
|
||||
"title": "Merge info preview",
|
||||
"description": "This preview adds support for accessing fields that provide more detailed information about a pull request's merge state.",
|
||||
"toggled_by": "merge-info-preview",
|
||||
"toggled_on": [
|
||||
"PullRequest.canBeRebased",
|
||||
"PullRequest.mergeStateStatus"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/pe-pull-requests"
|
||||
],
|
||||
"accept_header": "application/vnd.github.merge-info-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#merge-info-preview"
|
||||
},
|
||||
{
|
||||
"title": "Update refs preview",
|
||||
"description": "This preview adds support for updating multiple refs in a single operation.",
|
||||
"toggled_by": "update-refs-preview",
|
||||
"toggled_on": [
|
||||
"Mutation.updateRefs",
|
||||
"GitRefname",
|
||||
"RefUpdate"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/pe-repos"
|
||||
],
|
||||
"accept_header": "application/vnd.github.update-refs-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#update-refs-preview"
|
||||
},
|
||||
{
|
||||
"title": "Project event details preview",
|
||||
"description": "This preview adds project, project card, and project column details to project-related issue events.",
|
||||
"toggled_by": "starfox-preview",
|
||||
"toggled_on": [
|
||||
"AddedToProjectEvent.project",
|
||||
"AddedToProjectEvent.projectCard",
|
||||
"AddedToProjectEvent.projectColumnName",
|
||||
"ConvertedNoteToIssueEvent.project",
|
||||
"ConvertedNoteToIssueEvent.projectCard",
|
||||
"ConvertedNoteToIssueEvent.projectColumnName",
|
||||
"MovedColumnsInProjectEvent.project",
|
||||
"MovedColumnsInProjectEvent.projectCard",
|
||||
"MovedColumnsInProjectEvent.projectColumnName",
|
||||
"MovedColumnsInProjectEvent.previousProjectColumnName",
|
||||
"RemovedFromProjectEvent.project",
|
||||
"RemovedFromProjectEvent.projectColumnName"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/github-projects"
|
||||
],
|
||||
"accept_header": "application/vnd.github.starfox-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#project-event-details-preview"
|
||||
},
|
||||
{
|
||||
"title": "Create content attachments preview",
|
||||
"description": "This preview adds support for creating content attachments.",
|
||||
"toggled_by": "corsair-preview",
|
||||
"toggled_on": [
|
||||
"Mutation.createContentAttachment"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/ce-extensibility"
|
||||
],
|
||||
"accept_header": "application/vnd.github.corsair-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#create-content-attachments-preview"
|
||||
},
|
||||
{
|
||||
"title": "Pinned issues preview",
|
||||
"description": "This preview adds support for pinned issues.",
|
||||
"toggled_by": "elektra-preview",
|
||||
"toggled_on": [
|
||||
"Repository.pinnedIssues",
|
||||
"PinnedIssue",
|
||||
"PinnedIssueEdge",
|
||||
"PinnedIssueConnection",
|
||||
"Mutation.pinIssue",
|
||||
"Mutation.unpinIssue"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/pe-pull-requests"
|
||||
],
|
||||
"accept_header": "application/vnd.github.elektra-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#pinned-issues-preview"
|
||||
},
|
||||
{
|
||||
"title": "Labels preview",
|
||||
"description": "This preview adds support for adding, updating, creating and deleting labels.",
|
||||
"toggled_by": "bane-preview",
|
||||
"toggled_on": [
|
||||
"Mutation.createLabel",
|
||||
"Mutation.deleteLabel",
|
||||
"Mutation.updateLabel"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/pe-pull-requests"
|
||||
],
|
||||
"accept_header": "application/vnd.github.bane-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#labels-preview"
|
||||
},
|
||||
{
|
||||
"title": "Import project preview",
|
||||
"description": "This preview adds support for importing projects.",
|
||||
"toggled_by": "slothette-preview",
|
||||
"toggled_on": [
|
||||
"Mutation.importProject"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/pe-issues-projects"
|
||||
],
|
||||
"accept_header": "application/vnd.github.slothette-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#import-project-preview"
|
||||
},
|
||||
{
|
||||
"title": "Team review assignments preview",
|
||||
"description": "This preview adds support for updating the settings for team review assignment.",
|
||||
"toggled_by": "stone-crop-preview",
|
||||
"toggled_on": [
|
||||
"Mutation.updateTeamReviewAssignment",
|
||||
"TeamReviewAssignmentAlgorithm",
|
||||
"Team.reviewRequestDelegationEnabled",
|
||||
"Team.reviewRequestDelegationAlgorithm",
|
||||
"Team.reviewRequestDelegationMemberCount",
|
||||
"Team.reviewRequestDelegationNotifyTeam"
|
||||
],
|
||||
"owning_teams": [
|
||||
"@github/pe-pull-requests"
|
||||
],
|
||||
"accept_header": "application/vnd.github.stone-crop-preview+json",
|
||||
"href": "/graphql/overview/schema-previews#team-review-assignments-preview"
|
||||
}
|
||||
],
|
||||
"ghae": [
|
||||
{
|
||||
"title": "Access to package version deletion preview",
|
||||
|
||||
@@ -32666,6 +32666,14 @@
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "estimatedNextSponsorsPayoutInCents",
|
||||
"description": "<p>The estimated next GitHub Sponsors payout for this user/organization in cents (USD).</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "hasSponsorsListing",
|
||||
"description": "<p>True if this user/organization has a GitHub Sponsors listing.</p>",
|
||||
@@ -32928,6 +32936,14 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "monthlyEstimatedSponsorsIncomeInCents",
|
||||
"description": "<p>The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "name",
|
||||
"description": "<p>The organization's public profile name.</p>",
|
||||
@@ -58270,6 +58286,14 @@
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "estimatedNextSponsorsPayoutInCents",
|
||||
"description": "<p>The estimated next GitHub Sponsors payout for this user/organization in cents (USD).</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "followers",
|
||||
"description": "<p>A list of users the given user is followed by.</p>",
|
||||
@@ -58812,6 +58836,14 @@
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "monthlyEstimatedSponsorsIncomeInCents",
|
||||
"description": "<p>The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "name",
|
||||
"description": "<p>The user's public profile name.</p>",
|
||||
@@ -63672,6 +63704,14 @@
|
||||
"href": "/graphql/reference/interfaces#sponsorable",
|
||||
"description": "<p>Entities that can be sponsored through GitHub Sponsors.</p>",
|
||||
"fields": [
|
||||
{
|
||||
"name": "estimatedNextSponsorsPayoutInCents",
|
||||
"description": "<p>The estimated next GitHub Sponsors payout for this user/organization in cents (USD).</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "hasSponsorsListing",
|
||||
"description": "<p>True if this user/organization has a GitHub Sponsors listing.</p>",
|
||||
@@ -63708,6 +63748,14 @@
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#boolean"
|
||||
},
|
||||
{
|
||||
"name": "monthlyEstimatedSponsorsIncomeInCents",
|
||||
"description": "<p>The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).</p>",
|
||||
"type": "Int!",
|
||||
"id": "int",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#int"
|
||||
},
|
||||
{
|
||||
"name": "sponsoring",
|
||||
"description": "<p>List of users and organizations this entity is sponsoring.</p>",
|
||||
@@ -66165,6 +66213,10 @@
|
||||
"name": "DISABLED",
|
||||
"description": "<p>Members will not be able to create public or private repositories.</p>"
|
||||
},
|
||||
{
|
||||
"name": "INTERNAL",
|
||||
"description": "<p>Members will be able to create only internal repositories.</p>"
|
||||
},
|
||||
{
|
||||
"name": "PRIVATE",
|
||||
"description": "<p>Members will be able to create only private repositories.</p>"
|
||||
|
||||
@@ -60363,6 +60363,10 @@
|
||||
"name": "DISABLED",
|
||||
"description": "<p>Members will not be able to create public or private repositories.</p>"
|
||||
},
|
||||
{
|
||||
"name": "INTERNAL",
|
||||
"description": "<p>Members will be able to create only internal repositories.</p>"
|
||||
},
|
||||
{
|
||||
"name": "PRIVATE",
|
||||
"description": "<p>Members will be able to create only private repositories.</p>"
|
||||
|
||||
@@ -611,666 +611,6 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
"ghes-2.21": {
|
||||
"2020-10-01": [
|
||||
{
|
||||
"location": "PullRequest.timeline",
|
||||
"description": "<p><code>timeline</code> will be removed. Use PullRequest.timelineItems instead.</p>",
|
||||
"reason": "<p><code>timeline</code> will be removed</p>",
|
||||
"date": "2020-10-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "mikesea"
|
||||
},
|
||||
{
|
||||
"location": "Issue.timeline",
|
||||
"description": "<p><code>timeline</code> will be removed. Use Issue.timelineItems instead.</p>",
|
||||
"reason": "<p><code>timeline</code> will be removed</p>",
|
||||
"date": "2020-10-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "mikesea"
|
||||
}
|
||||
],
|
||||
"2020-04-01": [
|
||||
{
|
||||
"location": "User.registryPackagesForQuery",
|
||||
"description": "<p><code>registryPackagesForQuery</code> will be removed. Use the <code>PackageSearch</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "User.registryPackages",
|
||||
"description": "<p><code>registryPackages</code> will be removed. Use the <code>PackageOwner</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "Sponsorship.maintainer",
|
||||
"description": "<p><code>maintainer</code> will be removed. Use <code>Sponsorship.sponsorable</code> instead.</p>",
|
||||
"reason": "<p><code>Sponsorship.maintainer</code> will be removed.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "antn"
|
||||
},
|
||||
{
|
||||
"location": "Repository.registryPackagesForQuery",
|
||||
"description": "<p><code>registryPackagesForQuery</code> will be removed. Use the <code>PackageSearch</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "Repository.registryPackages",
|
||||
"description": "<p><code>registryPackages</code> will be removed. Use the <code>PackageOwner</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageVersionStatistics.downloadsTotalCount",
|
||||
"description": "<p><code>downloadsTotalCount</code> will be removed. Use the <code>PackageVersionStatistics</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageVersionStatistics.downloadsToday",
|
||||
"description": "<p><code>downloadsToday</code> will be removed. Use the <code>PackageVersionStatistics</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageVersionStatistics.downloadsThisYear",
|
||||
"description": "<p><code>downloadsThisYear</code> will be removed. Use the <code>PackageVersionStatistics</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageVersionStatistics.downloadsThisWeek",
|
||||
"description": "<p><code>downloadsThisWeek</code> will be removed. Use the <code>PackageVersionStatistics</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageVersionStatistics.downloadsThisMonth",
|
||||
"description": "<p><code>downloadsThisMonth</code> will be removed. Use the <code>PackageVersionStatistics</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageVersion.viewerCanEdit",
|
||||
"description": "<p><code>viewerCanEdit</code> will be removed. Use the <code>PackageVersion</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageVersion.version",
|
||||
"description": "<p><code>version</code> will be removed. Use the <code>PackageVersion</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageVersion.updatedAt",
|
||||
"description": "<p><code>updatedAt</code> will be removed. Use the <code>PackageVersion</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageVersion.summary",
|
||||
"description": "<p><code>summary</code> will be removed. Use the <code>PackageVersion</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageVersion.statistics",
|
||||
"description": "<p><code>statistics</code> will be removed. Use the <code>PackageVersion</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageVersion.size",
|
||||
"description": "<p><code>size</code> will be removed. Use the <code>PackageVersion</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageVersion.sha256",
|
||||
"description": "<p><code>sha256</code> will be removed. Use the <code>PackageVersion</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageVersion.release",
|
||||
"description": "<p><code>release</code> will be removed. Use the <code>PackageVersion</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageVersion.registryPackage",
|
||||
"description": "<p><code>registryPackage</code> will be removed. Use the <code>PackageVersion</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageVersion.readmeHtml",
|
||||
"description": "<p><code>readmeHtml</code> will be removed. Use the <code>PackageVersion</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageVersion.readme",
|
||||
"description": "<p><code>readme</code> will be removed. Use the <code>PackageVersion</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageVersion.preRelease",
|
||||
"description": "<p><code>preRelease</code> will be removed. Use the <code>PackageVersion</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageVersion.platform",
|
||||
"description": "<p><code>platform</code> will be removed. Use the <code>PackageVersion</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageVersion.manifest",
|
||||
"description": "<p><code>manifest</code> will be removed. Use the <code>PackageVersion</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageVersion.installationCommand",
|
||||
"description": "<p><code>installationCommand</code> will be removed. Use the <code>PackageVersion</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageVersion.files",
|
||||
"description": "<p><code>files</code> will be removed. Use the <code>PackageVersion</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageVersion.fileByName",
|
||||
"description": "<p><code>fileByName</code> will be removed. Use the <code>PackageVersion</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageVersion.dependencies",
|
||||
"description": "<p><code>dependencies</code> will be removed. Use the <code>PackageVersion</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageVersion.deleted",
|
||||
"description": "<p><code>deleted</code> will be removed. Use the <code>PackageVersion</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageTag.version",
|
||||
"description": "<p><code>version</code> will be removed. Use the <code>PackageTag</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageTag.name",
|
||||
"description": "<p><code>name</code> will be removed. Use the <code>PackageTag</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageStatistics.downloadsTotalCount",
|
||||
"description": "<p><code>downloadsTotalCount</code> will be removed. Use the <code>PackageStatistics</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageStatistics.downloadsToday",
|
||||
"description": "<p><code>downloadsToday</code> will be removed. Use the <code>PackageStatistics</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageStatistics.downloadsThisYear",
|
||||
"description": "<p><code>downloadsThisYear</code> will be removed. Use the <code>PackageStatistics</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageStatistics.downloadsThisWeek",
|
||||
"description": "<p><code>downloadsThisWeek</code> will be removed. Use the <code>PackageStatistics</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageStatistics.downloadsThisMonth",
|
||||
"description": "<p><code>downloadsThisMonth</code> will be removed. Use the <code>PackageStatistics</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageSearch.registryPackagesForQuery",
|
||||
"description": "<p><code>registryPackagesForQuery</code> will be removed. Use the <code>PackageSearch</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageOwner.registryPackages",
|
||||
"description": "<p><code>registryPackages</code> will be removed. Use the <code>PackageOwner</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageFile.url",
|
||||
"description": "<p><code>url</code> will be removed. Use the <code>PackageFile</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageFile.size",
|
||||
"description": "<p><code>size</code> will be removed. Use the <code>PackageFile</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageFile.sha256",
|
||||
"description": "<p><code>sha256</code> will be removed. Use the <code>PackageFile</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageFile.sha1",
|
||||
"description": "<p><code>sha1</code> will be removed. Use the <code>PackageFile</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageFile.packageVersion",
|
||||
"description": "<p><code>packageVersion</code> will be removed. Use the <code>PackageFile</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageFile.name",
|
||||
"description": "<p><code>name</code> will be removed. Use the <code>PackageFile</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageFile.metadataUrl",
|
||||
"description": "<p><code>metadataUrl</code> will be removed. Use the <code>PackageFile</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageFile.md5",
|
||||
"description": "<p><code>md5</code> will be removed. Use the <code>PackageFile</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageFile.guid",
|
||||
"description": "<p><code>guid</code> will be removed. Use the <code>PackageFile</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageDependency.version",
|
||||
"description": "<p><code>version</code> will be removed. Use the <code>PackageDependency</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageDependency.name",
|
||||
"description": "<p><code>name</code> will be removed. Use the <code>PackageDependency</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackageDependency.dependencyType",
|
||||
"description": "<p><code>dependencyType</code> will be removed. Use the <code>PackageDependency</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackage.versionsByMetadatum",
|
||||
"description": "<p><code>versionsByMetadatum</code> will be removed. Use the <code>Package</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackage.versions",
|
||||
"description": "<p><code>versions</code> will be removed. Use the <code>Package</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackage.versionBySha256",
|
||||
"description": "<p><code>versionBySha256</code> will be removed. Use the <code>Package</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackage.versionByPlatform",
|
||||
"description": "<p><code>versionByPlatform</code> will be removed. Use the <code>Package</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackage.version",
|
||||
"description": "<p><code>version</code> will be removed. Use the <code>Package</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackage.topics",
|
||||
"description": "<p><code>topics</code> will be removed. Use the <code>Package</code> object.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackage.tags",
|
||||
"description": "<p><code>tags</code> will be removed. Use the <code>Package</code> object.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackage.statistics",
|
||||
"description": "<p><code>statistics</code> will be removed. Use the <code>Package</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackage.repository",
|
||||
"description": "<p><code>repository</code> will be removed. Use the <code>Package</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackage.registryPackageType",
|
||||
"description": "<p><code>registryPackageType</code> will be removed. Use the <code>Package</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackage.preReleaseVersions",
|
||||
"description": "<p><code>preReleaseVersions</code> will be removed. Use the <code>Package</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackage.packageType",
|
||||
"description": "<p><code>packageType</code> will be removed. Use the <code>Package</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackage.packageFileBySha256",
|
||||
"description": "<p><code>packageFileBySha256</code> will be removed. Use the <code>Package</code> object.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackage.packageFileByGuid",
|
||||
"description": "<p><code>packageFileByGuid</code> will be removed. Use the <code>Package</code> object.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackage.nameWithOwner",
|
||||
"description": "<p><code>nameWithOwner</code> will be removed. Use the <code>Package</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackage.name",
|
||||
"description": "<p><code>name</code> will be removed. Use the <code>Package</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackage.latestVersion",
|
||||
"description": "<p><code>latestVersion</code> will be removed. Use the <code>Package</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "RegistryPackage.color",
|
||||
"description": "<p><code>color</code> will be removed. Use the <code>Package</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "Organization.registryPackagesForQuery",
|
||||
"description": "<p><code>registryPackagesForQuery</code> will be removed. Use the <code>PackageSearch</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
},
|
||||
{
|
||||
"location": "Organization.registryPackages",
|
||||
"description": "<p><code>registryPackages</code> will be removed. Use the <code>PackageOwner</code> object instead.</p>",
|
||||
"reason": "<p>Renaming GitHub Packages fields and objects.</p>",
|
||||
"date": "2020-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
}
|
||||
],
|
||||
"2020-01-01": [
|
||||
{
|
||||
"location": "UnassignedEvent.user",
|
||||
"description": "<p><code>user</code> will be removed. Use the <code>assignee</code> field instead.</p>",
|
||||
"reason": "<p>Assignees can now be mannequins.</p>",
|
||||
"date": "2020-01-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "tambling"
|
||||
},
|
||||
{
|
||||
"location": "EnterpriseBillingInfo.seats",
|
||||
"description": "<p><code>seats</code> will be removed. Use EnterpriseBillingInfo.totalLicenses instead.</p>",
|
||||
"reason": "<p><code>seats</code> will be replaced with <code>totalLicenses</code> to provide more clarity on the value being returned</p>",
|
||||
"date": "2020-01-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "BlakeWilliams"
|
||||
},
|
||||
{
|
||||
"location": "EnterpriseBillingInfo.availableSeats",
|
||||
"description": "<p><code>availableSeats</code> will be removed. Use EnterpriseBillingInfo.totalAvailableLicenses instead.</p>",
|
||||
"reason": "<p><code>availableSeats</code> will be replaced with <code>totalAvailableLicenses</code> to provide more clarity on the value being returned</p>",
|
||||
"date": "2020-01-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "BlakeWilliams"
|
||||
},
|
||||
{
|
||||
"location": "AssignedEvent.user",
|
||||
"description": "<p><code>user</code> will be removed. Use the <code>assignee</code> field instead.</p>",
|
||||
"reason": "<p>Assignees can now be mannequins.</p>",
|
||||
"date": "2020-01-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "tambling"
|
||||
}
|
||||
],
|
||||
"2019-10-01": [
|
||||
{
|
||||
"location": "User.pinnedRepositories",
|
||||
"description": "<p><code>pinnedRepositories</code> will be removed. Use ProfileOwner.pinnedItems instead.</p>",
|
||||
"reason": "<p>pinnedRepositories will be removed</p>",
|
||||
"date": "2019-10-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "cheshire137"
|
||||
},
|
||||
{
|
||||
"location": "RepositoryOwner.pinnedRepositories",
|
||||
"description": "<p><code>pinnedRepositories</code> will be removed. Use ProfileOwner.pinnedItems instead.</p>",
|
||||
"reason": "<p>pinnedRepositories will be removed</p>",
|
||||
"date": "2019-10-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "cheshire137"
|
||||
},
|
||||
{
|
||||
"location": "Organization.pinnedRepositories",
|
||||
"description": "<p><code>pinnedRepositories</code> will be removed. Use ProfileOwner.pinnedItems instead.</p>",
|
||||
"reason": "<p>pinnedRepositories will be removed</p>",
|
||||
"date": "2019-10-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "cheshire137"
|
||||
},
|
||||
{
|
||||
"location": "ContributionOrder.field",
|
||||
"description": "<p><code>field</code> will be removed. Only one order field is supported.</p>",
|
||||
"reason": "<p><code>field</code> will be removed.</p>",
|
||||
"date": "2019-10-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "dinahshi"
|
||||
}
|
||||
],
|
||||
"2019-04-01": [
|
||||
{
|
||||
"location": "Migration.uploadUrlTemplate",
|
||||
"description": "<p><code>uploadUrlTemplate</code> will be removed. Use <code>uploadUrl</code> instead.</p>",
|
||||
"reason": "<p><code>uploadUrlTemplate</code> is being removed because it is not a standard URL and adds an extra user step.</p>",
|
||||
"date": "2019-04-01",
|
||||
"criticality": "breaking",
|
||||
"owner": "tambling"
|
||||
}
|
||||
]
|
||||
},
|
||||
"ghae": {
|
||||
"2021-10-01": [
|
||||
{
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:17575edb655ae936de56aa2b782ebacec4e5e91ff3a3f81542a7f122cc26fda0
|
||||
size 571197
|
||||
oid sha256:8511f4267ca5e7ed055e5ef400974794d7ffd7243c13db094b84270420d00637
|
||||
size 571307
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8ec980f81b28ca23f111e063a8c890e7a9015b534fff99c9b3ee025cf55f0cfa
|
||||
size 1082443
|
||||
oid sha256:2827cf74a5420e7195373fac7b9bf2665607b6e0e3139988eb4a5658e2fe7b28
|
||||
size 1082383
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c3b68eb11b7127bcb7238b0d851ee5f9b56fce19f87427a28a1d3dd735ca5968
|
||||
size 532968
|
||||
oid sha256:b3be4387add7eda18c47c87b9c1cc1f3164783edc2c2aa74736c6a887f5c141f
|
||||
size 532809
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:63cd9d47e913bf1e7057695a24af9f57161e1733acf66007c8f095306e9e844b
|
||||
size 2459957
|
||||
oid sha256:f170e78a357dea15a0b59f07e63add76a2eb09edfe1b804db93c30af3af3cb36
|
||||
size 2458899
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:615186d96142aa7dd2a7f090de0be3beff3c779c1500570be8f07f56e63ea0d4
|
||||
size 743560
|
||||
oid sha256:1ac788231022bc9f9c3209fcc3ed517056a00c043064d4e8511b9c740c94f666
|
||||
size 743045
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:95abbb74ec092dbc18dd5ce133087766a99721ce610edf7aa4c78ea51406ba84
|
||||
size 3634259
|
||||
oid sha256:5c955a4549c76cb4d9b242196879ffcad278f3e08ce6ad88cf4c747c630970ea
|
||||
size 3632779
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b06296c42a131a77c2986f09084e842c5cec5a648d1c84f27bddbeada3a1f05e
|
||||
size 344096
|
||||
oid sha256:688d94a3347d45c5b6542b74c4397a46c443af95f50ce0feaa67370027f8299b
|
||||
size 343923
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b7cad380d2c752efd7064edd8da08852095e28731438fbbae541357d397c4b3f
|
||||
size 1417735
|
||||
oid sha256:b8bac38ced370149eb81400f43fe271d69ce52055b24fdf469eda0bbea50a7c1
|
||||
size 1417898
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:80f38bfdd974222702de3dacfb37075c8da4b3fad9ce5bcbca1a5928724b6a44
|
||||
size 594389
|
||||
oid sha256:fd6fcee7cb8ce40e6b5e01da374f9c3031b49ebabad7a651ae722fa5452a1c78
|
||||
size 594679
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e3034bc47d079c43ac6a0a11874177327eadd6132b7cbc4c895af2d04a187f13
|
||||
size 3327650
|
||||
oid sha256:9cfbe75e5064887e7eaf00bb8d42e69c914a8db5911b73e3d087c9d247ff241a
|
||||
size 3329078
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fe9d6d803e4fe2033769b1993db8810e2d3b3046d76e80a04db5e92da19c0519
|
||||
size 507860
|
||||
oid sha256:3b1091fab49de34102bc845294e7c782ff5a4764594e6b05ad190a01b9732886
|
||||
size 507994
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:58195ef0d879e8e11e7538bf683a1f71baf6559aec91e451f96bf6df4927f67a
|
||||
size 2215163
|
||||
oid sha256:7b229b32e161bc080a33bfa741dacfaf47905cde4c16d27fd1d9837be118b9c1
|
||||
size 2216733
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7b96bda079697c19e18ec57c4ff9bab4d929bb5c58e346fce96c02bb70139b10
|
||||
size 589675
|
||||
oid sha256:6f348019f6a5ad994655fbbb0ca560a44747cb92891e0e7096e89775244ca88f
|
||||
size 590041
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:86e15bc4e9ade020558a1736e92a7fccc0120c65e2eb2ab2ffcd5be4bc3a19c8
|
||||
size 1119659
|
||||
oid sha256:9516c5dd204f9d2c3b98941bfa3a0fcf567347f77f3e4112de22055ac9cd105e
|
||||
size 1120545
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:98081d103a7c3a8f1c4cb61cfae54436b3d3db9adfdfcf4dec65ee712a430861
|
||||
size 554407
|
||||
oid sha256:e364def37f7a866180c0e74349df1c30f1d72f2ea24198f694f5ae949f959f12
|
||||
size 554872
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fa7d8e64a71bd81b85f3d865c44e31e4d75eb8bef4594cd3e65351bfd361d53c
|
||||
size 2567496
|
||||
oid sha256:86b8c9769d588864293e33df00b1c61e7a8b6d290edc52732ebf1e880db48576
|
||||
size 2569035
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:67823e9acf3dc93350006d589f2875287ee3ce7fe35389bdb96e569475cdc36e
|
||||
size 767854
|
||||
oid sha256:718103f83baaf59b28c8d120bfb61b9bf7b0fc80a7650cb0dc61167c3e041b90
|
||||
size 767633
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:054dc428700e331c3e678e41d393441aaa295dd7fa36f8a69d32caa025c9d5e6
|
||||
size 3769336
|
||||
oid sha256:ec8d87e337d1c05ab7769e020963af4f7a8d57a7526544f49ba96a49a3d04234
|
||||
size 3767762
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:729b6eff3eb30c0bb879eeefffbe60bd5cc5b252c0a4663e267307078b86d942
|
||||
size 342452
|
||||
oid sha256:05cdc8acac5beae964032c156cdbd6e98bb230efcf6ada644c3561a633265290
|
||||
size 342380
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e1d1798cba45860763c013386388b0d750f3e4b279369fc6aff1a147b1732a7d
|
||||
size 1408239
|
||||
oid sha256:46331614680b6b230a739dffd7205fefd7a51c4e5398403f157e44619ba8136a
|
||||
size 1408112
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:86be432bb54974185d2880994a7cd18d7b08d4e3ca7e83a022e7a44de564d853
|
||||
size 616255
|
||||
oid sha256:4cd045540e7d9d650a78326391aa99f1464c9add7070839630ccc87081fb6b1a
|
||||
size 616175
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e0d847918517137b06c334e3083604fa36a8dbab33e0c737af615dc5325cc6d2
|
||||
size 3455506
|
||||
oid sha256:f48bd2b7e816786a71ebce2c600e83c2d41ac5639063b9c26309ea1bb0729218
|
||||
size 3456861
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6abd2676d2891b71aaaa4ee97eb894da86586bd9128b5523a954f8361ef9d569
|
||||
size 530479
|
||||
oid sha256:4fd9aa8eb6651993bbfdf886c3797d233996587d12f48b3154e8cf9a322cb2a8
|
||||
size 530455
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:86c4a4aafb4f98d0e2b633ddb6d4ef087d0832b24faf1ccb1b6bc1620e70307b
|
||||
size 2309070
|
||||
oid sha256:ba2f018124443eeeae91f4df0fe5a3a002f78ac30c228d593218e8092f8828f1
|
||||
size 2309306
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:91440c2d31dcc6bc9c19f17fbdb707112bc080871d37f1149886410cf63d0ffd
|
||||
size 600100
|
||||
oid sha256:36777cf955c8493cd624a95b78a772a17402b0df8fd57729cf789e9a1cbb359c
|
||||
size 600179
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1894babf454a7bad763113264fe97692fd026331e02d4eb92c4c8f1b2cf925cf
|
||||
size 1137534
|
||||
oid sha256:51689c819e7e24af1a9dee6640fec34f1217f131dc879e33ee6cb956d6a21dfc
|
||||
size 1137654
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:684d025b9b85d32ef9b0c975b89f9683a4d518b840f328659059ae0c37d194f9
|
||||
size 562610
|
||||
oid sha256:cc834e3dea9eeef69eadf3bea502673f2978e74544090ed4ec19883f3597a832
|
||||
size 562788
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:01ec3c51e501ece3fdecba1359f869a279ca710101cb7719b3b9b6b7984dbd8b
|
||||
size 2620055
|
||||
oid sha256:b79693f38f2ff5345395a56a9758d4b63ec0f98c83983fa28895f1518d327c0e
|
||||
size 2621519
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fe5dc8caa23084dcd37f78376b0b10811c94b3ffb067e62fa73578c51a1c1824
|
||||
size 782065
|
||||
oid sha256:72dde95ef1bc2064a6c4a327eaf0c7e757ea9120d2ca6e20f42f857f0815b489
|
||||
size 782146
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:af49b6c0db7b69b48fdba81fe5728c01f1b75572613927812a4a48118c0622a1
|
||||
size 3846646
|
||||
oid sha256:e5f44c51c6e5322069f0b9153c9050ceafdd18ebd749cffcea05612247178757
|
||||
size 3849214
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:99ff73bbeb467a458a0aea579e55683ea417e6516d7e455589d26d1b38cab7e1
|
||||
size 343361
|
||||
oid sha256:bf738468aeb0e0725ecf1ee2d18b963c8781432bbac7c9876952d92e7f45ccf0
|
||||
size 343277
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:63e06048f9c79459b61374bbea64bba8e4f41807b78d14fca930eef6cb5d9f09
|
||||
size 1412101
|
||||
oid sha256:7cf9319011e3c56268d8aacf92df7ecedd44fd59e5b55a882561609a80fa1726
|
||||
size 1412651
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:64e4fda63872f58e1f268ea902e1c469809b9a8f8d27329dcc3138606d97162a
|
||||
size 626171
|
||||
oid sha256:aa6ebf5752a556ef2255f878ccb3934bca85038adb657429263bcd9e3202e51f
|
||||
size 626540
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f310441ce0eaa68204a330c63760c53d7f7d7613cb1183a94d2a20de5881efb6
|
||||
size 3518920
|
||||
oid sha256:b5b5f5f4d3c4a5bd95af3c9e0ab5b8e496fa54b7a0ddc68c48aa2d3e50be6757
|
||||
size 3520968
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1679b16b92ce0da5d287179e38f3de698eb4b42532991e926ef934de6f87b0c1
|
||||
size 539366
|
||||
oid sha256:d151bc17aacb1db8b611c0850130f0b0a2645849596abff7438ea52f3582bb41
|
||||
size 539430
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:367cb1b86089e8a0c827ce4badd2d2d13513b7441e5a6c1cfded7c4570857ace
|
||||
size 2354385
|
||||
oid sha256:53d27de8a48f4cab1469664d57c05bf4f26b4144efc0e70b5602c19c511ceb5a
|
||||
size 2355064
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c68b8351c1d8791c3db2f3d444a3f5bfd6cdd221c4d4450ea57bc020c071614e
|
||||
size 783368
|
||||
oid sha256:b4d9ce820f9c81c175c40648aa122b459d04aad61cf45a595ddc9e0e0b7658cc
|
||||
size 783149
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b93271c20548915d5a1b51937c4df0182c3162688cdd559428edf25738a698fc
|
||||
size 1289705
|
||||
oid sha256:a0e44fbef92b8343f0d06e8920569e075ef851dbb6499c7d63b04c8eb593ad43
|
||||
size 1289177
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2174bd283ce2b7d2f0222dcb874e6e1542fb166ede2898858389236eaa557e96
|
||||
size 719114
|
||||
oid sha256:deb30435dff4e2d0aac90be15f1bba0112b502ab81c40854cb1744711e579d8f
|
||||
size 719214
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:506e63dcca6f38368bc994743203342c9b93cbb281c87ad76fbb390aa57bedca
|
||||
size 3323648
|
||||
oid sha256:b27ead184872b414d9b7bc9adc0ad0af747442c831f5f6ea69bc258da5af59f3
|
||||
size 3324683
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:910ed96a1916303eea003c8075340108c833f7efc161058ed7991b35ee88861d
|
||||
size 1049761
|
||||
oid sha256:e8a93019466b03778a0dcb11e2a1b0c0a0e35e340748685648c9e5e4a002b164
|
||||
size 1049367
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:05bf0970f11ed4490cb41274ac164f783fb2f9de0f10963eaa9ec148ceb168f9
|
||||
size 5083095
|
||||
oid sha256:ecf135c74b8b88866d593ecdd5de47ff27fb2f202ffc6ed6f4858575c6939b78
|
||||
size 5081663
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e95e723cea098bd8fd88eca772f8dfa052e175f71b45c5b630a85e71c70edeea
|
||||
size 370147
|
||||
oid sha256:9cb3948bed1ae0a3755af2ad1868ef540d95e3eff2da36965ef57427c1b9ba35
|
||||
size 370418
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:752c4331266c53283f4bbc0b0b696b226a13254d377a6fc96bb8f6780063e964
|
||||
size 1437366
|
||||
oid sha256:0e40249a9dba8ce56d20da94cd492ff1fcc18e98474ea6cc9f0b89637e887e71
|
||||
size 1437737
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:054ce52c93c3d346fc86d61def6da979bde4199636c1d52390157f97913c6512
|
||||
size 812683
|
||||
oid sha256:a38ec0985251e761f0f467fe796cb66dc8572fae3b7c695180077d67fe098335
|
||||
size 812389
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9fa486b9a1980b4369694e7416153514d8b805bdba44357fda4472a60815b294
|
||||
size 4447097
|
||||
oid sha256:3e8b5d18fd17eae41b70e431a949d1b0045298eaab8d0c97577759520e95614c
|
||||
size 4446808
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6ad34239fb6dd21af9d5c0d67dd3cd7da933adeed3385d7b1de322f040bdb3eb
|
||||
size 694594
|
||||
oid sha256:fd08cf9efaab10fd5e354a5a0480846d4cc657d4a89e6d9d8a16726bea282498
|
||||
size 694388
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d909c8b7a8815ebe456d9ceb72ac05653bb0e1c8d8652143be10606c09687f39
|
||||
size 2964362
|
||||
oid sha256:e4097014f8ae6e0b0b2375004ae4db5dd83182f7b230924cfb371f45f9d8a6c8
|
||||
size 2964901
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:81dc828985d6fa6dfcb0ffeeee8bd450c7dfeeeeabf12e6789866eabb80ce9ea
|
||||
size 469258
|
||||
oid sha256:3c1b0615d9644613b8156cdd5efe515df45994a51ee5158d5db7996f102c787b
|
||||
size 469468
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:11f6548d37dbafe09b6ea9fa0ead46f74e0df0c8659f33c87a6ee56f71c79c86
|
||||
size 897942
|
||||
oid sha256:6777bc5225507892c3f58adc3c41f81019963509e4d573b7fa06a786a33ec376
|
||||
size 898210
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:693ffbe7b13e0b71dd854138905a96066b179afb8f84c3397b999a37950fc263
|
||||
size 445601
|
||||
oid sha256:b4494715649d6a2e861bac81a4f0f933d18198d6e6ae08b29279b1f45a6d4f6a
|
||||
size 445726
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1ba3ab80d57d0ac38eaf614de67fb38b50a8a46be4833e83842598313854a40c
|
||||
size 2034119
|
||||
oid sha256:19efb40b4ff1ca8eb598d344e3085b3a741cf661bd97ea98b2817b45ffcbad19
|
||||
size 2033197
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:58c132e627059da5e531ac71a68fc4ef9f30189c8a0c8b4c32c07b83e395ee93
|
||||
size 626213
|
||||
oid sha256:bffe8a1c36854ecd0f9ae7cbf0b20dab60bf17dbdc08e81e859564398cb06cd8
|
||||
size 626167
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a3bb8cc7ac11db96de9daf266a2e0a16f5557ce228b5fbc5e36f4797b44a86ee
|
||||
size 2972842
|
||||
oid sha256:6a2f46001aa279e65c53403c26bc02a2d96468ad56856cfa3d5720c4b1545944
|
||||
size 2971974
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4c36f059bcbf816a237f962b631c0bc822d2c3b50ddc6edd51cd263485138671
|
||||
size 255931
|
||||
oid sha256:db93e4b9dcf448078aaf680e350b3f912f287957b0bcaa9b79474a0733d882c2
|
||||
size 256046
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6299d8382d26af3b574c9fc08db1f660bf88b14f775de87084df784297a4b4b5
|
||||
size 1022496
|
||||
oid sha256:0160dcd0192e56c130eb8231579b74261887cedc95e502143b85411d8b994988
|
||||
size 1022835
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c72ee4f5ddb632f673e0d555731b25363da6e5d7610afcf896b94b79433cc141
|
||||
size 490819
|
||||
oid sha256:b7b22d268a14166a43f8e5b2fa41c2b5b7065fd9abe4ba29383febbfb7fe3b40
|
||||
size 490512
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:65b19664de5290a05c3789020c74b808e181c01aa7a67a4440d62d49339ee04f
|
||||
size 2681207
|
||||
oid sha256:e29fbf151303c45c1708e21f93ce59b3199170903e2ff35236f7d0746bfb3c79
|
||||
size 2679249
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1431eb7067eff8395d3775cf3187f5bb06e538f1b06405863cfcdba6ae50ffe4
|
||||
size 428114
|
||||
oid sha256:539d5fab25f26b96b1a8622d5fee0a979050042f2241b37982adc633f04780e9
|
||||
size 428096
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5b47ea2fd9741eadb811f381a175c5e880f9aef3c9287b3bfcb004556bca970b
|
||||
size 1823480
|
||||
oid sha256:6ff983f91c82549a8736f76292a5cff61fa74f634ac18d83b84e3b596be671a7
|
||||
size 1822895
|
||||
|
||||
Reference in New Issue
Block a user