Skip to content

Commit ccdffb2

Browse files
authored
Merge branch 'production' into max/zt/gdrive-certs-2
2 parents 38caf93 + 5b054d2 commit ccdffb2

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

src/content/docs/cloudflare-one/policies/gateway/http-policies/index.mdx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ Use these selectors to limit the file size of upload or download transactions. F
482482
The **Download File Types** and **Upload File Types** selectors supersede the **Download File Type** and **Upload File Type** selectors. Gateway will still evaluate policies with the previous selectors. However, Cloudflare recommends migrating any policies with deprecated selectors to the new corresponding selectors.
483483
:::
484484

485-
These selectors will scan file signatures in the HTTP body. You can select from file categories or specific file types, such as executables, archives and compressed files, Microsoft 365/Office documents, and Adobe files:
485+
These selectors will scan file signatures in the HTTP body. You can select from file categories or specific file types, such as executables, archives and compressed files, unscannable files, Microsoft 365/Office documents, and Adobe files:
486486

487487
<Details header="Supported file types">
488488

@@ -529,6 +529,13 @@ These selectors will scan file signatures in the HTTP body. You can select from
529529

530530
- BitTorrent file (`.torrent`)
531531

532+
**Unscannable**
533+
534+
- Password-protected Microsoft Office document
535+
- Password-protected PDF
536+
- Password-protected ZIP archive
537+
- Unscannable ZIP archive
538+
532539
</Details>
533540

534541
| UI name | API example |

src/content/release-notes/gateway.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,14 @@ productLink: "/cloudflare-one/policies/gateway/"
55
productArea: Cloudflare One
66
productAreaLink: /cloudflare-one/changelog/
77
entries:
8+
- publish_date: "2025-02-13"
9+
title: Unscannable files for Download and Upload File Types selectors
10+
description: |-
11+
Gateway and DLP users can now match [unscannable files](/cloudflare-one/policies/gateway/http-policies/#download-and-upload-file-types) with the Download and Upload File Types traffic selectors for HTTP policies. This update allows users to block files that are password-protected, compressed, or otherwise unscannable.
812
- publish_date: "2025-02-12"
9-
title: The default global Cloudflare root certificate expired on 2025-02-02 at 16:05 UTC
13+
title: Upload/Download File Size selectors for HTTP policies
1014
description: |-
11-
Gateway and DLP users can now create HTTP policies with the [Upload/Download File Size (MiB)](/cloudflare-one/policies/gateway/http-policies/#download-and-upload-file-size) traffic selectors. This update allows users to block uploads or downloads based on file size.
15+
Gateway and DLP users can now create HTTP policies with the [Download and Upload File Size (MiB)](/cloudflare-one/policies/gateway/http-policies/#download-and-upload-file-size) traffic selectors. This update allows users to block uploads or downloads based on file size.
1216
- publish_date: "2025-02-02"
1317
title: The default global Cloudflare root certificate expired on 2025-02-02 at 16:05 UTC
1418
description: |-

src/plugins/docsearch/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ export default {
99
// can be used in local development and previews.
1010
transformItems(items) {
1111
return items.map((item) => {
12-
const path = new URL(item.url).pathname;
13-
const url = new URL(path, window.origin);
12+
const { pathname, hash } = new URL(item.url);
13+
const url = new URL(pathname + hash, window.location.origin);
1414

1515
return {
1616
...item,

0 commit comments

Comments
 (0)