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 name: 60 Days Stale Check
on: on:
schedule: 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: jobs:
stale: stale:
@@ -19,4 +19,3 @@ jobs:
stale-pr-label: 'stale' stale-pr-label: 'stale'
exempt-pr-labels: 'never-stale' exempt-pr-labels: 'never-stale'
exempt-issue-labels: 'never-stale' exempt-issue-labels: 'never-stale'

View File

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

View File

@@ -3,10 +3,10 @@ name: Auto Merge Dependency Updates
on: on:
pull_request: pull_request:
paths: paths:
- "package*.json" - 'package*.json'
- "Gemfile*" - 'Gemfile*'
- "Dockerfile" - 'Dockerfile'
- ".github/workflows/**" - '.github/workflows/**'
pull_request_review: pull_request_review:
types: types:
- edited - 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') if: contains(github.event.pull_request.labels.*.name, 'automerge') || contains(github.event.pull_request.labels.*.name, 'autosquash')
steps: steps:
- name: automerge - name: automerge
uses: "pascalgn/automerge-action@c9bd182" uses: 'pascalgn/automerge-action@c9bd182'
env: env:
GITHUB_TOKEN: "${{ secrets.OCTOMERGER_PAT_WITH_REPO_AND_WORKFLOW_SCOPE }}" GITHUB_TOKEN: '${{ secrets.OCTOMERGER_PAT_WITH_REPO_AND_WORKFLOW_SCOPE }}'
MERGE_METHOD_LABELS: "automerge=merge,autosquash=squash" MERGE_METHOD_LABELS: 'automerge=merge,autosquash=squash'
MERGE_COMMIT_MESSAGE: "pull-request-title" MERGE_COMMIT_MESSAGE: 'pull-request-title'
MERGE_METHOD: "merge" MERGE_METHOD: 'merge'
MERGE_FORKS: "true" MERGE_FORKS: 'true'
MERGE_RETRIES: "50" MERGE_RETRIES: '50'
MERGE_RETRY_SLEEP: "10000" # ten seconds MERGE_RETRY_SLEEP: '10000' # ten seconds
UPDATE_LABELS: "automerge,autosquash" UPDATE_LABELS: 'automerge,autosquash'
UPDATE_METHOD: "merge" UPDATE_METHOD: 'merge'

View File

@@ -3,7 +3,7 @@ name: Check all English links
on: on:
workflow_dispatch: workflow_dispatch:
schedule: 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: jobs:
check_all_english_links: check_all_english_links:

View File

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

View File

@@ -3,7 +3,7 @@ name: Crowdin Sync
on: on:
workflow_dispatch: workflow_dispatch:
schedule: 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: jobs:
sync_with_crowdin: sync_with_crowdin:
@@ -47,5 +47,3 @@ jobs:
# See https://crowdin.com/settings#api-key to generate a token # See https://crowdin.com/settings#api-key to generate a token
# This token was created by logging into Crowdin with the octoglot user # This token was created by logging into Crowdin with the octoglot user
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}

View File

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

View File

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

View File

@@ -1,8 +1,8 @@
name: "Pa11y" name: Pa11y
on: on:
workflow_dispatch: workflow_dispatch:
schedule: 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: jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest

View File

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

View File

@@ -5,7 +5,7 @@ env:
on: on:
schedule: 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: jobs:
remove_unused_assets: remove_unused_assets:
@@ -39,7 +39,8 @@ jobs:
token: ${{ secrets.OCTOMERGER_PAT_WITH_REPO_AND_WORKFLOW_SCOPE }} token: ${{ secrets.OCTOMERGER_PAT_WITH_REPO_AND_WORKFLOW_SCOPE }}
commit-message: Action ran script/remove-unused-assets.js commit-message: Action ran script/remove-unused-assets.js
title: Remove unused assets 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 }} ${{ steps.results.outputs.content }}
\n\nIf you have any questions, please contact @github/docs-engineering." \n\nIf you have any questions, please contact @github/docs-engineering."
labels: unused assets labels: unused assets

View File

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

View File

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

View File

@@ -8,7 +8,7 @@ name: Repo Sync
on: on:
schedule: schedule:
- cron: "*/15 * * * *" # every 15 minutes - cron: '*/15 * * * *' # every 15 minutes
env: env:
FREEZE: ${{ secrets.FREEZE }} FREEZE: ${{ secrets.FREEZE }}
@@ -18,7 +18,6 @@ jobs:
name: Check for deployment freezes name: Check for deployment freezes
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Exit if repo is frozen - name: Exit if repo is frozen
if: ${{ env.FREEZE == 'true' }} if: ${{ env.FREEZE == 'true' }}
run: | run: |
@@ -30,7 +29,6 @@ jobs:
needs: check-freezer needs: check-freezer
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Check out repo - name: Check out repo
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
@@ -51,7 +49,7 @@ jobs:
with: with:
source_branch: repo-sync source_branch: repo-sync
destination_branch: main 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_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 pr_label: automerge,autoupdate
github_token: ${{ secrets.OCTOMERGER_PAT_WITH_REPO_AND_WORKFLOW_SCOPE }} github_token: ${{ secrets.OCTOMERGER_PAT_WITH_REPO_AND_WORKFLOW_SCOPE }}

View File

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

View File

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

View File

@@ -4,7 +4,7 @@ name: Node.js Tests - Translations
on: on:
schedule: 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: jobs:
lint: lint:
@@ -78,4 +78,4 @@ jobs:
- name: Run tests - name: Run tests
run: npx jest tests/${{ matrix.test-group }}/ run: npx jest tests/${{ matrix.test-group }}/
env: 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: on:
workflow_dispatch: workflow_dispatch:
schedule: schedule:
- cron: "50 19 * * *" # once a day at 19:50 UTC / 11:50 PST - cron: '50 19 * * *' # once a day at 19:50 UTC / 11:50 PST
env:
CI: true
jobs: jobs:
test: test:
@@ -48,4 +45,4 @@ jobs:
- name: Run tests - name: Run tests
run: npx jest tests/${{ matrix.test-group }}/ run: npx jest tests/${{ matrix.test-group }}/
env: 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 name: Run tests
run: npx jest tests/${{ matrix.test-group }}/ run: npx jest tests/${{ matrix.test-group }}/
env: env:
NODE_OPTIONS: "--max_old_space_size=4096" NODE_OPTIONS: '--max_old_space_size=4096'
- name: Send Slack notification if workflow fails - name: Send Slack notification if workflow fails
uses: rtCamp/action-slack-notify@e17352feaf9aee300bf0ebc1dfbf467d80438815 uses: rtCamp/action-slack-notify@e17352feaf9aee300bf0ebc1dfbf467d80438815
if: failure() && github.ref == 'early-access' if: failure() && github.ref == 'early-access'
env: env:
SLACK_WEBHOOK: ${{ secrets.DOCS_ALERTS_SLACK_WEBHOOK }} 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: on:
schedule: 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: env:
FREEZE: ${{ secrets.FREEZE }} FREEZE: ${{ secrets.FREEZE }}

View File

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

View File

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

View File

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

View File

@@ -1,7 +1,7 @@
name: Public Repo Stale Check name: Public Repo Stale Check
on: on:
schedule: 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: jobs:
stale: stale:

View File

@@ -10,7 +10,7 @@ env:
on: on:
schedule: 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: jobs:
update_graphql_files: update_graphql_files:
@@ -52,7 +52,8 @@ jobs:
token: ${{ secrets.OCTOMERGER_PAT_WITH_REPO_AND_WORKFLOW_SCOPE }} token: ${{ secrets.OCTOMERGER_PAT_WITH_REPO_AND_WORKFLOW_SCOPE }}
commit-message: 'Action ran graphql scripts "update-files" and "build-changelog-from-markdown"' commit-message: 'Action ran graphql scripts "update-files" and "build-changelog-from-markdown"'
title: GraphQL schema update 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 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 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." 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: files:
- source: /content/**/*.md - source: /content/**/*.md
translation: /translations/%locale%/%original_path%/%original_file_name% translation: /translations/%locale%/%original_path%/%original_file_name%
ignore: [ ignore:
"/content/README.md" - '/content/README.md'
]
- source: /data/**/*.yml - source: /data/**/*.yml
translation: /translations/%locale%/%original_path%/%original_file_name% translation: /translations/%locale%/%original_path%/%original_file_name%
- source: /data/**/*.md - source: /data/**/*.md
translation: /translations/%locale%/%original_path%/%original_file_name% translation: /translations/%locale%/%original_path%/%original_file_name%
ignore: [ ignore:
"data/README.md", - 'data/README.md'
"data/reusables/README.md", - 'data/reusables/README.md'
"data/variables/product.yml", - 'data/variables/product.yml'
"data/variables/README.md", - 'data/variables/README.md'
"data/graphql", - 'data/graphql'
"data/products.yml" - 'data/products.yml'
]
# These end up as env vars used by the GitHub Actions workflow # These end up as env vars used by the GitHub Actions workflow
project_id_env: CROWDIN_PROJECT_ID project_id_env: CROWDIN_PROJECT_ID

View File

@@ -1,5 +1,6 @@
- term: '@mention' - 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. mentioned.
- term: access token - term: access token
description: >- description: >-
@@ -26,7 +27,8 @@
with 2FA via the browser. This code is either generated by an application or delivered to 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." your phone via text message. Also called a "2FA authentication code."
- term: base branch - 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. 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 - term: basic authentication
description: >- description: >-

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -2,8 +2,7 @@ header:
github_docs: GitHub Docs github_docs: GitHub Docs
contact: Contact contact: Contact
notices: notices:
ghae_silent_launch: 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.
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: release_candidate:
# The version name is rendered before the below text via includes/header-notification.html # The version name is rendered before the below text via includes/header-notification.html
' is currently under limited release as a release candidate.' ' is currently under limited release as a release candidate.'
@@ -30,7 +29,7 @@ toc:
guides: Guides guides: Guides
whats_new: What's new whats_new: What's new
pages: pages:
article_version: "Article version:" article_version: 'Article version:'
miniToc: In this article miniToc: In this article
errors: errors:
oops: Ooops! oops: Ooops!

View File

@@ -15,7 +15,7 @@ contact_dmca: >-
contact_privacy: >- contact_privacy: >-
{% if currentVersion == "free-pro-team@latest" %}[Privacy contact form](https://github.com/contact/privacy){% endif %} {% 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)' 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: >- raw_github_com: >-
{% if currentVersion == "free-pro-team@latest" %}raw.githubusercontent.com{% else %}[hostname]/user/repo/raw{% endif %} {% if currentVersion == "free-pro-team@latest" %}raw.githubusercontent.com{% else %}[hostname]/user/repo/raw{% endif %}
# GitHub Enterprise Server past versions # GitHub Enterprise Server past versions
current-340-version: current-340-version: '11.10.354'
'11.10.354'
# Developer site product variables # Developer site product variables
# Use this inside command-line and other code blocks # Use this inside command-line and other code blocks

View File

@@ -1,7 +1,7 @@
--- ---
version: 1 version: 1
ownership: ownership:
- name: docs-internal - name: docs-internal
long_name: GitHub Help Docs long_name: GitHub Help Docs
kind: heroku kind: heroku
repo: https://github.com/github/docs-internal 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", "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz",
"integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=" "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": { "private": {
"version": "0.1.8", "version": "0.1.8",
"resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz", "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz",

View File

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