@astrale-os/adapter-cloudflare 0.5.0-beta.86 → 0.5.0-beta.87

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 CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [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)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * isolate scaffolder signing identity custody ([#348](https://github.com/astrale-os/sdk/issues/348)) ([8c31529](https://github.com/astrale-os/sdk/commit/8c3152925d310704c8919d71af6cd91c58629572))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @astrale-os/sdk bumped to 0.5.0-beta.84
16
+
3
17
  ## [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
18
 
5
19
 
@@ -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';
@@ -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';
@@ -0,0 +1,3 @@
1
+ /** Dependency-light custody surface for Cloudflare Domain signing identities. */
2
+ export { signingIdentity } from './source.js';
3
+ export { signingIdentitySecrets } from './secret.js';
@@ -0,0 +1,3 @@
1
+ /** Dependency-light custody surface for Cloudflare Domain signing identities. */
2
+ export { signingIdentity } from './source.js';
3
+ export { signingIdentitySecrets } from './secret.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astrale-os/adapter-cloudflare",
3
- "version": "0.5.0-beta.86",
3
+ "version": "0.5.0-beta.87",
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.83",
56
+ "@astrale-os/sdk": "0.5.0-beta.84",
53
57
  "@noble/hashes": "2.3.0",
54
58
  "hono": "^4.6.20",
55
59
  "jose": "^6.1.3",