1
0
mirror of synced 2025-12-19 18:10:59 -05:00

chore: Add Prettier for Yaml formatting

Related to #128
- Prettier to fix indenting/quoting across files
- Manually adjust list styles to "-" style
- Ignore all translated files from automated formatting
- Drop redundant CI env variable
This commit is contained in:
Nick Schonning
2020-11-13 15:55:34 -05:00
parent f84ba23b90
commit 92740f68d7
46 changed files with 2154 additions and 1989 deletions

View File

@@ -1,7 +1,7 @@
name: 60 Days Stale Check
on:
schedule:
- cron: "40 16 * * *" # Run each day at 16:40 UTC / 8:40 PST
- cron: '40 16 * * *' # Run each day at 16:40 UTC / 8:40 PST
jobs:
stale:
@@ -19,4 +19,3 @@ jobs:
stale-pr-label: 'stale'
exempt-pr-labels: 'never-stale'
exempt-issue-labels: 'never-stale'

View File

@@ -1,6 +1,6 @@
name: Auto label Pull Requests
on:
- pull_request
pull_request:
jobs:
triage:
@@ -9,4 +9,4 @@ jobs:
steps:
- uses: actions/labeler@5f867a63be70efff62b767459b009290364495eb
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
repo-token: '${{ secrets.GITHUB_TOKEN }}'

View File

@@ -3,10 +3,10 @@ name: Auto Merge Dependency Updates
on:
pull_request:
paths:
- "package*.json"
- "Gemfile*"
- "Dockerfile"
- ".github/workflows/**"
- 'package*.json'
- 'Gemfile*'
- 'Dockerfile'
- '.github/workflows/**'
pull_request_review:
types:
- edited

View File

@@ -23,14 +23,14 @@ jobs:
if: contains(github.event.pull_request.labels.*.name, 'automerge') || contains(github.event.pull_request.labels.*.name, 'autosquash')
steps:
- name: automerge
uses: "pascalgn/automerge-action@c9bd182"
uses: 'pascalgn/automerge-action@c9bd182'
env:
GITHUB_TOKEN: "${{ secrets.OCTOMERGER_PAT_WITH_REPO_AND_WORKFLOW_SCOPE }}"
MERGE_METHOD_LABELS: "automerge=merge,autosquash=squash"
MERGE_COMMIT_MESSAGE: "pull-request-title"
MERGE_METHOD: "merge"
MERGE_FORKS: "true"
MERGE_RETRIES: "50"
MERGE_RETRY_SLEEP: "10000" # ten seconds
UPDATE_LABELS: "automerge,autosquash"
UPDATE_METHOD: "merge"
GITHUB_TOKEN: '${{ secrets.OCTOMERGER_PAT_WITH_REPO_AND_WORKFLOW_SCOPE }}'
MERGE_METHOD_LABELS: 'automerge=merge,autosquash=squash'
MERGE_COMMIT_MESSAGE: 'pull-request-title'
MERGE_METHOD: 'merge'
MERGE_FORKS: 'true'
MERGE_RETRIES: '50'
MERGE_RETRY_SLEEP: '10000' # ten seconds
UPDATE_LABELS: 'automerge,autosquash'
UPDATE_METHOD: 'merge'

View File

@@ -3,7 +3,7 @@ name: Check all English links
on:
workflow_dispatch:
schedule:
- cron: "40 19 * * *" # once a day at 19:40 UTC / 11:40 PST
- cron: '40 19 * * *' # once a day at 19:40 UTC / 11:40 PST
jobs:
check_all_english_links:

View File

@@ -1,4 +1,4 @@
name: "CodeQL analysis"
name: CodeQL analysis
on:
push:

View File

@@ -3,7 +3,7 @@ name: Crowdin Sync
on:
workflow_dispatch:
schedule:
- cron: "33 2 * * *" # every day at 2:33 UTC at least until automerge is working
- cron: '33 2 * * *' # every day at 2:33 UTC at least until automerge is working
jobs:
sync_with_crowdin:
@@ -47,5 +47,3 @@ jobs:
# See https://crowdin.com/settings#api-key to generate a token
# This token was created by logging into Crowdin with the octoglot user
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}

View File

@@ -1,7 +1,12 @@
name: First responder docs-content
on:
pull_request:
types: [reopened, opened, ready_for_review, closed, unlabeled]
types:
- reopened
- opened
- ready_for_review
- closed
- unlabeled
jobs:
first-responder-triage-pr:
@@ -41,15 +46,15 @@ jobs:
uses: rachmari/labeler@832d42ec5523f3c6d46e8168de71cd54363e3e2e
if: steps.set-result.outputs.result == 'false'
with:
repo-token: "${{ secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES }}"
add-labels: "docs-content-fr"
repo-token: '${{ secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES }}'
add-labels: 'docs-content-fr'
- name: Triage to FR PR project column
uses: rachmari/actions-add-new-issue-to-column@1a459ef92308ba7c9c9dc2fcdd72f232495574a9
if: steps.set-result.outputs.result == 'false'
with:
action-token: ${{ secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES }}
project-url: "https://github.com/orgs/github/projects/1367"
column-name: "Docs-internal external contributor PRs"
project-url: 'https://github.com/orgs/github/projects/1367'
column-name: 'Docs-internal external contributor PRs'
first-responder-remove-pr:
name: Remove PR from FR project board
@@ -81,5 +86,5 @@ jobs:
if: github.event.action == 'closed'
uses: rachmari/labeler@832d42ec5523f3c6d46e8168de71cd54363e3e2e
with:
repo-token: "${{ secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES }}"
remove-labels: "docs-content-fr"
repo-token: '${{ secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES }}'
remove-labels: 'docs-content-fr'

View File

@@ -1,7 +1,8 @@
name: Merged notification
on:
pull_request_target:
types: ['closed']
types:
- 'closed'
jobs:
comment:

View File

@@ -1,8 +1,8 @@
name: "Pa11y"
name: Pa11y
on:
workflow_dispatch:
schedule:
- cron: "25 17 * * *" # once a day at 17:25 UTC / 11:50 PST
- cron: '25 17 * * *' # once a day at 17:25 UTC / 11:50 PST
jobs:
test:
runs-on: ubuntu-latest

View File

@@ -2,7 +2,7 @@ name: Ping staging apps
on:
schedule:
- cron: "*/20 * * * *" # every twenty minutes
- cron: '*/20 * * * *' # every twenty minutes
jobs:
ping_staging_apps:

View File

@@ -5,7 +5,7 @@ env:
on:
schedule:
- cron: "20 15 * * 0" # run every Sunday at 20:15 UTC / 12:15 PST
- cron: '20 15 * * 0' # run every Sunday at 20:15 UTC / 12:15 PST
jobs:
remove_unused_assets:
@@ -39,7 +39,8 @@ jobs:
token: ${{ secrets.OCTOMERGER_PAT_WITH_REPO_AND_WORKFLOW_SCOPE }}
commit-message: Action ran script/remove-unused-assets.js
title: Remove unused assets
body: "Hello! This PR removes some files that exist in the repo but are not used in content or data files:\n\n
body:
"Hello! This PR removes some files that exist in the repo but are not used in content or data files:\n\n
${{ steps.results.outputs.content }}
\n\nIf you have any questions, please contact @github/docs-engineering."
labels: unused assets

View File

@@ -19,7 +19,6 @@ jobs:
name: Prevent merging during deployment freezes
runs-on: ubuntu-latest
steps:
- name: Fail if repo merges are paused
if: ${{ env.FREEZE == 'true' }}
run: |

View File

@@ -2,7 +2,7 @@ name: Repo Freeze Reminders
on:
schedule:
- cron: "00 11 * * *" # once per day around 11:00am UTC
- cron: '00 11 * * *' # once per day around 11:00am UTC
env:
FREEZE: ${{ secrets.FREEZE }}
@@ -13,7 +13,6 @@ jobs:
runs-on: ubuntu-latest
if: github.repository == 'github/docs-internal'
steps:
- name: Send Slack notification if repo is frozen
if: ${{ env.FREEZE == 'true' }}
uses: rtCamp/action-slack-notify@e17352feaf9aee300bf0ebc1dfbf467d80438815

View File

@@ -8,7 +8,7 @@ name: Repo Sync
on:
schedule:
- cron: "*/15 * * * *" # every 15 minutes
- cron: '*/15 * * * *' # every 15 minutes
env:
FREEZE: ${{ secrets.FREEZE }}
@@ -18,7 +18,6 @@ jobs:
name: Check for deployment freezes
runs-on: ubuntu-latest
steps:
- name: Exit if repo is frozen
if: ${{ env.FREEZE == 'true' }}
run: |
@@ -30,7 +29,6 @@ jobs:
needs: check-freezer
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
@@ -51,7 +49,7 @@ jobs:
with:
source_branch: repo-sync
destination_branch: main
pr_title: "repo sync"
pr_title: 'repo sync'
pr_body: "This is an automated pull request to sync changes between the public and private repos.\n\n:robot: This pull request should be merged (not squashed) to preserve continuity across repos, so please let a bot do the merging!"
pr_label: automerge,autoupdate
github_token: ${{ secrets.OCTOMERGER_PAT_WITH_REPO_AND_WORKFLOW_SCOPE }}

View File

@@ -2,7 +2,9 @@ name: Send Issue to EPD backlog
on:
issues:
types: [labeled, reopened]
types:
- labeled
- reopened
jobs:
triage:

View File

@@ -2,7 +2,9 @@ name: Start new engineering PR workflow
on:
pull_request_target:
types: [opened, reopened]
types:
- opened
- reopened
jobs:
triage:

View File

@@ -4,7 +4,7 @@ name: Node.js Tests - Translations
on:
schedule:
- cron: "10 20 * * *" # once a day at 20:10 UTC / 12:10 PST
- cron: '10 20 * * *' # once a day at 20:10 UTC / 12:10 PST
jobs:
lint:
@@ -78,4 +78,4 @@ jobs:
- name: Run tests
run: npx jest tests/${{ matrix.test-group }}/
env:
NODE_OPTIONS: "--max_old_space_size=4096"
NODE_OPTIONS: '--max_old_space_size=4096'

View File

@@ -5,10 +5,7 @@ name: Node.js Tests - Windows
on:
workflow_dispatch:
schedule:
- cron: "50 19 * * *" # once a day at 19:50 UTC / 11:50 PST
env:
CI: true
- cron: '50 19 * * *' # once a day at 19:50 UTC / 11:50 PST
jobs:
test:
@@ -48,4 +45,4 @@ jobs:
- name: Run tests
run: npx jest tests/${{ matrix.test-group }}/
env:
NODE_OPTIONS: "--max_old_space_size=4096"
NODE_OPTIONS: '--max_old_space_size=4096'

View File

@@ -77,11 +77,11 @@ jobs:
name: Run tests
run: npx jest tests/${{ matrix.test-group }}/
env:
NODE_OPTIONS: "--max_old_space_size=4096"
NODE_OPTIONS: '--max_old_space_size=4096'
- name: Send Slack notification if workflow fails
uses: rtCamp/action-slack-notify@e17352feaf9aee300bf0ebc1dfbf467d80438815
if: failure() && github.ref == 'early-access'
env:
SLACK_WEBHOOK: ${{ secrets.DOCS_ALERTS_SLACK_WEBHOOK }}
SLACK_MESSAGE: "Tests are failing on the `early-access` branch. https://github.com/github/docs-internal/tree/early-access"
SLACK_MESSAGE: 'Tests are failing on the `early-access` branch. https://github.com/github/docs-internal/tree/early-access'

View File

@@ -2,7 +2,7 @@ name: Translations
on:
schedule:
- cron: "20 19 * * *" # once a day at 19:20 UTC / 11:20 PST
- cron: '20 19 * * *' # once a day at 19:20 UTC / 11:20 PST
env:
FREEZE: ${{ secrets.FREEZE }}

View File

@@ -1,7 +1,8 @@
name: Triage new issue comments
on:
issue_comment:
types: [created]
types:
- created
jobs:
triage-issue-comments:
@@ -36,11 +37,11 @@ jobs:
uses: rachmari/labeler@832d42ec5523f3c6d46e8168de71cd54363e3e2e
if: (steps.is-internal-contributor.outputs.result == 'false')
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
add-labels: "triage"
repo-token: '${{ secrets.GITHUB_TOKEN }}'
add-labels: 'triage'
- name: Triage to project board
uses: rachmari/actions-add-new-issue-to-column@1a459ef92308ba7c9c9dc2fcdd72f232495574a9
with:
action-token: ${{ secrets.GITHUB_TOKEN }}
project-url: "https://github.com/github/docs/projects/1"
column-name: "Triage"
project-url: 'https://github.com/github/docs/projects/1'
column-name: 'Triage'

View File

@@ -1,7 +1,9 @@
name: Triage new issues
on:
issues:
types: [reopened, opened]
types:
- reopened
- opened
jobs:
triage_issues:
@@ -12,11 +14,11 @@ jobs:
- name: Label new issues with 'triage'
uses: rachmari/labeler@832d42ec5523f3c6d46e8168de71cd54363e3e2e
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
add-labels: "triage"
repo-token: '${{ secrets.GITHUB_TOKEN }}'
add-labels: 'triage'
- name: Triage to project board
uses: rachmari/actions-add-new-issue-to-column@1a459ef92308ba7c9c9dc2fcdd72f232495574a9
with:
action-token: ${{ secrets.GITHUB_TOKEN }}
project-url: "https://github.com/github/docs/projects/1"
column-name: "Triage"
project-url: 'https://github.com/github/docs/projects/1'
column-name: 'Triage'

View File

@@ -1,7 +1,9 @@
name: Triage new pull requests
on:
pull_request:
types: [reopened, opened]
types:
- reopened
- opened
jobs:
triage_pulls:
@@ -12,11 +14,11 @@ jobs:
- name: Label new pull requests with 'triage'
uses: rachmari/labeler@832d42ec5523f3c6d46e8168de71cd54363e3e2e
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
add-labels: "triage"
repo-token: '${{ secrets.GITHUB_TOKEN }}'
add-labels: 'triage'
- name: Triage to project board
uses: rachmari/actions-add-new-issue-to-column@1a459ef92308ba7c9c9dc2fcdd72f232495574a9
with:
action-token: ${{ secrets.GITHUB_TOKEN }}
project-url: "https://github.com/github/docs/projects/1"
column-name: "Triage"
project-url: 'https://github.com/github/docs/projects/1'
column-name: 'Triage'

View File

@@ -1,7 +1,7 @@
name: Public Repo Stale Check
on:
schedule:
- cron: "45 16 * * *" # Run each day at 16:45 UTC / 8:45 PST
- cron: '45 16 * * *' # Run each day at 16:45 UTC / 8:45 PST
jobs:
stale:

View File

@@ -10,7 +10,7 @@ env:
on:
schedule:
- cron: "20 16 * * *" # run every day at 16:20 UTC / 8:20 PST
- cron: '20 16 * * *' # run every day at 16:20 UTC / 8:20 PST
jobs:
update_graphql_files:
@@ -52,7 +52,8 @@ jobs:
token: ${{ secrets.OCTOMERGER_PAT_WITH_REPO_AND_WORKFLOW_SCOPE }}
commit-message: 'Action ran graphql scripts "update-files" and "build-changelog-from-markdown"'
title: GraphQL schema update
body: "Hello! Some GraphQL data in github/github was updated recently. This PR
body:
"Hello! Some GraphQL data in github/github was updated recently. This PR
syncs up the GraphQL data in this repo.\n\n
If CI passes, this PR will be auto-merged. :green_heart:\n\n
If CI does not pass or other problems arise, contact #docs-engineering on slack."

56
.github/workflows/yml-lint.yml vendored Normal file
View File

@@ -0,0 +1,56 @@
name: Lint Yaml
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches-ignore:
- translations
jobs:
see_if_should_skip:
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@36feb0d8d062137530c2e00bd278d138fe191289
with:
cancel_others: 'false'
github_token: ${{ github.token }}
paths: '["**/*.yml", "**/*.yaml", "package*.json", ".github/workflows/yml-lint.yml"]'
lint:
runs-on: ubuntu-latest
needs: see_if_should_skip
if: ${{ needs.see_if_should_skip.outputs.should_skip != 'true' }}
steps:
- name: Check out repo
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
- name: Setup node
uses: actions/setup-node@56899e050abffc08c2b3b61f3ec6a79a9dc3223d
with:
node-version: 14.x
- name: Get npm cache directory
id: npm-cache
run: |
echo "::set-output name=dir::$(npm config get cache)"
- name: Cache node modules
uses: actions/cache@0781355a23dac32fd3bac414512f4b903437991a
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm ci
- name: Run linter
run: npx prettier -c "**/*.{yml,yaml}"

1
.prettierignore Normal file
View File

@@ -0,0 +1 @@
translations/

12
.prettierrc.json Normal file
View File

@@ -0,0 +1,12 @@
{
"overrides": [
{
"files":[
"**/*.{yml,yaml}"
],
"options": {
"singleQuote": true
}
}
]
}

View File

@@ -1,21 +1,19 @@
files:
- source: /content/**/*.md
translation: /translations/%locale%/%original_path%/%original_file_name%
ignore: [
"/content/README.md"
]
ignore:
- '/content/README.md'
- source: /data/**/*.yml
translation: /translations/%locale%/%original_path%/%original_file_name%
- source: /data/**/*.md
translation: /translations/%locale%/%original_path%/%original_file_name%
ignore: [
"data/README.md",
"data/reusables/README.md",
"data/variables/product.yml",
"data/variables/README.md",
"data/graphql",
"data/products.yml"
]
ignore:
- 'data/README.md'
- 'data/reusables/README.md'
- 'data/variables/product.yml'
- 'data/variables/README.md'
- 'data/graphql'
- 'data/products.yml'
# These end up as env vars used by the GitHub Actions workflow
project_id_env: CROWDIN_PROJECT_ID

View File

@@ -1,5 +1,6 @@
- term: '@mention'
description: to notify a person on GitHub by using `@` before their username. Users in an organization on GitHub can also be a part of a team that can be
description:
to notify a person on GitHub by using `@` before their username. Users in an organization on GitHub can also be a part of a team that can be
mentioned.
- term: access token
description: >-
@@ -26,7 +27,8 @@
with 2FA via the browser. This code is either generated by an application or delivered to
your phone via text message. Also called a "2FA authentication code."
- term: base branch
description: The branch into which changes are combined when you merge a pull request.
description:
The branch into which changes are combined when you merge a pull request.
When you create a pull request, you can change the base branch from the repository's default branch to another branch if required.
- term: basic authentication
description: >-

View File

@@ -1,105 +1,113 @@
---
upcoming_changes:
- location: Migration.uploadUrlTemplate
description: "`uploadUrlTemplate` will be removed. Use `uploadUrl` instead."
reason: "`uploadUrlTemplate` is being removed because it is not a standard URL and
adds an extra user step."
- location: Migration.uploadUrlTemplate
description: '`uploadUrlTemplate` will be removed. Use `uploadUrl` instead.'
reason:
'`uploadUrlTemplate` is being removed because it is not a standard URL and
adds an extra user step.'
date: '2019-04-01T00:00:00+00:00'
criticality: breaking
owner: tambling
- location: AssignedEvent.user
description: "`user` will be removed. Use the `assignee` field instead."
- location: AssignedEvent.user
description: '`user` will be removed. Use the `assignee` field instead.'
reason: Assignees can now be mannequins.
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: tambling
- location: EnterpriseBillingInfo.availableSeats
description: "`availableSeats` will be removed. Use EnterpriseBillingInfo.totalAvailableLicenses
instead."
reason: "`availableSeats` will be replaced with `totalAvailableLicenses` to provide
more clarity on the value being returned"
- location: EnterpriseBillingInfo.availableSeats
description:
'`availableSeats` will be removed. Use EnterpriseBillingInfo.totalAvailableLicenses
instead.'
reason:
'`availableSeats` will be replaced with `totalAvailableLicenses` to provide
more clarity on the value being returned'
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: BlakeWilliams
- location: EnterpriseBillingInfo.seats
description: "`seats` will be removed. Use EnterpriseBillingInfo.totalLicenses instead."
reason: "`seats` will be replaced with `totalLicenses` to provide more clarity on
the value being returned"
- location: EnterpriseBillingInfo.seats
description: '`seats` will be removed. Use EnterpriseBillingInfo.totalLicenses instead.'
reason:
'`seats` will be replaced with `totalLicenses` to provide more clarity on
the value being returned'
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: BlakeWilliams
- location: UnassignedEvent.user
description: "`user` will be removed. Use the `assignee` field instead."
- location: UnassignedEvent.user
description: '`user` will be removed. Use the `assignee` field instead.'
reason: Assignees can now be mannequins.
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: tambling
- location: Sponsorship.maintainer
description: "`maintainer` will be removed. Use `Sponsorship.sponsorable` instead."
reason: "`Sponsorship.maintainer` will be removed."
- location: Sponsorship.maintainer
description: '`maintainer` will be removed. Use `Sponsorship.sponsorable` instead.'
reason: '`Sponsorship.maintainer` will be removed.'
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: antn
- location: EnterprisePendingMemberInvitationEdge.isUnlicensed
description: "`isUnlicensed` will be removed."
- location: EnterprisePendingMemberInvitationEdge.isUnlicensed
description: '`isUnlicensed` will be removed.'
reason: All pending members consume a license
date: '2020-07-01T00:00:00+00:00'
criticality: breaking
owner: BrentWheeldon
- location: EnterpriseOwnerInfo.pendingCollaborators
description: "`pendingCollaborators` will be removed. Use the `pendingCollaboratorInvitations`
field instead."
reason: Repository invitations can now be associated with an email, not only an
- location: EnterpriseOwnerInfo.pendingCollaborators
description:
'`pendingCollaborators` will be removed. Use the `pendingCollaboratorInvitations`
field instead.'
reason:
Repository invitations can now be associated with an email, not only an
invitee.
date: '2020-10-01T00:00:00+00:00'
criticality: breaking
owner: jdennes
- location: Issue.timeline
description: "`timeline` will be removed. Use Issue.timelineItems instead."
reason: "`timeline` will be removed"
- location: Issue.timeline
description: '`timeline` will be removed. Use Issue.timelineItems instead.'
reason: '`timeline` will be removed'
date: '2020-10-01T00:00:00+00:00'
criticality: breaking
owner: mikesea
- location: PullRequest.timeline
description: "`timeline` will be removed. Use PullRequest.timelineItems instead."
reason: "`timeline` will be removed"
- location: PullRequest.timeline
description: '`timeline` will be removed. Use PullRequest.timelineItems instead.'
reason: '`timeline` will be removed'
date: '2020-10-01T00:00:00+00:00'
criticality: breaking
owner: mikesea
- location: RepositoryInvitationOrderField.INVITEE_LOGIN
description: "`INVITEE_LOGIN` will be removed."
reason: "`INVITEE_LOGIN` is no longer a valid field value. Repository invitations
can now be associated with an email, not only an invitee."
- location: RepositoryInvitationOrderField.INVITEE_LOGIN
description: '`INVITEE_LOGIN` will be removed.'
reason:
'`INVITEE_LOGIN` is no longer a valid field value. Repository invitations
can now be associated with an email, not only an invitee.'
date: '2020-10-01T00:00:00+00:00'
criticality: breaking
owner: jdennes
- location: Sponsorship.sponsor
description: "`sponsor` will be removed. Use `Sponsorship.sponsorEntity` instead."
reason: "`Sponsorship.sponsor` will be removed."
- location: Sponsorship.sponsor
description: '`sponsor` will be removed. Use `Sponsorship.sponsorEntity` instead.'
reason: '`Sponsorship.sponsor` will be removed.'
date: '2020-10-01T00:00:00+00:00'
criticality: breaking
owner: nholden
- location: EnterpriseMemberEdge.isUnlicensed
description: "`isUnlicensed` will be removed."
- location: EnterpriseMemberEdge.isUnlicensed
description: '`isUnlicensed` will be removed.'
reason: All members consume a license
date: '2021-01-01T00:00:00+00:00'
criticality: breaking
owner: BrentWheeldon
- location: EnterpriseOutsideCollaboratorEdge.isUnlicensed
description: "`isUnlicensed` will be removed."
- location: EnterpriseOutsideCollaboratorEdge.isUnlicensed
description: '`isUnlicensed` will be removed.'
reason: All outside collaborators consume a license
date: '2021-01-01T00:00:00+00:00'
criticality: breaking
owner: BrentWheeldon
- location: EnterprisePendingCollaboratorEdge.isUnlicensed
description: "`isUnlicensed` will be removed."
- location: EnterprisePendingCollaboratorEdge.isUnlicensed
description: '`isUnlicensed` will be removed.'
reason: All pending collaborators consume a license
date: '2021-01-01T00:00:00+00:00'
criticality: breaking
owner: BrentWheeldon
- location: MergeStateStatus.DRAFT
description: "`DRAFT` will be removed. Use PullRequest.isDraft instead."
reason: DRAFT state will be removed from this enum and `isDraft` should be used
- location: MergeStateStatus.DRAFT
description: '`DRAFT` will be removed. Use PullRequest.isDraft instead.'
reason:
DRAFT state will be removed from this enum and `isDraft` should be used
instead
date: '2021-01-01T00:00:00+00:00'
criticality: breaking

View File

@@ -1,59 +1,63 @@
---
upcoming_changes:
- location: Migration.uploadUrlTemplate
description: "`uploadUrlTemplate` will be removed. Use `uploadUrl` instead."
reason: "`uploadUrlTemplate` is being removed because it is not a standard URL and
adds an extra user step."
- location: Migration.uploadUrlTemplate
description: '`uploadUrlTemplate` will be removed. Use `uploadUrl` instead.'
reason:
'`uploadUrlTemplate` is being removed because it is not a standard URL and
adds an extra user step.'
date: '2019-04-01T00:00:00+00:00'
criticality: breaking
owner: tambling
- location: ContributionOrder.field
description: "`field` will be removed. Only one order field is supported."
reason: "`field` will be removed."
- location: ContributionOrder.field
description: '`field` will be removed. Only one order field is supported.'
reason: '`field` will be removed.'
date: '2019-10-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: Issue.timeline
description: "`timeline` will be removed. Use Issue.timelineItems instead."
reason: "`timeline` will be removed"
- location: Issue.timeline
description: '`timeline` will be removed. Use Issue.timelineItems instead.'
reason: '`timeline` will be removed'
date: '2019-10-01T00:00:00+00:00'
criticality: breaking
owner: mikesea
- location: Organization.pinnedRepositories
description: "`pinnedRepositories` will be removed. Use ProfileOwner.pinnedItems
instead."
- location: Organization.pinnedRepositories
description:
'`pinnedRepositories` will be removed. Use ProfileOwner.pinnedItems
instead.'
reason: pinnedRepositories will be removed
date: '2019-10-01T00:00:00+00:00'
criticality: breaking
owner: cheshire137
- location: PullRequest.timeline
description: "`timeline` will be removed. Use PullRequest.timelineItems instead."
reason: "`timeline` will be removed"
- location: PullRequest.timeline
description: '`timeline` will be removed. Use PullRequest.timelineItems instead.'
reason: '`timeline` will be removed'
date: '2019-10-01T00:00:00+00:00'
criticality: breaking
owner: mikesea
- location: RepositoryOwner.pinnedRepositories
description: "`pinnedRepositories` will be removed. Use ProfileOwner.pinnedItems
instead."
- location: RepositoryOwner.pinnedRepositories
description:
'`pinnedRepositories` will be removed. Use ProfileOwner.pinnedItems
instead.'
reason: pinnedRepositories will be removed
date: '2019-10-01T00:00:00+00:00'
criticality: breaking
owner: cheshire137
- location: User.pinnedRepositories
description: "`pinnedRepositories` will be removed. Use ProfileOwner.pinnedItems
instead."
- location: User.pinnedRepositories
description:
'`pinnedRepositories` will be removed. Use ProfileOwner.pinnedItems
instead.'
reason: pinnedRepositories will be removed
date: '2019-10-01T00:00:00+00:00'
criticality: breaking
owner: cheshire137
- location: AssignedEvent.user
description: "`user` will be removed. Use the `assignee` field instead."
- location: AssignedEvent.user
description: '`user` will be removed. Use the `assignee` field instead.'
reason: Assignees can now be mannequins.
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: tambling
- location: UnassignedEvent.user
description: "`user` will be removed. Use the `assignee` field instead."
- location: UnassignedEvent.user
description: '`user` will be removed. Use the `assignee` field instead.'
reason: Assignees can now be mannequins.
date: '2020-01-01T00:00:00+00:00'
criticality: breaking

View File

@@ -1,509 +1,537 @@
---
upcoming_changes:
- location: Migration.uploadUrlTemplate
description: "`uploadUrlTemplate` will be removed. Use `uploadUrl` instead."
reason: "`uploadUrlTemplate` is being removed because it is not a standard URL and
adds an extra user step."
- location: Migration.uploadUrlTemplate
description: '`uploadUrlTemplate` will be removed. Use `uploadUrl` instead.'
reason:
'`uploadUrlTemplate` is being removed because it is not a standard URL and
adds an extra user step.'
date: '2019-04-01T00:00:00+00:00'
criticality: breaking
owner: tambling
- location: ContributionOrder.field
description: "`field` will be removed. Only one order field is supported."
reason: "`field` will be removed."
- location: ContributionOrder.field
description: '`field` will be removed. Only one order field is supported.'
reason: '`field` will be removed.'
date: '2019-10-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: Issue.timeline
description: "`timeline` will be removed. Use Issue.timelineItems instead."
reason: "`timeline` will be removed"
- location: Issue.timeline
description: '`timeline` will be removed. Use Issue.timelineItems instead.'
reason: '`timeline` will be removed'
date: '2019-10-01T00:00:00+00:00'
criticality: breaking
owner: mikesea
- location: Organization.pinnedRepositories
description: "`pinnedRepositories` will be removed. Use ProfileOwner.pinnedItems
instead."
- location: Organization.pinnedRepositories
description:
'`pinnedRepositories` will be removed. Use ProfileOwner.pinnedItems
instead.'
reason: pinnedRepositories will be removed
date: '2019-10-01T00:00:00+00:00'
criticality: breaking
owner: cheshire137
- location: PullRequest.timeline
description: "`timeline` will be removed. Use PullRequest.timelineItems instead."
reason: "`timeline` will be removed"
- location: PullRequest.timeline
description: '`timeline` will be removed. Use PullRequest.timelineItems instead.'
reason: '`timeline` will be removed'
date: '2019-10-01T00:00:00+00:00'
criticality: breaking
owner: mikesea
- location: RepositoryOwner.pinnedRepositories
description: "`pinnedRepositories` will be removed. Use ProfileOwner.pinnedItems
instead."
- location: RepositoryOwner.pinnedRepositories
description:
'`pinnedRepositories` will be removed. Use ProfileOwner.pinnedItems
instead.'
reason: pinnedRepositories will be removed
date: '2019-10-01T00:00:00+00:00'
criticality: breaking
owner: cheshire137
- location: User.pinnedRepositories
description: "`pinnedRepositories` will be removed. Use ProfileOwner.pinnedItems
instead."
- location: User.pinnedRepositories
description:
'`pinnedRepositories` will be removed. Use ProfileOwner.pinnedItems
instead.'
reason: pinnedRepositories will be removed
date: '2019-10-01T00:00:00+00:00'
criticality: breaking
owner: cheshire137
- location: AssignedEvent.user
description: "`user` will be removed. Use the `assignee` field instead."
- location: AssignedEvent.user
description: '`user` will be removed. Use the `assignee` field instead.'
reason: Assignees can now be mannequins.
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: tambling
- location: EnterpriseBillingInfo.availableSeats
description: "`availableSeats` will be removed. Use EnterpriseBillingInfo.totalAvailableLicenses
instead."
reason: "`availableSeats` will be replaced with `totalAvailableLicenses` to provide
more clarity on the value being returned"
- location: EnterpriseBillingInfo.availableSeats
description:
'`availableSeats` will be removed. Use EnterpriseBillingInfo.totalAvailableLicenses
instead.'
reason:
'`availableSeats` will be replaced with `totalAvailableLicenses` to provide
more clarity on the value being returned'
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: BlakeWilliams
- location: EnterpriseBillingInfo.seats
description: "`seats` will be removed. Use EnterpriseBillingInfo.totalLicenses instead."
reason: "`seats` will be replaced with `totalLicenses` to provide more clarity on
the value being returned"
- location: EnterpriseBillingInfo.seats
description: '`seats` will be removed. Use EnterpriseBillingInfo.totalLicenses instead.'
reason:
'`seats` will be replaced with `totalLicenses` to provide more clarity on
the value being returned'
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: BlakeWilliams
- location: UnassignedEvent.user
description: "`user` will be removed. Use the `assignee` field instead."
- location: UnassignedEvent.user
description: '`user` will be removed. Use the `assignee` field instead.'
reason: Assignees can now be mannequins.
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: tambling
- location: Organization.registryPackages
description: "`registryPackages` will be removed. Use the `PackageOwner` object
instead."
- location: Organization.registryPackages
description:
'`registryPackages` will be removed. Use the `PackageOwner` object
instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: Organization.registryPackagesForQuery
description: "`registryPackagesForQuery` will be removed. Use the `PackageSearch`
object instead."
- location: Organization.registryPackagesForQuery
description:
'`registryPackagesForQuery` will be removed. Use the `PackageSearch`
object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.color
description: "`color` will be removed. Use the `Package` object instead."
- location: RegistryPackage.color
description: '`color` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.latestVersion
description: "`latestVersion` will be removed. Use the `Package` object instead."
- location: RegistryPackage.latestVersion
description: '`latestVersion` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.name
description: "`name` will be removed. Use the `Package` object instead."
- location: RegistryPackage.name
description: '`name` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.nameWithOwner
description: "`nameWithOwner` will be removed. Use the `Package` object instead."
- location: RegistryPackage.nameWithOwner
description: '`nameWithOwner` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.packageFileByGuid
description: "`packageFileByGuid` will be removed. Use the `Package` object."
- location: RegistryPackage.packageFileByGuid
description: '`packageFileByGuid` will be removed. Use the `Package` object.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.packageFileBySha256
description: "`packageFileBySha256` will be removed. Use the `Package` object."
- location: RegistryPackage.packageFileBySha256
description: '`packageFileBySha256` will be removed. Use the `Package` object.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.packageType
description: "`packageType` will be removed. Use the `Package` object instead."
- location: RegistryPackage.packageType
description: '`packageType` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.preReleaseVersions
description: "`preReleaseVersions` will be removed. Use the `Package` object instead."
- location: RegistryPackage.preReleaseVersions
description: '`preReleaseVersions` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.registryPackageType
description: "`registryPackageType` will be removed. Use the `Package` object instead."
- location: RegistryPackage.registryPackageType
description: '`registryPackageType` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.repository
description: "`repository` will be removed. Use the `Package` object instead."
- location: RegistryPackage.repository
description: '`repository` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.statistics
description: "`statistics` will be removed. Use the `Package` object instead."
- location: RegistryPackage.statistics
description: '`statistics` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.tags
description: "`tags` will be removed. Use the `Package` object."
- location: RegistryPackage.tags
description: '`tags` will be removed. Use the `Package` object.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.topics
description: "`topics` will be removed. Use the `Package` object."
- location: RegistryPackage.topics
description: '`topics` will be removed. Use the `Package` object.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.version
description: "`version` will be removed. Use the `Package` object instead."
- location: RegistryPackage.version
description: '`version` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.versionByPlatform
description: "`versionByPlatform` will be removed. Use the `Package` object instead."
- location: RegistryPackage.versionByPlatform
description: '`versionByPlatform` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.versionBySha256
description: "`versionBySha256` will be removed. Use the `Package` object instead."
- location: RegistryPackage.versionBySha256
description: '`versionBySha256` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.versions
description: "`versions` will be removed. Use the `Package` object instead."
- location: RegistryPackage.versions
description: '`versions` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.versionsByMetadatum
description: "`versionsByMetadatum` will be removed. Use the `Package` object instead."
- location: RegistryPackage.versionsByMetadatum
description: '`versionsByMetadatum` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageDependency.dependencyType
description: "`dependencyType` will be removed. Use the `PackageDependency` object
instead."
- location: RegistryPackageDependency.dependencyType
description:
'`dependencyType` will be removed. Use the `PackageDependency` object
instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageDependency.name
description: "`name` will be removed. Use the `PackageDependency` object instead."
- location: RegistryPackageDependency.name
description: '`name` will be removed. Use the `PackageDependency` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageDependency.version
description: "`version` will be removed. Use the `PackageDependency` object instead."
- location: RegistryPackageDependency.version
description: '`version` will be removed. Use the `PackageDependency` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageFile.guid
description: "`guid` will be removed. Use the `PackageFile` object instead."
- location: RegistryPackageFile.guid
description: '`guid` will be removed. Use the `PackageFile` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageFile.md5
description: "`md5` will be removed. Use the `PackageFile` object instead."
- location: RegistryPackageFile.md5
description: '`md5` will be removed. Use the `PackageFile` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageFile.metadataUrl
description: "`metadataUrl` will be removed. Use the `PackageFile` object instead."
- location: RegistryPackageFile.metadataUrl
description: '`metadataUrl` will be removed. Use the `PackageFile` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageFile.name
description: "`name` will be removed. Use the `PackageFile` object instead."
- location: RegistryPackageFile.name
description: '`name` will be removed. Use the `PackageFile` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageFile.packageVersion
description: "`packageVersion` will be removed. Use the `PackageFile` object instead."
- location: RegistryPackageFile.packageVersion
description: '`packageVersion` will be removed. Use the `PackageFile` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageFile.sha1
description: "`sha1` will be removed. Use the `PackageFile` object instead."
- location: RegistryPackageFile.sha1
description: '`sha1` will be removed. Use the `PackageFile` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageFile.sha256
description: "`sha256` will be removed. Use the `PackageFile` object instead."
- location: RegistryPackageFile.sha256
description: '`sha256` will be removed. Use the `PackageFile` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageFile.size
description: "`size` will be removed. Use the `PackageFile` object instead."
- location: RegistryPackageFile.size
description: '`size` will be removed. Use the `PackageFile` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageFile.url
description: "`url` will be removed. Use the `PackageFile` object instead."
- location: RegistryPackageFile.url
description: '`url` will be removed. Use the `PackageFile` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageOwner.registryPackages
description: "`registryPackages` will be removed. Use the `PackageOwner` object
instead."
- location: RegistryPackageOwner.registryPackages
description:
'`registryPackages` will be removed. Use the `PackageOwner` object
instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageSearch.registryPackagesForQuery
description: "`registryPackagesForQuery` will be removed. Use the `PackageSearch`
object instead."
- location: RegistryPackageSearch.registryPackagesForQuery
description:
'`registryPackagesForQuery` will be removed. Use the `PackageSearch`
object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageStatistics.downloadsThisMonth
description: "`downloadsThisMonth` will be removed. Use the `PackageStatistics`
object instead."
- location: RegistryPackageStatistics.downloadsThisMonth
description:
'`downloadsThisMonth` will be removed. Use the `PackageStatistics`
object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageStatistics.downloadsThisWeek
description: "`downloadsThisWeek` will be removed. Use the `PackageStatistics` object
instead."
- location: RegistryPackageStatistics.downloadsThisWeek
description:
'`downloadsThisWeek` will be removed. Use the `PackageStatistics` object
instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageStatistics.downloadsThisYear
description: "`downloadsThisYear` will be removed. Use the `PackageStatistics` object
instead."
- location: RegistryPackageStatistics.downloadsThisYear
description:
'`downloadsThisYear` will be removed. Use the `PackageStatistics` object
instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageStatistics.downloadsToday
description: "`downloadsToday` will be removed. Use the `PackageStatistics` object
instead."
- location: RegistryPackageStatistics.downloadsToday
description:
'`downloadsToday` will be removed. Use the `PackageStatistics` object
instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageStatistics.downloadsTotalCount
description: "`downloadsTotalCount` will be removed. Use the `PackageStatistics`
object instead."
- location: RegistryPackageStatistics.downloadsTotalCount
description:
'`downloadsTotalCount` will be removed. Use the `PackageStatistics`
object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageTag.name
description: "`name` will be removed. Use the `PackageTag` object instead."
- location: RegistryPackageTag.name
description: '`name` will be removed. Use the `PackageTag` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageTag.version
description: "`version` will be removed. Use the `PackageTag` object instead."
- location: RegistryPackageTag.version
description: '`version` will be removed. Use the `PackageTag` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.dependencies
description: "`dependencies` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.dependencies
description: '`dependencies` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.fileByName
description: "`fileByName` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.fileByName
description: '`fileByName` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.files
description: "`files` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.files
description: '`files` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.installationCommand
description: "`installationCommand` will be removed. Use the `PackageVersion` object
instead."
- location: RegistryPackageVersion.installationCommand
description:
'`installationCommand` will be removed. Use the `PackageVersion` object
instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.manifest
description: "`manifest` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.manifest
description: '`manifest` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.platform
description: "`platform` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.platform
description: '`platform` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.preRelease
description: "`preRelease` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.preRelease
description: '`preRelease` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.readme
description: "`readme` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.readme
description: '`readme` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.readmeHtml
description: "`readmeHtml` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.readmeHtml
description: '`readmeHtml` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.registryPackage
description: "`registryPackage` will be removed. Use the `PackageVersion` object
instead."
- location: RegistryPackageVersion.registryPackage
description:
'`registryPackage` will be removed. Use the `PackageVersion` object
instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.release
description: "`release` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.release
description: '`release` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.sha256
description: "`sha256` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.sha256
description: '`sha256` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.size
description: "`size` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.size
description: '`size` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.statistics
description: "`statistics` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.statistics
description: '`statistics` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.summary
description: "`summary` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.summary
description: '`summary` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.updatedAt
description: "`updatedAt` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.updatedAt
description: '`updatedAt` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.version
description: "`version` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.version
description: '`version` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.viewerCanEdit
description: "`viewerCanEdit` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.viewerCanEdit
description: '`viewerCanEdit` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersionStatistics.downloadsThisMonth
description: "`downloadsThisMonth` will be removed. Use the `PackageVersionStatistics`
object instead."
- location: RegistryPackageVersionStatistics.downloadsThisMonth
description:
'`downloadsThisMonth` will be removed. Use the `PackageVersionStatistics`
object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersionStatistics.downloadsThisWeek
description: "`downloadsThisWeek` will be removed. Use the `PackageVersionStatistics`
object instead."
- location: RegistryPackageVersionStatistics.downloadsThisWeek
description:
'`downloadsThisWeek` will be removed. Use the `PackageVersionStatistics`
object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersionStatistics.downloadsThisYear
description: "`downloadsThisYear` will be removed. Use the `PackageVersionStatistics`
object instead."
- location: RegistryPackageVersionStatistics.downloadsThisYear
description:
'`downloadsThisYear` will be removed. Use the `PackageVersionStatistics`
object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersionStatistics.downloadsToday
description: "`downloadsToday` will be removed. Use the `PackageVersionStatistics`
object instead."
- location: RegistryPackageVersionStatistics.downloadsToday
description:
'`downloadsToday` will be removed. Use the `PackageVersionStatistics`
object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersionStatistics.downloadsTotalCount
description: "`downloadsTotalCount` will be removed. Use the `PackageVersionStatistics`
object instead."
- location: RegistryPackageVersionStatistics.downloadsTotalCount
description:
'`downloadsTotalCount` will be removed. Use the `PackageVersionStatistics`
object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: Repository.registryPackages
description: "`registryPackages` will be removed. Use the `PackageOwner` object
instead."
- location: Repository.registryPackages
description:
'`registryPackages` will be removed. Use the `PackageOwner` object
instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: Repository.registryPackagesForQuery
description: "`registryPackagesForQuery` will be removed. Use the `PackageSearch`
object instead."
- location: Repository.registryPackagesForQuery
description:
'`registryPackagesForQuery` will be removed. Use the `PackageSearch`
object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: Sponsorship.maintainer
description: "`maintainer` will be removed. Use `Sponsorship.sponsorable` instead."
reason: "`Sponsorship.maintainer` will be removed."
- location: Sponsorship.maintainer
description: '`maintainer` will be removed. Use `Sponsorship.sponsorable` instead.'
reason: '`Sponsorship.maintainer` will be removed.'
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: antn
- location: User.registryPackages
description: "`registryPackages` will be removed. Use the `PackageOwner` object
instead."
- location: User.registryPackages
description:
'`registryPackages` will be removed. Use the `PackageOwner` object
instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: User.registryPackagesForQuery
description: "`registryPackagesForQuery` will be removed. Use the `PackageSearch`
object instead."
- location: User.registryPackagesForQuery
description:
'`registryPackagesForQuery` will be removed. Use the `PackageSearch`
object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking

View File

@@ -1,516 +1,544 @@
---
upcoming_changes:
- location: Migration.uploadUrlTemplate
description: "`uploadUrlTemplate` will be removed. Use `uploadUrl` instead."
reason: "`uploadUrlTemplate` is being removed because it is not a standard URL and
adds an extra user step."
- location: Migration.uploadUrlTemplate
description: '`uploadUrlTemplate` will be removed. Use `uploadUrl` instead.'
reason:
'`uploadUrlTemplate` is being removed because it is not a standard URL and
adds an extra user step.'
date: '2019-04-01T00:00:00+00:00'
criticality: breaking
owner: tambling
- location: ContributionOrder.field
description: "`field` will be removed. Only one order field is supported."
reason: "`field` will be removed."
- location: ContributionOrder.field
description: '`field` will be removed. Only one order field is supported.'
reason: '`field` will be removed.'
date: '2019-10-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: Organization.pinnedRepositories
description: "`pinnedRepositories` will be removed. Use ProfileOwner.pinnedItems
instead."
- location: Organization.pinnedRepositories
description:
'`pinnedRepositories` will be removed. Use ProfileOwner.pinnedItems
instead.'
reason: pinnedRepositories will be removed
date: '2019-10-01T00:00:00+00:00'
criticality: breaking
owner: cheshire137
- location: RepositoryOwner.pinnedRepositories
description: "`pinnedRepositories` will be removed. Use ProfileOwner.pinnedItems
instead."
- location: RepositoryOwner.pinnedRepositories
description:
'`pinnedRepositories` will be removed. Use ProfileOwner.pinnedItems
instead.'
reason: pinnedRepositories will be removed
date: '2019-10-01T00:00:00+00:00'
criticality: breaking
owner: cheshire137
- location: User.pinnedRepositories
description: "`pinnedRepositories` will be removed. Use ProfileOwner.pinnedItems
instead."
- location: User.pinnedRepositories
description:
'`pinnedRepositories` will be removed. Use ProfileOwner.pinnedItems
instead.'
reason: pinnedRepositories will be removed
date: '2019-10-01T00:00:00+00:00'
criticality: breaking
owner: cheshire137
- location: AssignedEvent.user
description: "`user` will be removed. Use the `assignee` field instead."
- location: AssignedEvent.user
description: '`user` will be removed. Use the `assignee` field instead.'
reason: Assignees can now be mannequins.
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: tambling
- location: EnterpriseBillingInfo.availableSeats
description: "`availableSeats` will be removed. Use EnterpriseBillingInfo.totalAvailableLicenses
instead."
reason: "`availableSeats` will be replaced with `totalAvailableLicenses` to provide
more clarity on the value being returned"
- location: EnterpriseBillingInfo.availableSeats
description:
'`availableSeats` will be removed. Use EnterpriseBillingInfo.totalAvailableLicenses
instead.'
reason:
'`availableSeats` will be replaced with `totalAvailableLicenses` to provide
more clarity on the value being returned'
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: BlakeWilliams
- location: EnterpriseBillingInfo.seats
description: "`seats` will be removed. Use EnterpriseBillingInfo.totalLicenses instead."
reason: "`seats` will be replaced with `totalLicenses` to provide more clarity on
the value being returned"
- location: EnterpriseBillingInfo.seats
description: '`seats` will be removed. Use EnterpriseBillingInfo.totalLicenses instead.'
reason:
'`seats` will be replaced with `totalLicenses` to provide more clarity on
the value being returned'
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: BlakeWilliams
- location: UnassignedEvent.user
description: "`user` will be removed. Use the `assignee` field instead."
- location: UnassignedEvent.user
description: '`user` will be removed. Use the `assignee` field instead.'
reason: Assignees can now be mannequins.
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: tambling
- location: Organization.registryPackages
description: "`registryPackages` will be removed. Use the `PackageOwner` object
instead."
- location: Organization.registryPackages
description:
'`registryPackages` will be removed. Use the `PackageOwner` object
instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: Organization.registryPackagesForQuery
description: "`registryPackagesForQuery` will be removed. Use the `PackageSearch`
object instead."
- location: Organization.registryPackagesForQuery
description:
'`registryPackagesForQuery` will be removed. Use the `PackageSearch`
object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.color
description: "`color` will be removed. Use the `Package` object instead."
- location: RegistryPackage.color
description: '`color` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.latestVersion
description: "`latestVersion` will be removed. Use the `Package` object instead."
- location: RegistryPackage.latestVersion
description: '`latestVersion` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.name
description: "`name` will be removed. Use the `Package` object instead."
- location: RegistryPackage.name
description: '`name` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.nameWithOwner
description: "`nameWithOwner` will be removed. Use the `Package` object instead."
- location: RegistryPackage.nameWithOwner
description: '`nameWithOwner` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.packageFileByGuid
description: "`packageFileByGuid` will be removed. Use the `Package` object."
- location: RegistryPackage.packageFileByGuid
description: '`packageFileByGuid` will be removed. Use the `Package` object.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.packageFileBySha256
description: "`packageFileBySha256` will be removed. Use the `Package` object."
- location: RegistryPackage.packageFileBySha256
description: '`packageFileBySha256` will be removed. Use the `Package` object.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.packageType
description: "`packageType` will be removed. Use the `Package` object instead."
- location: RegistryPackage.packageType
description: '`packageType` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.preReleaseVersions
description: "`preReleaseVersions` will be removed. Use the `Package` object instead."
- location: RegistryPackage.preReleaseVersions
description: '`preReleaseVersions` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.registryPackageType
description: "`registryPackageType` will be removed. Use the `Package` object instead."
- location: RegistryPackage.registryPackageType
description: '`registryPackageType` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.repository
description: "`repository` will be removed. Use the `Package` object instead."
- location: RegistryPackage.repository
description: '`repository` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.statistics
description: "`statistics` will be removed. Use the `Package` object instead."
- location: RegistryPackage.statistics
description: '`statistics` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.tags
description: "`tags` will be removed. Use the `Package` object."
- location: RegistryPackage.tags
description: '`tags` will be removed. Use the `Package` object.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.topics
description: "`topics` will be removed. Use the `Package` object."
- location: RegistryPackage.topics
description: '`topics` will be removed. Use the `Package` object.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.version
description: "`version` will be removed. Use the `Package` object instead."
- location: RegistryPackage.version
description: '`version` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.versionByPlatform
description: "`versionByPlatform` will be removed. Use the `Package` object instead."
- location: RegistryPackage.versionByPlatform
description: '`versionByPlatform` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.versionBySha256
description: "`versionBySha256` will be removed. Use the `Package` object instead."
- location: RegistryPackage.versionBySha256
description: '`versionBySha256` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.versions
description: "`versions` will be removed. Use the `Package` object instead."
- location: RegistryPackage.versions
description: '`versions` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackage.versionsByMetadatum
description: "`versionsByMetadatum` will be removed. Use the `Package` object instead."
- location: RegistryPackage.versionsByMetadatum
description: '`versionsByMetadatum` will be removed. Use the `Package` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageDependency.dependencyType
description: "`dependencyType` will be removed. Use the `PackageDependency` object
instead."
- location: RegistryPackageDependency.dependencyType
description:
'`dependencyType` will be removed. Use the `PackageDependency` object
instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageDependency.name
description: "`name` will be removed. Use the `PackageDependency` object instead."
- location: RegistryPackageDependency.name
description: '`name` will be removed. Use the `PackageDependency` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageDependency.version
description: "`version` will be removed. Use the `PackageDependency` object instead."
- location: RegistryPackageDependency.version
description: '`version` will be removed. Use the `PackageDependency` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageFile.guid
description: "`guid` will be removed. Use the `PackageFile` object instead."
- location: RegistryPackageFile.guid
description: '`guid` will be removed. Use the `PackageFile` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageFile.md5
description: "`md5` will be removed. Use the `PackageFile` object instead."
- location: RegistryPackageFile.md5
description: '`md5` will be removed. Use the `PackageFile` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageFile.metadataUrl
description: "`metadataUrl` will be removed. Use the `PackageFile` object instead."
- location: RegistryPackageFile.metadataUrl
description: '`metadataUrl` will be removed. Use the `PackageFile` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageFile.name
description: "`name` will be removed. Use the `PackageFile` object instead."
- location: RegistryPackageFile.name
description: '`name` will be removed. Use the `PackageFile` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageFile.packageVersion
description: "`packageVersion` will be removed. Use the `PackageFile` object instead."
- location: RegistryPackageFile.packageVersion
description: '`packageVersion` will be removed. Use the `PackageFile` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageFile.sha1
description: "`sha1` will be removed. Use the `PackageFile` object instead."
- location: RegistryPackageFile.sha1
description: '`sha1` will be removed. Use the `PackageFile` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageFile.sha256
description: "`sha256` will be removed. Use the `PackageFile` object instead."
- location: RegistryPackageFile.sha256
description: '`sha256` will be removed. Use the `PackageFile` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageFile.size
description: "`size` will be removed. Use the `PackageFile` object instead."
- location: RegistryPackageFile.size
description: '`size` will be removed. Use the `PackageFile` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageFile.url
description: "`url` will be removed. Use the `PackageFile` object instead."
- location: RegistryPackageFile.url
description: '`url` will be removed. Use the `PackageFile` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageOwner.registryPackages
description: "`registryPackages` will be removed. Use the `PackageOwner` object
instead."
- location: RegistryPackageOwner.registryPackages
description:
'`registryPackages` will be removed. Use the `PackageOwner` object
instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageSearch.registryPackagesForQuery
description: "`registryPackagesForQuery` will be removed. Use the `PackageSearch`
object instead."
- location: RegistryPackageSearch.registryPackagesForQuery
description:
'`registryPackagesForQuery` will be removed. Use the `PackageSearch`
object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageStatistics.downloadsThisMonth
description: "`downloadsThisMonth` will be removed. Use the `PackageStatistics`
object instead."
- location: RegistryPackageStatistics.downloadsThisMonth
description:
'`downloadsThisMonth` will be removed. Use the `PackageStatistics`
object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageStatistics.downloadsThisWeek
description: "`downloadsThisWeek` will be removed. Use the `PackageStatistics` object
instead."
- location: RegistryPackageStatistics.downloadsThisWeek
description:
'`downloadsThisWeek` will be removed. Use the `PackageStatistics` object
instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageStatistics.downloadsThisYear
description: "`downloadsThisYear` will be removed. Use the `PackageStatistics` object
instead."
- location: RegistryPackageStatistics.downloadsThisYear
description:
'`downloadsThisYear` will be removed. Use the `PackageStatistics` object
instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageStatistics.downloadsToday
description: "`downloadsToday` will be removed. Use the `PackageStatistics` object
instead."
- location: RegistryPackageStatistics.downloadsToday
description:
'`downloadsToday` will be removed. Use the `PackageStatistics` object
instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageStatistics.downloadsTotalCount
description: "`downloadsTotalCount` will be removed. Use the `PackageStatistics`
object instead."
- location: RegistryPackageStatistics.downloadsTotalCount
description:
'`downloadsTotalCount` will be removed. Use the `PackageStatistics`
object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageTag.name
description: "`name` will be removed. Use the `PackageTag` object instead."
- location: RegistryPackageTag.name
description: '`name` will be removed. Use the `PackageTag` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageTag.version
description: "`version` will be removed. Use the `PackageTag` object instead."
- location: RegistryPackageTag.version
description: '`version` will be removed. Use the `PackageTag` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.deleted
description: "`deleted` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.deleted
description: '`deleted` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.dependencies
description: "`dependencies` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.dependencies
description: '`dependencies` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.fileByName
description: "`fileByName` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.fileByName
description: '`fileByName` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.files
description: "`files` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.files
description: '`files` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.installationCommand
description: "`installationCommand` will be removed. Use the `PackageVersion` object
instead."
- location: RegistryPackageVersion.installationCommand
description:
'`installationCommand` will be removed. Use the `PackageVersion` object
instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.manifest
description: "`manifest` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.manifest
description: '`manifest` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.platform
description: "`platform` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.platform
description: '`platform` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.preRelease
description: "`preRelease` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.preRelease
description: '`preRelease` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.readme
description: "`readme` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.readme
description: '`readme` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.readmeHtml
description: "`readmeHtml` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.readmeHtml
description: '`readmeHtml` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.registryPackage
description: "`registryPackage` will be removed. Use the `PackageVersion` object
instead."
- location: RegistryPackageVersion.registryPackage
description:
'`registryPackage` will be removed. Use the `PackageVersion` object
instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.release
description: "`release` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.release
description: '`release` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.sha256
description: "`sha256` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.sha256
description: '`sha256` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.size
description: "`size` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.size
description: '`size` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.statistics
description: "`statistics` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.statistics
description: '`statistics` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.summary
description: "`summary` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.summary
description: '`summary` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.updatedAt
description: "`updatedAt` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.updatedAt
description: '`updatedAt` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.version
description: "`version` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.version
description: '`version` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersion.viewerCanEdit
description: "`viewerCanEdit` will be removed. Use the `PackageVersion` object instead."
- location: RegistryPackageVersion.viewerCanEdit
description: '`viewerCanEdit` will be removed. Use the `PackageVersion` object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersionStatistics.downloadsThisMonth
description: "`downloadsThisMonth` will be removed. Use the `PackageVersionStatistics`
object instead."
- location: RegistryPackageVersionStatistics.downloadsThisMonth
description:
'`downloadsThisMonth` will be removed. Use the `PackageVersionStatistics`
object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersionStatistics.downloadsThisWeek
description: "`downloadsThisWeek` will be removed. Use the `PackageVersionStatistics`
object instead."
- location: RegistryPackageVersionStatistics.downloadsThisWeek
description:
'`downloadsThisWeek` will be removed. Use the `PackageVersionStatistics`
object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersionStatistics.downloadsThisYear
description: "`downloadsThisYear` will be removed. Use the `PackageVersionStatistics`
object instead."
- location: RegistryPackageVersionStatistics.downloadsThisYear
description:
'`downloadsThisYear` will be removed. Use the `PackageVersionStatistics`
object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersionStatistics.downloadsToday
description: "`downloadsToday` will be removed. Use the `PackageVersionStatistics`
object instead."
- location: RegistryPackageVersionStatistics.downloadsToday
description:
'`downloadsToday` will be removed. Use the `PackageVersionStatistics`
object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: RegistryPackageVersionStatistics.downloadsTotalCount
description: "`downloadsTotalCount` will be removed. Use the `PackageVersionStatistics`
object instead."
- location: RegistryPackageVersionStatistics.downloadsTotalCount
description:
'`downloadsTotalCount` will be removed. Use the `PackageVersionStatistics`
object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: Repository.registryPackages
description: "`registryPackages` will be removed. Use the `PackageOwner` object
instead."
- location: Repository.registryPackages
description:
'`registryPackages` will be removed. Use the `PackageOwner` object
instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: Repository.registryPackagesForQuery
description: "`registryPackagesForQuery` will be removed. Use the `PackageSearch`
object instead."
- location: Repository.registryPackagesForQuery
description:
'`registryPackagesForQuery` will be removed. Use the `PackageSearch`
object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: Sponsorship.maintainer
description: "`maintainer` will be removed. Use `Sponsorship.sponsorable` instead."
reason: "`Sponsorship.maintainer` will be removed."
- location: Sponsorship.maintainer
description: '`maintainer` will be removed. Use `Sponsorship.sponsorable` instead.'
reason: '`Sponsorship.maintainer` will be removed.'
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: antn
- location: User.registryPackages
description: "`registryPackages` will be removed. Use the `PackageOwner` object
instead."
- location: User.registryPackages
description:
'`registryPackages` will be removed. Use the `PackageOwner` object
instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: User.registryPackagesForQuery
description: "`registryPackagesForQuery` will be removed. Use the `PackageSearch`
object instead."
- location: User.registryPackagesForQuery
description:
'`registryPackagesForQuery` will be removed. Use the `PackageSearch`
object instead.'
reason: Renaming GitHub Packages fields and objects.
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: dinahshi
- location: Issue.timeline
description: "`timeline` will be removed. Use Issue.timelineItems instead."
reason: "`timeline` will be removed"
- location: Issue.timeline
description: '`timeline` will be removed. Use Issue.timelineItems instead.'
reason: '`timeline` will be removed'
date: '2020-10-01T00:00:00+00:00'
criticality: breaking
owner: mikesea
- location: PullRequest.timeline
description: "`timeline` will be removed. Use PullRequest.timelineItems instead."
reason: "`timeline` will be removed"
- location: PullRequest.timeline
description: '`timeline` will be removed. Use PullRequest.timelineItems instead.'
reason: '`timeline` will be removed'
date: '2020-10-01T00:00:00+00:00'
criticality: breaking
owner: mikesea

View File

@@ -1,116 +1,123 @@
---
upcoming_changes:
- location: Migration.uploadUrlTemplate
description: "`uploadUrlTemplate` will be removed. Use `uploadUrl` instead."
reason: "`uploadUrlTemplate` is being removed because it is not a standard URL and
adds an extra user step."
- location: Migration.uploadUrlTemplate
description: '`uploadUrlTemplate` will be removed. Use `uploadUrl` instead.'
reason:
'`uploadUrlTemplate` is being removed because it is not a standard URL and
adds an extra user step.'
date: '2019-04-01T00:00:00+00:00'
criticality: breaking
owner: tambling
- location: AssignedEvent.user
description: "`user` will be removed. Use the `assignee` field instead."
- location: AssignedEvent.user
description: '`user` will be removed. Use the `assignee` field instead.'
reason: Assignees can now be mannequins.
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: tambling
- location: EnterpriseBillingInfo.availableSeats
description: "`availableSeats` will be removed. Use EnterpriseBillingInfo.totalAvailableLicenses
instead."
reason: "`availableSeats` will be replaced with `totalAvailableLicenses` to provide
more clarity on the value being returned"
- location: EnterpriseBillingInfo.availableSeats
description:
'`availableSeats` will be removed. Use EnterpriseBillingInfo.totalAvailableLicenses
instead.'
reason:
'`availableSeats` will be replaced with `totalAvailableLicenses` to provide
more clarity on the value being returned'
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: BlakeWilliams
- location: EnterpriseBillingInfo.seats
description: "`seats` will be removed. Use EnterpriseBillingInfo.totalLicenses instead."
reason: "`seats` will be replaced with `totalLicenses` to provide more clarity on
the value being returned"
- location: EnterpriseBillingInfo.seats
description: '`seats` will be removed. Use EnterpriseBillingInfo.totalLicenses instead.'
reason:
'`seats` will be replaced with `totalLicenses` to provide more clarity on
the value being returned'
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: BlakeWilliams
- location: UnassignedEvent.user
description: "`user` will be removed. Use the `assignee` field instead."
- location: UnassignedEvent.user
description: '`user` will be removed. Use the `assignee` field instead.'
reason: Assignees can now be mannequins.
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: tambling
- location: Sponsorship.maintainer
description: "`maintainer` will be removed. Use `Sponsorship.sponsorable` instead."
reason: "`Sponsorship.maintainer` will be removed."
- location: Sponsorship.maintainer
description: '`maintainer` will be removed. Use `Sponsorship.sponsorable` instead.'
reason: '`Sponsorship.maintainer` will be removed.'
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: antn
- location: EnterprisePendingMemberInvitationEdge.isUnlicensed
description: "`isUnlicensed` will be removed."
- location: EnterprisePendingMemberInvitationEdge.isUnlicensed
description: '`isUnlicensed` will be removed.'
reason: All pending members consume a license
date: '2020-07-01T00:00:00+00:00'
criticality: breaking
owner: BrentWheeldon
- location: EnterpriseOwnerInfo.pendingCollaborators
description: "`pendingCollaborators` will be removed. Use the `pendingCollaboratorInvitations`
field instead."
reason: Repository invitations can now be associated with an email, not only an
- location: EnterpriseOwnerInfo.pendingCollaborators
description:
'`pendingCollaborators` will be removed. Use the `pendingCollaboratorInvitations`
field instead.'
reason:
Repository invitations can now be associated with an email, not only an
invitee.
date: '2020-10-01T00:00:00+00:00'
criticality: breaking
owner: jdennes
- location: Issue.timeline
description: "`timeline` will be removed. Use Issue.timelineItems instead."
reason: "`timeline` will be removed"
- location: Issue.timeline
description: '`timeline` will be removed. Use Issue.timelineItems instead.'
reason: '`timeline` will be removed'
date: '2020-10-01T00:00:00+00:00'
criticality: breaking
owner: mikesea
- location: PullRequest.timeline
description: "`timeline` will be removed. Use PullRequest.timelineItems instead."
reason: "`timeline` will be removed"
- location: PullRequest.timeline
description: '`timeline` will be removed. Use PullRequest.timelineItems instead.'
reason: '`timeline` will be removed'
date: '2020-10-01T00:00:00+00:00'
criticality: breaking
owner: mikesea
- location: RepositoryCollaboratorEdge.permission
- location: RepositoryCollaboratorEdge.permission
description: Type for `permission` will change from `RepositoryPermission!` to `String`.
reason: This field may return additional values
date: '2020-10-01T00:00:00+00:00'
criticality: breaking
owner: oneill38
- location: RepositoryInvitation.permission
- location: RepositoryInvitation.permission
description: Type for `permission` will change from `RepositoryPermission!` to `String`.
reason: This field may return additional values
date: '2020-10-01T00:00:00+00:00'
criticality: breaking
owner: oneill38
- location: RepositoryInvitationOrderField.INVITEE_LOGIN
description: "`INVITEE_LOGIN` will be removed."
reason: "`INVITEE_LOGIN` is no longer a valid field value. Repository invitations
can now be associated with an email, not only an invitee."
- location: RepositoryInvitationOrderField.INVITEE_LOGIN
description: '`INVITEE_LOGIN` will be removed.'
reason:
'`INVITEE_LOGIN` is no longer a valid field value. Repository invitations
can now be associated with an email, not only an invitee.'
date: '2020-10-01T00:00:00+00:00'
criticality: breaking
owner: jdennes
- location: Sponsorship.sponsor
description: "`sponsor` will be removed. Use `Sponsorship.sponsorEntity` instead."
reason: "`Sponsorship.sponsor` will be removed."
- location: Sponsorship.sponsor
description: '`sponsor` will be removed. Use `Sponsorship.sponsorEntity` instead.'
reason: '`Sponsorship.sponsor` will be removed.'
date: '2020-10-01T00:00:00+00:00'
criticality: breaking
owner: nholden
- location: TeamRepositoryEdge.permission
- location: TeamRepositoryEdge.permission
description: Type for `permission` will change from `RepositoryPermission!` to `String`.
reason: This field may return additional values
date: '2020-10-01T00:00:00+00:00'
criticality: breaking
owner: oneill38
- location: EnterpriseMemberEdge.isUnlicensed
description: "`isUnlicensed` will be removed."
- location: EnterpriseMemberEdge.isUnlicensed
description: '`isUnlicensed` will be removed.'
reason: All members consume a license
date: '2021-01-01T00:00:00+00:00'
criticality: breaking
owner: BrentWheeldon
- location: EnterpriseOutsideCollaboratorEdge.isUnlicensed
description: "`isUnlicensed` will be removed."
- location: EnterpriseOutsideCollaboratorEdge.isUnlicensed
description: '`isUnlicensed` will be removed.'
reason: All outside collaborators consume a license
date: '2021-01-01T00:00:00+00:00'
criticality: breaking
owner: BrentWheeldon
- location: EnterprisePendingCollaboratorEdge.isUnlicensed
description: "`isUnlicensed` will be removed."
- location: EnterprisePendingCollaboratorEdge.isUnlicensed
description: '`isUnlicensed` will be removed.'
reason: All pending collaborators consume a license
date: '2021-01-01T00:00:00+00:00'
criticality: breaking

View File

@@ -1,112 +1,121 @@
---
upcoming_changes:
- location: Migration.uploadUrlTemplate
description: "`uploadUrlTemplate` will be removed. Use `uploadUrl` instead."
reason: "`uploadUrlTemplate` is being removed because it is not a standard URL and
adds an extra user step."
- location: Migration.uploadUrlTemplate
description: '`uploadUrlTemplate` will be removed. Use `uploadUrl` instead.'
reason:
'`uploadUrlTemplate` is being removed because it is not a standard URL and
adds an extra user step.'
date: '2019-04-01T00:00:00+00:00'
criticality: breaking
owner: tambling
- location: AssignedEvent.user
description: "`user` will be removed. Use the `assignee` field instead."
- location: AssignedEvent.user
description: '`user` will be removed. Use the `assignee` field instead.'
reason: Assignees can now be mannequins.
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: tambling
- location: EnterpriseBillingInfo.availableSeats
description: "`availableSeats` will be removed. Use EnterpriseBillingInfo.totalAvailableLicenses
instead."
reason: "`availableSeats` will be replaced with `totalAvailableLicenses` to provide
more clarity on the value being returned"
- location: EnterpriseBillingInfo.availableSeats
description:
'`availableSeats` will be removed. Use EnterpriseBillingInfo.totalAvailableLicenses
instead.'
reason:
'`availableSeats` will be replaced with `totalAvailableLicenses` to provide
more clarity on the value being returned'
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: BlakeWilliams
- location: EnterpriseBillingInfo.seats
description: "`seats` will be removed. Use EnterpriseBillingInfo.totalLicenses instead."
reason: "`seats` will be replaced with `totalLicenses` to provide more clarity on
the value being returned"
- location: EnterpriseBillingInfo.seats
description: '`seats` will be removed. Use EnterpriseBillingInfo.totalLicenses instead.'
reason:
'`seats` will be replaced with `totalLicenses` to provide more clarity on
the value being returned'
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: BlakeWilliams
- location: UnassignedEvent.user
description: "`user` will be removed. Use the `assignee` field instead."
- location: UnassignedEvent.user
description: '`user` will be removed. Use the `assignee` field instead.'
reason: Assignees can now be mannequins.
date: '2020-01-01T00:00:00+00:00'
criticality: breaking
owner: tambling
- location: Query.sponsorsListing
description: "`sponsorsListing` will be removed. Use `Sponsorable.sponsorsListing`
instead."
reason: "`Query.sponsorsListing` will be removed."
- location: Query.sponsorsListing
description:
'`sponsorsListing` will be removed. Use `Sponsorable.sponsorsListing`
instead.'
reason: '`Query.sponsorsListing` will be removed.'
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: antn
- location: Sponsorship.maintainer
description: "`maintainer` will be removed. Use `Sponsorship.sponsorable` instead."
reason: "`Sponsorship.maintainer` will be removed."
- location: Sponsorship.maintainer
description: '`maintainer` will be removed. Use `Sponsorship.sponsorable` instead.'
reason: '`Sponsorship.maintainer` will be removed.'
date: '2020-04-01T00:00:00+00:00'
criticality: breaking
owner: antn
- location: EnterprisePendingMemberInvitationEdge.isUnlicensed
description: "`isUnlicensed` will be removed."
- location: EnterprisePendingMemberInvitationEdge.isUnlicensed
description: '`isUnlicensed` will be removed.'
reason: All pending members consume a license
date: '2020-07-01T00:00:00+00:00'
criticality: breaking
owner: BrentWheeldon
- location: EnterpriseOwnerInfo.pendingCollaborators
description: "`pendingCollaborators` will be removed. Use the `pendingCollaboratorInvitations`
field instead."
reason: Repository invitations can now be associated with an email, not only an
- location: EnterpriseOwnerInfo.pendingCollaborators
description:
'`pendingCollaborators` will be removed. Use the `pendingCollaboratorInvitations`
field instead.'
reason:
Repository invitations can now be associated with an email, not only an
invitee.
date: '2020-10-01T00:00:00+00:00'
criticality: breaking
owner: jdennes
- location: Issue.timeline
description: "`timeline` will be removed. Use Issue.timelineItems instead."
reason: "`timeline` will be removed"
- location: Issue.timeline
description: '`timeline` will be removed. Use Issue.timelineItems instead.'
reason: '`timeline` will be removed'
date: '2020-10-01T00:00:00+00:00'
criticality: breaking
owner: mikesea
- location: PullRequest.timeline
description: "`timeline` will be removed. Use PullRequest.timelineItems instead."
reason: "`timeline` will be removed"
- location: PullRequest.timeline
description: '`timeline` will be removed. Use PullRequest.timelineItems instead.'
reason: '`timeline` will be removed'
date: '2020-10-01T00:00:00+00:00'
criticality: breaking
owner: mikesea
- location: RepositoryInvitationOrderField.INVITEE_LOGIN
description: "`INVITEE_LOGIN` will be removed."
reason: "`INVITEE_LOGIN` is no longer a valid field value. Repository invitations
can now be associated with an email, not only an invitee."
- location: RepositoryInvitationOrderField.INVITEE_LOGIN
description: '`INVITEE_LOGIN` will be removed.'
reason:
'`INVITEE_LOGIN` is no longer a valid field value. Repository invitations
can now be associated with an email, not only an invitee.'
date: '2020-10-01T00:00:00+00:00'
criticality: breaking
owner: jdennes
- location: Sponsorship.sponsor
description: "`sponsor` will be removed. Use `Sponsorship.sponsorEntity` instead."
reason: "`Sponsorship.sponsor` will be removed."
- location: Sponsorship.sponsor
description: '`sponsor` will be removed. Use `Sponsorship.sponsorEntity` instead.'
reason: '`Sponsorship.sponsor` will be removed.'
date: '2020-10-01T00:00:00+00:00'
criticality: breaking
owner: nholden
- location: EnterpriseMemberEdge.isUnlicensed
description: "`isUnlicensed` will be removed."
- location: EnterpriseMemberEdge.isUnlicensed
description: '`isUnlicensed` will be removed.'
reason: All members consume a license
date: '2021-01-01T00:00:00+00:00'
criticality: breaking
owner: BrentWheeldon
- location: EnterpriseOutsideCollaboratorEdge.isUnlicensed
description: "`isUnlicensed` will be removed."
- location: EnterpriseOutsideCollaboratorEdge.isUnlicensed
description: '`isUnlicensed` will be removed.'
reason: All outside collaborators consume a license
date: '2021-01-01T00:00:00+00:00'
criticality: breaking
owner: BrentWheeldon
- location: EnterprisePendingCollaboratorEdge.isUnlicensed
description: "`isUnlicensed` will be removed."
- location: EnterprisePendingCollaboratorEdge.isUnlicensed
description: '`isUnlicensed` will be removed.'
reason: All pending collaborators consume a license
date: '2021-01-01T00:00:00+00:00'
criticality: breaking
owner: BrentWheeldon
- location: MergeStateStatus.DRAFT
description: "`DRAFT` will be removed. Use PullRequest.isDraft instead."
reason: DRAFT state will be removed from this enum and `isDraft` should be used
- location: MergeStateStatus.DRAFT
description: '`DRAFT` will be removed. Use PullRequest.isDraft instead.'
reason:
DRAFT state will be removed from this enum and `isDraft` should be used
instead
date: '2021-01-01T00:00:00+00:00'
criticality: breaking

View File

@@ -2,8 +2,7 @@ header:
github_docs: GitHub Docs
contact: Contact
notices:
ghae_silent_launch:
GitHub AE is currently under limited release. Please <a href="https://enterprise.github.com/contact">contact our Sales Team</a> to find out more.
ghae_silent_launch: GitHub AE is currently under limited release. Please <a href="https://enterprise.github.com/contact">contact our Sales Team</a> to find out more.
release_candidate:
# The version name is rendered before the below text via includes/header-notification.html
' is currently under limited release as a release candidate.'
@@ -30,7 +29,7 @@ toc:
guides: Guides
whats_new: What's new
pages:
article_version: "Article version:"
article_version: 'Article version:'
miniToc: In this article
errors:
oops: Ooops!

View File

@@ -15,7 +15,7 @@ contact_dmca: >-
contact_privacy: >-
{% if currentVersion == "free-pro-team@latest" %}[Privacy contact form](https://github.com/contact/privacy){% endif %}
contact_enterprise_sales: '[GitHub''s Sales team](https://enterprise.github.com/contact)'
contact_enterprise_sales: "[GitHub's Sales team](https://enterprise.github.com/contact)"
contact_feedback_actions: '[Feedback form for GitHub Actions](https://support.github.com/contact/feedback?contact[category]=actions)'

View File

@@ -170,8 +170,7 @@ signout_link: >-
raw_github_com: >-
{% if currentVersion == "free-pro-team@latest" %}raw.githubusercontent.com{% else %}[hostname]/user/repo/raw{% endif %}
# GitHub Enterprise Server past versions
current-340-version:
'11.10.354'
current-340-version: '11.10.354'
# Developer site product variables
# Use this inside command-line and other code blocks

View File

@@ -1,7 +1,7 @@
---
version: 1
ownership:
- name: docs-internal
- name: docs-internal
long_name: GitHub Help Docs
kind: heroku
repo: https://github.com/github/docs-internal

6
package-lock.json generated
View File

@@ -17090,6 +17090,12 @@
"resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz",
"integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc="
},
"prettier": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.1.2.tgz",
"integrity": "sha512-16c7K+x4qVlJg9rEbXl7HEGmQyZlG4R9AgP+oHKRMsMsuk8s+ATStlf1NpDqyBI1HpVyfjLOeMhH2LvuNvV5Vg==",
"dev": true
},
"private": {
"version": "0.1.8",
"resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz",

View File

@@ -111,6 +111,7 @@
"npm-merge-driver-install": "^2.0.0",
"object-hash": "^2.0.1",
"pa11y-ci": "^2.4.0",
"prettier": "^2.1.2",
"puppeteer": "^2.1.1",
"replace": "^1.2.0",
"revalidator": "^0.3.1",
@@ -126,8 +127,8 @@
"dev": "npm start",
"build": "cross-env NODE_ENV=production npx webpack --mode production",
"start-all-languages": "cross-env NODE_ENV=development nodemon server.js",
"lint": "standard --fix",
"test": "jest && standard && npm run check-deps",
"lint": "standard --fix && prettier -w \"**/*.{yml,yaml}\"",
"test": "jest && standard && prettier -c \"**/*.{yml,yaml}\" && npm run check-deps",
"prebrowser-test": "npm run build",
"browser-test": "start-server-and-test browser-test-server 4001 browser-test-tests",
"browser-test-server": "cross-env NODE_ENV=production ENABLED_LANGUAGES='en,ja' PORT=4001 node server.js",