Skip to content

Commit 1f38b18

Browse files
committed
Merge commit 'c277247559f6e98a8aee042a8a02b35beb47c64c' into jun/do/lifecycle-update
2 parents eeaf96b + c277247 commit 1f38b18

File tree

9 files changed

+62
-5
lines changed

9 files changed

+62
-5
lines changed
-72.5 KB
Binary file not shown.
107 KB
Loading
158 KB
Loading
-35.9 KB
Binary file not shown.
-62.9 KB
Binary file not shown.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
title: "New detection entry type: Document Matching for DLP"
3+
description: Upload a document as a detection entry type to be identified in traffic utilizing Gateway or at rest with CASB.
4+
date: 2025-07-17
5+
---
6+
7+
You can now create [document-based](/cloudflare-one/policies/data-loss-prevention/detection-entries/#documents) detection entries in DLP by uploading example documents. Cloudflare will encrypt your documents and create a unique fingerprint of the file. This fingerprint is then used to identify similar documents or snippets within your organization's traffic and stored files.
8+
9+
![DLP](~/assets/images/changelog/dlp/document-match.png)
10+
11+
**Key features and benefits:**
12+
13+
- **Upload documents, forms, or templates:** Easily upload .docx and .txt files (up to 10 MB) that contain sensitive information you want to protect.
14+
15+
- **Granular control with similarity percentage:** Define a minimum similarity percentage (0-100%) that a document must meet to trigger a detection, reducing false positives.
16+
17+
- **Comprehensive coverage:** Apply these document-based detection entries in:
18+
19+
- **Gateway policies:** To inspect network traffic for sensitive documents as they are uploaded or shared.
20+
21+
- **CASB (Cloud Access Security Broker):** To scan files stored in cloud applications for sensitive documents at rest.
22+
23+
- **Identify sensitive data:** This new detection entry type is ideal for identifying sensitive data within completed forms, templates, or even small snippets of a larger document, helping you prevent data exfiltration and ensure compliance.
24+
25+
Once uploaded and processed, you can add this new document entry into a DLP profile and policies to enhance your data protection strategy.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: Magic Transit and Magic WAN health check data is fully compatible with the CMB EU setting.
3+
description: Magic Transit and Magic WAN customers that enable the CMB EU setting can access their health check data in the Cloudflare dashboard.
4+
date: 2025-07-30
5+
preview_image: ~/assets/images/changelog/magic-transit/2025-07-30-mt-mwan-health-checks-cmb-eu.png
6+
products:
7+
- magic-transit
8+
- magic-wan
9+
---
10+
11+
Today, we are excited to announce that all Magic Transit and Magic WAN customers with CMB EU ([Customer Metadata Boundary - Europe](/data-localization/metadata-boundary/)) enabled in their account will be able to access GRE, IPsec, and CNI health check and traffic volume data in the Cloudflare dashboard and via API.
12+
13+
This ensures that all Magic Transit and Magic WAN customers with CMB EU enabled will be able to access all Magic Transit and Magic WAN features.
14+
15+
Specifically, these two GraphQL endpoints are now compatible with CMB EU:
16+
- `magicTransitTunnelHealthChecksAdaptiveGroups`
17+
- `magicTransitTunnelTrafficAdaptiveGroups`

src/content/docs/log-explorer/log-search.mdx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,23 @@ FROM access_requests
5555
WHERE Date >= '2025-02-06' AND Date <= '2025-02-06' AND CreatedAt >= '2025-02-06T12:28:39Z' AND CreatedAt <= '2025-02-06T12:58:39Z'
5656
```
5757

58+
### Headers and cookies
59+
60+
To query request headers and cookies, you must first enable logging for these fields using [Custom fields](/logs/logpush/logpush-job/custom-fields/).
61+
62+
The example below shows how to query HTTP requests by date, timestamp, client country, and a custom request header. Be sure to log the specific headers or cookies you plan to query in advance.
63+
64+
```bash
65+
SELECT clientip, clientrequesthost, clientrequestmethod, edgeendtimestamp, edgestarttimestamp, rayid, clientcountry, requestheaders
66+
FROM http_requests
67+
WHERE Date >= '2025-07-17'
68+
AND Date <= '2025-07-17'
69+
AND edgeendtimestamp >= '2025-07-17T07:54:19Z'
70+
AND edgeendtimestamp <= '2025-07-18T07:54:19Z'
71+
AND clientcountry = 'us'
72+
AND requestheaders."x-test-header" like '%654AM%';
73+
```
74+
5875
### Save queries
5976

6077
After selecting all the fields for your query, you can save it by selecting **Save query**. Provide a name and description to help identify it later. To view your saved and recent queries, select **Queries** — they will appear in a side panel where you can insert a new query, or delete any query.

src/content/docs/workers/languages/python/index.mdx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,9 @@ Cloudflare Workers provides first-class support for Python, including support fo
2121
- A robust [foreign function interface (FFI)](/workers/languages/python/ffi) that lets you use JavaScript objects and functions directly from Python — including all [Runtime APIs](/workers/runtime-apis/)
2222
- [Built-in packages](/workers/languages/python/packages), including [FastAPI](https://fastapi.tiangolo.com/), [Langchain](https://pypi.org/project/langchain/), [httpx](https://www.python-httpx.org/) and more.
2323

24-
:::caution[Python Workers are in beta. Packages do not run in production.]
24+
:::caution[Python Workers are in beta.]
2525

26-
Currently, you can only deploy Python Workers that use the standard library. [Packages](/workers/languages/python/packages/#supported-packages) **cannot be deployed** and will only work in local development for the time being.
27-
28-
You must add the `python_workers` compatibility flag to your Worker, while Python Workers are in open beta.
26+
You must add the `python_workers` compatibility flag to your Worker, while Python Workers are in open beta. Packages are supported using the [pywrangler](/workers/languages/python/packages) tool.
2927

3028
We'd love your feedback. Join the #python-workers channel in the [Cloudflare Developers Discord](https://discord.cloudflare.com/) and let us know what you'd like to see next.
3129
:::
@@ -152,4 +150,4 @@ async def on_fetch(request, env):
152150

153151
- Understand which parts of the [Python Standard Library](/workers/languages/python/stdlib) are supported in Python Workers.
154152
- Learn about Python Workers' [foreign function interface (FFI)](/workers/languages/python/ffi), and how to use it to work with [bindings](/workers/runtime-apis/bindings) and [Runtime APIs](/workers/runtime-apis/).
155-
- Explore the [Built-in Python packages](/workers/languages/python/packages) that the Workers runtime provides.
153+
- Explore the [packages](/workers/languages/python/packages) docs for instructions on how to use packages with Python Workers.

0 commit comments

Comments
 (0)