Skip to content

Commit 98ca42e

Browse files
Merge branch 'cloudflare:production' into production
2 parents b628f3b + cf2f61a commit 98ca42e

File tree

4 files changed

+18
-8
lines changed

4 files changed

+18
-8
lines changed

bin/fetch-warp-releases.js

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,12 @@ for (let track of tracks) {
3535
track = track.replace("noble-intel", "linux");
3636
}
3737

38-
const path = `./src/content/warp-releases/${track}/${item.version}.yaml`;
38+
const folder = `./src/content/warp-releases/${track}`;
39+
const path = `${folder}/${item.version}.yaml`;
40+
41+
if (!fs.existsSync(folder)) {
42+
fs.mkdirSync(folder, { recursive: true });
43+
}
3944

4045
if (fs.existsSync(path)) {
4146
console.log(`${track} ${item.version} already exists.`);
@@ -66,13 +71,16 @@ for (let track of tracks) {
6671
});
6772

6873
const releaseNotes = tokens.reduce((s, t) => s + t.raw, "");
74+
const platformName = data.platformName.startsWith("noble-")
75+
? "Linux"
76+
: data.platformName;
6977

7078
fs.writeFileSync(
7179
`./src/content/warp-releases/${track}/${item.version}.yaml`,
7280
YAML.stringify({
7381
...item,
7482
releaseNotes,
75-
platformName: data.platformName,
83+
platformName,
7684
}),
7785
"utf-8",
7886
);

src/components/search/InstantSearch.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function SearchBox(props: UseSearchBoxProps) {
1515

1616
useEffect(() => {
1717
const params = new URLSearchParams(window.location.search);
18-
const query = params.get("query");
18+
const query = params.get("q") ?? params.get("query");
1919

2020
if (query) {
2121
refine(query);

src/content/docs/data-localization/compatibility.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,10 @@ The table below provides a summary of the Data Localization Suite product's beha
126126
[^12]: Logpull not available when using Customer Metadata Boundary outside US region. Logs may be stored and retrieved with [Logs Engine](https://blog.cloudflare.com/announcing-logs-engine/) which is adding region support in 2025.
127127
[^13]: Logpush available with Customer Metadata Boundary for [these datasets](/data-localization/metadata-boundary/logpush-datasets/). Contact your account team if you need another dataset.
128128
[^14]: Access App SSL keys can use Geo Key Manager. [Access JWT](/cloudflare-one/identity/authorization-cookie/validating-json/) is not yet localized.
129-
[^15]: Can be localized to US FedRAMP region only. More regions coming in 2024.
129+
[^15]: Can be localized to US FedRAMP Moderate Domestic region only.
130130
[^16]: Customer Metadata Boundary can be used to limit data transfer outside region, but Access User Logs will not be available outside US region.
131131
[^17]: Currently may only be used with US FedRAMP region.
132-
[^18]: The only connectivity option is [US FedRAMP region](/cloudflare-one/connections/connect-networks/configure-tunnels/cloudflared-parameters/run-parameters/#region). Regional Services only applies when using [Public Hostnames](/cloudflare-one/connections/connect-networks/routing-to-tunnel/) set to a region.
132+
[^18]: The only connectivity option is [US FedRAMP Moderate Domestic region](/cloudflare-one/connections/connect-networks/configure-tunnels/cloudflared-parameters/run-parameters/#region). Regional Services only applies when using [Public Hostnames](/cloudflare-one/connections/connect-networks/routing-to-tunnel/) set to a region.
133133
[^19]: Uses Gateway HTTP and CASB.
134134
[^20]: You can [bring your own certificate](https://blog.cloudflare.com/bring-your-certificates-cloudflare-gateway/) to Gateway but these cannot yet be restricted to a specific region.
135135
[^21]: Gateway HTTP supports Regional Services. Gateway DNS does not yet support regionalization. <br/> ICMP proxy and WARP-to-WARP proxy are not available to Regional Services users.

src/content/docs/workers/local-development.mdx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,22 +40,24 @@ npx wrangler dev
4040
| D1 |||
4141
| Durable Objects |||
4242
| Email Bindings |||
43-
| Hyperdrive | ||
43+
| Hyperdrive |[^2] ||
4444
| Images |||
4545
| KV |||
4646
| mTLS |||
4747
| Queues |||
4848
| R2 |||
4949
| Rate Limiting |||
5050
| Service Bindings (multiple workers) |||
51-
| Vectorize |[^2] ||
51+
| Vectorize |[^3] ||
5252
| Workflows |||
5353

5454
With any bindings that are not supported locally, you will need to use the [`--remote` command](#develop-using-remote-resources-and-bindings) in wrangler, such as `wrangler dev --remote`.
5555

5656
[^1]: Using Workers AI always accesses your Cloudflare account in order to run AI models and will incur usage charges even in local development.
5757

58-
[^2]: Using Vectorize always accesses your Cloudflare account to run queries, and will incur usage charges even in local development.
58+
[^2]: Using Hyperdrive with local development allows you to connect to a local database (running on `localhost`) but you cannot connect to a remote database. To connect to a remote database, use remote development.
59+
60+
[^3]: Using Vectorize always accesses your Cloudflare account to run queries, and will incur usage charges even in local development.
5961

6062
## Work with local data
6163

0 commit comments

Comments
 (0)