Merge branch 'main' into patch-2
This commit is contained in:
BIN
assets/images/help/branches/branch-creation-popup.png
Normal file
BIN
assets/images/help/branches/branch-creation-popup.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 17 KiB |
BIN
assets/images/help/branches/branches-overview-link.png
Normal file
BIN
assets/images/help/branches/branches-overview-link.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 129 KiB |
BIN
assets/images/help/branches/new-branch-button.png
Normal file
BIN
assets/images/help/branches/new-branch-button.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 127 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 93 KiB |
BIN
assets/images/help/repository/file-tree.png
Normal file
BIN
assets/images/help/repository/file-tree.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 72 KiB |
@@ -80,7 +80,7 @@ The following SAML attributes are available for {% data variables.product.produc
|
||||
| `NameID` | Yes | A persistent user identifier. Any persistent name identifier format may be used. {% ifversion ghec %}If you use an enterprise with {% data variables.product.prodname_emus %}, {% endif %}{% data variables.product.product_name %} will normalize the `NameID` element to use as a username unless one of the alternative assertions is provided. For more information, see "[Username considerations for external authentication](/admin/identity-and-access-management/managing-iam-for-your-enterprise/username-considerations-for-external-authentication)." |
|
||||
| `SessionNotOnOrAfter` | No | The date that {% data variables.product.product_name %} invalidates the associated session. After invalidation, the person must authenticate once again to access {% ifversion ghec or ghae %}your enterprise's resources{% elsif ghes %}{% data variables.product.product_location %}{% endif %}. For more information, see "[Session duration and timeout](#session-duration-and-timeout)." |
|
||||
{%- ifversion ghes or ghae %}
|
||||
| `administrator` | No | When the value is `true`, {% data variables.product.product_name %} will automatically promote the user to be a {% ifversion ghes %}site administrator{% elsif ghae %}enterprise owner{% endif %}. Any other value or a non-existent value will demote the account and remove administrative access. |
|
||||
| `administrator` | No | When the value is `true`, {% data variables.product.product_name %} will automatically promote the user to be a {% ifversion ghes %}site administrator{% elsif ghae %}enterprise owner{% endif %}. Setting this attribute to anything but `true` will result in demotion, as long as the value is not blank. Omitting this attribute or leaving the value blank will not change the role of the user. |
|
||||
| `username` | No | The username for {% data variables.product.product_location %}. |
|
||||
{%- endif %}
|
||||
| `full_name` | No | {% ifversion ghec %}If you configure SAML SSO for an enterprise and you use {% data variables.product.prodname_emus %}, the{% else %}The{% endif %} full name of the user to display on the user's profile page. |
|
||||
|
||||
@@ -1337,6 +1337,34 @@ Key | Type | Description
|
||||
|
||||
{% endif %}
|
||||
|
||||
{% ifversion ghas-enablement-webhook %}
|
||||
|
||||
## security_and_analysis
|
||||
|
||||
Activity related to enabling or disabling code security and analysis features for a repository or organization.
|
||||
|
||||
### Availability
|
||||
|
||||
- Repository webhooks
|
||||
- Organization webhooks
|
||||
- {% data variables.product.prodname_github_apps %} with at least `read-only` access on repositories administration
|
||||
|
||||
### Webhook payload object
|
||||
|
||||
Key | Type | Description
|
||||
----|------|-------------
|
||||
`changes`|`object` | The changes that were made to the code security and analysis features.
|
||||
{% data reusables.webhooks.repo_desc %}
|
||||
{% data reusables.webhooks.org_desc %}
|
||||
{% data reusables.webhooks.app_desc %}
|
||||
{% data reusables.webhooks.sender_desc %}
|
||||
|
||||
### Webhook payload example
|
||||
|
||||
{{ webhookPayloadsForCurrentVersion.security_and_analysis }}
|
||||
|
||||
{% endif %}
|
||||
|
||||
{% ifversion fpt or ghec %}
|
||||
## sponsorship
|
||||
|
||||
|
||||
@@ -41,6 +41,16 @@ Starring a repository is a simple two-step process.
|
||||

|
||||
|
||||
{% ifversion fpt or ghec %}
|
||||
|
||||
## Viewing who has starred a repository
|
||||
|
||||
|
||||
You can view everyone who has starred a public repository or a private repository you have access to.
|
||||
|
||||
|
||||
To view everyone who has starred a repository, add `/stargazers` to the end of the URL of a repository. For example, to view stargazers for the github/docs repository, visit https://github.com/github/docs/stargazers.
|
||||
|
||||
|
||||
## Organizing starred repositories with lists
|
||||
|
||||
{% note %}
|
||||
|
||||
@@ -82,7 +82,7 @@ gh repo fork <em>repository</em> --clone=true
|
||||
|
||||
## Making and pushing changes
|
||||
|
||||
Go ahead and make a few changes to the project using your favorite text editor, like [Atom](https://atom.io). You could, for example, change the text in `index.html` to add your GitHub username.
|
||||
Go ahead and make a few changes to the project using your favorite text editor, like [Visual Studio Code](https://code.visualstudio.com). You could, for example, change the text in `index.html` to add your GitHub username.
|
||||
|
||||
When you're ready to submit your changes, stage and commit your changes. `git add .` tells Git that you want to include all of your changes in the next commit. `git commit` takes a snapshot of those changes.
|
||||
|
||||
|
||||
@@ -15,17 +15,37 @@ topics:
|
||||
- Pull requests
|
||||
shortTitle: Create & delete branches
|
||||
---
|
||||
|
||||
## Creating a branch
|
||||
You can create a branch in different ways on {% data variables.product.product_name %}.
|
||||
|
||||
{% note %}
|
||||
|
||||
**Note:** You can only create a branch in a repository to which you have push access.
|
||||
|
||||
{% endnote %}
|
||||
|
||||
### Creating a branch via the branches overview
|
||||
{% data reusables.repositories.navigate-to-repo %}
|
||||
{% data reusables.repositories.navigate-to-branches %}
|
||||
1. Click **New branch**.
|
||||

|
||||
2. In the dialog box, enter the branch name and optionally change the branch source.
|
||||
3. Click **Create branch**.
|
||||

|
||||
|
||||
1. Optionally, if you want to create your new branch from a branch other than the default branch for the repository, click {% octicon "git-branch" aria-label="The branch icon" %} **<em>NUMBER</em> branches** then choose another branch:
|
||||

|
||||
### Creating a branch using the branch dropdown
|
||||
{% data reusables.repositories.navigate-to-repo %}
|
||||
1. Optionally, if you want to create the new branch from a branch other than the default branch of the repository, click {% octicon "git-branch" aria-label="The branch icon" %} **Branches** then choose another branch.
|
||||

|
||||
1. Click the branch selector menu.
|
||||

|
||||
1. Type a unique name for your new branch, then select **Create branch**.
|
||||

|
||||
|
||||
{% ifversion fpt or ghec or ghes > 3.4 %}
|
||||
### Creating a branch for an issue
|
||||
You can create a branch to work on an issue directly from the issue page and get started right away. For more information, see "[Creating a branch to work on an issue](/issues/tracking-your-work-with-issues/creating-a-branch-for-an-issue)".
|
||||
{% endif %}
|
||||
## Deleting a branch
|
||||
|
||||
{% data reusables.pull_requests.automatically-delete-branches %}
|
||||
|
||||
@@ -40,16 +40,16 @@ You can filter files in a pull request by file extension type, such as `.html` o
|
||||
{% data reusables.repositories.sidebar-pr %}
|
||||
1. In the list of pull requests, click the pull request you'd like to filter.
|
||||
{% data reusables.repositories.changed-files %}
|
||||
1. If the file tree is hidden, click **Show file tree** to display the file tree.
|
||||
|
||||
1. Click on a file in the file tree to view the corresponding file diff. If the file tree is hidden, click {% octicon "sidebar-collapse" aria-label="The sidebar collapse icon" %} to display the file tree.
|
||||
|
||||
{% note %}
|
||||
|
||||
**Note**: The file tree will not display if your screen width is too narrow or if the pull request only includes one file.
|
||||
|
||||
{% endnote %}
|
||||
|
||||
1. Click on a file in the file tree to view the corresponding file diff.
|
||||

|
||||
|
||||

|
||||
1. To filter by file path, enter part or all of the file path in the **Filter changed files** search box. Alternatively, use the file filter dropdown. For more information, see "[Using the file filter dropdown](#using-the-file-filter-dropdown)."
|
||||
|
||||
{% endif %}
|
||||
|
||||
@@ -77,14 +77,8 @@ Before you can sync your fork with an upstream repository, you must [configure a
|
||||
> 2 files changed, 7 insertions(+), 9 deletions(-)
|
||||
> delete mode 100644 README
|
||||
> create mode 100644 README.md
|
||||
``` If your local branch didn't have any unique commits, Git will instead perform a "fast-forward":
|
||||
```shell
|
||||
$ git merge upstream/main
|
||||
> Updating 34e91da..16c56ad
|
||||
> Fast-forward
|
||||
> README.md | 5 +++--
|
||||
> 1 file changed, 3 insertions(+), 2 deletions(-)
|
||||
```
|
||||
```
|
||||
|
||||
|
||||
{% tip %}
|
||||
|
||||
|
||||
@@ -41,5 +41,28 @@ Once the commit is on the default branch, any tags that contain the commit will
|
||||
|
||||

|
||||
|
||||
{% ifversion commit-tree-view %}
|
||||
|
||||
## Using the file tree
|
||||
|
||||
You can use the file tree to navigate between files in a commit.
|
||||
|
||||
{% data reusables.repositories.navigate-to-repo %}
|
||||
{% data reusables.repositories.navigate-to-commit-page %}
|
||||
1. Navigate to the commit by clicking the commit message link.
|
||||

|
||||
1. Click on a file in the file tree to view the corresponding file diff. If the file tree is hidden, click {% octicon "sidebar-collapse" aria-label="The sidebar collapse icon" %} to display the file tree.
|
||||
|
||||
{% note %}
|
||||
|
||||
**Note**: The file tree will not display if your screen width is too narrow or if the commit only includes one file.
|
||||
|
||||
{% endnote %}
|
||||
|
||||

|
||||
1. To filter by file path, enter part or all of the file path in the **Filter changed files** search box.
|
||||
|
||||
{% endif %}
|
||||
|
||||
## Further reading
|
||||
- "[Committing and reviewing changes to your project](/desktop/contributing-to-projects/committing-and-reviewing-changes-to-your-project#about-commits)" on {% data variables.product.prodname_desktop %}
|
||||
7
data/features/commit-tree-view.yml
Normal file
7
data/features/commit-tree-view.yml
Normal file
@@ -0,0 +1,7 @@
|
||||
# Issue 6662
|
||||
# Commit file tree view
|
||||
versions:
|
||||
fpt: '*'
|
||||
ghec: '*'
|
||||
ghes: '>=3.6'
|
||||
ghae: 'issue-6662'
|
||||
6
data/features/ghas-enablement-webhook.yml
Normal file
6
data/features/ghas-enablement-webhook.yml
Normal file
@@ -0,0 +1,6 @@
|
||||
# docs-content 7314. GHAS enablement webhook
|
||||
versions:
|
||||
fpt: '*'
|
||||
ghec: '*'
|
||||
ghes: '>3.6'
|
||||
ghae: 'issue-7314'
|
||||
20
data/release-notes/enterprise-server/3-1/22.yml
Normal file
20
data/release-notes/enterprise-server/3-1/22.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
date: '2022-06-09'
|
||||
sections:
|
||||
security_fixes:
|
||||
- Packages have been updated to the latest security versions.
|
||||
bugs:
|
||||
- An internal script to validate hostnames in the {% data variables.product.prodname_ghe_server %} configuration file would return an error if the hostname string started with a "." (period character).
|
||||
- In HA configurations where the primary node's hostname was longer than 60 characters, MySQL would fail to be configured.
|
||||
- The calculation of "maximum committers across entire instance" reported in the site admin dashboard was incorrect.
|
||||
- An incorrect database entry for repository replicas caused database corruption when performing a restore using {% data variables.product.prodname_enterprise_backup_utilities %}.
|
||||
changes:
|
||||
- In HA configurations where Elasticsearch reported a valid yellow status, changes introduced in a previous fix would block the `ghe-repl-stop` command and not allow replication to be stopped. Using `ghe-repo-stop --force` will now force Elasticsearch to stop when the service is in a normal or valid yellow status.
|
||||
known_issues:
|
||||
- The {% data variables.product.prodname_registry %} npm registry no longer returns a time value in metadata responses. This was done to allow for substantial performance improvements. We continue to have all the data necessary to return a time value as part of the metadata response and will resume returning this value in the future once we have solved the existing performance issues.
|
||||
- On a freshly set up {% data variables.product.prodname_ghe_server %} instance without any users, an attacker could create the first admin user.
|
||||
- Custom firewall rules are removed during the upgrade process.
|
||||
- Git LFS tracked files [uploaded through the web interface](https://github.com/blog/2105-upload-files-to-your-repositories) are incorrectly added directly to the repository.
|
||||
- Issues cannot be closed if they contain a permalink to a blob in the same repository, where the blob's file path is longer than 255 characters.
|
||||
- When "Users can search GitHub.com" is enabled with {% data variables.product.prodname_github_connect %}, issues in private and internal repositories are not included in {% data variables.product.prodname_dotcom_the_website %} search results.
|
||||
- If {% data variables.product.prodname_actions %} is enabled for {% data variables.product.prodname_ghe_server %}, teardown of a replica node with `ghe-repl-teardown` will succeed, but may return `ERROR:Running migrations`.
|
||||
- Resource limits that are specific to processing pre-receive hooks may cause some pre-receive hooks to fail.
|
||||
22
data/release-notes/enterprise-server/3-2/14.yml
Normal file
22
data/release-notes/enterprise-server/3-2/14.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
date: '2022-06-09'
|
||||
sections:
|
||||
security_fixes:
|
||||
- Packages have been updated to the latest security versions.
|
||||
bugs:
|
||||
- An internal script to validate hostnames in the {% data variables.product.prodname_ghe_server %} configuration file would return an error if the hostname string started with a "." (period character).
|
||||
- In HA configurations where the primary node's hostname was longer than 60 characters, MySQL would fail to be configured.
|
||||
- The `--gateway` argument was added to the `ghe-setup-network` command, to allow passing the gateway address when configuring network settings using the command line.
|
||||
- Image attachments that were deleted would return a `500 Internal Server Error` instead of a `404 Not Found` error.
|
||||
- The calculation of "maximum committers across entire instance" reported in the site admin dashboard was incorrect.
|
||||
- An incorrect database entry for repository replicas caused database corruption when performing a restore using {% data variables.product.prodname_enterprise_backup_utilities %}.
|
||||
changes:
|
||||
- Optimised the inclusion of metrics when generating a cluster support bundle.
|
||||
- In HA configurations where Elasticsearch reported a valid yellow status, changes introduced in a previous fix would block the `ghe-repl-stop` command and not allow replication to be stopped. Using `ghe-repo-stop --force` will now force Elasticsearch to stop when the service is in a normal or valid yellow status.
|
||||
known_issues:
|
||||
- On a freshly set up {% data variables.product.prodname_ghe_server %} instance without any users, an attacker could create the first admin user.
|
||||
- Custom firewall rules are removed during the upgrade process.
|
||||
- Git LFS tracked files [uploaded through the web interface](https://github.com/blog/2105-upload-files-to-your-repositories) are incorrectly added directly to the repository.
|
||||
- Issues cannot be closed if they contain a permalink to a blob in the same repository, where the blob's file path is longer than 255 characters.
|
||||
- When "Users can search GitHub.com" is enabled with {% data variables.product.prodname_github_connect %}, issues in private and internal repositories are not included in {% data variables.product.prodname_dotcom_the_website %} search results.
|
||||
- The {% data variables.product.prodname_registry %} npm registry no longer returns a time value in metadata responses. This was done to allow for substantial performance improvements. We continue to have all the data necessary to return a time value as part of the metadata response and will resume returning this value in the future once we have solved the existing performance issues.
|
||||
- Resource limits that are specific to processing pre-receive hooks may cause some pre-receive hooks to fail.
|
||||
25
data/release-notes/enterprise-server/3-3/9.yml
Normal file
25
data/release-notes/enterprise-server/3-3/9.yml
Normal file
@@ -0,0 +1,25 @@
|
||||
date: '2022-06-09'
|
||||
sections:
|
||||
security_fixes:
|
||||
- Packages have been updated to the latest security versions.
|
||||
bugs:
|
||||
- An internal script to validate hostnames in the {% data variables.product.prodname_ghe_server %} configuration file would return an error if the hostname string started with a "." (period character).
|
||||
- In HA configurations where the primary node's hostname was longer than 60 characters, MySQL would fail to be configured
|
||||
- The `--gateway` argument was added to the `ghe-setup-network` command, to allow passing the gateway address when configuring network settings using the command line.
|
||||
- Image attachments that were deleted would return a `500 Internal Server Error` instead of a `404 Not Found` error.
|
||||
- The calculation of "maximum committers across entire instance" reported in the site admin dashboard was incorrect.
|
||||
- An incorrect database entry for repository replicas caused database corruption when performing a restore using {% data variables.product.prodname_enterprise_backup_utilities %}.
|
||||
changes:
|
||||
- Optimised the inclusion of metrics when generating a cluster support bundle.
|
||||
- In HA configurations where Elasticsearch reported a valid yellow status, changes introduced in a previous fix would block the `ghe-repl-stop` command and not allow replication to be stopped. Using `ghe-repo-stop --force` will now force Elasticsearch to stop when the service is in a normal or valid yellow status.
|
||||
- When using `ghe-migrator` or exporting from {% data variables.product.prodname_dotcom_the_website %}, migrations would fail to export pull request attachments.
|
||||
known_issues:
|
||||
- After upgrading to {% data variables.product.prodname_ghe_server %} 3.3, {% data variables.product.prodname_actions %} may fail to start automatically. To resolve this issue, connect to the appliance via SSH and run the `ghe-actions-start` command.
|
||||
- On a freshly set up {% data variables.product.prodname_ghe_server %} instance without any users, an attacker could create the first admin user.
|
||||
- Custom firewall rules are removed during the upgrade process.
|
||||
- Git LFS tracked files [uploaded through the web interface](https://github.com/blog/2105-upload-files-to-your-repositories) are incorrectly added directly to the repository.
|
||||
- Issues cannot be closed if they contain a permalink to a blob in the same repository, where the blob's file path is longer than 255 characters.
|
||||
- When "Users can search GitHub.com" is enabled with {% data variables.product.prodname_github_connect %}, issues in private and internal repositories are not included in {% data variables.product.prodname_dotcom_the_website %} search results.
|
||||
- The {% data variables.product.prodname_registry %} npm registry no longer returns a time value in metadata responses. This was done to allow for substantial performance improvements. We continue to have all the data necessary to return a time value as part of the metadata response and will resume returning this value in the future once we have solved the existing performance issues.
|
||||
- Resource limits that are specific to processing pre-receive hooks may cause some pre-receive hooks to fail.
|
||||
- '{% data variables.product.prodname_actions %} storage settings cannot be validated and saved in the {% data variables.enterprise.management_console %} when "Force Path Style" is selected, and must instead be configured with the `ghe-actions-precheck` command line utility.'
|
||||
33
data/release-notes/enterprise-server/3-4/4.yml
Normal file
33
data/release-notes/enterprise-server/3-4/4.yml
Normal file
@@ -0,0 +1,33 @@
|
||||
date: '2022-06-09'
|
||||
sections:
|
||||
security_fixes:
|
||||
- Packages have been updated to the latest security versions.
|
||||
bugs:
|
||||
- An internal script to validate hostnames in the {% data variables.product.prodname_ghe_server %} configuration file would return an error if the hostname string started with a "." (period character).
|
||||
- In HA configurations where the primary node's hostname was longer than 60 characters, MySQL would fail to be configured.
|
||||
- When {% data variables.product.prodname_actions %} was enabled but TLS was disabled on {% data variables.product.prodname_ghe_server %} 3.4.1 and later, applying a configuration update would fail.
|
||||
- The `--gateway` argument was added to the `ghe-setup-network` command, to allow passing the gateway address when configuring network settings using the command line.
|
||||
- The [{% data variables.product.prodname_GH_advanced_security %} billing API](/rest/enterprise-admin/billing#get-github-advanced-security-active-committers-for-an-enterprise) endpoints were not enabled and accessible.
|
||||
- Image attachments that were deleted would return a `500 Internal Server Error` instead of a `404 Not Found` error.
|
||||
- In environments configured with a repository cache server, the `ghe-repl-status` command incorrectly showed gists as being under-replicated.
|
||||
- The "Get a commit" and "Compare two commits" endpoints in the [Commit API](/rest/commits/commits) would return a `500` error if a file path in the diff contained an encoded and escaped unicode character.
|
||||
- The calculation of "maximum committers across entire instance" reported in the site admin dashboard was incorrect.
|
||||
- An incorrect database entry for repository replicas caused database corruption when performing a restore using {% data variables.product.prodname_enterprise_backup_utilities %}.
|
||||
- The activity timeline for secret scanning alerts wasn't displayed.
|
||||
changes:
|
||||
- Optimised the inclusion of metrics when generating a cluster support bundle.
|
||||
- In HA configurations where Elasticsearch reported a valid yellow status, changes introduced in a previous fix would block the `ghe-repl-stop` command and not allow replication to be stopped. Using `ghe-repo-stop --force` will now force Elasticsearch to stop when the service is in a normal or valid yellow status.
|
||||
known_issues:
|
||||
- On a freshly set up {% data variables.product.prodname_ghe_server %} instance without any users, an attacker could create the first admin user.
|
||||
- Custom firewall rules are removed during the upgrade process.
|
||||
- Git LFS tracked files [uploaded through the web interface](https://github.com/blog/2105-upload-files-to-your-repositories) are incorrectly added directly to the repository.
|
||||
- Issues cannot be closed if they contain a permalink to a blob in the same repository, where the blob's file path is longer than 255 characters.
|
||||
- When "Users can search GitHub.com" is enabled with {% data variables.product.prodname_github_connect %}, issues in private and internal repositories are not included in {% data variables.product.prodname_dotcom_the_website %} search results.
|
||||
- The {% data variables.product.prodname_registry %} npm registry no longer returns a time value in metadata responses. This was done to allow for substantial performance improvements. We continue to have all the data necessary to return a time value as part of the metadata response and will resume returning this value in the future once we have solved the existing performance issues.
|
||||
- Resource limits that are specific to processing pre-receive hooks may cause some pre-receive hooks to fail.
|
||||
- |
|
||||
When using SAML encrypted assertions with {% data variables.product.prodname_ghe_server %} 3.4.0 and 3.4.1, a new XML attribute `WantAssertionsEncrypted` in the `SPSSODescriptor` contains an invalid attribute for SAML metadata. IdPs that consume this SAML metadata endpoint may encounter errors when validating the SAML metadata XML schema. A fix will be available in the next patch release. [Updated: 2022-04-11]
|
||||
|
||||
To work around this problem, you can take one of the two following actions.
|
||||
- Reconfigure the IdP by uploading a static copy of the SAML metadata without the `WantAssertionsEncrypted` attribute.
|
||||
- Copy the SAML metadata, remove `WantAssertionsEncrypted` attribute, host it on a web server, and reconfigure the IdP to point to that URL.
|
||||
@@ -416,4 +416,5 @@ sections:
|
||||
- The {% data variables.product.prodname_registry %} npm registry no longer returns a time value in metadata responses. This was done to allow for substantial performance improvements. We continue to have all the data necessary to return a time value as part of the metadata response and will resume returning this value in the future once we have solved the existing performance issues.
|
||||
- Resource limits that are specific to processing pre-receive hooks may cause some pre-receive hooks to fail.
|
||||
- Actions services need to be restarted after restoring an appliance from a backup taken on a different host.
|
||||
- 'Deleted repositories will not be purged from disk automatically after the 90-day retention period ends. [Updated: 2022-06-08]'
|
||||
- 'Deleted repositories will not be purged from disk automatically after the 90-day retention period ends. [Updated: 2022-06-08]'
|
||||
- 'The Management Console cannot be accessed on an under-provisioned instance. [Updated: 2022-06-14]'
|
||||
|
||||
31
data/release-notes/enterprise-server/3-5/1.yml
Normal file
31
data/release-notes/enterprise-server/3-5/1.yml
Normal file
@@ -0,0 +1,31 @@
|
||||
date: '2022-06-09'
|
||||
sections:
|
||||
security_fixes:
|
||||
- Packages have been updated to the latest security versions.
|
||||
bugs:
|
||||
- An internal script to validate hostnames in the {% data variables.product.prodname_ghe_server %} configuration file would return an error if the hostname string started with a "." (period character).
|
||||
- In HA configurations where the primary node's hostname was longer than 60 characters, MySQL would fail to be configured.
|
||||
- When {% data variables.product.prodname_actions %} was enabled but TLS was disabled on {% data variables.product.prodname_ghe_server %} 3.4.1 and later, applying a configuration update would fail.
|
||||
- The `--gateway` argument was added to the `ghe-setup-network` command, to allow passing the gateway address when configuring network settings using the command line.
|
||||
- The [{% data variables.product.prodname_GH_advanced_security %} billing API](/rest/enterprise-admin/billing#get-github-advanced-security-active-committers-for-an-enterprise) endpoints were not enabled and accessible.
|
||||
- Image attachments that were deleted would return a `500 Internal Server Error` instead of a `404 Not Found` error.
|
||||
- In environments configured with a repository cache server, the `ghe-repl-status` command incorrectly showed gists as being under-replicated.
|
||||
- The "Get a commit" and "Compare two commits" endpoints in the [Commit API](/rest/commits/commits) would return a `500` error if a file path in the diff contained an encoded and escaped unicode character.
|
||||
- The calculation of "maximum committers across entire instance" reported in the site admin dashboard was incorrect.
|
||||
- An incorrect database entry for repository replicas caused database corruption when performing a restore using {% data variables.product.prodname_enterprise_backup_utilities %}.
|
||||
- A {% data variables.product.prodname_github_app %} would not be able to subscribe to the [`secret_scanning_alert_location` webhook event](/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#secret_scanning_alert_location) on an installation.
|
||||
- The activity timeline for secret scanning alerts wasn't displayed.
|
||||
- Deleted repos were not purged after 90 days.
|
||||
changes:
|
||||
- Optimised the inclusion of metrics when generating a cluster support bundle.
|
||||
- In HA configurations where Elasticsearch reported a valid yellow status, changes introduced in a previous fix would block the `ghe-repl-stop` command and not allow replication to be stopped. Using `ghe-repo-stop --force` will now force Elasticsearch to stop when the service is in a normal or valid yellow status.
|
||||
known_issues:
|
||||
- On a freshly set up {% data variables.product.prodname_ghe_server %} instance without any users, an attacker could create the first admin user.
|
||||
- Custom firewall rules are removed during the upgrade process.
|
||||
- Git LFS tracked files [uploaded through the web interface](https://github.com/blog/2105-upload-files-to-your-repositories) are incorrectly added directly to the repository.
|
||||
- Issues cannot be closed if they contain a permalink to a blob in the same repository, where the blob's file path is longer than 255 characters.
|
||||
- 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.
|
||||
- The {% data variables.product.prodname_registry %} npm registry no longer returns a time value in metadata responses. This was done to allow for substantial performance improvements. We continue to have all the data necessary to return a time value as part of the metadata response and will resume returning this value in the future once we have solved the existing performance issues.
|
||||
- Resource limits that are specific to processing pre-receive hooks may cause some pre-receive hooks to fail.
|
||||
- Actions services need to be restarted after restoring an appliance from a backup taken on a different host.
|
||||
- 'Deleted repositories will not be purged from disk automatically after the 90-day retention period ends. This issue is resolved in the 3.5.1 release. [Updated: 2022-06-10]'
|
||||
@@ -1,2 +1,2 @@
|
||||
1. Above the list of files, click {% octicon "git-branch" aria-label="The branch icon" %} **<em>NUMBER</em> branches**.
|
||||

|
||||
1. Above the list of files, click {% octicon "git-branch" aria-label="The branch icon" %} **Branches**.
|
||||

|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0dbf9bce6d3e100a538b370185fe547c1f3ecb35241e843b96b0c08978bc0358
|
||||
size 741123
|
||||
oid sha256:37517336198bce4c9e0c52fb1667c615033861d4bd9268b2f1df0f24393476e3
|
||||
size 741131
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:72b2ec54eacf9d6cfb275ec1af8fe8bfe2e02594b06c922fe220399563cdd87e
|
||||
size 1564304
|
||||
oid sha256:127e3e44e224d0d994833c92e381febd36b2f5b8f913c14e4ac58fc62cd00a99
|
||||
size 1564687
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c95afb1ecf48c84baf33ea23c4f0329f7f3d637be11709f6871f239cb9728c4e
|
||||
size 997744
|
||||
oid sha256:a5d708b823d5fdd72815d0a4f471f6e47744ed8dadecba0e1ac04b6a4103f731
|
||||
size 998569
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:275590f9a9800ccaff6262763c65ce5ffb872ab237b491a6b17358dfbe0af264
|
||||
size 4000757
|
||||
oid sha256:a92b151496fdeb5bd0174614ffc8dcf6d4dc334b12b84d9874230622dc00e5d7
|
||||
size 4000606
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:70306e3c1570eae90a306bf8a5bba362d79ed93b31849f2df9d950f3fc7a134c
|
||||
size 684166
|
||||
oid sha256:6cca332a34b52b85a251d24191c2cce1c4ebbcb2ef3ccc69526b26aa20750485
|
||||
size 684042
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e052cf70e11e839bb7f2e391cf8afe2fce4de4150703dd8810d397b63bb94c30
|
||||
size 2975039
|
||||
oid sha256:6142600897fd881cb95fac9c99899868c947a394536176627605836941afd826
|
||||
size 2973428
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b26ce0c7000e831285414db4a76f52ccc8fc271892c6c03cc257d500a3c45de7
|
||||
size 751277
|
||||
oid sha256:3c8eadaefe261a3f890cb5f7a896e18ab594ea0dc12711546f4856efd04454dd
|
||||
size 751550
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2c0628e6b78f88a86a65bd142104fe2b44c5a9d620b5fd68303fa71aba3ad430
|
||||
size 4132315
|
||||
oid sha256:ff66a75cb57c7e1c9a435fd9a6f955b4279b09b089aafe93f6f692081821d129
|
||||
size 4133767
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:18142405b7699e3b14b40d7c43a80c5c260f3df5e397200baa20f4486d18ebb4
|
||||
size 674288
|
||||
oid sha256:6f8d258d0b098fe10fef9911857b0c1ffe798d1344d241cfe45755d2911b5d08
|
||||
size 674822
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b45306a96f45b518d7bc853d7464d138edd00d9b01bbfd471b767ee86127da3e
|
||||
size 2872923
|
||||
oid sha256:26bff33a0e2b4ae8ac068a70cb201d28738cb737805b528e7f63efa7dd74e99d
|
||||
size 2876093
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:20995221907ce72f1b715ac964f43fc8b5ff363d6bdc04d792dee8801688f7f4
|
||||
size 762877
|
||||
oid sha256:037a5bcec0b203a56609602b2587fea8e8a68f13ce560bfedf325d26165a26d6
|
||||
size 762879
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:493256167d4d236f0941082c97948bb0c234a1cb8064168035bde0fff14beb96
|
||||
size 1602875
|
||||
oid sha256:059a79106d5dd94d431a703605b05f1a825af2ea2b00443954dbf26ac401c13f
|
||||
size 1602902
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4a4a436b325170eb6dab0afb9fd10d0c7e9ce075eb31761b16689953a1f4968a
|
||||
size 1034749
|
||||
oid sha256:0d9770b9059295b933d50105e607fb9c983aaac969f8bc8383393c20ea2d72f4
|
||||
size 1034403
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4a9b42b67dcf646a5c2a493e4baddd9f80329508c5cfbcd9cd60875ff46d8a66
|
||||
size 4154100
|
||||
oid sha256:24615a4f459eef8c678e952f185b0a42725c85c0497eb5c20bb3d806bf95d21e
|
||||
size 4154675
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:18016023410ccb3eac5071ef503539b161817a5cf99fe5e32c2f50217da7bf97
|
||||
size 704103
|
||||
oid sha256:b9f084a7cee102ab7977e772373171bacb6a465255b744ef83f7a63e8bd76b35
|
||||
size 704119
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:752a4921454faaf822b25b38aee33f740109b441510a7506a7464dae63960bf8
|
||||
size 3062366
|
||||
oid sha256:bf023e853464716922cb79a2855147b47c857d4f9a51884a74de21e74c06f7d4
|
||||
size 3059602
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f1307e36aed5ed6b4d6c04db9025073462b5acea8300e94c3cd91537917e239a
|
||||
size 772342
|
||||
oid sha256:4259d12f9b3b36faac189d73cc506d1a7c64c51a7953d9843f7209069b2a4135
|
||||
size 772523
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e6640d6675d349dbfedcaefcb0cb0e5b3997bfef38234aebb420e1855fb440ef
|
||||
size 4249386
|
||||
oid sha256:cc94acb35e2814029a0ff7b0c83f94c4430a10cce6106799a5275aa2c783f791
|
||||
size 4251152
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7f1e1f4278a054175c5086212168ec58149b68d95d6cd9dcefc538603802cb6b
|
||||
size 693876
|
||||
oid sha256:c5fc0c153178eeb074586bf9045da6788dc11d3f125041bd3a7ae79d1739511a
|
||||
size 694224
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:955aaea5ad5a505b5949ef37784fc3a69f61b59796b98adbb9bb7a5a1e2ed824
|
||||
size 2952591
|
||||
oid sha256:e556109de3c641f457bdf71b11c4b1b25e1964269c24ab3fd854b339ffeff1dd
|
||||
size 2955078
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6411f8d20a51b4906547f4ca9b4c6c75d8a21f6a5400b6c10f6c0bbc43ad6127
|
||||
size 786168
|
||||
oid sha256:1ea0dcfa411f4183645b1c6ebd7a505159d79d992bee79334d9b37ad574e3e7b
|
||||
size 786283
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b217c31e76bd7042107c78936a5caff970b1bea704adad6d0eb571fcaae4d732
|
||||
size 1643938
|
||||
oid sha256:a285e094f617079c7e0c4091c942d671190a7fa66a66db467a501889406c18d6
|
||||
size 1644208
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:875fcc375591377140f36a0f33cc80a225ab5b8bc1c8d7b38a3cf2c535c900be
|
||||
size 1069517
|
||||
oid sha256:cd677232764923692cc1665147f6955f8588a9be13b1422d0e6e0e840dc08ca8
|
||||
size 1069774
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e47fa8b3ae7e5fd389ed332084380f62598176bdeb93d726fea6f92c6e711047
|
||||
size 4249870
|
||||
oid sha256:f9473d610444f7714019782b971b0dcb459d2ec36568ae1602597b367e85bbe7
|
||||
size 4249718
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8dbfe0350f4cafe1d4ebd5ec3680c5265c786dd9d934295a40a96056f13f0358
|
||||
size 723559
|
||||
oid sha256:4269f7af3963996e923ca9869d8938adebfa5905483358d00fcf059d32cece14
|
||||
size 723846
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:910e76a15eb178b268a07051fdb029b1f69a1c55a8c2a62bf2200ba923ef3013
|
||||
size 3142790
|
||||
oid sha256:f6d94972881ee9a2779816886c2c1d900752bc33f8abf4d4b78c9d547ddbac95
|
||||
size 3139655
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:33811a7d4b02ba58f18b8b5da70848fe78579677d0695f7afa0994cab8c63f44
|
||||
size 795624
|
||||
oid sha256:088248f061d0262d6c0d698cb57b3f650b25221fe4bf39158f867f9ba6b12297
|
||||
size 795953
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8cc4563dd45d19e051aaf4a8cedcee4f7c9baa5a96666ebd1feb2ed361f2b1b5
|
||||
size 4369636
|
||||
oid sha256:b383609227d497c824fc2ef281aae00d74226510c4276fb48177eed3073400c0
|
||||
size 4370511
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:450c6d38ee706a83fd98edc736d0c4e601a4e35a534871056a4a2b4502530a11
|
||||
size 713446
|
||||
oid sha256:d5e2d6adb104824c4a90a0125f731ae3681aabccdec8400a8b315b0c392f5a04
|
||||
size 713873
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2b115df79ff93815f1e14bec97714fefd250fe8611ed3bf3034c1a191f86eed8
|
||||
size 3030435
|
||||
oid sha256:80ef4047da51f527c9ca1b037a118b6af5b188d33a29bb9ba9e3f9ba242f03a7
|
||||
size 3033277
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f55c4a363c9b84fe2d85cd141703217f484560a2797d11d1286460d83ee1067f
|
||||
size 788350
|
||||
oid sha256:18f004f4b5150a55dd3ff266463c593829a6dccdfb08bbcdacdf9b1ca079087a
|
||||
size 788442
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:07ceb08ae858e3557c337d43034abae0ea9e2250d0d7007c9eb5ce7e0ee8081f
|
||||
size 1655961
|
||||
oid sha256:93ff3162bb2cd8a25c580d4e1071621c6ed29edb89e3d0474c53f6e2383927cf
|
||||
size 1656190
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:44a53af1135d07bc6e4497fbc4f216805cd4a7dd4c80d4c4d3b276dc0dadea1f
|
||||
size 1078695
|
||||
oid sha256:4fe701d0d655c8e0526e8af99f15ad58311cd620d5cbbb0cc63d6f390737e45e
|
||||
size 1078330
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:53a7ffb8eff52bcdb7de29e00bdf1712cc2e66a6e135692beee64b7fccf23995
|
||||
size 4291469
|
||||
oid sha256:11268747372f8e2c17ab130a02473a23f93456acc5bed36ce343d3d58de0ecd0
|
||||
size 4292126
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b3cd53e2259965b2ecb45b44700c8338d66f237662bc7c04dfaeacd2981ac6e4
|
||||
size 727184
|
||||
oid sha256:b9919b36ac70941cc69246d1b6c7691ce2523aeb618849dc763294a1c7bd10d3
|
||||
size 727455
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:32365db9b6c0b8b338cf6374045e70ec4074a1bc5a02cecd8af87bc84375e301
|
||||
size 3162039
|
||||
oid sha256:729ca0d27d722f09f48f34bf2e508108def109806b5b2bbbf91992f348b2d59e
|
||||
size 3159241
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5791ce0f1e99d9ddeb1b13d0f1b5727862c1b665cc220a3339190a1782aec551
|
||||
size 798352
|
||||
oid sha256:e788abff5d96e42c1aa3c52f5034120b706ce9fc9dea76aa2d40c06255717ad2
|
||||
size 798760
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3e842cc2f339f2b6ef69ca9a7e537c197cd90709765b2237275fabf0effbc62b
|
||||
size 4393449
|
||||
oid sha256:e797295200768840c4b2a8975ff0d828fdeee6be4b3b527cab0ec9eafe00de05
|
||||
size 4395131
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bb32dbdaf3e0a1a128491a325b2121074651f2da748da96274ce2484419509d4
|
||||
size 716717
|
||||
oid sha256:0c90d7292748e2a1d729bc8d7641a65487f0c48094928b4913a7be6e01aff037
|
||||
size 716929
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7ff11080354569e9d5311a1c615cc3c56a0ddfa3279b45f8407ddf661006a3f6
|
||||
size 3050093
|
||||
oid sha256:3fad360052d6f42864806188de5571d85cd3962592e6f6533721d6f9843803c7
|
||||
size 3053151
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:49426c9ccbe097ce1ecc86c14d516bad8439a56ac29312eebef500447669b3ca
|
||||
size 816774
|
||||
oid sha256:c10f5e74e101f603c3f970924692b04915e90e56593023821559c611939f7090
|
||||
size 816805
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bba45f08cc24e290f879ead0789165de32356379cfcd2f7598841e3c119c958b
|
||||
size 1723424
|
||||
oid sha256:d4a0dbd7b2ba9a93eaea72d76bdb61186586c86a9b460ced865e7f52258f46af
|
||||
size 1723810
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b38a22ba4cf2101435de7017630d4d05c2c5308e8da67baffd34827c3cf43648
|
||||
size 1116683
|
||||
oid sha256:5f002b45ec66f2bca7c1ccf895942df206a3c1db05d9c36e79cb884b42025ca8
|
||||
size 1117063
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f71d1084b46c6023d961caf68d95facd1f6e1c837ab7853c70e29c3aeca8718c
|
||||
size 4450243
|
||||
oid sha256:850a88fe21de47b6fff0fd281a4e20169bd202ada0b5c07867e00262c3cce821
|
||||
size 4450645
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1c395a071f17ef835c66ec93db66855535b492b5c86cf0f930c8a60429a3223b
|
||||
size 749922
|
||||
oid sha256:343ebc00c9b0911d44ce2274b62a0e25eb86a173a74123c785dc84c1257a9b20
|
||||
size 750249
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dd7c1e8d78cbbe033da660d82592e5777ff8b6990a37f49b1e86fe883d44931e
|
||||
size 3275943
|
||||
oid sha256:3ab13ac952d4422864b86accc00f05355ea3ada33ece6b4b4134084d22d6ccbe
|
||||
size 3272575
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bacb7da25c217f4da56b29ad7e845e19dca265642fbf961c799f9df7fe9efc9d
|
||||
size 823641
|
||||
oid sha256:07546d075846c209c519e46284a7dd61935c81b5a06f4f3bfb23c97c76d28352
|
||||
size 824018
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fb46d9b891c1ddb0e137d856739783546eb6b997abdd2d59637320fa2b9eaa28
|
||||
size 4552807
|
||||
oid sha256:18ada63ec0c0bf0745a142b91072cf493ea09bb2d47c7f1f1bdfb7fd22615ac9
|
||||
size 4553426
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9b43be8372fb3c3ab3bcbd457e838abc04d54cef6896c3332b7e46fda697c2a0
|
||||
size 738498
|
||||
oid sha256:7c0d981efd2886f94e0a83b2806f22f7fac60d226d260d710d0e25e3f6da99ec
|
||||
size 739249
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1a60fdefe76fe32a4831ad9369f2486341963d1deb474faa3571849c82580394
|
||||
size 3157200
|
||||
oid sha256:6caa4b532b31f6df1b562cfb250d8f78ed36193674cb6bc485de1b932ad86c7c
|
||||
size 3159183
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:12f2cff007bd5fed20533c08f3e4d19faf132dc1f359230630b68b6362ab2fc0
|
||||
size 983314
|
||||
oid sha256:6ed1eafcb147099cbede89eb7c6ef0f58d73dfa9d3cc2cea759532ea06665419
|
||||
size 983679
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:52c3209db8f5a994b79eef0efb581f8a0e477ddc7664fb7e90bb477e37e6a337
|
||||
size 1720728
|
||||
oid sha256:ba1f71b806ad16e8b8e83a76604f3a773f9286922b461ce7e22edb4ff33fae78
|
||||
size 1720947
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:80adb24720c636c67ecc720241eeb773f7847e00cad697e62ad47d34be47ff71
|
||||
size 1345577
|
||||
oid sha256:4f59ebbdd9f41ff14d2f1821c5518c6c9ec7cbd49d9ae75cee4a23835a99c096
|
||||
size 1346751
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e3491a70840d3113999dc0a3435930501e7784fbd83547133f52374cb8713c57
|
||||
size 5080814
|
||||
oid sha256:54f5c428bebd8e7f66b6d39c4e1173d2130a9ec1174252efe95e54714f5241d6
|
||||
size 5083856
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c6f4f082d8b079b764e3bd32a8f60b194fd3bdbf349eaaeeee0b0b54bd41931a
|
||||
size 886538
|
||||
oid sha256:1e6977c51078ec9abefa06fba456c14abdc96706924cf9b8a813fe9e912045a0
|
||||
size 886902
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c9765664a8f057a762cda54069551f7d0c760cd90d3636c9bcad7adfc3a23899
|
||||
size 3680996
|
||||
oid sha256:86936c811a55e3c4893e89548ef85a651a1bb21c9efc59f76906139ecb11f71c
|
||||
size 3676996
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:93cc5153d273197df153a188e7e0dd72286526d0ba63621419f1b55056dc396d
|
||||
size 985821
|
||||
oid sha256:fcc68056cecdb3ae718ed68fc0d1dd97eba0c8f882700c55722008a91207dea0
|
||||
size 986075
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:152ef82e12dac8ff0c3d72617e77a04cf818bb76d90f90df2d07d82958857201
|
||||
size 5225693
|
||||
oid sha256:26c13086035d0221f1ef822142f5fb8b2c7d07a26c46692de187632a7dcb1d33
|
||||
size 5228614
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ed9532a680a49406d1073220dc14edc68a4af0ba942c4a0175a773e06ffa684f
|
||||
size 873572
|
||||
oid sha256:ef0a586ba5ac260d1ba9e8c7f6984ac467cfe4cb94150b9be0c292f11a66a029
|
||||
size 874406
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:59d69a54873a356fab46d7b298141ce24bbc9d7d0911fb0ba23a54e86c1808f4
|
||||
size 3567427
|
||||
oid sha256:29c133734c44818705da580007ec23b9bd9e5d2fc5205795bb53e6e6770f2ce8
|
||||
size 3572482
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:271c085436c5d401b83bdd119e50521ae3ca54ffa6efd1686abecdf1d2b3e4a1
|
||||
size 625778
|
||||
oid sha256:8d13f7fd7e235057cbb12980048106c41a1f51c3a2ead3fb8e6e4468ce33aeba
|
||||
size 625858
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0e60989a165ae82baa89d10b9de4a894f07b9b24c9e2e80e5183350d23be9da6
|
||||
size 1268396
|
||||
oid sha256:eadcd550ee4e2daf042431e05d365e6f4ef90e6cd88c4c40b671605e47c44d07
|
||||
size 1268573
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:afdcca2d3c282991752d8b89adff4751d3af0f063cbbfcac05d19de06aebe16a
|
||||
size 867737
|
||||
oid sha256:a67a3e671f44134b4172153d8bf214b7fbcf50de68c115970dacab721016755a
|
||||
size 867397
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ffff76f0515d11d0ba3fb240e5c5c1813f4b224e2f4163291e84e7414ea4242f
|
||||
size 3407445
|
||||
oid sha256:7f026ae35108298e3e3a0d8394d82d2f8d2e939719cc7ef9ab84ebc551a6b294
|
||||
size 3408826
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user