@astrale-os/adapter-cloudflare 0.5.0-beta.86 → 0.5.0-beta.88
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 +28 -0
- package/dist/build/index.d.ts +0 -2
- package/dist/build/index.js +0 -2
- package/dist/development/develop.js +3 -0
- package/dist/identity/index.d.ts +3 -0
- package/dist/identity/index.js +3 -0
- package/package.json +6 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.5.0-beta.88](https://github.com/astrale-os/sdk/compare/adapter-cloudflare-v0.5.0-beta.87...adapter-cloudflare-v0.5.0-beta.88) (2026-08-30)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **dev:** accept file-backed operator credentials ([#350](https://github.com/astrale-os/sdk/issues/350)) ([8575644](https://github.com/astrale-os/sdk/commit/8575644124ae21014aafcbafd98a8465da980e83))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @astrale-os/sdk bumped to 0.5.0-beta.85
|
|
16
|
+
|
|
17
|
+
## [0.5.0-beta.87](https://github.com/astrale-os/sdk/compare/adapter-cloudflare-v0.5.0-beta.86...adapter-cloudflare-v0.5.0-beta.87) (2026-08-30)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* isolate scaffolder signing identity custody ([#348](https://github.com/astrale-os/sdk/issues/348)) ([8c31529](https://github.com/astrale-os/sdk/commit/8c3152925d310704c8919d71af6cd91c58629572))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Dependencies
|
|
26
|
+
|
|
27
|
+
* The following workspace dependencies were updated
|
|
28
|
+
* dependencies
|
|
29
|
+
* @astrale-os/sdk bumped to 0.5.0-beta.84
|
|
30
|
+
|
|
3
31
|
## [0.5.0-beta.86](https://github.com/astrale-os/sdk/compare/adapter-cloudflare-v0.5.0-beta.85...adapter-cloudflare-v0.5.0-beta.86) (2026-08-30)
|
|
4
32
|
|
|
5
33
|
|
package/dist/build/index.d.ts
CHANGED
|
@@ -5,6 +5,4 @@ export { resolveRouter, workerName } from './configuration.js';
|
|
|
5
5
|
export { frontendFiles } from './frontend/files.js';
|
|
6
6
|
export { qualifyWorkerBundle } from './qualification.js';
|
|
7
7
|
export { assertSingletonRuntimeRoots } from './roots.js';
|
|
8
|
-
export { signingIdentity } from '../identity/source.js';
|
|
9
|
-
export { signingIdentitySecrets } from '../identity/secret.js';
|
|
10
8
|
export { runWranglerBundle, runWranglerDeploy, runWranglerDeploymentStatus, runWranglerTypes, } from '../wrangler/index.js';
|
package/dist/build/index.js
CHANGED
|
@@ -4,6 +4,4 @@ export { resolveRouter, workerName } from './configuration.js';
|
|
|
4
4
|
export { frontendFiles } from './frontend/files.js';
|
|
5
5
|
export { qualifyWorkerBundle } from './qualification.js';
|
|
6
6
|
export { assertSingletonRuntimeRoots } from './roots.js';
|
|
7
|
-
export { signingIdentity } from '../identity/source.js';
|
|
8
|
-
export { signingIdentitySecrets } from '../identity/secret.js';
|
|
9
7
|
export { runWranglerBundle, runWranglerDeploy, runWranglerDeploymentStatus, runWranglerTypes, } from '../wrangler/index.js';
|
|
@@ -19,6 +19,9 @@ export async function developCloudflare(parameters, context, dependencies = {
|
|
|
19
19
|
allocatePort,
|
|
20
20
|
verify: verifyDevelopmentRelease,
|
|
21
21
|
}) {
|
|
22
|
+
if (context.overrides.credentialFile !== undefined) {
|
|
23
|
+
throw new TypeError('Cloudflare development does not own Kernel credentials.');
|
|
24
|
+
}
|
|
22
25
|
const hostSource = context.overrides.publicUrl ?? parameters.host;
|
|
23
26
|
const host = hostSource === undefined ? undefined : admitHost(hostSource);
|
|
24
27
|
const configuredPort = context.overrides.localPort ?? parameters.port;
|
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.88",
|
|
4
4
|
"description": "Deploy an Astrale application through Cloudflare Workers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"adapter",
|
|
@@ -35,6 +35,10 @@
|
|
|
35
35
|
"types": "./dist/build/index.d.ts",
|
|
36
36
|
"import": "./dist/build/index.js"
|
|
37
37
|
},
|
|
38
|
+
"./identity": {
|
|
39
|
+
"types": "./dist/identity/index.d.ts",
|
|
40
|
+
"import": "./dist/identity/index.js"
|
|
41
|
+
},
|
|
38
42
|
"./worker": {
|
|
39
43
|
"types": "./dist/worker/index.d.ts",
|
|
40
44
|
"import": "./dist/worker/index.js"
|
|
@@ -49,7 +53,7 @@
|
|
|
49
53
|
"registry": "https://registry.npmjs.org/"
|
|
50
54
|
},
|
|
51
55
|
"dependencies": {
|
|
52
|
-
"@astrale-os/sdk": "0.5.0-beta.
|
|
56
|
+
"@astrale-os/sdk": "0.5.0-beta.85",
|
|
53
57
|
"@noble/hashes": "2.3.0",
|
|
54
58
|
"hono": "^4.6.20",
|
|
55
59
|
"jose": "^6.1.3",
|