Skip to content

Commit 35ef33a

Browse files
committed
Merge branch 'main' into ngf-release-2.3
2 parents dc4b500 + 7558cc0 commit 35ef33a

File tree

606 files changed

+8331
-49547
lines changed

Some content is hidden

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

606 files changed

+8331
-49547
lines changed

.github/CODEOWNERS

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,12 @@ content/waf/* @nginx/waf
3030
content/includes/waf/* @nginx/waf
3131

3232
# NGINXaaS for Azure
33-
content/nginxaas-azure/* @nginx/n4a-docs-approvers
34-
content/includes/nginxaas-azure/* @nginx/n4a-docs-approvers
33+
content/nginxaas-azure/* @nginx/nginxaas-docs-approvers
34+
content/includes/nginxaas-azure/* @nginx/nginxaas-docs-approvers
35+
36+
# NGINXaaS for Google Cloud
37+
content/nginxaas-google/* @nginx/nginxaas-docs-approvers
38+
content/includes/nginxaas-google/* @nginx/nginxaas-docs-approvers
3539

3640
# NGINX Gateway Fabric
3741
content/ngf/* @nginx/nginx-gateway-fabric

.github/ISSUE_TEMPLATE/1-idea_suggestion.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ body:
1010
required: true
1111
- type: dropdown
1212
attributes:
13-
label: Which product or products does this request relate to?
13+
label: Which product or products does this idea relate to?
1414
multiple: true
1515
options:
1616
- F5 DoS for NGINX
@@ -28,16 +28,12 @@ body:
2828
required: true
2929
- type: textarea
3030
attributes:
31-
label: Is this idea related to a larger problem?
31+
label: Does this idea relate to other issues?
3232
description: If you have identified multiple related issues, it might be a design pattern problem.
33-
validations:
34-
required: true
3533
- type: textarea
3634
attributes:
37-
label: What alternative ways are there to implement your idea?
38-
description: There are often multiple ways to something - context is important.
39-
validations:
40-
required: true
35+
label: Are there alternative ideas for improving the same topic?
36+
description: If you already identified reasons not to go with other solutions, we'd like to know why!
4137
- type: textarea
4238
attributes:
4339
label: Any additional information

.github/ISSUE_TEMPLATE/2-bug_report.yml

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
name: Bug report
2-
description: Report an issue with our documentation
2+
description: Report an issue with our content or website
33
title: "[Bug]: "
44
body:
55
- type: textarea
66
attributes:
7-
label: Describe the bug you have identified
7+
label: Describe the problem you have identified
88
description: Explain the problem with as much detail as possible.
99
validations:
1010
required: true
1111
- type: dropdown
1212
attributes:
13-
label: Which product or products does this request relate to?
13+
label: Which product or products does this problem relate to?
1414
multiple: true
1515
options:
1616
- F5 DoS for NGINX
@@ -28,22 +28,16 @@ body:
2828
required: true
2929
- type: textarea
3030
attributes:
31-
label: Steps to reproduce the bug
31+
label: If necessary, explain any additional steps to reproduce the problem.
3232
description: Describe the where the issue occurs.
33-
validations:
34-
required: true
3533
- type: textarea
3634
attributes:
3735
label: What is the expected or desired behaviour?
38-
description: Describe what you expected to happen instead of the bug.
39-
validations:
40-
required: true
36+
description: Describe what you expected to happen instead of the problem
4137
- type: textarea
4238
attributes:
43-
label: What environments or versions does this bug affect?
44-
description: Describe the contexts which this bug seems to occur.
45-
validations:
46-
required: true
39+
label: Is this problem specific to a particular platform or software version?
40+
description: Describe the context in which this problem appears.
4741
- type: textarea
4842
attributes:
4943
label: Any additional information

.github/workflows/build-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
5959
call-docs-build-push:
6060
needs: prod-check-branch
61-
uses: nginxinc/docs-actions/.github/workflows/docs-build-push.yml@04ed2db338ee08cc560a327f412684d0c8260de2 # v1.0.11
61+
uses: nginxinc/docs-actions/.github/workflows/docs-build-push.yml@7bae601be08ca09aabd0850731e20847a456c227 # v1.0.12
6262
with:
6363
production_url_path: ""
6464
preview_url_path: "${{ vars.PREVIEW_URL_PATH }}"

.github/workflows/coveo.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
6868
- name: Upload token for ${{matrix.env_name}}
6969
if: ${{ steps.generate-token.outcome == 'success' }}
70-
uses: actions/upload-artifact@v4
70+
uses: actions/upload-artifact@v5
7171
with:
7272
name: ${{matrix.env_name}}
7373
path: "./"
@@ -101,7 +101,7 @@ jobs:
101101
needs: generate-coveo-search-token
102102
steps:
103103
- name: Download Coveo search token
104-
uses: actions/download-artifact@v5
104+
uses: actions/download-artifact@v6
105105

106106
- name: View files
107107
run: ls -R

.github/workflows/linkchecker.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ jobs:
5656
- waf
5757
- nginx-ingress-controller
5858
- nginxaas/azure
59-
- nginx-service-mesh
6059
- nginx-amplify
6160
- nginx-controller
6261
- nginx-waf

.github/workflows/ossf_scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ jobs:
4848

4949
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF format to the repository Actions tab.
5050
- name: Upload artifact
51-
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
51+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
5252
with:
5353
name: SARIF file
5454
path: results.sarif
5555
retention-days: 5
5656

5757
# Upload the results to GitHub's code scanning dashboard.
5858
- name: Upload SARIF results to code scanning
59-
uses: github/codeql-action/upload-sarif@16140ae1a102900babc80a33c44059580f687047 # v3.29.5
59+
uses: github/codeql-action/upload-sarif@0499de31b99561a6d14a36a5f662c2a54f91beee # v3.29.5
6060
with:
6161
sarif_file: results.sarif

.github/workflows/playwright.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ jobs:
1818
run: npx playwright install --with-deps
1919
- name: Run Playwright tests
2020
run: npx playwright test --retries=2
21-
- uses: actions/upload-artifact@v4
21+
- uses: actions/upload-artifact@v5
2222
if: ${{ !cancelled() }}
2323
with:
2424
name: playwright-report
2525
path: tests/playwright-report/
2626
retention-days: 30
27-
- uses: actions/upload-artifact@v4
27+
- uses: actions/upload-artifact@v5
2828
if: ${{ !cancelled() }}
2929
with:
3030
name: test-results

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
HUGO?=hugo
22
HUGO_VERSION?=$(shell hugo version 2>/dev/null | awk '{print $$2}' | cut -d '.' -f 2)
3-
HUGO_IMG?=hugomods/hugo:std-go-git-0.147.8
3+
HUGO_IMG?=hugomods/hugo:std-go-git-0.152.2
44

5-
THEME_MODULE = github.com/nginxinc/nginx-hugo-theme
5+
THEME_MODULE = github.com/nginxinc/nginx-hugo-theme/v2
66

77
ifeq ($(shell [ $(HUGO_VERSION) -gt 146 2>/dev/null ] && echo true || echo false), true)
88
$(info Hugo is available and has a version greater than 146. Proceeding with build.)
99
else
10-
$(warning Hugo is not available or using a version less than 147. Attempting to use docker. HUGO_VERSION=$(HUGO_VERSION))
10+
$(warning Hugo is not available or using a version less than 151. Attempting to use docker. HUGO_VERSION=$(HUGO_VERSION))
1111
HUGO=docker run --rm -it -v ${CURDIR}:/src -p 1313:1313 ${HUGO_IMG} /src/hugo-entrypoint.sh
1212
ifeq (, $(shell docker version 2> /dev/null))
13-
$(error Hugo (>0.147) or Docker are required to build the local previews.)
13+
$(error Hugo (>0.151) or Docker are required to build the local previews.)
1414
endif
1515
endif
1616

@@ -50,7 +50,7 @@ clean:
5050
[ -d "public" ] && rm -rf "public"
5151

5252
hugo-get:
53-
hugo mod get -u github.com/nginxinc/nginx-hugo-theme
53+
hugo mod get -u github.com/nginxinc/nginx-hugo-theme/v2
5454

5555
hugo-tidy:
5656
hugo mod tidy

config/_default/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ enableGitInfo = true
2828

2929
[module]
3030
[[module.imports]]
31-
path="github.com/nginxinc/nginx-hugo-theme"
31+
path="github.com/nginxinc/nginx-hugo-theme/v2"
3232

3333
[markup]
3434
[markup.goldmark]

0 commit comments

Comments
 (0)