Skip to content

Commit d10d8f0

Browse files
authored
Merge branch 'main' into brillout/c3-vike
2 parents 04c5542 + 45480b1 commit d10d8f0

35 files changed

+566
-169
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"solarflare-theme": patch
3+
---
4+
5+
Fix light theme syntax highlighting for variables by adding missing `variable` scope

‎.changeset/cold-numbers-sneeze.md‎

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
"wrangler": minor
3+
---
4+
5+
Add new `autoconfig_summary` field to the deploy output entry
6+
7+
This change augments `wrangler deploy` output being printed to `WRANGLER_OUTPUT_FILE_DIRECTORY` or `WRANGLER_OUTPUT_FILE_PATH` to also include a new `autoconfig_summary` field containing the possible summary details for the autoconfig process (the field is `undefined` if autoconfig didn't run).
8+
9+
Note: the field is experimental and could change while autoconfig is not GA

‎.changeset/famous-wasps-read.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
"create-cloudflare": patch
2+
"create-cloudflare": minor
33
---
44

55
Support Qwik in `--experimental` mode

‎.changeset/loose-games-camp.md‎

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"wrangler": patch
3+
---
4+
5+
improved --help text for wrangler d1 subcommands

‎.changeset/thick-showers-hammer.md‎

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"miniflare": minor
3+
---
4+
5+
Improve local Hyperdrive binding latency on Windows.

‎.changeset/upset-ducks-sin.md‎

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"@cloudflare/unenv-preset": patch
3+
---
4+
5+
Use native node:vm module when available
6+
7+
It is enabled starting on 2025-10-01 or when the `enable_nodejs_vm_module` compatibility flag is set.

‎packages/miniflare/src/plugins/hyperdrive/hyperdrive-proxy.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export class HyperdriveProxyController {
5353
);
5454
});
5555
const port = await new Promise<number>((resolve, reject) => {
56-
server.listen(0, "localhost", () => {
56+
server.listen(0, "127.0.0.1", () => {
5757
const address = server.address() as net.AddressInfo;
5858
if (address && typeof address !== "string") {
5959
resolve(address.port);

‎packages/miniflare/src/plugins/hyperdrive/index.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ export const HYPERDRIVE_PLUGIN: Plugin<typeof HyperdriveInputOptionsSchema> = {
130130
services.push({
131131
name: `${HYPERDRIVE_PLUGIN_NAME}:${name}`,
132132
external: {
133-
address: `localhost:${proxyPort}`,
133+
address: `127.0.0.1:${proxyPort}`,
134134
tcp: {},
135135
},
136136
});

‎packages/solarflare-theme/themes/cloudflare-dark-color-theme.json‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
"string constant.other.placeholder",
4444
"variable.other.object",
4545
"variable.other.readwrite",
46-
"variable.other.object",
4746
"variable.other.property"
4847
],
4948
"settings": {

‎packages/solarflare-theme/themes/cloudflare-light-color-theme.json‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,10 @@
4848
{
4949
"name": "Variables",
5050
"scope": [
51+
"variable",
5152
"string constant.other.placeholder",
52-
"variable.other",
5353
"variable.other.object",
5454
"variable.other.readwrite",
55-
"variable.other.object",
5655
"variable.other.property"
5756
],
5857
"settings": {

0 commit comments

Comments
 (0)