Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

Commit d7e7d5e

Browse files
renovate[bot]bluwy
andauthored
fix(deps): update all non-major dependencies (#457)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: bluwy <bjornlu.dev@gmail.com>
1 parent 4b5cd22 commit d7e7d5e

File tree

78 files changed

+1348
-1273
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+1348
-1273
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,19 +36,19 @@
3636
"@astrojs/check": "^0.9.4",
3737
"@biomejs/biome": "1.9.4",
3838
"@changesets/changelog-github": "^0.5.0",
39-
"@changesets/cli": "^2.27.10",
40-
"@types/node": "^22.10.0",
39+
"@changesets/cli": "^2.27.11",
40+
"@types/node": "^22.10.5",
4141
"esbuild": "^0.24.0",
42-
"eslint": "^9.15.0",
42+
"eslint": "^9.17.0",
4343
"eslint-config-prettier": "^9.1.0",
4444
"eslint-plugin-no-only-tests": "^3.3.0",
4545
"eslint-plugin-prettier": "^5.2.1",
4646
"eslint-plugin-regexp": "^2.7.0",
4747
"only-allow": "^1.2.1",
48-
"prettier": "^3.4.1",
48+
"prettier": "^3.4.2",
4949
"prettier-plugin-astro": "^0.14.1",
5050
"turbo": "^2.3.3",
5151
"typescript": "^5.7.2",
52-
"typescript-eslint": "^8.16.0"
52+
"typescript-eslint": "^8.19.0"
5353
}
5454
}

packages/cloudflare/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,29 +28,29 @@
2828
"test": "astro-scripts test \"test/**/*.test.js\""
2929
},
3030
"dependencies": {
31-
"@astrojs/internal-helpers": "0.4.1",
32-
"@astrojs/underscore-redirects": "^0.4.0-alpha.0",
33-
"@cloudflare/workers-types": "^4.20241112.0",
34-
"@inox-tools/astro-when": "^1.0.1",
31+
"@astrojs/internal-helpers": "0.4.2",
32+
"@astrojs/underscore-redirects": "^0.5.0",
33+
"@cloudflare/workers-types": "^4.20241230.0",
34+
"@inox-tools/astro-when": "^1.0.2",
3535
"esbuild": "^0.24.0",
3636
"estree-walker": "^3.0.3",
37-
"magic-string": "^0.30.14",
38-
"miniflare": "^3.20241106.1",
37+
"magic-string": "^0.30.17",
38+
"miniflare": "^3.20241218.0",
3939
"tiny-glob": "^0.2.9",
40-
"vite": "^6.0.2",
41-
"wrangler": "^3.91.0"
40+
"vite": "^6.0.7",
41+
"wrangler": "^3.99.0"
4242
},
4343
"peerDependencies": {
4444
"astro": "^5.0.0"
4545
},
4646
"devDependencies": {
4747
"@astrojs/test-utils": "workspace:*",
48-
"astro": "^5.0.0",
48+
"astro": "^5.1.3",
4949
"astro-scripts": "workspace:*",
5050
"cheerio": "1.0.0",
5151
"execa": "^8.0.1",
5252
"fast-glob": "^3.3.2",
53-
"rollup": "^4.27.4",
53+
"rollup": "^4.29.1",
5454
"strip-ansi": "^7.1.0"
5555
},
5656
"publishConfig": {

packages/cloudflare/src/entrypoints/server.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ export function createExports(manifest: SSRManifest) {
7474
'`passThroughOnException` is currently not available in Cloudflare Pages. See https://developers.cloudflare.com/pages/platform/known-issues/#pages-functions.'
7575
);
7676
},
77+
props: {},
7778
},
7879
},
7980
};

packages/cloudflare/src/index.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { AstroConfig, AstroIntegration, IntegrationRouteData } from 'astro';
1+
import type { AstroConfig, AstroIntegration, HookParameters, IntegrationRouteData } from 'astro';
22
import type { PluginOption } from 'vite';
33

44
import { createReadStream } from 'node:fs';
@@ -88,6 +88,7 @@ function setProcessEnv(config: AstroConfig, env: Record<string, unknown>) {
8888

8989
export default function createIntegration(args?: Options): AstroIntegration {
9090
let _config: AstroConfig;
91+
let finalBuildOutput: HookParameters<'astro:config:done'>['buildOutput'];
9192

9293
const cloudflareModulePlugin: PluginOption & CloudflareModulePluginExtra = cloudflareModuleLoader(
9394
args?.cloudflareModules ?? true
@@ -151,6 +152,7 @@ export default function createIntegration(args?: Options): AstroIntegration {
151152
}
152153

153154
_config = config;
155+
finalBuildOutput = buildOutput;
154156

155157
setAdapter({
156158
name: '@astrojs/cloudflare',
@@ -339,6 +341,7 @@ export default function createIntegration(args?: Options): AstroIntegration {
339341
config: _config,
340342
routeToDynamicTargetMap: new Map(Array.from(redirectRoutes)),
341343
dir,
344+
buildOutput: finalBuildOutput,
342345
});
343346

344347
if (!trueRedirects.empty()) {

packages/cloudflare/test/fixtures/astro-dev-platform/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"private": true,
55
"dependencies": {
66
"@astrojs/cloudflare": "workspace:*",
7-
"astro": "^5.0.0"
7+
"astro": "^5.1.3"
88
},
99
"devDependencies": {
10-
"wrangler": "^3.84.0"
10+
"wrangler": "^3.99.0"
1111
}
1212
}

packages/cloudflare/test/fixtures/astro-env/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"private": true,
55
"dependencies": {
66
"@astrojs/cloudflare": "workspace:*",
7-
"astro": "^5.0.0"
7+
"astro": "^5.1.3"
88
},
99
"devDependencies": {
10-
"wrangler": "^3.84.0"
10+
"wrangler": "^3.99.0"
1111
}
1212
}

packages/cloudflare/test/fixtures/compile-image-service/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
"private": true,
55
"dependencies": {
66
"@astrojs/cloudflare": "workspace:*",
7-
"astro": "^5.0.0"
7+
"astro": "^5.1.3"
88
}
99
}

packages/cloudflare/test/fixtures/external-image-service/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
"private": true,
55
"dependencies": {
66
"@astrojs/cloudflare": "workspace:*",
7-
"astro": "^5.0.0"
7+
"astro": "^5.1.3"
88
}
99
}

packages/cloudflare/test/fixtures/module-loader/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
"private": true,
55
"dependencies": {
66
"@astrojs/cloudflare": "workspace:*",
7-
"astro": "^5.0.0"
7+
"astro": "^5.1.3"
88
}
99
}

packages/cloudflare/test/fixtures/no-output/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
"private": true,
55
"dependencies": {
66
"@astrojs/cloudflare": "workspace:*",
7-
"astro": "^5.0.0"
7+
"astro": "^5.1.3"
88
}
99
}

0 commit comments

Comments
 (0)