Skip to content

Commit

Permalink
Merge branch 'production' into max/zt/azure-entra
Browse files Browse the repository at this point in the history
  • Loading branch information
maxvp authored Sep 23, 2024
2 parents 29e0432 + 97c2e9e commit b1022be
Show file tree
Hide file tree
Showing 48 changed files with 1,064 additions and 324 deletions.
12 changes: 6 additions & 6 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@

# More dev-specific files

/.github/ @kodster28 @pedrosousa @haleycode @kristianfreeman @GregBrimble @KianNH @maxvp @marciocloudflare
/.github/ @kodster28 @pedrosousa @haleycode @kristianfreeman @GregBrimble @KianNH @maxvp @marciocloudflare @WalshyDev
/.github/CODEOWNERS @cloudflare/pcx-technical-writing
/.github/actions/assign-issue/index.js @cloudflare/pcx-technical-writing
/.github/actions/assign-pr/index.js @cloudflare/pcx-technical-writing
/.github/styles/cloudflare/spelling-exceptions.txt @cloudflare/pcx-technical-writing
/src/components/ @cloudflare/developer-advocacy @kristianfreeman @kodster28 @pedrosousa @marciocloudflare @haleycode @maxvp @GregBrimble @KianNH
/functions/ @cloudflare/developer-advocacy @kristianfreeman @kodster28 @pedrosousa @haleycode @marciocloudflare @maxvp @GregBrimble @KianNH
*.js @cloudflare/developer-advocacy @kristianfreeman @kodster28 @pedrosousa @haleycode @maxvp @marciocloudflare @GregBrimble @KianNH
*.ts @cloudflare/developer-advocacy @kristianfreeman @kodster28 @pedrosousa @haleycode @maxvp @marciocloudflare @GregBrimble @KianNH
/src/components/ @cloudflare/developer-advocacy @kristianfreeman @kodster28 @pedrosousa @marciocloudflare @haleycode @maxvp @GregBrimble @KianNH @WalshyDev
/functions/ @cloudflare/developer-advocacy @kristianfreeman @kodster28 @pedrosousa @haleycode @marciocloudflare @maxvp @GregBrimble @KianNH @WalshyDev
*.js @cloudflare/developer-advocacy @kristianfreeman @kodster28 @pedrosousa @haleycode @maxvp @marciocloudflare @GregBrimble @KianNH @WalshyDev
*.ts @cloudflare/developer-advocacy @kristianfreeman @kodster28 @pedrosousa @haleycode @maxvp @marciocloudflare @GregBrimble @KianNH @WalshyDev
/src/content/workers-ai-models/ @kodster28 @craigsdennis @pedrosousa @cloudflare/pcx-technical-writing
/public/_redirects @GregBrimble @KianNH @kodster28 @pedrosousa @cloudflare/pcx-technical-writing
/public/_redirects @GregBrimble @KianNH @kodster28 @pedrosousa @WalshyDev @cloudflare/pcx-technical-writing

# AI

Expand Down
10 changes: 8 additions & 2 deletions public/_redirects
Original file line number Diff line number Diff line change
Expand Up @@ -1180,8 +1180,14 @@
/turnstile/concepts/widget-types/ /turnstile/concepts/widget/ 301

# waf
/waf/about/file-scanning/ /waf/about/content-scanning/ 301
/waf/about/waf-ml/ /waf/about/waf-attack-score/ 301
/waf/about/ /waf/concepts/ 301
/waf/about/content-scanning/ /waf/detections/malicious-uploads/ 301
/waf/about/content-scanning/get-started/ /waf/detections/malicious-uploads/get-started/ 301
/waf/about/content-scanning/example-rules/ /waf/detections/malicious-uploads/example-rules/ 301
/waf/about/content-scanning/api-calls/ /waf/detections/malicious-uploads/api-calls/ 301
/waf/about/file-scanning/ /waf/detections/malicious-uploads/ 301
/waf/about/waf-attack-score/ /waf/detections/attack-score/ 301
/waf/about/waf-ml/ /waf/detections/attack-score/ 301
/waf/alerts/ /waf/reference/alerts/ 301
/waf/custom-rules/custom-firewall/ /waf/custom-rules/ 301
/waf/custom-rules/custom-firewall/create-api/ /waf/custom-rules/create-api/ 301
Expand Down
47 changes: 37 additions & 10 deletions src/components/overrides/Sidebar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ async function handleGroup(group: Group): Promise<SidebarEntry> {
group.label = frontmatter.sidebar.group?.label ?? frontmatter.title;
group.order = frontmatter.sidebar.order ?? Number.MAX_VALUE;
group.badge = frontmatter.sidebar.group?.badge;
if (frontmatter.hideChildren) {
return {
Expand Down Expand Up @@ -205,20 +206,46 @@ const lookupProductTitle = async (slug: string) => {

<style is:global>
:root {
a[aria-current="page"] {
background-color: var(--sidebar-blue-accent-600) !important;
border: 1px solid !important;
border-color: var(--blue-accent-900) !important;
color: var(--sidebar-blue-text) !important;
.sidebar-content {
--sl-color-hairline-light: #cacaca !important;

& > * {
a {
padding: 0.2375em var(--sl-sidebar-item-padding-inline) !important;

&[aria-current="page"] {
background-color: unset !important;
border: unset !important;
border-color: unset !important;
color: var(--sl-color-accent) !important;
font-weight: 600 !important;
}
}

summary {
padding: 0.1375em var(--sl-sidebar-item-padding-inline) !important;
}

.large {
color: var(--sl-color-gray-2) !important;
font-weight: unset !important;
font-size: unset !important;

@media (min-width: 50rem) {
font-size: var(--sl-text-sm) !important;
}
}

.caret {
font-size: 1rem !important;
}
}
}
}

:root[data-theme="dark"] {
a[aria-current="page"] {
background-color: var(--sidebar-orange-accent-600) !important;
border: 1px solid !important;
border-color: var(--orange-accent-200) !important;
color: var(--sl-color-white) !important;
.sidebar-content {
--sl-color-hairline-light: #444444 !important;
}
}
</style>
4 changes: 4 additions & 0 deletions src/content/changelogs/security-center.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,7 @@ entries:
- publish_date: "2024-09-19"
description: |-
- Customers can now create a `security.txt` file file to provide the security research team with a standardized way to report vulnerabilities.
- publish_date: "2024-09-23"
description: |-
- Customers can now export all matches from a saved query. Select your **Query name** > select the three dots > **Export matches**.
4 changes: 2 additions & 2 deletions src/content/changelogs/waf-general.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ entries:
- publish_date: "2024-08-29"
title: Fixed occasional attack score mismatches
description: |-
Fixed an issue causing score mismatches between the global [WAF attack score](/waf/about/waf-attack-score/) and subscores. In certain cases, subscores were higher (not an attack) than expected while the global attack score was lower than expected (attack), leading to false positives.
Fixed an issue causing score mismatches between the global [WAF attack score](/waf/detections/attack-score/) and subscores. In certain cases, subscores were higher (not an attack) than expected while the global attack score was lower than expected (attack), leading to false positives.
- publish_date: "2024-05-23"
title: Improved detection capabilities
description: |-
[WAF attack score](/waf/about/waf-attack-score/) now automatically detects and decodes Base64 and JavaScript (Unicode escape sequences) in HTTP requests. This update is available for all customers with access to WAF attack score (Business customers with access to a single field and Enterprise customers).
[WAF attack score](/waf/detections/attack-score/) now automatically detects and decodes Base64 and JavaScript (Unicode escape sequences) in HTTP requests. This update is available for all customers with access to WAF attack score (Business customers with access to a single field and Enterprise customers).
2 changes: 1 addition & 1 deletion src/content/docs/images/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ sidebar:
order: 1
head:
- tag: title
content: Cloudflare Image Optimization
content: Cloudflare Images

---

Expand Down
Loading

0 comments on commit b1022be

Please sign in to comment.