Skip to content

Commit 91bf056

Browse files
authored
Merge branch 'main' into localized-mini-tocs-bugfix
2 parents 88824eb + 72b6f5c commit 91bf056

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+233
-100
lines changed

components/Header.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const Header = () => {
3434
style={{ zIndex: 2 }}
3535
>
3636
{/* desktop header */}
37-
<div className="d-none d-lg-flex flex-justify-end">
37+
<div className="d-none d-lg-flex flex-justify-end" data-testid="desktop-header">
3838
{showVersionPicker && (
3939
<div className="py-2 mr-4">
4040
<HomepageVersionPicker />
@@ -54,7 +54,7 @@ export const Header = () => {
5454
</div>
5555

5656
{/* mobile header */}
57-
<div className="d-lg-none">
57+
<div className="d-lg-none" data-testid="mobile-header">
5858
<div className="d-flex flex-justify-between">
5959
<div className="d-flex flex-items-center" id="github-logo-mobile" role="banner">
6060
<Link aria-hidden="true" tabIndex={-1} href={`/${router.locale}`}>
@@ -71,6 +71,7 @@ export const Header = () => {
7171

7272
<div>
7373
<ButtonOutline
74+
data-testid="mobile-menu-button"
7475
css
7576
onClick={() => setIsMenuOpen(!isMenuOpen)}
7677
aria-label="Navigation Menu"

components/Search.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { useTranslation } from 'components/hooks/useTranslation'
55
import { sendEvent, EventType } from '../javascripts/events'
66
import { useMainContext } from './context/MainContext'
77
import { useVersion } from 'components/hooks/useVersion'
8+
import cx from 'classnames'
89

910
type SearchResult = {
1011
url: string
@@ -193,8 +194,9 @@ export function Search({ isStandalone = false, updateSearchParams = true, childr
193194
<div className="ais-SearchBox">
194195
<form role="search" className="ais-SearchBox-form" noValidate onSubmit={preventRefresh}>
195196
<input
197+
data-testid="site-search-input"
196198
ref={inputRef}
197-
className={'ais-SearchBox-input' + (isStandalone || query ? ' js-open' : '')}
199+
className={cx('ais-SearchBox-input', isStandalone || query ? 'js-open' : '')}
198200
type="search"
199201
placeholder={t`placeholder`}
200202
/* eslint-disable-next-line jsx-a11y/no-autofocus */

components/SidebarNav.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ export const SidebarNav = () => {
5555
width: 280px;
5656
height: 100vh;
5757
flex-shrink: 0;
58+
padding-bottom: 32px;
5859
}
5960
`}
6061
</style>

components/context/MainContext.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export const getMainContextFromRequest = (req: any): MainContextT => {
118118
currentProduct: req.context.productMap[req.context.currentProduct] || null,
119119
currentLayoutName: req.context.currentLayoutName,
120120
isHomepageVersion: req.context.currentVersion === 'homepage',
121-
error: req.context.error || '',
121+
error: req.context.error ? req.context.error.toString() : '',
122122
data: {
123123
ui: req.context.site.data.ui,
124124
reusables: {

components/context/ProductLandingContext.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export const getFeaturedLinksFromReq = (req: any): Record<string, Array<Featured
7979
Object.entries(req.context.featuredLinks || {}).map(([key, entries]) => {
8080
return [
8181
key,
82-
(entries as Array<any> || []).map((entry: any) => ({
82+
((entries as Array<any>) || []).map((entry: any) => ({
8383
href: entry.href,
8484
title: entry.title,
8585
intro: entry.intro,
@@ -144,7 +144,7 @@ export const getProductLandingContextFromRequest = (req: any): ProductLandingCon
144144
? req.context.page.featuredLinks.popularHeading || req.context.site.data.ui.toc[key]
145145
: req.context.site.data.ui.toc[key],
146146
viewAllHref:
147-
key === 'guides' && !req.context.currentCategory && hasGuidesPage
147+
key === 'guides' && !req.context.currentCategory && hasGuidesPage
148148
? `${req.context.currentPath}/guides`
149149
: '',
150150
articles: links.map((link: any) => {

components/landing/ArticleList.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export const ArticleList = ({
4141
</div>
4242
)}
4343

44-
<ul className="list-style-none">
44+
<ul className="list-style-none" data-testid="article-list">
4545
{articles.map((link) => {
4646
return (
4747
<li key={link.href} className={cx(variant === 'compact' && 'border-top')}>

components/landing/CodeExampleCard.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export const CodeExampleCard = ({ example }: Props) => {
99
return (
1010
<a
1111
className="Box d-flex flex-column flex-justify-between height-full color-shadow-medium hover-shadow-large no-underline color-text-primary"
12+
data-testid="code-example-card"
1213
href={`https://github.com/${example.href}`}
1314
>
1415
<div className="p-4">

components/landing/CodeExamples.tsx

+6-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ export const CodeExamples = () => {
3232
<div>
3333
<div className="pr-lg-3 mb-5 mt-3">
3434
<input
35+
data-testid="code-examples-input"
3536
className="input-lg py-2 px-3 col-12 col-lg-8 form-control"
3637
placeholder={t('search_code_examples')}
3738
type="search"
@@ -53,6 +54,7 @@ export const CodeExamples = () => {
5354

5455
{numVisible < productCodeExamples.length && !isSearching && (
5556
<button
57+
data-testid="code-examples-show-more"
5658
className="btn btn-outline float-right"
5759
onClick={() => setNumVisible(numVisible + PAGE_SIZE)}
5860
>
@@ -61,7 +63,10 @@ export const CodeExamples = () => {
6163
)}
6264

6365
{isSearching && searchResults.length === 0 && (
64-
<div className="py-4 text-center color-text-secondary font-mktg">
66+
<div
67+
data-testid="code-examples-no-results"
68+
className="py-4 text-center color-text-secondary font-mktg"
69+
>
6570
<div className="mb-3">
6671
<SearchIcon size={24} />{' '}
6772
</div>

components/landing/LandingSection.tsx

+7-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,13 @@ export const LandingSection = ({ title, children, className, sectionLink, descri
1212
<div className={cx('container-xl px-3 px-md-6', className)} id={sectionLink}>
1313
{title && (
1414
<h2 className={cx('font-mktg h1 color-text-primary', !description ? 'mb-3' : 'mb-4')}>
15-
{sectionLink ? <a className="color-unset" href={`#${sectionLink}`}>{title}</a> : title}
15+
{sectionLink ? (
16+
<a className="color-unset" href={`#${sectionLink}`}>
17+
{title}
18+
</a>
19+
) : (
20+
title
21+
)}
1622
</h2>
1723
)}
1824
{description && (

components/landing/ProductArticlesList.tsx

+4-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const ProductArticlesList = () => {
1616
}
1717

1818
return (
19-
<div className="d-flex gutter flex-wrap">
19+
<div className="d-flex gutter flex-wrap" data-testid="product-articles-list">
2020
{currentProductTree.childPages.map((treeNode, i) => {
2121
if (treeNode.page.documentType === 'article') {
2222
return null
@@ -34,7 +34,9 @@ const ProductTreeNodeList = ({ treeNode }: { treeNode: ProductTreeNode }) => {
3434
return (
3535
<div className="col-12 col-lg-4 mb-6 height-full">
3636
<h4 className="mb-3">
37-
<Link className="color-unset" href={treeNode.href}>{treeNode.renderedFullTitle}</Link>
37+
<Link className="color-unset" href={treeNode.href}>
38+
{treeNode.renderedFullTitle}
39+
</Link>
3840
</h4>
3941

4042
<ul className="list-style-none">

components/landing/ProductLanding.tsx

+6-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,11 @@ export const ProductLanding = () => {
3737
</LandingSection>
3838

3939
{productCodeExamples.length > 0 && (
40-
<LandingSection title={t('code_examples')} sectionLink="code-examples" className="my-6 pb-6">
40+
<LandingSection
41+
title={t('code_examples')}
42+
sectionLink="code-examples"
43+
className="my-6 pb-6"
44+
>
4145
<CodeExamples />
4246
</LandingSection>
4347
)}
@@ -68,7 +72,7 @@ export const ProductLanding = () => {
6872
</div>
6973
)}
7074

71-
<LandingSection title={`All ${shortTitle} docs`} sectionLink="all-docs" className="pt-9">
75+
<LandingSection title={`All ${shortTitle} docs`} sectionLink="all-docs" className="pt-9">
7276
<ProductArticlesList />
7377
</LandingSection>
7478
</DefaultLayout>

content/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/managing-encrypted-secrets-for-dependabot.md

+4
Original file line numberDiff line numberDiff line change
@@ -79,3 +79,7 @@ When creating a secret in an organization, you can use a policy to limit which r
7979
The name of the secret is listed on the Dependabot secrets page. You can click **Update** to change the secret value or its access policy. You can click **Remove** to delete the secret.
8080

8181
![Update or remove an organization secret](/assets/images/help/dependabot/update-remove-repo-secret.png)
82+
83+
## Adding {% data variables.product.prodname_dependabot %} to your registries IP allow list
84+
85+
If your private registry is configured with an IP allow list, you can find the IP addresses {% data variables.product.prodname_dependabot %} uses to access the registry in the meta API endpoint, under the `dependabot` key. For more information, see "[Meta](/rest/reference/meta)."

data/release-notes/enterprise-server/2-20/0.yml

+1
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,4 @@ sections:
4141
- 'When upgrading from previous versions, background job workers may not be spawned, preventing essential features such as merging pull requests. (updated 2020-04-07) {% comment %} https://github.com/github/enterprise2/issues/19232 {% endcomment %}'
4242
- 'Security alerts are not reported when pushing to a repository on the command line. (updated 2020-06-23) {% comment %} https://github.com/github/github/issues/143190 {% endcomment %}'
4343
- 'Dependency graph is not detecting dependencies when deployed in a cluster configuration with multiple Redis nodes. (updated 2020-06-30) {% comment %} https://github.com/github/dependency-graph/issues/81 {% endcomment %}'
44+
- 'When a replica node is offline in a high availability configuration, {% data variables.product.product_name %} may still route {% data variables.product.prodname_pages %} requests to the offline node, reducing the availability of {% data variables.product.prodname_pages %} for users.'

data/release-notes/enterprise-server/2-20/1.yml

+1
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ sections:
1818
- 'When upgrading from previous versions, background job workers may not be spawned, preventing essential features such as merging pull requests. (updated 2020-04-07) {% comment %} https://github.com/github/enterprise2/issues/19232 {% endcomment %}'
1919
- 'Security alerts are not reported when pushing to a repository on the command line. (updated 2020-06-23) {% comment %} https://github.com/github/github/issues/143190 {% endcomment %}'
2020
- 'Dependency graph is not detecting dependencies when deployed in a cluster configuration with multiple Redis nodes. (updated 2020-06-30) {% comment %} https://github.com/github/dependency-graph/issues/81 {% endcomment %}'
21+
- 'When a replica node is offline in a high availability configuration, {% data variables.product.product_name %} may still route {% data variables.product.prodname_pages %} requests to the offline node, reducing the availability of {% data variables.product.prodname_pages %} for users.'

data/release-notes/enterprise-server/2-20/10.yml

+1
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ sections:
1818
- 'When "Users can search GitHub.com" is enabled with GitHub Connect, issues in private and internal repositories are not included in GitHub.com search results. {% comment %} https://github.com/github/admin-experience/issues/571 {% endcomment %}'
1919
- 'Security alerts are not reported when pushing to a repository on the command line. {% comment %} https://github.com/github/github/issues/143190 {% endcomment %}'
2020
- 'Dependency graph is not detecting dependencies when deployed in a cluster configuration with multiple Redis nodes. (updated 2020-06-30) {% comment %} https://github.com/github/dependency-graph/issues/81 {% endcomment %}'
21+
- 'When a replica node is offline in a high availability configuration, {% data variables.product.product_name %} may still route {% data variables.product.prodname_pages %} requests to the offline node, reducing the availability of {% data variables.product.prodname_pages %} for users.'

data/release-notes/enterprise-server/2-20/11.yml

+1
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ sections:
1616
- 'Issues cannot be closed if they contain a permalink to a blob in the same repository where the file path is longer than 255 characters. {% comment %} https://github.com/github/github/issues/107731 {% endcomment %}'
1717
- 'When "Users can search GitHub.com" is enabled with GitHub Connect, issues in private and internal repositories are not included in GitHub.com search results. {% comment %} https://github.com/github/admin-experience/issues/571 {% endcomment %}'
1818
- 'Security alerts are not reported when pushing to a repository on the command line. {% comment %} https://github.com/github/github/issues/143190 {% endcomment %}'
19+
- 'When a replica node is offline in a high availability configuration, {% data variables.product.product_name %} may still route {% data variables.product.prodname_pages %} requests to the offline node, reducing the availability of {% data variables.product.prodname_pages %} for users.'

data/release-notes/enterprise-server/2-20/12.yml

+1
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ sections:
1414
- 'Issues cannot be closed if they contain a permalink to a blob in the same repository where the file path is longer than 255 characters. {% comment %} https://github.com/github/github/issues/107731 {% endcomment %}'
1515
- 'When "Users can search GitHub.com" is enabled with GitHub Connect, issues in private and internal repositories are not included in GitHub.com search results. {% comment %} https://github.com/github/admin-experience/issues/571 {% endcomment %}'
1616
- 'Security alerts are not reported when pushing to a repository on the command line. {% comment %} https://github.com/github/github/issues/143190 {% endcomment %}'
17+
- 'When a replica node is offline in a high availability configuration, {% data variables.product.product_name %} may still route {% data variables.product.prodname_pages %} requests to the offline node, reducing the availability of {% data variables.product.prodname_pages %} for users.'

data/release-notes/enterprise-server/2-20/13.yml

+1
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ sections:
1919
- 'Issues cannot be closed if they contain a permalink to a blob in the same repository where the file path is longer than 255 characters. {% comment %} https://github.com/github/github/issues/107731 {% endcomment %}'
2020
- 'When "Users can search GitHub.com" is enabled with GitHub Connect, issues in private and internal repositories are not included in GitHub.com search results. {% comment %} https://github.com/github/admin-experience/issues/571 {% endcomment %}'
2121
- 'Security alerts are not reported when pushing to a repository on the command line. {% comment %} https://github.com/github/github/issues/143190 {% endcomment %}'
22+
- 'When a replica node is offline in a high availability configuration, {% data variables.product.product_name %} may still route {% data variables.product.prodname_pages %} requests to the offline node, reducing the availability of {% data variables.product.prodname_pages %} for users.'

data/release-notes/enterprise-server/2-20/14.yml

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ sections:
1010
- 'Issues cannot be closed if they contain a permalink to a blob in the same repository where the file path is longer than 255 characters. {% comment %} https://github.com/github/github/issues/107731 {% endcomment %}'
1111
- 'When "Users can search GitHub.com" is enabled with GitHub Connect, issues in private and internal repositories are not included in GitHub.com search results. {% comment %} https://github.com/github/admin-experience/issues/571 {% endcomment %}'
1212
- 'Security alerts are not reported when pushing to a repository on the command line. {% comment %} https://github.com/github/github/issues/143190 {% endcomment %}'
13+
- 'When a replica node is offline in a high availability configuration, {% data variables.product.product_name %} may still route {% data variables.product.prodname_pages %} requests to the offline node, reducing the availability of {% data variables.product.prodname_pages %} for users.'

data/release-notes/enterprise-server/2-20/15.yml

+1
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ sections:
2222
- 'Issues cannot be closed if they contain a permalink to a blob in the same repository where the file path is longer than 255 characters. {% comment %} https://github.com/github/github/issues/107731 {% endcomment %}'
2323
- 'When "Users can search GitHub.com" is enabled with GitHub Connect, issues in private and internal repositories are not included in GitHub.com search results. {% comment %} https://github.com/github/admin-experience/issues/571 {% endcomment %}'
2424
- 'Security alerts are not reported when pushing to a repository on the command line. {% comment %} https://github.com/github/github/issues/143190 {% endcomment %}'
25+
- 'When a replica node is offline in a high availability configuration, {% data variables.product.product_name %} may still route {% data variables.product.prodname_pages %} requests to the offline node, reducing the availability of {% data variables.product.prodname_pages %} for users.'

data/release-notes/enterprise-server/2-20/16.yml

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ sections:
1010
- 'Issues cannot be closed if they contain a permalink to a blob in the same repository where the file path is longer than 255 characters. {% comment %} https://github.com/github/github/issues/107731 {% endcomment %}'
1111
- 'When "Users can search GitHub.com" is enabled with GitHub Connect, issues in private and internal repositories are not included in GitHub.com search results. {% comment %} https://github.com/github/admin-experience/issues/571 {% endcomment %}'
1212
- 'Security alerts are not reported when pushing to a repository on the command line. {% comment %} https://github.com/github/github/issues/143190 {% endcomment %}'
13+
- 'When a replica node is offline in a high availability configuration, {% data variables.product.product_name %} may still route {% data variables.product.prodname_pages %} requests to the offline node, reducing the availability of {% data variables.product.prodname_pages %} for users.'

data/release-notes/enterprise-server/2-20/17.yml

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ sections:
1010
- 'Issues cannot be closed if they contain a permalink to a blob in the same repository where the file path is longer than 255 characters. {% comment %} https://github.com/github/github/issues/107731 {% endcomment %}'
1111
- 'When "Users can search GitHub.com" is enabled with GitHub Connect, issues in private and internal repositories are not included in GitHub.com search results. {% comment %} https://github.com/github/admin-experience/issues/571 {% endcomment %}'
1212
- 'Security alerts are not reported when pushing to a repository on the command line. {% comment %} https://github.com/github/github/issues/143190 {% endcomment %}'
13+
- 'When a replica node is offline in a high availability configuration, {% data variables.product.product_name %} may still route {% data variables.product.prodname_pages %} requests to the offline node, reducing the availability of {% data variables.product.prodname_pages %} for users.'

data/release-notes/enterprise-server/2-20/18.yml

+1
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,4 @@ sections:
2323
- 'Issues cannot be closed if they contain a permalink to a blob in the same repository where the file path is longer than 255 characters. {% comment %} https://github.com/github/github/issues/107731 {% endcomment %}'
2424
- 'When "Users can search GitHub.com" is enabled with GitHub Connect, issues in private and internal repositories are not included in GitHub.com search results. {% comment %} https://github.com/github/admin-experience/issues/571 {% endcomment %}'
2525
- 'Security alerts are not reported when pushing to a repository on the command line. {% comment %} https://github.com/github/github/issues/143190 {% endcomment %}'
26+
- 'When a replica node is offline in a high availability configuration, {% data variables.product.product_name %} may still route {% data variables.product.prodname_pages %} requests to the offline node, reducing the availability of {% data variables.product.prodname_pages %} for users.'

data/release-notes/enterprise-server/2-20/19.yml

+1
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ sections:
1111
- 'Issues cannot be closed if they contain a permalink to a blob in the same repository where the file path is longer than 255 characters. {% comment %} https://github.com/github/github/issues/107731 {% endcomment %}'
1212
- 'When "Users can search GitHub.com" is enabled with GitHub Connect, issues in private and internal repositories are not included in GitHub.com search results. {% comment %} https://github.com/github/admin-experience/issues/571 {% endcomment %}'
1313
- 'Security alerts are not reported when pushing to a repository on the command line. {% comment %} https://github.com/github/github/issues/143190 {% endcomment %}'
14+
- 'When a replica node is offline in a high availability configuration, {% data variables.product.product_name %} may still route {% data variables.product.prodname_pages %} requests to the offline node, reducing the availability of {% data variables.product.prodname_pages %} for users.'

0 commit comments

Comments
 (0)