Skip to content

Commit 18c724c

Browse files
authored
GitHub Enterprise Server 3.11 general availability (#47198)
1 parent 3d44ee5 commit 18c724c

File tree

8 files changed

+361
-9
lines changed

8 files changed

+361
-9
lines changed

content/admin/configuration/configuring-user-applications-for-your-enterprise/configuring-applications.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ redirect_from:
66
- /enterprise/admin/configuration/configuring-applications
77
- /admin/configuration/configuring-applications
88
- /admin/configuration/configuring-your-enterprise/configuring-applications
9+
- /admin/configuration/configuring-user-applications-for-your-enterprise/configuring-interactive-maps
910
versions:
1011
ghes: '*'
1112
type: how_to

content/admin/monitoring-managing-and-updating-your-instance/monitoring-your-instance/about-system-logs.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,8 @@ In addition to reviewing your system logs, you can monitor activity on your inst
4646
- [Log files for the {% data variables.product.prodname_dotcom %} application](#log-files-for-the-github-application)
4747
- [Log files for the HTTP server](#log-files-for-the-http-server)
4848
- [Log files for instance configuration](#log-files-for-instance-configuration)
49-
- [Log files for the {% data variables.enterprise.management_console %}](#log-files-for-themanagement-console)
49+
- [Log files for the {% data variables.enterprise.management_console %}](#log-files-for-the-management-console)
5050
- [Log files for search](#log-files-for-search)
51-
- [Log files for storage](#log-files-for-storage)
52-
- [Log files for webhooks](#log-files-for-webhooks)
5351
- [Log files for system services](#log-files-for-system-services)
5452

5553
{% ifversion ghes < 3.9 %}
@@ -117,7 +115,10 @@ The following log files contain events related to the configuration of your inst
117115

118116
| Path | Description |
119117
| :- | :- |
120-
| <pre>/data/user/common/ghe-config.log</pre> | Records events associated with each configuration run. If a configuration run fails, output to the log stops. This log also records information about migrations that run during the process of upgrading an instance's software. For more information, see "[AUTOTITLE](/admin/configuration/configuring-your-enterprise/command-line-utilities#ghe-config-apply)." |
118+
| <pre>/data/user/common/ghe-config.log</pre> | Records events associated with {% ifversion unique-config-run-logs %}the latest{% else %}each{% endif %} configuration run. If a configuration run fails, output to the log stops. This log also records information about migrations that run during the process of upgrading an instance's software. For more information, see "[AUTOTITLE](/admin/configuration/configuring-your-enterprise/command-line-utilities#ghe-config-apply)." |
119+
{%- ifversion unique-config-run-logs %}
120+
| <pre>/data/user/config-apply/logs/YYYYMMDD/*</pre> | Stores log files for previous configuration runs. The instance stores the files in a directory that reflects the date, and each file name reflects the node and the ID of the run. |
121+
{%- endif %}
121122

122123
### Log files for search
123124

@@ -133,7 +134,7 @@ The following log files contain events related to webhooks that your instance se
133134

134135
| Service name | Description |
135136
| :- | :- |
136-
| `hookshot-go` | Records events for all webhook activity on the instance, including triggered webhooks, deliveries, and failures.|
137+
| <pre>hookshot-go</pre> | Records events for all webhook activity on the instance, including triggered webhooks, deliveries, and failures.|
137138

138139
### Log files for system services
139140

content/support/contacting-github-support/providing-data-to-github-support.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,9 @@ After you submit your support request, we may ask you to share a support bundle
9090
- `babeld-logs/babeld.log`: Git proxy logs
9191
- `system-logs/haproxy.log`: HAProxy logs
9292
- `elasticsearch-logs/github-enterprise.log`: Elasticsearch logs
93-
- `configuration-logs/ghe-config.log`: {% data variables.product.prodname_ghe_server %} configuration logs
93+
- `configuration-logs/{% ifversion unique-config-run-logs %}{% else %}ghe-config.log{% endif %}`: {% data variables.product.prodname_ghe_server %} configuration logs
94+
{%- ifversion unique-config-run-logs %}
95+
{%- endif %}
9496
- `collectd/logs/collectd.log`: Collectd logs
9597
- `mail-logs/mail.log`: SMTP email delivery logs
9698

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Reference: #12968
2+
# Unique logs for configuration runs
3+
4+
versions:
5+
ghes: '>= 3.11'

data/release-notes/enterprise-server/3-11/0-rc1.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
date: '2023-11-14'
22
release_candidate: true
3-
deprecated: false
3+
deprecated: true
44
intro: |
55
{% note %}
66

data/release-notes/enterprise-server/3-11/0.yml

+344
Large diffs are not rendered by default.

src/fixtures/fixtures/data/variables/release_candidate.yml

-1
This file was deleted.

src/versions/lib/enterprise-server-releases.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const nextNext = '3.13'
1515
export const supported = ['3.11', '3.10', '3.9', '3.8', '3.7']
1616

1717
// Edit this to `null` when it's no longer the release candidate
18-
export const releaseCandidate = '3.11'
18+
export const releaseCandidate = null
1919

2020
// Ensure that:
2121
// "next" is ahead of "latest" by one minor or major release.

0 commit comments

Comments
 (0)