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

Merge branch 'main' into repo-sync

This commit is contained in:
Grace Park
2023-04-12 13:31:50 -07:00
committed by GitHub
39 changed files with 3947 additions and 4012 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

View File

@@ -28,6 +28,17 @@ If your project communicates with an external service, you might use a token or
{% data variables.product.prodname_secret_scanning_caps %} will scan your entire Git history on all branches present in your {% data variables.product.prodname_dotcom %} repository for secrets{% ifversion ghec or ghes > 3.4 or ghae > 3.4 %}, even if the repository is archived{% endif %}. {% ifversion secret-scanning-issue-body-comments %}{% data reusables.secret-scanning.scan-issue-description-and-comments %}{% endif %} {% data variables.product.prodname_secret_scanning_caps %} will scan your entire Git history on all branches present in your {% data variables.product.prodname_dotcom %} repository for secrets{% ifversion ghec or ghes > 3.4 or ghae > 3.4 %}, even if the repository is archived{% endif %}. {% ifversion secret-scanning-issue-body-comments %}{% data reusables.secret-scanning.scan-issue-description-and-comments %}{% endif %}
{% ifversion secret-scanning-backfills-historical-issues %}
{% data variables.product.prodname_secret_scanning_caps %} also scans the titles, descriptions, and comments, in open and closed historical issues, and reports leaked secrets as alerts on {% data variables.product.prodname_dotcom %}{% ifversion ghec %}. A notification is sent to the relevant partner when a historical partner pattern is detected{% endif %}.
{% note %}
**Note:** {% data variables.product.prodname_secret_scanning_caps %} for historical secret leaks is currently in public beta and subject to change.
{% endnote %}
{% endif %}
{% ifversion fpt or ghec %} {% ifversion fpt or ghec %}
{% data variables.product.prodname_secret_scanning_caps %} is available on {% data variables.product.prodname_dotcom_the_website %} in two forms: {% data variables.product.prodname_secret_scanning_caps %} is available on {% data variables.product.prodname_dotcom_the_website %} in two forms:

View File

@@ -51,7 +51,7 @@ The items in the table below can be migrated with a repository. Any items not sh
| Issue comments | Cross-references to comments are rewritten for the target instance. | Issue comments | Cross-references to comments are rewritten for the target instance.
| Pull requests | Cross-references to pull requests are rewritten to match the target. Timestamps are preserved. | Pull requests | Cross-references to pull requests are rewritten to match the target. Timestamps are preserved.
| Pull request reviews | Pull request reviews and associated data are migrated. | Pull request reviews | Pull request reviews and associated data are migrated.
| Pull request review comments | Cross-references to comments are rewritten for the target instance. Timestamps are preserved. | Pull request review comments | Cross-references to comments are rewritten for the target instance. Timestamps are preserved. File-level comments are not migrated.
| Commit comments | Cross-references to comments are rewritten for the target instance. Timestamps are preserved. | Commit comments | Cross-references to comments are rewritten for the target instance. Timestamps are preserved.
| Releases | All releases data is migrated. | Releases | All releases data is migrated.
| Actions taken on pull requests or issues | All modifications to pull requests or issues, such as assigning users, renaming titles, and modifying labels are preserved, along with timestamps for each action. | Actions taken on pull requests or issues | All modifications to pull requests or issues, such as assigning users, renaming titles, and modifying labels are preserved, along with timestamps for each action.

View File

@@ -13,11 +13,13 @@ redirect_from:
When you make changes to your integration code, running the code in a local environment lets you test and iterate quickly without deploying the code. You can use {% data variables.product.prodname_cli %} to forward webhooks to your local environment. When you make changes to your integration code, running the code in a local environment lets you test and iterate quickly without deploying the code. You can use {% data variables.product.prodname_cli %} to forward webhooks to your local environment.
{% note %} Webhook forwarding in the {% data variables.product.prodname_cli %} only works with repository and organization webhooks. If you want to test sponsorship, GitHub App, enterprise, or Marketplace webhooks locally, you'll need to do this manually. For more information, see "[AUTOTITLE](/webhooks-and-events/webhooks/creating-webhooks).
**Note:** Webhook forwarding in the {% data variables.product.prodname_cli %} only works with repository and organization webhooks. If you want to test sponsorship, GitHub App, enterprise, or Marketplace webhooks locally, you'll need to do this manually. For more information, see "[AUTOTITLE](/webhooks-and-events/webhooks/creating-webhooks)." {% warning %}
{% endnote %} **Warning**: Webhook forwarding is only designed for use during testing and development. It is not supported for use in production environments for handling live webhooks.
{% endwarning %}
## Receiving webhooks with {% data variables.product.prodname_cli %} ## Receiving webhooks with {% data variables.product.prodname_cli %}
@@ -45,3 +47,9 @@ When you make changes to your integration code, running the code in a local envi
``` ```
Leave the command running in the background. It will receive all of the specified events for the specified repository and forward them to your webhook handler running at the specified URL. Leave the command running in the background. It will receive all of the specified events for the specified repository and forward them to your webhook handler running at the specified URL.
{% note %}
**Note**: Only one person can use webhook forwarding at a time for each repository and organization. If you try to set up webhook forwarding and someone else is already working with that organization or repository, you'll receive a `Hook already exists` error.
{% endnote %}

View File

@@ -0,0 +1,5 @@
# Reference: #9139.
# Documentation for secret scanning detects secrets in historical issues content.
versions:
ghec: '*'
ghes: '>=3.9'

View File

@@ -1,7 +1,7 @@
{% tip %} {% tip %}
**Tips**: **Tips**:
- If required reviews are enabled and a collaborator with _write_, _admin_, or _owner_ access to the repository submits a review requesting changes, the pull request cannot be merged until the same collaborator submits another review approving the changes in the pull request. - If a collaborator with `admin`, `owner`, or `write` access to the repository submits a review requesting changes, the pull request cannot be merged until the same collaborator submits another review approving the changes in the pull request.
- Repository owners and administrators can merge a pull request even if it hasn't received an approving review, or if a reviewer who requested changes has left the organization or is unavailable. - Repository owners and administrators can merge a pull request even if it hasn't received an approving review, or if a reviewer who requested changes has left the organization or is unavailable.
- If both required reviews and stale review dismissal are enabled and a code-modifying commit is pushed to the branch of an approved pull request, the approval is dismissed. The pull request must be reviewed and approved again before it can be merged. - If both required reviews and stale review dismissal are enabled and a code-modifying commit is pushed to the branch of an approved pull request, the approval is dismissed. The pull request must be reviewed and approved again before it can be merged.
- When several open pull requests each have a head branch pointing to the same commit, you wont be able to merge them if one or both have a pending or rejected review. - When several open pull requests each have a head branch pointing to the same commit, you wont be able to merge them if one or both have a pending or rejected review.

View File

@@ -47,6 +47,6 @@ You can add a header to code blocks by adding the `{:copy}` annotation after the
This renders: This renders:
![image](https://user-images.githubusercontent.com/10660468/95881747-e96c6900-0d46-11eb-9abf-1e8ad16c7646.png) ![Screenshot of a code block showing the clipboard icon that is displayed when you use `{:copy}` annotation.](/assets/images/internal-docs/copy-block-header.png)
The un-highlighted text is available as `button.js-btn-copy`'s `data-clipboard-text` attribute. The un-highlighted text is available as `button.js-btn-copy`'s `data-clipboard-text` attribute.

255
package-lock.json generated
View File

@@ -34,7 +34,7 @@
"file-type": "18.2.1", "file-type": "18.2.1",
"flat": "^5.0.2", "flat": "^5.0.2",
"github-slugger": "^2.0.0", "github-slugger": "^2.0.0",
"glob": "9.3.2", "glob": "10.0.0",
"got": "^12.5.3", "got": "^12.5.3",
"gray-matter": "^4.0.3", "gray-matter": "^4.0.3",
"hast-util-from-parse5": "^7.1.0", "hast-util-from-parse5": "^7.1.0",
@@ -101,7 +101,7 @@
"@babel/plugin-syntax-top-level-await": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.18.5", "@babel/plugin-transform-runtime": "^7.18.5",
"@babel/preset-env": "^7.18.2", "@babel/preset-env": "^7.18.2",
"@graphql-inspector/core": "^3.1.2", "@graphql-inspector/core": "^4.0.3",
"@graphql-tools/load": "^7.5.14", "@graphql-tools/load": "^7.5.14",
"@jest/globals": "29.5.0", "@jest/globals": "29.5.0",
"@octokit/graphql": "5.0.4", "@octokit/graphql": "5.0.4",
@@ -147,7 +147,7 @@
"make-promises-safe": "^5.1.0", "make-promises-safe": "^5.1.0",
"mdast-util-gfm-table": "^1.0.7", "mdast-util-gfm-table": "^1.0.7",
"micromark-extension-gfm-table": "^1.0.5", "micromark-extension-gfm-table": "^1.0.5",
"mkdirp": "^2.1.3", "mkdirp": "^3.0.0",
"mockdate": "^3.0.5", "mockdate": "^3.0.5",
"nock": "^13.2.7", "nock": "^13.2.7",
"nodemon": "2.0.22", "nodemon": "2.0.22",
@@ -155,7 +155,7 @@
"nth-check": "2.1.1", "nth-check": "2.1.1",
"postcss": "^8.4.14", "postcss": "^8.4.14",
"prettier": "^2.7.0", "prettier": "^2.7.0",
"rimraf": "^4.1.1", "rimraf": "^5.0.0",
"robots-parser": "^3.0.0", "robots-parser": "^3.0.0",
"sass": "^1.52.3", "sass": "^1.52.3",
"start-server-and-test": "^2.0.0", "start-server-and-test": "^2.0.0",
@@ -2161,16 +2161,17 @@
"integrity": "sha512-to5ZJuywKK3KX53X1ifOcWjvUTQcBGdQ6Qkhm8L97xQ3ovICag1048M3YMpc+QSdr8xWeCBMnLeMnENqotB0Og==" "integrity": "sha512-to5ZJuywKK3KX53X1ifOcWjvUTQcBGdQ6Qkhm8L97xQ3ovICag1048M3YMpc+QSdr8xWeCBMnLeMnENqotB0Og=="
}, },
"node_modules/@graphql-inspector/core": { "node_modules/@graphql-inspector/core": {
"version": "3.1.2", "version": "4.0.3",
"resolved": "https://registry.npmjs.org/@graphql-inspector/core/-/core-4.0.3.tgz",
"integrity": "sha512-BJ7PB2Iwz5x0GWlaiXkkMrxNTN5WEk+i7JQV6vezjrkP9vmvmf/ovNCG58E1+MJ2KQ6/LPBb7cgSInD3TiJbJQ==",
"dev": true, "dev": true,
"license": "MIT",
"dependencies": { "dependencies": {
"dependency-graph": "0.11.0", "dependency-graph": "0.11.0",
"object-inspect": "1.10.3", "object-inspect": "1.12.3",
"tslib": "^2.0.0" "tslib": "^2.0.0"
}, },
"peerDependencies": { "peerDependencies": {
"graphql": "^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0"
} }
}, },
"node_modules/@graphql-tools/load": { "node_modules/@graphql-tools/load": {
@@ -6434,7 +6435,8 @@
}, },
"node_modules/brace-expansion": { "node_modules/brace-expansion": {
"version": "2.0.1", "version": "2.0.1",
"license": "MIT", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
"dependencies": { "dependencies": {
"balanced-match": "^1.0.0" "balanced-match": "^1.0.0"
} }
@@ -7701,14 +7703,6 @@
"url": "https://github.com/sponsors/ljharb" "url": "https://github.com/sponsors/ljharb"
} }
}, },
"node_modules/es-abstract/node_modules/object-inspect": {
"version": "1.12.2",
"dev": true,
"license": "MIT",
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/es-module-lexer": { "node_modules/es-module-lexer": {
"version": "0.9.3", "version": "0.9.3",
"dev": true, "dev": true,
@@ -9488,14 +9482,14 @@
"license": "ISC" "license": "ISC"
}, },
"node_modules/glob": { "node_modules/glob": {
"version": "9.3.2", "version": "10.0.0",
"resolved": "https://registry.npmjs.org/glob/-/glob-9.3.2.tgz", "resolved": "https://registry.npmjs.org/glob/-/glob-10.0.0.tgz",
"integrity": "sha512-BTv/JhKXFEHsErMte/AnfiSv8yYOLLiyH2lTg8vn02O21zWFgHPTfxtgn1QRe7NRgggUhC8hacR2Re94svHqeA==", "integrity": "sha512-zmp9ZDC6NpDNLujV2W2n+3lH+BafIVZ4/ct+Yj3BMZTH/+bgm/eVjHzeFLwxJrrIGgjjS2eiQLlpurHsNlEAtQ==",
"dependencies": { "dependencies": {
"fs.realpath": "^1.0.0", "fs.realpath": "^1.0.0",
"minimatch": "^7.4.1", "minimatch": "^9.0.0",
"minipass": "^4.2.4", "minipass": "^5.0.0",
"path-scurry": "^1.6.1" "path-scurry": "^1.6.4"
}, },
"engines": { "engines": {
"node": ">=16 || 14 >=14.17" "node": ">=16 || 14 >=14.17"
@@ -13452,14 +13446,6 @@
"url": "https://github.com/sponsors/sindresorhus" "url": "https://github.com/sponsors/sindresorhus"
} }
}, },
"node_modules/lint-staged/node_modules/object-inspect": {
"version": "1.12.2",
"dev": true,
"license": "MIT",
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/lint-staged/node_modules/onetime": { "node_modules/lint-staged/node_modules/onetime": {
"version": "6.0.0", "version": "6.0.0",
"dev": true, "dev": true,
@@ -14694,14 +14680,14 @@
} }
}, },
"node_modules/minimatch": { "node_modules/minimatch": {
"version": "7.4.3", "version": "9.0.0",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.3.tgz", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.0.tgz",
"integrity": "sha512-5UB4yYusDtkRPbRiy1cqZ1IpGNcJCGlEMG17RKzPddpyiPKoCdwohbED8g4QXT0ewCt8LTkQXuljsUfQ3FKM4A==", "integrity": "sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w==",
"dependencies": { "dependencies": {
"brace-expansion": "^2.0.1" "brace-expansion": "^2.0.1"
}, },
"engines": { "engines": {
"node": ">=10" "node": ">=16 || 14 >=14.17"
}, },
"funding": { "funding": {
"url": "https://github.com/sponsors/isaacs" "url": "https://github.com/sponsors/isaacs"
@@ -14715,9 +14701,9 @@
} }
}, },
"node_modules/minipass": { "node_modules/minipass": {
"version": "4.2.5", "version": "5.0.0",
"resolved": "https://registry.npmjs.org/minipass/-/minipass-4.2.5.tgz", "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz",
"integrity": "sha512-+yQl7SX3bIT83Lhb4BVorMAHVuqsskxRdlmO9kTpyukp8vsm2Sn/fUOV9xlnG8/a5JsypJzap21lz/y3FBMJ8Q==", "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==",
"engines": { "engines": {
"node": ">=8" "node": ">=8"
} }
@@ -14743,9 +14729,10 @@
} }
}, },
"node_modules/mkdirp": { "node_modules/mkdirp": {
"version": "2.1.3", "version": "3.0.0",
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.0.tgz",
"integrity": "sha512-7+JDnNsyCvZXoUJdkMR0oUE2AmAdsNXGTmRbiOjYIwQ6q+bL6NwrozGQdPcmYaNcrhH37F50HHBUzoaBV6FITQ==",
"dev": true, "dev": true,
"license": "MIT",
"bin": { "bin": {
"mkdirp": "dist/cjs/src/bin.js" "mkdirp": "dist/cjs/src/bin.js"
}, },
@@ -15213,8 +15200,9 @@
} }
}, },
"node_modules/object-inspect": { "node_modules/object-inspect": {
"version": "1.10.3", "version": "1.12.3",
"license": "MIT", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz",
"integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==",
"funding": { "funding": {
"url": "https://github.com/sponsors/ljharb" "url": "https://github.com/sponsors/ljharb"
} }
@@ -15564,12 +15552,12 @@
"license": "MIT" "license": "MIT"
}, },
"node_modules/path-scurry": { "node_modules/path-scurry": {
"version": "1.6.3", "version": "1.6.4",
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.6.3.tgz", "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.6.4.tgz",
"integrity": "sha512-RAmB+n30SlN+HnNx6EbcpoDy9nwdpcGPnEKrJnu6GZoDWBdIjo1UQMVtW2ybtC7LC2oKLcMq8y5g8WnKLiod9g==", "integrity": "sha512-Qp/9IHkdNiXJ3/Kon++At2nVpnhRiPq/aSvQN+H3U1WZbvNRK0RIQK/o4HMqPoXjpuGJUEWpHSs6Mnjxqh3TQg==",
"dependencies": { "dependencies": {
"lru-cache": "^7.14.1", "lru-cache": "^9.0.0",
"minipass": "^4.0.2" "minipass": "^5.0.0"
}, },
"engines": { "engines": {
"node": ">=16 || 14 >=14.17" "node": ">=16 || 14 >=14.17"
@@ -15579,11 +15567,19 @@
} }
}, },
"node_modules/path-scurry/node_modules/lru-cache": { "node_modules/path-scurry/node_modules/lru-cache": {
"version": "7.18.3", "version": "9.0.1",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-9.0.1.tgz",
"integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", "integrity": "sha512-C8QsKIN1UIXeOs3iWmiZ1lQY+EnKDojWd37fXy1aSbJvH4iSma1uy2OWuoB3m4SYRli5+CUjDv3Dij5DVoetmg==",
"engines": { "engines": {
"node": ">=12" "node": "14 || >=16.14"
}
},
"node_modules/path-scurry/node_modules/minipass": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz",
"integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==",
"engines": {
"node": ">=8"
} }
}, },
"node_modules/path-to-regexp": { "node_modules/path-to-regexp": {
@@ -17015,9 +17011,13 @@
"license": "MIT" "license": "MIT"
}, },
"node_modules/rimraf": { "node_modules/rimraf": {
"version": "4.1.2", "version": "5.0.0",
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.0.tgz",
"integrity": "sha512-Jf9llaP+RvaEVS5nPShYFhtXIrb3LRKP281ib3So0KkeZKo2wIKyq0Re7TOSwanasA423PSr6CCIL4bP6T040g==",
"dev": true, "dev": true,
"license": "ISC", "dependencies": {
"glob": "^10.0.0"
},
"bin": { "bin": {
"rimraf": "dist/cjs/src/bin.js" "rimraf": "dist/cjs/src/bin.js"
}, },
@@ -17028,6 +17028,48 @@
"url": "https://github.com/sponsors/isaacs" "url": "https://github.com/sponsors/isaacs"
} }
}, },
"node_modules/rimraf/node_modules/glob": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/glob/-/glob-10.0.0.tgz",
"integrity": "sha512-zmp9ZDC6NpDNLujV2W2n+3lH+BafIVZ4/ct+Yj3BMZTH/+bgm/eVjHzeFLwxJrrIGgjjS2eiQLlpurHsNlEAtQ==",
"dev": true,
"dependencies": {
"fs.realpath": "^1.0.0",
"minimatch": "^9.0.0",
"minipass": "^5.0.0",
"path-scurry": "^1.6.4"
},
"engines": {
"node": ">=16 || 14 >=14.17"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/rimraf/node_modules/minimatch": {
"version": "9.0.0",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.0.tgz",
"integrity": "sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w==",
"dev": true,
"dependencies": {
"brace-expansion": "^2.0.1"
},
"engines": {
"node": ">=16 || 14 >=14.17"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/rimraf/node_modules/minipass": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz",
"integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==",
"dev": true,
"engines": {
"node": ">=8"
}
},
"node_modules/robots-parser": { "node_modules/robots-parser": {
"version": "3.0.0", "version": "3.0.0",
"dev": true, "dev": true,
@@ -20701,11 +20743,13 @@
"integrity": "sha512-to5ZJuywKK3KX53X1ifOcWjvUTQcBGdQ6Qkhm8L97xQ3ovICag1048M3YMpc+QSdr8xWeCBMnLeMnENqotB0Og==" "integrity": "sha512-to5ZJuywKK3KX53X1ifOcWjvUTQcBGdQ6Qkhm8L97xQ3ovICag1048M3YMpc+QSdr8xWeCBMnLeMnENqotB0Og=="
}, },
"@graphql-inspector/core": { "@graphql-inspector/core": {
"version": "3.1.2", "version": "4.0.3",
"resolved": "https://registry.npmjs.org/@graphql-inspector/core/-/core-4.0.3.tgz",
"integrity": "sha512-BJ7PB2Iwz5x0GWlaiXkkMrxNTN5WEk+i7JQV6vezjrkP9vmvmf/ovNCG58E1+MJ2KQ6/LPBb7cgSInD3TiJbJQ==",
"dev": true, "dev": true,
"requires": { "requires": {
"dependency-graph": "0.11.0", "dependency-graph": "0.11.0",
"object-inspect": "1.10.3", "object-inspect": "1.12.3",
"tslib": "^2.0.0" "tslib": "^2.0.0"
} }
}, },
@@ -23909,6 +23953,8 @@
}, },
"brace-expansion": { "brace-expansion": {
"version": "2.0.1", "version": "2.0.1",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
"requires": { "requires": {
"balanced-match": "^1.0.0" "balanced-match": "^1.0.0"
} }
@@ -24687,12 +24733,6 @@
"string.prototype.trimend": "^1.0.5", "string.prototype.trimend": "^1.0.5",
"string.prototype.trimstart": "^1.0.5", "string.prototype.trimstart": "^1.0.5",
"unbox-primitive": "^1.0.2" "unbox-primitive": "^1.0.2"
},
"dependencies": {
"object-inspect": {
"version": "1.12.2",
"dev": true
}
} }
}, },
"es-module-lexer": { "es-module-lexer": {
@@ -25859,14 +25899,14 @@
"version": "2.0.0" "version": "2.0.0"
}, },
"glob": { "glob": {
"version": "9.3.2", "version": "10.0.0",
"resolved": "https://registry.npmjs.org/glob/-/glob-9.3.2.tgz", "resolved": "https://registry.npmjs.org/glob/-/glob-10.0.0.tgz",
"integrity": "sha512-BTv/JhKXFEHsErMte/AnfiSv8yYOLLiyH2lTg8vn02O21zWFgHPTfxtgn1QRe7NRgggUhC8hacR2Re94svHqeA==", "integrity": "sha512-zmp9ZDC6NpDNLujV2W2n+3lH+BafIVZ4/ct+Yj3BMZTH/+bgm/eVjHzeFLwxJrrIGgjjS2eiQLlpurHsNlEAtQ==",
"requires": { "requires": {
"fs.realpath": "^1.0.0", "fs.realpath": "^1.0.0",
"minimatch": "^7.4.1", "minimatch": "^9.0.0",
"minipass": "^4.2.4", "minipass": "^5.0.0",
"path-scurry": "^1.6.1" "path-scurry": "^1.6.4"
} }
}, },
"glob-parent": { "glob-parent": {
@@ -28700,10 +28740,6 @@
"path-key": "^4.0.0" "path-key": "^4.0.0"
} }
}, },
"object-inspect": {
"version": "1.12.2",
"dev": true
},
"onetime": { "onetime": {
"version": "6.0.0", "version": "6.0.0",
"dev": true, "dev": true,
@@ -29395,9 +29431,9 @@
"version": "4.0.0" "version": "4.0.0"
}, },
"minimatch": { "minimatch": {
"version": "7.4.3", "version": "9.0.0",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.3.tgz", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.0.tgz",
"integrity": "sha512-5UB4yYusDtkRPbRiy1cqZ1IpGNcJCGlEMG17RKzPddpyiPKoCdwohbED8g4QXT0ewCt8LTkQXuljsUfQ3FKM4A==", "integrity": "sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w==",
"requires": { "requires": {
"brace-expansion": "^2.0.1" "brace-expansion": "^2.0.1"
} }
@@ -29406,9 +29442,9 @@
"version": "1.2.8" "version": "1.2.8"
}, },
"minipass": { "minipass": {
"version": "4.2.5", "version": "5.0.0",
"resolved": "https://registry.npmjs.org/minipass/-/minipass-4.2.5.tgz", "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz",
"integrity": "sha512-+yQl7SX3bIT83Lhb4BVorMAHVuqsskxRdlmO9kTpyukp8vsm2Sn/fUOV9xlnG8/a5JsypJzap21lz/y3FBMJ8Q==" "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ=="
}, },
"mixin-object": { "mixin-object": {
"version": "2.0.1", "version": "2.0.1",
@@ -29425,7 +29461,9 @@
} }
}, },
"mkdirp": { "mkdirp": {
"version": "2.1.3", "version": "3.0.0",
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.0.tgz",
"integrity": "sha512-7+JDnNsyCvZXoUJdkMR0oUE2AmAdsNXGTmRbiOjYIwQ6q+bL6NwrozGQdPcmYaNcrhH37F50HHBUzoaBV6FITQ==",
"dev": true "dev": true
}, },
"mkdirp-classic": { "mkdirp-classic": {
@@ -29733,7 +29771,9 @@
"version": "4.1.1" "version": "4.1.1"
}, },
"object-inspect": { "object-inspect": {
"version": "1.10.3" "version": "1.12.3",
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz",
"integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g=="
}, },
"object-keys": { "object-keys": {
"version": "1.1.1", "version": "1.1.1",
@@ -29946,18 +29986,23 @@
"dev": true "dev": true
}, },
"path-scurry": { "path-scurry": {
"version": "1.6.3", "version": "1.6.4",
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.6.3.tgz", "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.6.4.tgz",
"integrity": "sha512-RAmB+n30SlN+HnNx6EbcpoDy9nwdpcGPnEKrJnu6GZoDWBdIjo1UQMVtW2ybtC7LC2oKLcMq8y5g8WnKLiod9g==", "integrity": "sha512-Qp/9IHkdNiXJ3/Kon++At2nVpnhRiPq/aSvQN+H3U1WZbvNRK0RIQK/o4HMqPoXjpuGJUEWpHSs6Mnjxqh3TQg==",
"requires": { "requires": {
"lru-cache": "^7.14.1", "lru-cache": "^9.0.0",
"minipass": "^4.0.2" "minipass": "^5.0.0"
}, },
"dependencies": { "dependencies": {
"lru-cache": { "lru-cache": {
"version": "7.18.3", "version": "9.0.1",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-9.0.1.tgz",
"integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==" "integrity": "sha512-C8QsKIN1UIXeOs3iWmiZ1lQY+EnKDojWd37fXy1aSbJvH4iSma1uy2OWuoB3m4SYRli5+CUjDv3Dij5DVoetmg=="
},
"minipass": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz",
"integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ=="
} }
} }
}, },
@@ -30849,8 +30894,42 @@
"dev": true "dev": true
}, },
"rimraf": { "rimraf": {
"version": "4.1.2", "version": "5.0.0",
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.0.tgz",
"integrity": "sha512-Jf9llaP+RvaEVS5nPShYFhtXIrb3LRKP281ib3So0KkeZKo2wIKyq0Re7TOSwanasA423PSr6CCIL4bP6T040g==",
"dev": true,
"requires": {
"glob": "^10.0.0"
},
"dependencies": {
"glob": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/glob/-/glob-10.0.0.tgz",
"integrity": "sha512-zmp9ZDC6NpDNLujV2W2n+3lH+BafIVZ4/ct+Yj3BMZTH/+bgm/eVjHzeFLwxJrrIGgjjS2eiQLlpurHsNlEAtQ==",
"dev": true,
"requires": {
"fs.realpath": "^1.0.0",
"minimatch": "^9.0.0",
"minipass": "^5.0.0",
"path-scurry": "^1.6.4"
}
},
"minimatch": {
"version": "9.0.0",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.0.tgz",
"integrity": "sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w==",
"dev": true,
"requires": {
"brace-expansion": "^2.0.1"
}
},
"minipass": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz",
"integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==",
"dev": true "dev": true
}
}
}, },
"robots-parser": { "robots-parser": {
"version": "3.0.0", "version": "3.0.0",

View File

@@ -36,7 +36,7 @@
"file-type": "18.2.1", "file-type": "18.2.1",
"flat": "^5.0.2", "flat": "^5.0.2",
"github-slugger": "^2.0.0", "github-slugger": "^2.0.0",
"glob": "9.3.2", "glob": "10.0.0",
"got": "^12.5.3", "got": "^12.5.3",
"gray-matter": "^4.0.3", "gray-matter": "^4.0.3",
"hast-util-from-parse5": "^7.1.0", "hast-util-from-parse5": "^7.1.0",
@@ -103,7 +103,7 @@
"@babel/plugin-syntax-top-level-await": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.18.5", "@babel/plugin-transform-runtime": "^7.18.5",
"@babel/preset-env": "^7.18.2", "@babel/preset-env": "^7.18.2",
"@graphql-inspector/core": "^3.1.2", "@graphql-inspector/core": "^4.0.3",
"@graphql-tools/load": "^7.5.14", "@graphql-tools/load": "^7.5.14",
"@jest/globals": "29.5.0", "@jest/globals": "29.5.0",
"@octokit/graphql": "5.0.4", "@octokit/graphql": "5.0.4",
@@ -149,7 +149,7 @@
"make-promises-safe": "^5.1.0", "make-promises-safe": "^5.1.0",
"mdast-util-gfm-table": "^1.0.7", "mdast-util-gfm-table": "^1.0.7",
"micromark-extension-gfm-table": "^1.0.5", "micromark-extension-gfm-table": "^1.0.5",
"mkdirp": "^2.1.3", "mkdirp": "^3.0.0",
"mockdate": "^3.0.5", "mockdate": "^3.0.5",
"nock": "^13.2.7", "nock": "^13.2.7",
"nodemon": "2.0.22", "nodemon": "2.0.22",
@@ -157,7 +157,7 @@
"nth-check": "2.1.1", "nth-check": "2.1.1",
"postcss": "^8.4.14", "postcss": "^8.4.14",
"prettier": "^2.7.0", "prettier": "^2.7.0",
"rimraf": "^4.1.1", "rimraf": "^5.0.0",
"robots-parser": "^3.0.0", "robots-parser": "^3.0.0",
"sass": "^1.52.3", "sass": "^1.52.3",
"start-server-and-test": "^2.0.0", "start-server-and-test": "^2.0.0",

View File

@@ -17,7 +17,7 @@ import path from 'path'
import { program } from 'commander' import { program } from 'commander'
import chalk from 'chalk' import chalk from 'chalk'
import mkdirp from 'mkdirp' import { mkdirp } from 'mkdirp'
// Here, write down all the files that are actually part of the rendering // Here, write down all the files that are actually part of the rendering
// functionality yet live in data. // functionality yet live in data.

View File

@@ -8,7 +8,7 @@
// //
// [end-readme] // [end-readme]
import rimraf from 'rimraf' import { rimraf } from 'rimraf'
import fs from 'fs' import fs from 'fs'
import path from 'path' import path from 'path'
import { program } from 'commander' import { program } from 'commander'

View File

@@ -22,7 +22,7 @@ import fs from 'fs'
import { execSync } from 'child_process' import { execSync } from 'child_process'
import scrape from 'website-scraper' import scrape from 'website-scraper'
import { program } from 'commander' import { program } from 'commander'
import rimraf from 'rimraf' import { rimraf } from 'rimraf'
import http from 'http' import http from 'http'
import createApp from '../../lib/app.js' import createApp from '../../lib/app.js'

View File

@@ -8,7 +8,7 @@
import fs from 'fs' import fs from 'fs'
import path from 'path' import path from 'path'
import rimraf from 'rimraf' import { rimraf } from 'rimraf'
import walk from 'walk-sync' import walk from 'walk-sync'
import { allVersions } from '../../lib/all-versions.js' import { allVersions } from '../../lib/all-versions.js'
import { deprecated } from '../../lib/enterprise-server-releases.js' import { deprecated } from '../../lib/enterprise-server-releases.js'

View File

@@ -9,7 +9,7 @@
import fs from 'fs/promises' import fs from 'fs/promises'
import path from 'path' import path from 'path'
import { program } from 'commander' import { program } from 'commander'
import mkdirp from 'mkdirp' import { mkdirp } from 'mkdirp'
import { allVersions } from '../../lib/all-versions.js' import { allVersions } from '../../lib/all-versions.js'
const graphqlStaticDir = path.join(process.cwd(), 'src/graphql/data') const graphqlStaticDir = path.join(process.cwd(), 'src/graphql/data')

View File

@@ -7,7 +7,7 @@
// [end-readme] // [end-readme]
import fs from 'fs' import fs from 'fs'
import mkdirp from 'mkdirp' import { mkdirp } from 'mkdirp'
import path from 'path' import path from 'path'
import { program } from 'commander' import { program } from 'commander'
import { allVersions } from '../../lib/all-versions.js' import { allVersions } from '../../lib/all-versions.js'

View File

@@ -8,7 +8,7 @@
import fs from 'fs' import fs from 'fs'
import path from 'path' import path from 'path'
import mkdirp from 'mkdirp' import { mkdirp } from 'mkdirp'
import { program } from 'commander' import { program } from 'commander'
import { execSync } from 'child_process' import { execSync } from 'child_process'
import frontmatter from '../lib/read-frontmatter.js' import frontmatter from '../lib/read-frontmatter.js'

View File

@@ -3,8 +3,8 @@ import { existsSync, lstatSync, unlinkSync } from 'fs'
import path from 'path' import path from 'path'
import { readFile, writeFile, readdir } from 'fs/promises' import { readFile, writeFile, readdir } from 'fs/promises'
import matter from 'gray-matter' import matter from 'gray-matter'
import mkdirp from 'mkdirp' import { rimraf } from 'rimraf'
import rimraf from 'rimraf' import { mkdirp } from 'mkdirp'
import { difference, isEqual } from 'lodash-es' import { difference, isEqual } from 'lodash-es'
import { allVersions } from '../../../lib/all-versions.js' import { allVersions } from '../../../lib/all-versions.js'

View File

@@ -1,6 +1,6 @@
import { expect } from '@jest/globals' import { expect } from '@jest/globals'
import { tmpdir } from 'os' import { tmpdir } from 'os'
import mkdirp from 'mkdirp' import { mkdirp } from 'mkdirp'
import { cp, rm, readFile } from 'fs/promises' import { cp, rm, readFile } from 'fs/promises'
import { existsSync } from 'fs' import { existsSync } from 'fs'
import path from 'path' import path from 'path'

View File

@@ -3,11 +3,11 @@
import { readFile, writeFile, copyFile } from 'fs/promises' import { readFile, writeFile, copyFile } from 'fs/promises'
import { existsSync } from 'fs' import { existsSync } from 'fs'
import walk from 'walk-sync' import walk from 'walk-sync'
import mkdirp from 'mkdirp' import { mkdirp } from 'mkdirp'
import { execSync } from 'child_process' import { execSync } from 'child_process'
import path from 'path' import path from 'path'
import matter from 'gray-matter' import matter from 'gray-matter'
import rimraf from 'rimraf' import { rimraf } from 'rimraf'
import { updateContentDirectory } from '../../automated-pipelines/lib/update-markdown.js' import { updateContentDirectory } from '../../automated-pipelines/lib/update-markdown.js'
import { convertContentToDocs } from './convert-markdown-for-docs.js' import { convertContentToDocs } from './convert-markdown-for-docs.js'

View File

@@ -1,3 +1,3 @@
{ {
"sha": "e462c64f50b84f040ac76cd2205984ddf151b67f" "sha": "5e5aae0773f486f4cf84593a39c1187316445672"
} ah}

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env node #!/usr/bin/env node
import { existsSync } from 'fs' import { existsSync } from 'fs'
import mkdirp from 'mkdirp' import { mkdirp } from 'mkdirp'
import { readFile, writeFile } from 'fs/promises' import { readFile, writeFile } from 'fs/promises'
import path from 'path' import path from 'path'
import { slug } from 'github-slugger' import { slug } from 'github-slugger'

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env node #!/usr/bin/env node
import fs from 'fs/promises' import fs from 'fs/promises'
import path from 'path' import path from 'path'
import mkdirp from 'mkdirp' import { mkdirp } from 'mkdirp'
import yaml from 'js-yaml' import yaml from 'js-yaml'
import { execSync } from 'child_process' import { execSync } from 'child_process'
import { getContents, listMatchingRefs } from '../../../script/helpers/git-utils.js' import { getContents, listMatchingRefs } from '../../../script/helpers/git-utils.js'

View File

@@ -397047,11 +397047,6 @@
] ]
}, },
"user": { "user": {
"anyOf": [
{
"type": "null"
},
{
"title": "Simple User", "title": "Simple User",
"description": "A GitHub user.", "description": "A GitHub user.",
"type": "object", "type": "object",
@@ -397211,8 +397206,6 @@
"type", "type",
"url" "url"
] ]
}
]
}, },
"body": { "body": {
"type": [ "type": [
@@ -400882,11 +400875,6 @@
] ]
}, },
"user": { "user": {
"anyOf": [
{
"type": "null"
},
{
"title": "Simple User", "title": "Simple User",
"description": "A GitHub user.", "description": "A GitHub user.",
"type": "object", "type": "object",
@@ -401046,8 +401034,6 @@
"type", "type",
"url" "url"
] ]
}
]
}, },
"body": { "body": {
"type": [ "type": [
@@ -404767,11 +404753,6 @@
] ]
}, },
"user": { "user": {
"anyOf": [
{
"type": "null"
},
{
"title": "Simple User", "title": "Simple User",
"description": "A GitHub user.", "description": "A GitHub user.",
"type": "object", "type": "object",
@@ -404931,8 +404912,6 @@
"type", "type",
"url" "url"
] ]
}
]
}, },
"body": { "body": {
"type": [ "type": [

View File

@@ -279246,11 +279246,6 @@
] ]
}, },
"user": { "user": {
"anyOf": [
{
"type": "null"
},
{
"title": "Simple User", "title": "Simple User",
"description": "A GitHub user.", "description": "A GitHub user.",
"type": "object", "type": "object",
@@ -279410,8 +279405,6 @@
"type", "type",
"url" "url"
] ]
}
]
}, },
"body": { "body": {
"type": [ "type": [
@@ -283081,11 +283074,6 @@
] ]
}, },
"user": { "user": {
"anyOf": [
{
"type": "null"
},
{
"title": "Simple User", "title": "Simple User",
"description": "A GitHub user.", "description": "A GitHub user.",
"type": "object", "type": "object",
@@ -283245,8 +283233,6 @@
"type", "type",
"url" "url"
] ]
}
]
}, },
"body": { "body": {
"type": [ "type": [
@@ -286966,11 +286952,6 @@
] ]
}, },
"user": { "user": {
"anyOf": [
{
"type": "null"
},
{
"title": "Simple User", "title": "Simple User",
"description": "A GitHub user.", "description": "A GitHub user.",
"type": "object", "type": "object",
@@ -287130,8 +287111,6 @@
"type", "type",
"url" "url"
] ]
}
]
}, },
"body": { "body": {
"type": [ "type": [

View File

@@ -413769,11 +413769,6 @@
] ]
}, },
"user": { "user": {
"anyOf": [
{
"type": "null"
},
{
"title": "Simple User", "title": "Simple User",
"description": "A GitHub user.", "description": "A GitHub user.",
"type": "object", "type": "object",
@@ -413933,8 +413928,6 @@
"type", "type",
"url" "url"
] ]
}
]
}, },
"body": { "body": {
"type": [ "type": [
@@ -417604,11 +417597,6 @@
] ]
}, },
"user": { "user": {
"anyOf": [
{
"type": "null"
},
{
"title": "Simple User", "title": "Simple User",
"description": "A GitHub user.", "description": "A GitHub user.",
"type": "object", "type": "object",
@@ -417768,8 +417756,6 @@
"type", "type",
"url" "url"
] ]
}
]
}, },
"body": { "body": {
"type": [ "type": [
@@ -421489,11 +421475,6 @@
] ]
}, },
"user": { "user": {
"anyOf": [
{
"type": "null"
},
{
"title": "Simple User", "title": "Simple User",
"description": "A GitHub user.", "description": "A GitHub user.",
"type": "object", "type": "object",
@@ -421653,8 +421634,6 @@
"type", "type",
"url" "url"
] ]
}
]
}, },
"body": { "body": {
"type": [ "type": [

View File

@@ -319573,11 +319573,6 @@
] ]
}, },
"user": { "user": {
"anyOf": [
{
"type": "null"
},
{
"title": "Simple User", "title": "Simple User",
"description": "A GitHub user.", "description": "A GitHub user.",
"type": "object", "type": "object",
@@ -319737,8 +319732,6 @@
"type", "type",
"url" "url"
] ]
}
]
}, },
"body": { "body": {
"type": [ "type": [
@@ -323402,11 +323395,6 @@
] ]
}, },
"user": { "user": {
"anyOf": [
{
"type": "null"
},
{
"title": "Simple User", "title": "Simple User",
"description": "A GitHub user.", "description": "A GitHub user.",
"type": "object", "type": "object",
@@ -323566,8 +323554,6 @@
"type", "type",
"url" "url"
] ]
}
]
}, },
"body": { "body": {
"type": [ "type": [
@@ -327281,11 +327267,6 @@
] ]
}, },
"user": { "user": {
"anyOf": [
{
"type": "null"
},
{
"title": "Simple User", "title": "Simple User",
"description": "A GitHub user.", "description": "A GitHub user.",
"type": "object", "type": "object",
@@ -327445,8 +327426,6 @@
"type", "type",
"url" "url"
] ]
}
]
}, },
"body": { "body": {
"type": [ "type": [

View File

@@ -326745,11 +326745,6 @@
] ]
}, },
"user": { "user": {
"anyOf": [
{
"type": "null"
},
{
"title": "Simple User", "title": "Simple User",
"description": "A GitHub user.", "description": "A GitHub user.",
"type": "object", "type": "object",
@@ -326909,8 +326904,6 @@
"type", "type",
"url" "url"
] ]
}
]
}, },
"body": { "body": {
"type": [ "type": [
@@ -330574,11 +330567,6 @@
] ]
}, },
"user": { "user": {
"anyOf": [
{
"type": "null"
},
{
"title": "Simple User", "title": "Simple User",
"description": "A GitHub user.", "description": "A GitHub user.",
"type": "object", "type": "object",
@@ -330738,8 +330726,6 @@
"type", "type",
"url" "url"
] ]
}
]
}, },
"body": { "body": {
"type": [ "type": [
@@ -334453,11 +334439,6 @@
] ]
}, },
"user": { "user": {
"anyOf": [
{
"type": "null"
},
{
"title": "Simple User", "title": "Simple User",
"description": "A GitHub user.", "description": "A GitHub user.",
"type": "object", "type": "object",
@@ -334617,8 +334598,6 @@
"type", "type",
"url" "url"
] ]
}
]
}, },
"body": { "body": {
"type": [ "type": [

View File

@@ -336671,11 +336671,6 @@
] ]
}, },
"user": { "user": {
"anyOf": [
{
"type": "null"
},
{
"title": "Simple User", "title": "Simple User",
"description": "A GitHub user.", "description": "A GitHub user.",
"type": "object", "type": "object",
@@ -336835,8 +336830,6 @@
"type", "type",
"url" "url"
] ]
}
]
}, },
"body": { "body": {
"type": [ "type": [
@@ -340506,11 +340499,6 @@
] ]
}, },
"user": { "user": {
"anyOf": [
{
"type": "null"
},
{
"title": "Simple User", "title": "Simple User",
"description": "A GitHub user.", "description": "A GitHub user.",
"type": "object", "type": "object",
@@ -340670,8 +340658,6 @@
"type", "type",
"url" "url"
] ]
}
]
}, },
"body": { "body": {
"type": [ "type": [
@@ -344391,11 +344377,6 @@
] ]
}, },
"user": { "user": {
"anyOf": [
{
"type": "null"
},
{
"title": "Simple User", "title": "Simple User",
"description": "A GitHub user.", "description": "A GitHub user.",
"type": "object", "type": "object",
@@ -344555,8 +344536,6 @@
"type", "type",
"url" "url"
] ]
}
]
}, },
"body": { "body": {
"type": [ "type": [

View File

@@ -340311,11 +340311,6 @@
] ]
}, },
"user": { "user": {
"anyOf": [
{
"type": "null"
},
{
"title": "Simple User", "title": "Simple User",
"description": "A GitHub user.", "description": "A GitHub user.",
"type": "object", "type": "object",
@@ -340475,8 +340470,6 @@
"type", "type",
"url" "url"
] ]
}
]
}, },
"body": { "body": {
"type": [ "type": [
@@ -344146,11 +344139,6 @@
] ]
}, },
"user": { "user": {
"anyOf": [
{
"type": "null"
},
{
"title": "Simple User", "title": "Simple User",
"description": "A GitHub user.", "description": "A GitHub user.",
"type": "object", "type": "object",
@@ -344310,8 +344298,6 @@
"type", "type",
"url" "url"
] ]
}
]
}, },
"body": { "body": {
"type": [ "type": [
@@ -348031,11 +348017,6 @@
] ]
}, },
"user": { "user": {
"anyOf": [
{
"type": "null"
},
{
"title": "Simple User", "title": "Simple User",
"description": "A GitHub user.", "description": "A GitHub user.",
"type": "object", "type": "object",
@@ -348195,8 +348176,6 @@
"type", "type",
"url" "url"
] ]
}
]
}, },
"body": { "body": {
"type": [ "type": [

View File

@@ -362658,11 +362658,6 @@
] ]
}, },
"user": { "user": {
"anyOf": [
{
"type": "null"
},
{
"title": "Simple User", "title": "Simple User",
"description": "A GitHub user.", "description": "A GitHub user.",
"type": "object", "type": "object",
@@ -362822,8 +362817,6 @@
"type", "type",
"url" "url"
] ]
}
]
}, },
"body": { "body": {
"type": [ "type": [
@@ -366493,11 +366486,6 @@
] ]
}, },
"user": { "user": {
"anyOf": [
{
"type": "null"
},
{
"title": "Simple User", "title": "Simple User",
"description": "A GitHub user.", "description": "A GitHub user.",
"type": "object", "type": "object",
@@ -366657,8 +366645,6 @@
"type", "type",
"url" "url"
] ]
}
]
}, },
"body": { "body": {
"type": [ "type": [
@@ -370378,11 +370364,6 @@
] ]
}, },
"user": { "user": {
"anyOf": [
{
"type": "null"
},
{
"title": "Simple User", "title": "Simple User",
"description": "A GitHub user.", "description": "A GitHub user.",
"type": "object", "type": "object",
@@ -370542,8 +370523,6 @@
"type", "type",
"url" "url"
] ]
}
]
}, },
"body": { "body": {
"type": [ "type": [

View File

@@ -30,5 +30,5 @@
] ]
} }
}, },
"sha": "e462c64f50b84f040ac76cd2205984ddf151b67f" "sha": "5e5aae0773f486f4cf84593a39c1187316445672"
} }

View File

@@ -11,8 +11,8 @@ import { readdir, copyFile, readFile, writeFile, rename } from 'fs/promises'
import path from 'path' import path from 'path'
import { program, Option } from 'commander' import { program, Option } from 'commander'
import { execSync } from 'child_process' import { execSync } from 'child_process'
import mkdirp from 'mkdirp' import { rimraf } from 'rimraf'
import rimraf from 'rimraf' import { mkdirp } from 'mkdirp'
import { fileURLToPath } from 'url' import { fileURLToPath } from 'url'
import walk from 'walk-sync' import walk from 'walk-sync'
import { existsSync } from 'fs' import { existsSync } from 'fs'

View File

@@ -1,7 +1,7 @@
import { readFile, writeFile } from 'fs/promises' import { readFile, writeFile } from 'fs/promises'
import { existsSync } from 'fs' import { existsSync } from 'fs'
import path from 'path' import path from 'path'
import mkdirp from 'mkdirp' import { mkdirp } from 'mkdirp'
import { updateRestFiles } from './update-markdown.js' import { updateRestFiles } from './update-markdown.js'
import { allVersions } from '../../../../lib/all-versions.js' import { allVersions } from '../../../../lib/all-versions.js'

View File

@@ -8,7 +8,7 @@ To see all existing search-related issues and pull requests, visit [github.com/g
--- ---
![search-screenshot](https://user-images.githubusercontent.com/2289/65067899-68bd1c80-d93c-11e9-93ec-f57293e56113.png) ![Screenshot of the search results page for GitHub docs with the example keywords "private key".](/assets/images/internal-docs/search-results.png)
--- ---

View File

@@ -1,3 +1,3 @@
{ {
"sha": "e462c64f50b84f040ac76cd2205984ddf151b67f" "sha": "5e5aae0773f486f4cf84593a39c1187316445672"
} }

View File

@@ -1,7 +1,7 @@
import { readFile, writeFile } from 'fs/promises' import { readFile, writeFile } from 'fs/promises'
import { existsSync } from 'fs' import { existsSync } from 'fs'
import path from 'path' import path from 'path'
import mkdirp from 'mkdirp' import { mkdirp } from 'mkdirp'
import { WEBHOOK_DATA_DIR, WEBHOOK_SCHEMA_FILENAME } from '../lib/index.js' import { WEBHOOK_DATA_DIR, WEBHOOK_SCHEMA_FILENAME } from '../lib/index.js'
import Webhook from '../lib/webhook.js' import Webhook from '../lib/webhook.js'

View File

@@ -1,6 +1,6 @@
import fs from 'fs/promises' import fs from 'fs/promises'
import glob from 'glob' import { glob } from 'glob'
/* /*
* Verify that a list of file paths are present and optionally have a CODEOWNERS entry * Verify that a list of file paths are present and optionally have a CODEOWNERS entry

View File

@@ -2,7 +2,7 @@ import fs from 'fs'
import path from 'path' import path from 'path'
import os from 'os' import os from 'os'
import rimraf from 'rimraf' import { rimraf } from 'rimraf'
import { expect, test, describe, beforeAll, afterAll } from '@jest/globals' import { expect, test, describe, beforeAll, afterAll } from '@jest/globals'
import nock from 'nock' import nock from 'nock'
import getRemoteJSON, { cache } from '../../middleware/get-remote-json.js' import getRemoteJSON, { cache } from '../../middleware/get-remote-json.js'