@astrale-os/adapter-cloudflare 0.5.0-beta.76 → 0.5.0-beta.78
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -0
- package/dist/build/codegen/wrangler.js +3 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.5.0-beta.78](https://github.com/astrale-os/sdk/compare/adapter-cloudflare-v0.5.0-beta.77...adapter-cloudflare-v0.5.0-beta.78) (2026-08-29)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* The following workspace dependencies were updated
|
|
9
|
+
* dependencies
|
|
10
|
+
* @astrale-os/sdk bumped to 0.5.0-beta.75
|
|
11
|
+
|
|
12
|
+
## [0.5.0-beta.77](https://github.com/astrale-os/sdk/compare/adapter-cloudflare-v0.5.0-beta.76...adapter-cloudflare-v0.5.0-beta.77) (2026-08-29)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* **adapter-cloudflare:** route Kernel callbacks through public Worker routes ([#323](https://github.com/astrale-os/sdk/issues/323)) ([a1cea33](https://github.com/astrale-os/sdk/commit/a1cea334d20b749f78d872ad3d6416dbe1e47f4e))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Dependencies
|
|
21
|
+
|
|
22
|
+
* The following workspace dependencies were updated
|
|
23
|
+
* dependencies
|
|
24
|
+
* @astrale-os/sdk bumped to 0.5.0-beta.74
|
|
25
|
+
|
|
3
26
|
## [0.5.0-beta.76](https://github.com/astrale-os/sdk/compare/adapter-cloudflare-v0.5.0-beta.75...adapter-cloudflare-v0.5.0-beta.76) (2026-08-28)
|
|
4
27
|
|
|
5
28
|
|
|
@@ -19,7 +19,9 @@ export function generateWranglerConfig(opts) {
|
|
|
19
19
|
name: opts.workerName,
|
|
20
20
|
main: opts.main ?? './worker.gen.ts',
|
|
21
21
|
compatibility_date: COMPATIBILITY_DATE,
|
|
22
|
-
|
|
22
|
+
// Domain execution calls its Kernel through the invocation's public issuer. Cloudflare must
|
|
23
|
+
// route same-zone callbacks through the public front door instead of bypassing Worker routes.
|
|
24
|
+
compatibility_flags: ['nodejs_compat', 'global_fetch_strictly_public'],
|
|
23
25
|
workers_dev: opts.route === undefined,
|
|
24
26
|
version_metadata: { binding: 'ASTRALE_VERSION_METADATA' },
|
|
25
27
|
observability: { enabled: true },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astrale-os/adapter-cloudflare",
|
|
3
|
-
"version": "0.5.0-beta.
|
|
3
|
+
"version": "0.5.0-beta.78",
|
|
4
4
|
"description": "Deploy an Astrale application through Cloudflare Workers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"adapter",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"registry": "https://registry.npmjs.org/"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@astrale-os/sdk": "0.5.0-beta.
|
|
52
|
+
"@astrale-os/sdk": "0.5.0-beta.75",
|
|
53
53
|
"@noble/hashes": "2.3.0",
|
|
54
54
|
"hono": "^4.6.20",
|
|
55
55
|
"jose": "^6.1.3",
|