@astrale-os/sdk 0.5.0-beta.8 → 0.5.0-beta.80
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 +1363 -0
- package/README.md +39 -23
- package/dist/application/action/action.d.ts +40 -0
- package/dist/application/action/action.js +1 -0
- package/dist/application/action/authoring.d.ts +4 -0
- package/dist/application/action/authoring.js +1 -0
- package/dist/application/action/context.d.ts +71 -0
- package/dist/application/action/context.js +1 -0
- package/dist/application/action/define.d.ts +8 -0
- package/dist/application/action/define.js +29 -0
- package/dist/application/action/index.d.ts +4 -0
- package/dist/application/action/index.js +1 -0
- package/dist/application/action/output.d.ts +6 -0
- package/dist/application/action/output.js +1 -0
- package/dist/application/application.d.ts +28 -0
- package/dist/application/application.js +1 -0
- package/dist/application/define.d.ts +16 -0
- package/dist/application/define.js +40 -0
- package/dist/application/index.d.ts +9 -0
- package/dist/application/index.js +4 -0
- package/dist/application/integration/admission.d.ts +9 -0
- package/dist/application/integration/admission.js +21 -0
- package/dist/application/integration/client.d.ts +25 -0
- package/dist/application/integration/client.js +100 -0
- package/dist/application/integration/define.d.ts +24 -0
- package/dist/application/integration/define.js +101 -0
- package/dist/application/integration/index.d.ts +7 -0
- package/dist/application/integration/index.js +2 -0
- package/dist/application/integration/integration.d.ts +19 -0
- package/dist/application/integration/integration.js +1 -0
- package/dist/application/integration/operation.d.ts +35 -0
- package/dist/application/integration/operation.js +1 -0
- package/dist/application/integration/provider.d.ts +14 -0
- package/dist/application/integration/provider.js +1 -0
- package/dist/application/integration/replay.d.ts +3 -0
- package/dist/application/integration/replay.js +37 -0
- package/dist/application/mutation/authoring/builder.d.ts +55 -0
- package/dist/application/mutation/authoring/builder.js +102 -0
- package/dist/application/mutation/authoring/endpoint.d.ts +16 -0
- package/dist/application/mutation/authoring/endpoint.js +13 -0
- package/dist/application/mutation/authoring/index.d.ts +4 -0
- package/dist/application/mutation/authoring/index.js +1 -0
- package/dist/application/mutation/authoring/precondition.d.ts +7 -0
- package/dist/application/mutation/authoring/precondition.js +8 -0
- package/dist/application/mutation/authoring/properties.d.ts +22 -0
- package/dist/application/mutation/authoring/properties.js +29 -0
- package/dist/application/mutation/authoring/transition.d.ts +26 -0
- package/dist/application/mutation/authoring/transition.js +63 -0
- package/dist/application/mutation/define.d.ts +12 -0
- package/dist/application/mutation/define.js +56 -0
- package/dist/application/mutation/execution/execute.d.ts +9 -0
- package/dist/application/mutation/execution/execute.js +21 -0
- package/dist/application/mutation/execution/executor.d.ts +13 -0
- package/dist/application/mutation/execution/executor.js +7 -0
- package/dist/application/mutation/execution/index.d.ts +2 -0
- package/dist/application/mutation/execution/index.js +1 -0
- package/dist/application/mutation/execution/projection.d.ts +3 -0
- package/dist/application/mutation/execution/projection.js +3 -0
- package/dist/application/mutation/failure.d.ts +13 -0
- package/dist/application/mutation/failure.js +51 -0
- package/dist/application/mutation/index.d.ts +7 -0
- package/dist/application/mutation/index.js +4 -0
- package/dist/application/mutation/mutation.d.ts +24 -0
- package/dist/application/mutation/mutation.js +1 -0
- package/dist/application/query/collection/identity.d.ts +4 -0
- package/dist/application/query/collection/identity.js +15 -0
- package/dist/application/query/collection/limits.d.ts +5 -0
- package/dist/application/query/collection/limits.js +5 -0
- package/dist/application/query/collection/metadata.d.ts +11 -0
- package/dist/application/query/collection/metadata.js +62 -0
- package/dist/application/query/collection/union.d.ts +19 -0
- package/dist/application/query/collection/union.js +157 -0
- package/dist/application/query/composite/builder.d.ts +46 -0
- package/dist/application/query/composite/builder.js +176 -0
- package/dist/application/query/composite/errors.d.ts +7 -0
- package/dist/application/query/composite/errors.js +8 -0
- package/dist/application/query/composite/index.d.ts +4 -0
- package/dist/application/query/composite/index.js +3 -0
- package/dist/application/query/composite/plan.d.ts +24 -0
- package/dist/application/query/composite/plan.js +85 -0
- package/dist/application/query/composite/query.d.ts +44 -0
- package/dist/application/query/composite/query.js +1 -0
- package/dist/application/query/define.d.ts +48 -0
- package/dist/application/query/define.js +162 -0
- package/dist/application/query/execution/execute.d.ts +14 -0
- package/dist/application/query/execution/execute.js +74 -0
- package/dist/application/query/execution/executor.d.ts +14 -0
- package/dist/application/query/execution/executor.js +7 -0
- package/dist/application/query/execution/index.d.ts +2 -0
- package/dist/application/query/execution/index.js +1 -0
- package/dist/application/query/execution/pages.d.ts +1 -0
- package/dist/application/query/execution/pages.js +1 -0
- package/dist/application/query/execution/projection.d.ts +3 -0
- package/dist/application/query/execution/projection.js +3 -0
- package/dist/application/query/failure.d.ts +10 -0
- package/dist/application/query/failure.js +14 -0
- package/dist/application/query/index.d.ts +10 -0
- package/dist/application/query/index.js +6 -0
- package/dist/application/query/query.d.ts +35 -0
- package/dist/application/query/query.js +1 -0
- package/dist/application/query/single/index.d.ts +4 -0
- package/dist/application/query/single/index.js +3 -0
- package/dist/application/query/single/node.d.ts +18 -0
- package/dist/application/query/single/node.js +86 -0
- package/dist/application/query/single/pagination.d.ts +9 -0
- package/dist/application/query/single/pagination.js +24 -0
- package/dist/application/query/single/query.d.ts +47 -0
- package/dist/application/query/single/query.js +1 -0
- package/dist/application/query/single/selection.d.ts +2 -0
- package/dist/application/query/single/selection.js +23 -0
- package/dist/application/requirements/administration.d.ts +7 -0
- package/dist/application/requirements/administration.js +38 -0
- package/dist/application/requirements/callables.d.ts +4 -0
- package/dist/application/requirements/callables.js +30 -0
- package/dist/application/requirements/classes.d.ts +9 -0
- package/dist/application/requirements/classes.js +52 -0
- package/dist/application/requirements/index.d.ts +16 -0
- package/dist/application/requirements/index.js +29 -0
- package/dist/application/requirements/requirement.d.ts +17 -0
- package/dist/application/requirements/requirement.js +1 -0
- package/dist/application/routes/admission.d.ts +5 -0
- package/dist/application/routes/admission.js +15 -0
- package/dist/application/routes/collection.d.ts +8 -0
- package/dist/application/routes/collection.js +23 -0
- package/dist/application/routes/index.d.ts +9 -0
- package/dist/application/routes/index.js +45 -0
- package/dist/application/routes/route.d.ts +10 -0
- package/dist/application/routes/route.js +1 -0
- package/dist/application/runtime/actions.d.ts +10 -0
- package/dist/application/runtime/actions.js +27 -0
- package/dist/application/runtime/authoring.d.ts +5 -0
- package/dist/application/runtime/authoring.js +1 -0
- package/dist/application/runtime/callables.d.ts +11 -0
- package/dist/application/runtime/callables.js +40 -0
- package/dist/application/runtime/define.d.ts +28 -0
- package/dist/application/runtime/define.js +49 -0
- package/dist/application/runtime/index.d.ts +6 -0
- package/dist/application/runtime/index.js +2 -0
- package/dist/application/runtime/initialize.d.ts +10 -0
- package/dist/application/runtime/initialize.js +1 -0
- package/dist/application/runtime/integrations.d.ts +3 -0
- package/dist/application/runtime/integrations.js +1 -0
- package/dist/application/runtime/runtime.d.ts +32 -0
- package/dist/application/runtime/runtime.js +28 -0
- package/dist/application/runtime/workflows.d.ts +11 -0
- package/dist/application/runtime/workflows.js +33 -0
- package/dist/application/state/index.d.ts +2 -0
- package/dist/application/state/index.js +1 -0
- package/dist/application/view/admission.d.ts +3 -0
- package/dist/application/view/admission.js +8 -0
- package/dist/application/view/define.d.ts +4 -0
- package/dist/application/view/define.js +52 -0
- package/dist/application/view/frontend.d.ts +19 -0
- package/dist/application/view/frontend.js +1 -0
- package/dist/application/view/index.d.ts +6 -0
- package/dist/application/view/index.js +3 -0
- package/dist/application/view/route.d.ts +19 -0
- package/dist/application/view/route.js +131 -0
- package/dist/application/view/source.d.ts +16 -0
- package/dist/application/view/source.js +55 -0
- package/dist/application/workflow/authoring.d.ts +3 -0
- package/dist/application/workflow/authoring.js +1 -0
- package/dist/application/workflow/context.d.ts +8 -0
- package/dist/application/workflow/context.js +1 -0
- package/dist/application/workflow/define.d.ts +7 -0
- package/dist/application/workflow/define.js +32 -0
- package/dist/application/workflow/index.d.ts +5 -0
- package/dist/application/workflow/index.js +3 -0
- package/dist/application/workflow/runner/index.d.ts +2 -0
- package/dist/application/workflow/runner/index.js +1 -0
- package/dist/application/workflow/runner/inline.d.ts +3 -0
- package/dist/application/workflow/runner/inline.js +55 -0
- package/dist/application/workflow/runner/runner.d.ts +9 -0
- package/dist/application/workflow/runner/runner.js +1 -0
- package/dist/application/workflow/step/index.d.ts +2 -0
- package/dist/application/workflow/step/index.js +1 -0
- package/dist/application/workflow/step/run.d.ts +2 -0
- package/dist/application/workflow/step/run.js +10 -0
- package/dist/application/workflow/step/step.d.ts +4 -0
- package/dist/application/workflow/step/step.js +1 -0
- package/dist/application/workflow/workflow.d.ts +22 -0
- package/dist/application/workflow/workflow.js +1 -0
- package/dist/deployment/adapter/adapter.d.ts +22 -0
- package/dist/deployment/adapter/adapter.js +1 -0
- package/dist/deployment/adapter/define.d.ts +4 -0
- package/dist/deployment/adapter/define.js +68 -0
- package/dist/deployment/adapter/deploy/context.d.ts +9 -0
- package/dist/deployment/adapter/deploy/context.js +1 -0
- package/dist/deployment/adapter/deploy/index.d.ts +2 -0
- package/dist/deployment/adapter/deploy/index.js +1 -0
- package/dist/deployment/adapter/deploy/result.d.ts +48 -0
- package/dist/deployment/adapter/deploy/result.js +1 -0
- package/dist/deployment/adapter/development/context.d.ts +14 -0
- package/dist/deployment/adapter/development/context.js +1 -0
- package/dist/deployment/adapter/development/index.d.ts +4 -0
- package/dist/deployment/adapter/development/index.js +1 -0
- package/dist/deployment/adapter/development/input.d.ts +6 -0
- package/dist/deployment/adapter/development/input.js +1 -0
- package/dist/deployment/adapter/development/placement.d.ts +5 -0
- package/dist/deployment/adapter/development/placement.js +1 -0
- package/dist/deployment/adapter/development/session.d.ts +9 -0
- package/dist/deployment/adapter/development/session.js +1 -0
- package/dist/deployment/adapter/index.d.ts +5 -0
- package/dist/deployment/adapter/index.js +1 -0
- package/dist/deployment/adapter/prepare/artifact.d.ts +33 -0
- package/dist/deployment/adapter/prepare/artifact.js +1 -0
- package/dist/deployment/adapter/prepare/context.d.ts +15 -0
- package/dist/deployment/adapter/prepare/context.js +1 -0
- package/dist/deployment/adapter/prepare/index.d.ts +2 -0
- package/dist/deployment/adapter/prepare/index.js +1 -0
- package/dist/deployment/authoring.d.ts +5 -0
- package/dist/deployment/authoring.js +2 -0
- package/dist/deployment/build/admission.d.ts +12 -0
- package/dist/deployment/build/admission.js +15 -0
- package/dist/deployment/build/build.d.ts +13 -0
- package/dist/deployment/build/build.js +1 -0
- package/dist/deployment/build/compile.d.ts +9 -0
- package/dist/deployment/build/compile.js +81 -0
- package/dist/deployment/build/frontend/compilation.d.ts +18 -0
- package/dist/deployment/build/frontend/compilation.js +29 -0
- package/dist/deployment/build/frontend/digest.d.ts +4 -0
- package/dist/deployment/build/frontend/digest.js +23 -0
- package/dist/deployment/build/frontend/files.d.ts +13 -0
- package/dist/deployment/build/frontend/files.js +61 -0
- package/dist/deployment/build/frontend/index.d.ts +6 -0
- package/dist/deployment/build/frontend/index.js +4 -0
- package/dist/deployment/build/frontend/provenance.d.ts +7 -0
- package/dist/deployment/build/frontend/provenance.js +12 -0
- package/dist/deployment/build/index.d.ts +6 -0
- package/dist/deployment/build/index.js +4 -0
- package/dist/deployment/build/material.d.ts +42 -0
- package/dist/deployment/build/material.js +201 -0
- package/dist/deployment/build/schema.d.ts +10 -0
- package/dist/deployment/build/schema.js +1 -0
- package/dist/deployment/deploy.d.ts +14 -0
- package/dist/deployment/deploy.js +31 -0
- package/dist/deployment/deployment.d.ts +6 -0
- package/dist/deployment/deployment.js +1 -0
- package/dist/deployment/index.d.ts +13 -7
- package/dist/deployment/index.js +6 -4
- package/dist/deployment/release/addressing.d.ts +7 -0
- package/dist/deployment/release/addressing.js +27 -0
- package/dist/deployment/release/admission.d.ts +3 -0
- package/dist/deployment/release/admission.js +8 -0
- package/dist/deployment/release/assemble.d.ts +5 -0
- package/dist/deployment/release/assemble.js +20 -0
- package/dist/deployment/release/index.d.ts +5 -0
- package/dist/deployment/release/index.js +4 -0
- package/dist/deployment/release/invocation.d.ts +2 -0
- package/dist/deployment/release/invocation.js +5 -0
- package/dist/deployment/release/publication/callables.d.ts +4 -0
- package/dist/deployment/release/publication/callables.js +8 -0
- package/dist/deployment/release/publication/index.d.ts +6 -0
- package/dist/deployment/release/publication/index.js +6 -0
- package/dist/deployment/release/publication/manifest.d.ts +3 -0
- package/dist/deployment/release/publication/manifest.js +5 -0
- package/dist/deployment/release/publication/requirements.d.ts +3 -0
- package/dist/deployment/release/publication/requirements.js +3 -0
- package/dist/deployment/release/publication/routes.d.ts +4 -0
- package/dist/deployment/release/publication/routes.js +4 -0
- package/dist/deployment/release/publication/seal.d.ts +11 -0
- package/dist/deployment/release/publication/seal.js +40 -0
- package/dist/deployment/release/publication/views.d.ts +4 -0
- package/dist/deployment/release/publication/views.js +13 -0
- package/dist/deployment/release/release.d.ts +11 -0
- package/dist/deployment/release/release.js +1 -0
- package/dist/deployment/release/runtime.d.ts +2 -0
- package/dist/deployment/release/runtime.js +2 -0
- package/dist/deployment/runtime/admission.d.ts +5 -0
- package/dist/deployment/runtime/admission.js +11 -0
- package/dist/deployment/runtime/index.d.ts +3 -0
- package/dist/deployment/runtime/index.js +3 -0
- package/dist/deployment/runtime/reference.d.ts +7 -0
- package/dist/deployment/runtime/reference.js +16 -0
- package/dist/deployment/runtime/resolve.d.ts +10 -0
- package/dist/deployment/runtime/resolve.js +29 -0
- package/dist/deployment/verify/index.d.ts +4 -0
- package/dist/deployment/verify/index.js +3 -0
- package/dist/deployment/verify/preflight/artifact.d.ts +6 -0
- package/dist/deployment/verify/preflight/artifact.js +122 -0
- package/dist/deployment/verify/preflight/build.d.ts +2 -0
- package/dist/deployment/verify/preflight/build.js +6 -0
- package/dist/deployment/verify/preflight/index.d.ts +13 -0
- package/dist/deployment/verify/preflight/index.js +13 -0
- package/dist/deployment/verify/preflight/publication.d.ts +4 -0
- package/dist/deployment/verify/preflight/publication.js +14 -0
- package/dist/deployment/verify/readiness/deployment.d.ts +3 -0
- package/dist/deployment/verify/readiness/deployment.js +147 -0
- package/dist/deployment/verify/readiness/identity.d.ts +7 -0
- package/dist/deployment/verify/readiness/identity.js +29 -0
- package/dist/deployment/verify/readiness/index.d.ts +10 -0
- package/dist/deployment/verify/readiness/index.js +10 -0
- package/dist/deployment/verify/readiness/publication.d.ts +11 -0
- package/dist/deployment/verify/readiness/publication.js +41 -0
- package/dist/execution/identity/authentication.d.ts +21 -0
- package/dist/execution/identity/authentication.js +162 -0
- package/dist/execution/identity/callback.d.ts +44 -0
- package/dist/execution/identity/callback.js +105 -0
- package/dist/execution/identity/delivery.d.ts +6 -0
- package/dist/execution/identity/delivery.js +34 -0
- package/dist/execution/identity/errors.d.ts +22 -0
- package/dist/execution/identity/errors.js +61 -0
- package/dist/execution/identity/exchange.d.ts +9 -0
- package/dist/execution/identity/exchange.js +115 -0
- package/dist/execution/identity/identity.d.ts +24 -0
- package/dist/execution/identity/identity.js +99 -0
- package/dist/execution/identity/index.d.ts +2 -0
- package/dist/execution/identity/index.js +2 -0
- package/dist/execution/identity/jwks.d.ts +29 -0
- package/dist/execution/identity/jwks.js +252 -0
- package/dist/execution/identity/signing.d.ts +9 -0
- package/dist/execution/identity/signing.js +28 -0
- package/dist/execution/index.d.ts +5 -0
- package/dist/execution/index.js +3 -0
- package/dist/execution/invocation/admission/authentication.d.ts +13 -0
- package/dist/execution/invocation/admission/authentication.js +142 -0
- package/dist/execution/invocation/admission/authority.d.ts +34 -0
- package/dist/execution/invocation/admission/authority.js +23 -0
- package/dist/execution/invocation/admission/index.d.ts +5 -0
- package/dist/execution/invocation/admission/index.js +4 -0
- package/dist/execution/invocation/admission/input.d.ts +2 -0
- package/dist/execution/invocation/admission/input.js +4 -0
- package/dist/execution/invocation/admission/target.d.ts +8 -0
- package/dist/execution/invocation/admission/target.js +30 -0
- package/dist/execution/invocation/dispatch/action.d.ts +3 -0
- package/dist/execution/invocation/dispatch/action.js +3 -0
- package/dist/execution/invocation/dispatch/context.d.ts +22 -0
- package/dist/execution/invocation/dispatch/context.js +43 -0
- package/dist/execution/invocation/dispatch/index.d.ts +5 -0
- package/dist/execution/invocation/dispatch/index.js +5 -0
- package/dist/execution/invocation/dispatch/receiver.d.ts +4 -0
- package/dist/execution/invocation/dispatch/receiver.js +18 -0
- package/dist/execution/invocation/dispatch/select.d.ts +10 -0
- package/dist/execution/invocation/dispatch/select.js +20 -0
- package/dist/execution/invocation/dispatch/workflow.d.ts +4 -0
- package/dist/execution/invocation/dispatch/workflow.js +11 -0
- package/dist/execution/invocation/handler.d.ts +7 -0
- package/dist/execution/invocation/handler.js +37 -0
- package/dist/execution/invocation/index.d.ts +5 -0
- package/dist/execution/invocation/index.js +3 -0
- package/dist/execution/invocation/integration/call.d.ts +5 -0
- package/dist/execution/invocation/integration/call.js +19 -0
- package/dist/execution/invocation/integration/clients.d.ts +5 -0
- package/dist/execution/invocation/integration/clients.js +4 -0
- package/dist/execution/invocation/integration/index.d.ts +2 -0
- package/dist/execution/invocation/integration/index.js +2 -0
- package/dist/execution/invocation/invocation.d.ts +10 -0
- package/dist/execution/invocation/invocation.js +53 -0
- package/dist/execution/invocation/lifecycle/active.d.ts +4 -0
- package/dist/execution/invocation/lifecycle/active.js +61 -0
- package/dist/execution/invocation/lifecycle/index.d.ts +1 -0
- package/dist/execution/invocation/lifecycle/index.js +1 -0
- package/dist/execution/invocation/result/errors.d.ts +22 -0
- package/dist/execution/invocation/result/errors.js +92 -0
- package/dist/execution/invocation/result/index.d.ts +4 -0
- package/dist/execution/invocation/result/index.js +3 -0
- package/dist/execution/invocation/result/project.d.ts +3 -0
- package/dist/execution/invocation/result/project.js +186 -0
- package/dist/execution/invocation/result/validate.d.ts +4 -0
- package/dist/execution/invocation/result/validate.js +25 -0
- package/dist/execution/node/index.d.ts +2 -0
- package/dist/execution/node/index.js +1 -0
- package/dist/execution/node/listener.d.ts +10 -0
- package/dist/execution/node/listener.js +25 -0
- package/dist/execution/node/serve.d.ts +9 -0
- package/dist/execution/node/serve.js +44 -0
- package/dist/execution/runtime/admission.d.ts +3 -0
- package/dist/execution/runtime/admission.js +8 -0
- package/dist/execution/runtime/index.d.ts +5 -0
- package/dist/execution/runtime/index.js +5 -0
- package/dist/execution/runtime/initialize.d.ts +11 -0
- package/dist/execution/runtime/initialize.js +13 -0
- package/dist/execution/runtime/integrations.d.ts +3 -0
- package/dist/execution/runtime/integrations.js +5 -0
- package/dist/execution/runtime/load.d.ts +14 -0
- package/dist/execution/runtime/load.js +12 -0
- package/dist/execution/runtime/providers.d.ts +3 -0
- package/dist/execution/runtime/providers.js +12 -0
- package/dist/execution/serve.d.ts +27 -0
- package/dist/execution/serve.js +61 -0
- package/dist/execution/service/create.d.ts +4 -0
- package/dist/execution/service/create.js +113 -0
- package/dist/execution/service/errors.d.ts +3 -0
- package/dist/execution/service/errors.js +3 -0
- package/dist/execution/service/index.d.ts +3 -0
- package/dist/execution/service/index.js +1 -0
- package/dist/execution/service/initialization.d.ts +6 -0
- package/dist/execution/service/initialization.js +18 -0
- package/dist/execution/service/lifecycle.d.ts +7 -0
- package/dist/execution/service/lifecycle.js +25 -0
- package/dist/execution/service/publication/delivery.d.ts +2 -0
- package/dist/execution/service/publication/delivery.js +9 -0
- package/dist/execution/service/publication/index.d.ts +3 -0
- package/dist/execution/service/publication/index.js +3 -0
- package/dist/execution/service/publication/installation.d.ts +3 -0
- package/dist/execution/service/publication/installation.js +8 -0
- package/dist/execution/service/publication/source.d.ts +3 -0
- package/dist/execution/service/publication/source.js +11 -0
- package/dist/execution/service/release.d.ts +7 -0
- package/dist/execution/service/release.js +12 -0
- package/dist/execution/service/service.d.ts +23 -0
- package/dist/execution/service/service.js +1 -0
- package/dist/index.d.ts +19 -21
- package/dist/index.js +10 -11
- package/dist/platform/auth/exchange/configuration.d.ts +3 -0
- package/dist/platform/auth/exchange/configuration.js +3 -0
- package/dist/platform/auth/exchange/index.d.ts +2 -0
- package/dist/platform/auth/exchange/index.js +2 -0
- package/dist/platform/auth/exchange/response.d.ts +2 -0
- package/dist/platform/auth/exchange/response.js +2 -0
- package/dist/platform/auth/index.d.ts +4 -0
- package/dist/platform/auth/index.js +4 -0
- package/dist/platform/client/index.d.ts +5 -0
- package/dist/platform/client/index.js +4 -0
- package/dist/platform/client/schema/index.d.ts +2 -0
- package/dist/platform/client/schema/index.js +2 -0
- package/dist/platform/client/session/index.d.ts +2 -0
- package/dist/platform/client/session/index.js +2 -0
- package/dist/platform/client/store/index.d.ts +2 -0
- package/dist/platform/client/store/index.js +2 -0
- package/dist/platform/graph/class/index.d.ts +4 -0
- package/dist/platform/graph/class/index.js +2 -0
- package/dist/platform/graph/document/index.d.ts +2 -0
- package/dist/platform/graph/document/index.js +2 -0
- package/dist/platform/graph/edge/index.d.ts +2 -0
- package/dist/platform/graph/edge/index.js +2 -0
- package/dist/platform/graph/index.d.ts +13 -0
- package/dist/platform/graph/index.js +12 -0
- package/dist/platform/graph/node/index.d.ts +2 -0
- package/dist/platform/graph/node/index.js +2 -0
- package/dist/platform/graph/path/index.d.ts +2 -0
- package/dist/platform/graph/path/index.js +2 -0
- package/dist/platform/graph/properties/index.d.ts +2 -0
- package/dist/platform/graph/properties/index.js +2 -0
- package/dist/platform/invocation/index.d.ts +2 -0
- package/dist/platform/invocation/index.js +2 -0
- package/dist/platform/publication/index.d.ts +2 -0
- package/dist/platform/publication/index.js +2 -0
- package/dist/platform/result/index.d.ts +2 -0
- package/dist/platform/result/index.js +1 -0
- package/dist/platform/result/result.d.ts +10 -0
- package/dist/platform/result/result.js +6 -0
- package/dist/platform/schema/addressing/index.d.ts +3 -0
- package/dist/platform/schema/addressing/index.js +2 -0
- package/dist/platform/schema/index.d.ts +18 -0
- package/dist/platform/schema/index.js +8 -0
- package/dist/platform/value/index.d.ts +3 -0
- package/dist/platform/value/index.js +3 -0
- package/dist/tooling/cli/arguments.d.ts +13 -0
- package/dist/tooling/cli/arguments.js +167 -0
- package/dist/tooling/cli/bin.d.ts +6 -0
- package/dist/tooling/cli/bin.js +36 -0
- package/dist/tooling/cli/bun.d.ts +15 -0
- package/dist/tooling/cli/bun.js +108 -0
- package/dist/tooling/cli/development/develop.d.ts +8 -0
- package/dist/tooling/cli/development/develop.js +284 -0
- package/dist/tooling/cli/development/lifecycle.d.ts +9 -0
- package/dist/tooling/cli/development/lifecycle.js +39 -0
- package/dist/tooling/cli/development/project-lock.d.ts +17 -0
- package/dist/tooling/cli/development/project-lock.js +193 -0
- package/dist/tooling/cli/development/rebuild.d.ts +13 -0
- package/dist/tooling/cli/development/rebuild.js +58 -0
- package/dist/tooling/cli/development/source-watch.d.ts +14 -0
- package/dist/tooling/cli/development/source-watch.js +92 -0
- package/dist/tooling/cli/dotenv.d.ts +17 -0
- package/dist/tooling/cli/dotenv.js +54 -0
- package/dist/tooling/cli/failure.d.ts +2 -0
- package/dist/tooling/cli/failure.js +13 -0
- package/dist/tooling/cli/help.d.ts +8 -0
- package/dist/tooling/cli/help.js +117 -0
- package/dist/tooling/cli/index.d.ts +13 -0
- package/dist/tooling/cli/index.js +13 -0
- package/dist/tooling/cli/log.d.ts +10 -0
- package/dist/tooling/cli/log.js +16 -0
- package/dist/tooling/cli/orchestrate.d.ts +1 -0
- package/dist/tooling/cli/orchestrate.js +159 -0
- package/dist/tooling/cli/run.d.ts +1 -0
- package/dist/tooling/cli/run.js +1 -0
- package/dist/tooling/cli/source.d.ts +2 -0
- package/dist/tooling/cli/source.js +2 -0
- package/dist/tooling/linter/adapters/typescript/discover.d.ts +3 -0
- package/dist/tooling/linter/adapters/typescript/discover.js +423 -0
- package/dist/tooling/linter/adapters/typescript/evidence-admission.d.ts +4 -0
- package/dist/tooling/linter/adapters/typescript/evidence-admission.js +21 -0
- package/dist/tooling/linter/adapters/typescript/imports.d.ts +6 -0
- package/dist/tooling/linter/adapters/typescript/imports.js +170 -0
- package/dist/tooling/linter/adapters/typescript/index.d.ts +48 -0
- package/dist/tooling/linter/adapters/typescript/index.js +8 -0
- package/dist/tooling/linter/adapters/typescript/query-collection-type.d.ts +4 -0
- package/dist/tooling/linter/adapters/typescript/query-collection-type.js +94 -0
- package/dist/tooling/linter/adapters/typescript/query-observation.d.ts +3 -0
- package/dist/tooling/linter/adapters/typescript/query-observation.js +228 -0
- package/dist/tooling/linter/adapters/typescript/suppression-directives.d.ts +4 -0
- package/dist/tooling/linter/adapters/typescript/suppression-directives.js +84 -0
- package/dist/tooling/linter/adapters/typescript/syntax.d.ts +38 -0
- package/dist/tooling/linter/adapters/typescript/syntax.js +182 -0
- package/dist/tooling/linter/adapters/typescript/type-universe.d.ts +1 -0
- package/dist/tooling/linter/adapters/typescript/type-universe.js +264 -0
- package/dist/tooling/linter/analysis/query/decision.d.ts +4 -0
- package/dist/tooling/linter/analysis/query/decision.js +73 -0
- package/dist/tooling/linter/analysis/query/index.d.ts +3 -0
- package/dist/tooling/linter/analysis/query/index.js +2 -0
- package/dist/tooling/linter/analysis/query/observation.d.ts +35 -0
- package/dist/tooling/linter/analysis/query/observation.js +12 -0
- package/dist/tooling/linter/catalog/compile.d.ts +2 -0
- package/dist/tooling/linter/catalog/compile.js +110 -0
- package/dist/tooling/linter/catalog/index.d.ts +18 -0
- package/dist/tooling/linter/catalog/index.js +2 -0
- package/dist/tooling/linter/catalog/revision.d.ts +6 -0
- package/dist/tooling/linter/catalog/revision.js +12 -0
- package/dist/tooling/linter/diagnostics/error.d.ts +9 -0
- package/dist/tooling/linter/diagnostics/error.js +9 -0
- package/dist/tooling/linter/diagnostics/index.d.ts +28 -0
- package/dist/tooling/linter/diagnostics/index.js +2 -0
- package/dist/tooling/linter/diagnostics/sort.d.ts +2 -0
- package/dist/tooling/linter/diagnostics/sort.js +26 -0
- package/dist/tooling/linter/evaluation/binding/bind.d.ts +4 -0
- package/dist/tooling/linter/evaluation/binding/bind.js +384 -0
- package/dist/tooling/linter/evaluation/binding/diagnostic.d.ts +4 -0
- package/dist/tooling/linter/evaluation/binding/diagnostic.js +16 -0
- package/dist/tooling/linter/evaluation/binding/index.d.ts +1 -0
- package/dist/tooling/linter/evaluation/binding/index.js +1 -0
- package/dist/tooling/linter/evaluation/contract/availability.d.ts +30 -0
- package/dist/tooling/linter/evaluation/contract/availability.js +1 -0
- package/dist/tooling/linter/evaluation/contract/decision.d.ts +25 -0
- package/dist/tooling/linter/evaluation/contract/decision.js +1 -0
- package/dist/tooling/linter/evaluation/contract/evidence.d.ts +11 -0
- package/dist/tooling/linter/evaluation/contract/evidence.js +1 -0
- package/dist/tooling/linter/evaluation/contract/implementation.d.ts +21 -0
- package/dist/tooling/linter/evaluation/contract/implementation.js +1 -0
- package/dist/tooling/linter/evaluation/contract/index.d.ts +4 -0
- package/dist/tooling/linter/evaluation/contract/index.js +1 -0
- package/dist/tooling/linter/evaluation/index.d.ts +2 -0
- package/dist/tooling/linter/evaluation/index.js +1 -0
- package/dist/tooling/linter/implementations/source/actions.d.ts +2 -0
- package/dist/tooling/linter/implementations/source/actions.js +184 -0
- package/dist/tooling/linter/implementations/source/global.d.ts +2 -0
- package/dist/tooling/linter/implementations/source/global.js +963 -0
- package/dist/tooling/linter/implementations/source/index.d.ts +3 -0
- package/dist/tooling/linter/implementations/source/index.js +3 -0
- package/dist/tooling/linter/implementations/source/integrations.d.ts +2 -0
- package/dist/tooling/linter/implementations/source/integrations.js +40 -0
- package/dist/tooling/linter/implementations/source/migrations.d.ts +2 -0
- package/dist/tooling/linter/implementations/source/migrations.js +114 -0
- package/dist/tooling/linter/implementations/source/mutations.d.ts +2 -0
- package/dist/tooling/linter/implementations/source/mutations.js +946 -0
- package/dist/tooling/linter/implementations/source/providers.d.ts +2 -0
- package/dist/tooling/linter/implementations/source/providers.js +376 -0
- package/dist/tooling/linter/implementations/source/queries.d.ts +2 -0
- package/dist/tooling/linter/implementations/source/queries.js +1176 -0
- package/dist/tooling/linter/implementations/source/rules.d.ts +2 -0
- package/dist/tooling/linter/implementations/source/rules.js +140 -0
- package/dist/tooling/linter/implementations/source/schema.d.ts +2 -0
- package/dist/tooling/linter/implementations/source/schema.js +368 -0
- package/dist/tooling/linter/implementations/source/shared.d.ts +44 -0
- package/dist/tooling/linter/implementations/source/shared.js +319 -0
- package/dist/tooling/linter/implementations/source/state-machine.d.ts +24 -0
- package/dist/tooling/linter/implementations/source/state-machine.js +364 -0
- package/dist/tooling/linter/implementations/source/states.d.ts +2 -0
- package/dist/tooling/linter/implementations/source/states.js +367 -0
- package/dist/tooling/linter/implementations/source/tests.d.ts +2 -0
- package/dist/tooling/linter/implementations/source/tests.js +35 -0
- package/dist/tooling/linter/implementations/source/ui.d.ts +2 -0
- package/dist/tooling/linter/implementations/source/ui.js +20 -0
- package/dist/tooling/linter/implementations/source/utility-rules.d.ts +2 -0
- package/dist/tooling/linter/implementations/source/utility-rules.js +28 -0
- package/dist/tooling/linter/implementations/source/verifier.d.ts +16 -0
- package/dist/tooling/linter/implementations/source/verifier.js +52 -0
- package/dist/tooling/linter/implementations/source/verifiers.d.ts +2 -0
- package/dist/tooling/linter/implementations/source/verifiers.js +32 -0
- package/dist/tooling/linter/implementations/source/views.d.ts +2 -0
- package/dist/tooling/linter/implementations/source/views.js +57 -0
- package/dist/tooling/linter/implementations/source/workflows.d.ts +2 -0
- package/dist/tooling/linter/implementations/source/workflows.js +265 -0
- package/dist/tooling/linter/index.d.ts +9 -0
- package/dist/tooling/linter/index.js +3 -0
- package/dist/tooling/linter/lint.d.ts +25 -0
- package/dist/tooling/linter/lint.js +70 -0
- package/dist/tooling/linter/oxlint/index.d.ts +3 -0
- package/dist/tooling/linter/oxlint/index.js +1 -0
- package/dist/tooling/linter/oxlint/process.d.ts +18 -0
- package/dist/tooling/linter/oxlint/process.js +169 -0
- package/dist/tooling/linter/oxlint/run.d.ts +7 -0
- package/dist/tooling/linter/oxlint/run.js +253 -0
- package/dist/tooling/linter/oxlint-config/ignore-patterns.d.ts +5 -0
- package/dist/tooling/linter/oxlint-config/ignore-patterns.js +9 -0
- package/dist/tooling/linter/oxlint-config/index.d.ts +4 -0
- package/dist/tooling/linter/oxlint-config/index.js +38 -0
- package/dist/tooling/linter/packs/domain.d.ts +2 -0
- package/dist/tooling/linter/packs/domain.js +7 -0
- package/dist/tooling/linter/packs/index.d.ts +8 -0
- package/dist/tooling/linter/packs/index.js +1 -0
- package/dist/tooling/linter/policy/compile.d.ts +2 -0
- package/dist/tooling/linter/policy/compile.js +271 -0
- package/dist/tooling/linter/policy/configuration.d.ts +21 -0
- package/dist/tooling/linter/policy/configuration.js +149 -0
- package/dist/tooling/linter/policy/generated.d.ts +4 -0
- package/dist/tooling/linter/policy/generated.js +856 -0
- package/dist/tooling/linter/policy/index.d.ts +45 -0
- package/dist/tooling/linter/policy/index.js +3 -0
- package/dist/tooling/linter/qualification/index.d.ts +10 -0
- package/dist/tooling/linter/qualification/index.js +2 -0
- package/dist/tooling/linter/qualification/query-fixtures.d.ts +2 -0
- package/dist/tooling/linter/qualification/query-fixtures.js +68 -0
- package/dist/tooling/linter/qualification/runner.d.ts +3 -0
- package/dist/tooling/linter/qualification/runner.js +6 -0
- package/dist/tooling/linter/report/format.d.ts +3 -0
- package/dist/tooling/linter/report/format.js +46 -0
- package/dist/tooling/linter/report/index.d.ts +2 -0
- package/dist/tooling/linter/report/index.js +1 -0
- package/dist/tooling/linter/requirements/index.d.ts +2 -0
- package/dist/tooling/linter/requirements/index.js +1 -0
- package/dist/tooling/linter/requirements/registry.d.ts +3 -0
- package/dist/tooling/linter/requirements/registry.js +192 -0
- package/dist/tooling/linter/requirements/requirement.d.ts +8 -0
- package/dist/tooling/linter/requirements/requirement.js +1 -0
- package/dist/tooling/linter/suppression/apply.d.ts +3 -0
- package/dist/tooling/linter/suppression/apply.js +47 -0
- package/dist/tooling/linter/suppression/directive.d.ts +10 -0
- package/dist/tooling/linter/suppression/directive.js +1 -0
- package/dist/tooling/linter/suppression/index.d.ts +13 -0
- package/dist/tooling/linter/suppression/index.js +1 -0
- package/dist/tooling/packaging/admission.d.ts +9 -0
- package/dist/tooling/packaging/admission.js +93 -0
- package/dist/tooling/packaging/compile.d.ts +15 -0
- package/dist/tooling/packaging/compile.js +366 -0
- package/dist/tooling/packaging/declarations/admission.d.ts +7 -0
- package/dist/tooling/packaging/declarations/admission.js +56 -0
- package/dist/tooling/packaging/declarations/admission.typecheck.d.ts +7 -0
- package/dist/tooling/packaging/declarations/admission.typecheck.js +1 -0
- package/dist/tooling/packaging/declarations/imports.d.ts +16 -0
- package/dist/tooling/packaging/declarations/imports.js +50 -0
- package/dist/tooling/packaging/declarations/index.d.ts +7 -0
- package/dist/tooling/packaging/declarations/index.js +9 -0
- package/dist/tooling/packaging/declarations/normalize.d.ts +13 -0
- package/dist/tooling/packaging/declarations/normalize.js +135 -0
- package/dist/tooling/packaging/declarations/ownership.d.ts +9 -0
- package/dist/tooling/packaging/declarations/ownership.js +85 -0
- package/dist/tooling/packaging/declarations/references.d.ts +5 -0
- package/dist/tooling/packaging/declarations/references.js +38 -0
- package/dist/tooling/packaging/declarations/transform.d.ts +11 -0
- package/dist/tooling/packaging/declarations/transform.js +76 -0
- package/dist/tooling/packaging/declarations/verify.d.ts +11 -0
- package/dist/tooling/packaging/declarations/verify.js +44 -0
- package/dist/tooling/packaging/exports.d.ts +11 -0
- package/dist/tooling/packaging/exports.js +61 -0
- package/dist/tooling/packaging/index.d.ts +2 -0
- package/dist/tooling/packaging/index.js +1 -0
- package/dist/tooling/packaging/javascript.d.ts +3 -0
- package/dist/tooling/packaging/javascript.js +71 -0
- package/dist/tooling/packaging/packaging.d.ts +10 -0
- package/dist/tooling/packaging/packaging.js +198 -0
- package/dist/tooling/packaging/self.d.ts +9 -0
- package/dist/tooling/packaging/self.js +25 -0
- package/package.json +180 -113
- package/dist/auth/exchange.d.ts +0 -11
- package/dist/auth/exchange.d.ts.map +0 -1
- package/dist/auth/exchange.js +0 -8
- package/dist/auth/exchange.js.map +0 -1
- package/dist/auth/index.d.ts +0 -9
- package/dist/auth/index.d.ts.map +0 -1
- package/dist/auth/index.js +0 -4
- package/dist/auth/index.js.map +0 -1
- package/dist/capability/client.d.ts +0 -25
- package/dist/capability/client.d.ts.map +0 -1
- package/dist/capability/client.js +0 -147
- package/dist/capability/client.js.map +0 -1
- package/dist/capability/contract.d.ts +0 -70
- package/dist/capability/contract.d.ts.map +0 -1
- package/dist/capability/contract.js +0 -3
- package/dist/capability/contract.js.map +0 -1
- package/dist/capability/define.d.ts +0 -14
- package/dist/capability/define.d.ts.map +0 -1
- package/dist/capability/define.js +0 -145
- package/dist/capability/define.js.map +0 -1
- package/dist/capability/index.d.ts +0 -3
- package/dist/capability/index.d.ts.map +0 -1
- package/dist/capability/index.js +0 -2
- package/dist/capability/index.js.map +0 -1
- package/dist/cli/arguments.d.ts +0 -21
- package/dist/cli/arguments.d.ts.map +0 -1
- package/dist/cli/arguments.js +0 -220
- package/dist/cli/arguments.js.map +0 -1
- package/dist/cli/bin.d.ts +0 -7
- package/dist/cli/bin.d.ts.map +0 -1
- package/dist/cli/bin.js +0 -15
- package/dist/cli/bin.js.map +0 -1
- package/dist/cli/dotenv.d.ts +0 -18
- package/dist/cli/dotenv.d.ts.map +0 -1
- package/dist/cli/dotenv.js +0 -55
- package/dist/cli/dotenv.js.map +0 -1
- package/dist/cli/index.d.ts +0 -14
- package/dist/cli/index.d.ts.map +0 -1
- package/dist/cli/index.js +0 -14
- package/dist/cli/index.js.map +0 -1
- package/dist/cli/log.d.ts +0 -11
- package/dist/cli/log.d.ts.map +0 -1
- package/dist/cli/log.js +0 -17
- package/dist/cli/log.js.map +0 -1
- package/dist/cli/publish.d.ts +0 -35
- package/dist/cli/publish.d.ts.map +0 -1
- package/dist/cli/publish.js +0 -271
- package/dist/cli/publish.js.map +0 -1
- package/dist/cli/run.d.ts +0 -30
- package/dist/cli/run.d.ts.map +0 -1
- package/dist/cli/run.js +0 -390
- package/dist/cli/run.js.map +0 -1
- package/dist/deployment/artifact/bindings.d.ts +0 -7
- package/dist/deployment/artifact/bindings.d.ts.map +0 -1
- package/dist/deployment/artifact/bindings.js +0 -44
- package/dist/deployment/artifact/bindings.js.map +0 -1
- package/dist/deployment/artifact/deployment.d.ts +0 -50
- package/dist/deployment/artifact/deployment.d.ts.map +0 -1
- package/dist/deployment/artifact/deployment.js +0 -124
- package/dist/deployment/artifact/deployment.js.map +0 -1
- package/dist/deployment/artifact/index.d.ts +0 -5
- package/dist/deployment/artifact/index.d.ts.map +0 -1
- package/dist/deployment/artifact/index.js +0 -4
- package/dist/deployment/artifact/index.js.map +0 -1
- package/dist/deployment/check/check.d.ts +0 -8
- package/dist/deployment/check/check.d.ts.map +0 -1
- package/dist/deployment/check/check.js +0 -87
- package/dist/deployment/check/check.js.map +0 -1
- package/dist/deployment/check/contract.d.ts +0 -29
- package/dist/deployment/check/contract.d.ts.map +0 -1
- package/dist/deployment/check/contract.js +0 -2
- package/dist/deployment/check/contract.js.map +0 -1
- package/dist/deployment/check/index.d.ts +0 -3
- package/dist/deployment/check/index.d.ts.map +0 -1
- package/dist/deployment/check/index.js +0 -2
- package/dist/deployment/check/index.js.map +0 -1
- package/dist/deployment/index.d.ts.map +0 -1
- package/dist/deployment/index.js.map +0 -1
- package/dist/deployment/provider/adapter.d.ts +0 -56
- package/dist/deployment/provider/adapter.d.ts.map +0 -1
- package/dist/deployment/provider/adapter.js +0 -84
- package/dist/deployment/provider/adapter.js.map +0 -1
- package/dist/deployment/provider/config.d.ts +0 -10
- package/dist/deployment/provider/config.d.ts.map +0 -1
- package/dist/deployment/provider/config.js +0 -8
- package/dist/deployment/provider/config.js.map +0 -1
- package/dist/deployment/provider/index.d.ts +0 -5
- package/dist/deployment/provider/index.d.ts.map +0 -1
- package/dist/deployment/provider/index.js +0 -3
- package/dist/deployment/provider/index.js.map +0 -1
- package/dist/domain/app.d.ts +0 -34
- package/dist/domain/app.d.ts.map +0 -1
- package/dist/domain/app.js +0 -2
- package/dist/domain/app.js.map +0 -1
- package/dist/domain/context.d.ts +0 -68
- package/dist/domain/context.d.ts.map +0 -1
- package/dist/domain/context.js +0 -2
- package/dist/domain/context.js.map +0 -1
- package/dist/domain/define.d.ts +0 -101
- package/dist/domain/define.d.ts.map +0 -1
- package/dist/domain/define.js +0 -81
- package/dist/domain/define.js.map +0 -1
- package/dist/domain/handlers.d.ts +0 -53
- package/dist/domain/handlers.d.ts.map +0 -1
- package/dist/domain/handlers.js +0 -88
- package/dist/domain/handlers.js.map +0 -1
- package/dist/domain/implement.d.ts +0 -5
- package/dist/domain/implement.d.ts.map +0 -1
- package/dist/domain/implement.js +0 -23
- package/dist/domain/implement.js.map +0 -1
- package/dist/domain/index.d.ts +0 -14
- package/dist/domain/index.d.ts.map +0 -1
- package/dist/domain/index.js +0 -8
- package/dist/domain/index.js.map +0 -1
- package/dist/domain/requirements.d.ts +0 -26
- package/dist/domain/requirements.d.ts.map +0 -1
- package/dist/domain/requirements.js +0 -98
- package/dist/domain/requirements.js.map +0 -1
- package/dist/graph/class/index.d.ts +0 -3
- package/dist/graph/class/index.d.ts.map +0 -1
- package/dist/graph/class/index.js +0 -3
- package/dist/graph/class/index.js.map +0 -1
- package/dist/graph/edge/index.d.ts +0 -3
- package/dist/graph/edge/index.d.ts.map +0 -1
- package/dist/graph/edge/index.js +0 -3
- package/dist/graph/edge/index.js.map +0 -1
- package/dist/graph/index.d.ts +0 -10
- package/dist/graph/index.d.ts.map +0 -1
- package/dist/graph/index.js +0 -9
- package/dist/graph/index.js.map +0 -1
- package/dist/graph/model/index.d.ts +0 -3
- package/dist/graph/model/index.d.ts.map +0 -1
- package/dist/graph/model/index.js +0 -3
- package/dist/graph/model/index.js.map +0 -1
- package/dist/graph/node/index.d.ts +0 -3
- package/dist/graph/node/index.d.ts.map +0 -1
- package/dist/graph/node/index.js +0 -3
- package/dist/graph/node/index.js.map +0 -1
- package/dist/graph/path/index.d.ts +0 -3
- package/dist/graph/path/index.d.ts.map +0 -1
- package/dist/graph/path/index.js +0 -3
- package/dist/graph/path/index.js.map +0 -1
- package/dist/graph/properties/index.d.ts +0 -3
- package/dist/graph/properties/index.d.ts.map +0 -1
- package/dist/graph/properties/index.js +0 -3
- package/dist/graph/properties/index.js.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/invocation/handler.d.ts +0 -51
- package/dist/invocation/handler.d.ts.map +0 -1
- package/dist/invocation/handler.js +0 -289
- package/dist/invocation/handler.js.map +0 -1
- package/dist/invocation/index.d.ts +0 -3
- package/dist/invocation/index.d.ts.map +0 -1
- package/dist/invocation/index.js +0 -2
- package/dist/invocation/index.js.map +0 -1
- package/dist/invocation/receiver.d.ts +0 -5
- package/dist/invocation/receiver.d.ts.map +0 -1
- package/dist/invocation/receiver.js +0 -70
- package/dist/invocation/receiver.js.map +0 -1
- package/dist/invocation/result.d.ts +0 -5
- package/dist/invocation/result.d.ts.map +0 -1
- package/dist/invocation/result.js +0 -146
- package/dist/invocation/result.js.map +0 -1
- package/dist/invocation/selection.d.ts +0 -22
- package/dist/invocation/selection.d.ts.map +0 -1
- package/dist/invocation/selection.js +0 -107
- package/dist/invocation/selection.js.map +0 -1
- package/dist/linter/adapters/typescript/discover.d.ts +0 -4
- package/dist/linter/adapters/typescript/discover.d.ts.map +0 -1
- package/dist/linter/adapters/typescript/discover.js +0 -412
- package/dist/linter/adapters/typescript/discover.js.map +0 -1
- package/dist/linter/adapters/typescript/evidence-admission.d.ts +0 -5
- package/dist/linter/adapters/typescript/evidence-admission.d.ts.map +0 -1
- package/dist/linter/adapters/typescript/evidence-admission.js +0 -22
- package/dist/linter/adapters/typescript/evidence-admission.js.map +0 -1
- package/dist/linter/adapters/typescript/imports.d.ts +0 -7
- package/dist/linter/adapters/typescript/imports.d.ts.map +0 -1
- package/dist/linter/adapters/typescript/imports.js +0 -171
- package/dist/linter/adapters/typescript/imports.js.map +0 -1
- package/dist/linter/adapters/typescript/index.d.ts +0 -48
- package/dist/linter/adapters/typescript/index.d.ts.map +0 -1
- package/dist/linter/adapters/typescript/index.js +0 -8
- package/dist/linter/adapters/typescript/index.js.map +0 -1
- package/dist/linter/adapters/typescript/query-observation.d.ts +0 -4
- package/dist/linter/adapters/typescript/query-observation.d.ts.map +0 -1
- package/dist/linter/adapters/typescript/query-observation.js +0 -172
- package/dist/linter/adapters/typescript/query-observation.js.map +0 -1
- package/dist/linter/adapters/typescript/suppression-directives.d.ts +0 -5
- package/dist/linter/adapters/typescript/suppression-directives.d.ts.map +0 -1
- package/dist/linter/adapters/typescript/suppression-directives.js +0 -85
- package/dist/linter/adapters/typescript/suppression-directives.js.map +0 -1
- package/dist/linter/adapters/typescript/syntax.d.ts +0 -39
- package/dist/linter/adapters/typescript/syntax.d.ts.map +0 -1
- package/dist/linter/adapters/typescript/syntax.js +0 -183
- package/dist/linter/adapters/typescript/syntax.js.map +0 -1
- package/dist/linter/adapters/typescript/type-universe.d.ts +0 -2
- package/dist/linter/adapters/typescript/type-universe.d.ts.map +0 -1
- package/dist/linter/adapters/typescript/type-universe.js +0 -265
- package/dist/linter/adapters/typescript/type-universe.js.map +0 -1
- package/dist/linter/catalog/compile.d.ts +0 -3
- package/dist/linter/catalog/compile.d.ts.map +0 -1
- package/dist/linter/catalog/compile.js +0 -111
- package/dist/linter/catalog/compile.js.map +0 -1
- package/dist/linter/catalog/index.d.ts +0 -19
- package/dist/linter/catalog/index.d.ts.map +0 -1
- package/dist/linter/catalog/index.js +0 -3
- package/dist/linter/catalog/index.js.map +0 -1
- package/dist/linter/catalog/revision.d.ts +0 -7
- package/dist/linter/catalog/revision.d.ts.map +0 -1
- package/dist/linter/catalog/revision.js +0 -13
- package/dist/linter/catalog/revision.js.map +0 -1
- package/dist/linter/diagnostics/error.d.ts +0 -10
- package/dist/linter/diagnostics/error.d.ts.map +0 -1
- package/dist/linter/diagnostics/error.js +0 -10
- package/dist/linter/diagnostics/error.js.map +0 -1
- package/dist/linter/diagnostics/index.d.ts +0 -29
- package/dist/linter/diagnostics/index.d.ts.map +0 -1
- package/dist/linter/diagnostics/index.js +0 -3
- package/dist/linter/diagnostics/index.js.map +0 -1
- package/dist/linter/diagnostics/sort.d.ts +0 -3
- package/dist/linter/diagnostics/sort.d.ts.map +0 -1
- package/dist/linter/diagnostics/sort.js +0 -27
- package/dist/linter/diagnostics/sort.js.map +0 -1
- package/dist/linter/evaluation/binding/bind.d.ts +0 -5
- package/dist/linter/evaluation/binding/bind.d.ts.map +0 -1
- package/dist/linter/evaluation/binding/bind.js +0 -356
- package/dist/linter/evaluation/binding/bind.js.map +0 -1
- package/dist/linter/evaluation/binding/diagnostic.d.ts +0 -5
- package/dist/linter/evaluation/binding/diagnostic.d.ts.map +0 -1
- package/dist/linter/evaluation/binding/diagnostic.js +0 -17
- package/dist/linter/evaluation/binding/diagnostic.js.map +0 -1
- package/dist/linter/evaluation/binding/index.d.ts +0 -2
- package/dist/linter/evaluation/binding/index.d.ts.map +0 -1
- package/dist/linter/evaluation/binding/index.js +0 -2
- package/dist/linter/evaluation/binding/index.js.map +0 -1
- package/dist/linter/evaluation/contract/availability.d.ts +0 -28
- package/dist/linter/evaluation/contract/availability.d.ts.map +0 -1
- package/dist/linter/evaluation/contract/availability.js +0 -2
- package/dist/linter/evaluation/contract/availability.js.map +0 -1
- package/dist/linter/evaluation/contract/decision.d.ts +0 -26
- package/dist/linter/evaluation/contract/decision.d.ts.map +0 -1
- package/dist/linter/evaluation/contract/decision.js +0 -2
- package/dist/linter/evaluation/contract/decision.js.map +0 -1
- package/dist/linter/evaluation/contract/evidence.d.ts +0 -12
- package/dist/linter/evaluation/contract/evidence.d.ts.map +0 -1
- package/dist/linter/evaluation/contract/evidence.js +0 -2
- package/dist/linter/evaluation/contract/evidence.js.map +0 -1
- package/dist/linter/evaluation/contract/implementation.d.ts +0 -22
- package/dist/linter/evaluation/contract/implementation.d.ts.map +0 -1
- package/dist/linter/evaluation/contract/implementation.js +0 -2
- package/dist/linter/evaluation/contract/implementation.js.map +0 -1
- package/dist/linter/evaluation/contract/index.d.ts +0 -5
- package/dist/linter/evaluation/contract/index.d.ts.map +0 -1
- package/dist/linter/evaluation/contract/index.js +0 -2
- package/dist/linter/evaluation/contract/index.js.map +0 -1
- package/dist/linter/evaluation/index.d.ts +0 -3
- package/dist/linter/evaluation/index.d.ts.map +0 -1
- package/dist/linter/evaluation/index.js +0 -2
- package/dist/linter/evaluation/index.js.map +0 -1
- package/dist/linter/implementations/source/capabilities.d.ts +0 -3
- package/dist/linter/implementations/source/capabilities.d.ts.map +0 -1
- package/dist/linter/implementations/source/capabilities.js +0 -41
- package/dist/linter/implementations/source/capabilities.js.map +0 -1
- package/dist/linter/implementations/source/contract.d.ts +0 -17
- package/dist/linter/implementations/source/contract.d.ts.map +0 -1
- package/dist/linter/implementations/source/contract.js +0 -53
- package/dist/linter/implementations/source/contract.js.map +0 -1
- package/dist/linter/implementations/source/functions.d.ts +0 -3
- package/dist/linter/implementations/source/functions.d.ts.map +0 -1
- package/dist/linter/implementations/source/functions.js +0 -102
- package/dist/linter/implementations/source/functions.js.map +0 -1
- package/dist/linter/implementations/source/global.d.ts +0 -3
- package/dist/linter/implementations/source/global.d.ts.map +0 -1
- package/dist/linter/implementations/source/global.js +0 -814
- package/dist/linter/implementations/source/global.js.map +0 -1
- package/dist/linter/implementations/source/index.d.ts +0 -4
- package/dist/linter/implementations/source/index.d.ts.map +0 -1
- package/dist/linter/implementations/source/index.js +0 -4
- package/dist/linter/implementations/source/index.js.map +0 -1
- package/dist/linter/implementations/source/integrations.d.ts +0 -3
- package/dist/linter/implementations/source/integrations.d.ts.map +0 -1
- package/dist/linter/implementations/source/integrations.js +0 -186
- package/dist/linter/implementations/source/integrations.js.map +0 -1
- package/dist/linter/implementations/source/migrations.d.ts +0 -3
- package/dist/linter/implementations/source/migrations.d.ts.map +0 -1
- package/dist/linter/implementations/source/migrations.js +0 -115
- package/dist/linter/implementations/source/migrations.js.map +0 -1
- package/dist/linter/implementations/source/mutations.d.ts +0 -3
- package/dist/linter/implementations/source/mutations.d.ts.map +0 -1
- package/dist/linter/implementations/source/mutations.js +0 -185
- package/dist/linter/implementations/source/mutations.js.map +0 -1
- package/dist/linter/implementations/source/queries.d.ts +0 -3
- package/dist/linter/implementations/source/queries.d.ts.map +0 -1
- package/dist/linter/implementations/source/queries.js +0 -1000
- package/dist/linter/implementations/source/queries.js.map +0 -1
- package/dist/linter/implementations/source/rules.d.ts +0 -3
- package/dist/linter/implementations/source/rules.d.ts.map +0 -1
- package/dist/linter/implementations/source/rules.js +0 -141
- package/dist/linter/implementations/source/rules.js.map +0 -1
- package/dist/linter/implementations/source/schema.d.ts +0 -3
- package/dist/linter/implementations/source/schema.d.ts.map +0 -1
- package/dist/linter/implementations/source/schema.js +0 -105
- package/dist/linter/implementations/source/schema.js.map +0 -1
- package/dist/linter/implementations/source/shared.d.ts +0 -42
- package/dist/linter/implementations/source/shared.d.ts.map +0 -1
- package/dist/linter/implementations/source/shared.js +0 -239
- package/dist/linter/implementations/source/shared.js.map +0 -1
- package/dist/linter/implementations/source/states.d.ts +0 -3
- package/dist/linter/implementations/source/states.d.ts.map +0 -1
- package/dist/linter/implementations/source/states.js +0 -2
- package/dist/linter/implementations/source/states.js.map +0 -1
- package/dist/linter/implementations/source/tests.d.ts +0 -3
- package/dist/linter/implementations/source/tests.d.ts.map +0 -1
- package/dist/linter/implementations/source/tests.js +0 -32
- package/dist/linter/implementations/source/tests.js.map +0 -1
- package/dist/linter/implementations/source/ui.d.ts +0 -3
- package/dist/linter/implementations/source/ui.d.ts.map +0 -1
- package/dist/linter/implementations/source/ui.js +0 -21
- package/dist/linter/implementations/source/ui.js.map +0 -1
- package/dist/linter/implementations/source/utils.d.ts +0 -3
- package/dist/linter/implementations/source/utils.d.ts.map +0 -1
- package/dist/linter/implementations/source/utils.js +0 -29
- package/dist/linter/implementations/source/utils.js.map +0 -1
- package/dist/linter/implementations/source/verifiers.d.ts +0 -3
- package/dist/linter/implementations/source/verifiers.d.ts.map +0 -1
- package/dist/linter/implementations/source/verifiers.js +0 -33
- package/dist/linter/implementations/source/verifiers.js.map +0 -1
- package/dist/linter/implementations/source/views.d.ts +0 -3
- package/dist/linter/implementations/source/views.d.ts.map +0 -1
- package/dist/linter/implementations/source/views.js +0 -36
- package/dist/linter/implementations/source/views.js.map +0 -1
- package/dist/linter/implementations/source/workflows.d.ts +0 -3
- package/dist/linter/implementations/source/workflows.d.ts.map +0 -1
- package/dist/linter/implementations/source/workflows.js +0 -308
- package/dist/linter/implementations/source/workflows.js.map +0 -1
- package/dist/linter/index.d.ts +0 -10
- package/dist/linter/index.d.ts.map +0 -1
- package/dist/linter/index.js +0 -4
- package/dist/linter/index.js.map +0 -1
- package/dist/linter/lint.d.ts +0 -24
- package/dist/linter/lint.d.ts.map +0 -1
- package/dist/linter/lint.js +0 -70
- package/dist/linter/lint.js.map +0 -1
- package/dist/linter/oxlint/index.d.ts +0 -4
- package/dist/linter/oxlint/index.d.ts.map +0 -1
- package/dist/linter/oxlint/index.js +0 -2
- package/dist/linter/oxlint/index.js.map +0 -1
- package/dist/linter/oxlint/process.d.ts +0 -19
- package/dist/linter/oxlint/process.d.ts.map +0 -1
- package/dist/linter/oxlint/process.js +0 -170
- package/dist/linter/oxlint/process.js.map +0 -1
- package/dist/linter/oxlint/run.d.ts +0 -8
- package/dist/linter/oxlint/run.d.ts.map +0 -1
- package/dist/linter/oxlint/run.js +0 -252
- package/dist/linter/oxlint/run.js.map +0 -1
- package/dist/linter/oxlint-config/ignore-patterns.d.ts +0 -6
- package/dist/linter/oxlint-config/ignore-patterns.d.ts.map +0 -1
- package/dist/linter/oxlint-config/ignore-patterns.js +0 -10
- package/dist/linter/oxlint-config/ignore-patterns.js.map +0 -1
- package/dist/linter/oxlint-config/index.d.ts +0 -5
- package/dist/linter/oxlint-config/index.d.ts.map +0 -1
- package/dist/linter/oxlint-config/index.js +0 -18
- package/dist/linter/oxlint-config/index.js.map +0 -1
- package/dist/linter/packs/domain.d.ts +0 -3
- package/dist/linter/packs/domain.d.ts.map +0 -1
- package/dist/linter/packs/domain.js +0 -8
- package/dist/linter/packs/domain.js.map +0 -1
- package/dist/linter/packs/index.d.ts +0 -9
- package/dist/linter/packs/index.d.ts.map +0 -1
- package/dist/linter/packs/index.js +0 -2
- package/dist/linter/packs/index.js.map +0 -1
- package/dist/linter/policy/compile.d.ts +0 -3
- package/dist/linter/policy/compile.d.ts.map +0 -1
- package/dist/linter/policy/compile.js +0 -258
- package/dist/linter/policy/compile.js.map +0 -1
- package/dist/linter/policy/configuration.d.ts +0 -12
- package/dist/linter/policy/configuration.d.ts.map +0 -1
- package/dist/linter/policy/configuration.js +0 -119
- package/dist/linter/policy/configuration.js.map +0 -1
- package/dist/linter/policy/generated.d.ts +0 -5
- package/dist/linter/policy/generated.d.ts.map +0 -1
- package/dist/linter/policy/generated.js +0 -776
- package/dist/linter/policy/generated.js.map +0 -1
- package/dist/linter/policy/index.d.ts +0 -45
- package/dist/linter/policy/index.d.ts.map +0 -1
- package/dist/linter/policy/index.js +0 -4
- package/dist/linter/policy/index.js.map +0 -1
- package/dist/linter/qualification/index.d.ts +0 -11
- package/dist/linter/qualification/index.d.ts.map +0 -1
- package/dist/linter/qualification/index.js +0 -3
- package/dist/linter/qualification/index.js.map +0 -1
- package/dist/linter/qualification/query-fixtures.d.ts +0 -3
- package/dist/linter/qualification/query-fixtures.d.ts.map +0 -1
- package/dist/linter/qualification/query-fixtures.js +0 -69
- package/dist/linter/qualification/query-fixtures.js.map +0 -1
- package/dist/linter/qualification/runner.d.ts +0 -4
- package/dist/linter/qualification/runner.d.ts.map +0 -1
- package/dist/linter/qualification/runner.js +0 -7
- package/dist/linter/qualification/runner.js.map +0 -1
- package/dist/linter/report/format.d.ts +0 -4
- package/dist/linter/report/format.d.ts.map +0 -1
- package/dist/linter/report/format.js +0 -33
- package/dist/linter/report/format.js.map +0 -1
- package/dist/linter/report/index.d.ts +0 -3
- package/dist/linter/report/index.d.ts.map +0 -1
- package/dist/linter/report/index.js +0 -2
- package/dist/linter/report/index.js.map +0 -1
- package/dist/linter/requirements/index.d.ts +0 -3
- package/dist/linter/requirements/index.d.ts.map +0 -1
- package/dist/linter/requirements/index.js +0 -2
- package/dist/linter/requirements/index.js.map +0 -1
- package/dist/linter/requirements/model.d.ts +0 -9
- package/dist/linter/requirements/model.d.ts.map +0 -1
- package/dist/linter/requirements/model.js +0 -2
- package/dist/linter/requirements/model.js.map +0 -1
- package/dist/linter/requirements/registry.d.ts +0 -4
- package/dist/linter/requirements/registry.d.ts.map +0 -1
- package/dist/linter/requirements/registry.js +0 -188
- package/dist/linter/requirements/registry.js.map +0 -1
- package/dist/linter/semantics/query/decision.d.ts +0 -5
- package/dist/linter/semantics/query/decision.d.ts.map +0 -1
- package/dist/linter/semantics/query/decision.js +0 -74
- package/dist/linter/semantics/query/decision.js.map +0 -1
- package/dist/linter/semantics/query/index.d.ts +0 -4
- package/dist/linter/semantics/query/index.d.ts.map +0 -1
- package/dist/linter/semantics/query/index.js +0 -3
- package/dist/linter/semantics/query/index.js.map +0 -1
- package/dist/linter/semantics/query/observation.d.ts +0 -36
- package/dist/linter/semantics/query/observation.d.ts.map +0 -1
- package/dist/linter/semantics/query/observation.js +0 -13
- package/dist/linter/semantics/query/observation.js.map +0 -1
- package/dist/linter/suppression/apply.d.ts +0 -4
- package/dist/linter/suppression/apply.d.ts.map +0 -1
- package/dist/linter/suppression/apply.js +0 -48
- package/dist/linter/suppression/apply.js.map +0 -1
- package/dist/linter/suppression/directive.d.ts +0 -11
- package/dist/linter/suppression/directive.d.ts.map +0 -1
- package/dist/linter/suppression/directive.js +0 -2
- package/dist/linter/suppression/directive.js.map +0 -1
- package/dist/linter/suppression/index.d.ts +0 -14
- package/dist/linter/suppression/index.d.ts.map +0 -1
- package/dist/linter/suppression/index.js +0 -2
- package/dist/linter/suppression/index.js.map +0 -1
- package/dist/mutation/contract.d.ts +0 -134
- package/dist/mutation/contract.d.ts.map +0 -1
- package/dist/mutation/contract.js +0 -2
- package/dist/mutation/contract.js.map +0 -1
- package/dist/mutation/define.d.ts +0 -9
- package/dist/mutation/define.d.ts.map +0 -1
- package/dist/mutation/define.js +0 -24
- package/dist/mutation/define.js.map +0 -1
- package/dist/mutation/errors.d.ts +0 -3
- package/dist/mutation/errors.d.ts.map +0 -1
- package/dist/mutation/errors.js +0 -30
- package/dist/mutation/errors.js.map +0 -1
- package/dist/mutation/execute.d.ts +0 -11
- package/dist/mutation/execute.d.ts.map +0 -1
- package/dist/mutation/execute.js +0 -24
- package/dist/mutation/execute.js.map +0 -1
- package/dist/mutation/index.d.ts +0 -8
- package/dist/mutation/index.d.ts.map +0 -1
- package/dist/mutation/index.js +0 -5
- package/dist/mutation/index.js.map +0 -1
- package/dist/mutation/rich.d.ts +0 -4
- package/dist/mutation/rich.d.ts.map +0 -1
- package/dist/mutation/rich.js +0 -147
- package/dist/mutation/rich.js.map +0 -1
- package/dist/query/composite/contract.d.ts +0 -37
- package/dist/query/composite/contract.d.ts.map +0 -1
- package/dist/query/composite/contract.js +0 -2
- package/dist/query/composite/contract.js.map +0 -1
- package/dist/query/composite/errors.d.ts +0 -8
- package/dist/query/composite/errors.d.ts.map +0 -1
- package/dist/query/composite/errors.js +0 -9
- package/dist/query/composite/errors.js.map +0 -1
- package/dist/query/composite/index.d.ts +0 -6
- package/dist/query/composite/index.d.ts.map +0 -1
- package/dist/query/composite/index.js +0 -3
- package/dist/query/composite/index.js.map +0 -1
- package/dist/query/composite/plan.d.ts +0 -38
- package/dist/query/composite/plan.d.ts.map +0 -1
- package/dist/query/composite/plan.js +0 -225
- package/dist/query/composite/plan.js.map +0 -1
- package/dist/query/contract.d.ts +0 -58
- package/dist/query/contract.d.ts.map +0 -1
- package/dist/query/contract.js +0 -2
- package/dist/query/contract.js.map +0 -1
- package/dist/query/define.d.ts +0 -3
- package/dist/query/define.d.ts.map +0 -1
- package/dist/query/define.js +0 -90
- package/dist/query/define.js.map +0 -1
- package/dist/query/definition.d.ts +0 -29
- package/dist/query/definition.d.ts.map +0 -1
- package/dist/query/definition.js +0 -2
- package/dist/query/definition.js.map +0 -1
- package/dist/query/errors.d.ts +0 -9
- package/dist/query/errors.d.ts.map +0 -1
- package/dist/query/errors.js +0 -15
- package/dist/query/errors.js.map +0 -1
- package/dist/query/execute.d.ts +0 -20
- package/dist/query/execute.d.ts.map +0 -1
- package/dist/query/execute.js +0 -97
- package/dist/query/execute.js.map +0 -1
- package/dist/query/index.d.ts +0 -15
- package/dist/query/index.d.ts.map +0 -1
- package/dist/query/index.js +0 -8
- package/dist/query/index.js.map +0 -1
- package/dist/query/node.d.ts +0 -109
- package/dist/query/node.d.ts.map +0 -1
- package/dist/query/node.js +0 -166
- package/dist/query/node.js.map +0 -1
- package/dist/query/result/contract.d.ts +0 -23
- package/dist/query/result/contract.d.ts.map +0 -1
- package/dist/query/result/contract.js +0 -2
- package/dist/query/result/contract.js.map +0 -1
- package/dist/query/result/index.d.ts +0 -3
- package/dist/query/result/index.d.ts.map +0 -1
- package/dist/query/result/index.js +0 -2
- package/dist/query/result/index.js.map +0 -1
- package/dist/query/result/projection.d.ts +0 -3
- package/dist/query/result/projection.d.ts.map +0 -1
- package/dist/query/result/projection.js +0 -100
- package/dist/query/result/projection.js.map +0 -1
- package/dist/query/selection.d.ts +0 -4
- package/dist/query/selection.d.ts.map +0 -1
- package/dist/query/selection.js +0 -25
- package/dist/query/selection.js.map +0 -1
- package/dist/react/compile.d.ts +0 -9
- package/dist/react/compile.d.ts.map +0 -1
- package/dist/react/compile.js +0 -64
- package/dist/react/compile.js.map +0 -1
- package/dist/react/define.d.ts +0 -8
- package/dist/react/define.d.ts.map +0 -1
- package/dist/react/define.js +0 -89
- package/dist/react/define.js.map +0 -1
- package/dist/react/definition.d.ts +0 -69
- package/dist/react/definition.d.ts.map +0 -1
- package/dist/react/definition.js +0 -2
- package/dist/react/definition.js.map +0 -1
- package/dist/react/index.d.ts +0 -4
- package/dist/react/index.d.ts.map +0 -1
- package/dist/react/index.js +0 -3
- package/dist/react/index.js.map +0 -1
- package/dist/result/index.d.ts +0 -3
- package/dist/result/index.d.ts.map +0 -1
- package/dist/result/index.js +0 -2
- package/dist/result/index.js.map +0 -1
- package/dist/result/result.d.ts +0 -10
- package/dist/result/result.d.ts.map +0 -1
- package/dist/result/result.js +0 -7
- package/dist/result/result.js.map +0 -1
- package/dist/schema/index.d.ts +0 -3
- package/dist/schema/index.d.ts.map +0 -1
- package/dist/schema/index.js +0 -3
- package/dist/schema/index.js.map +0 -1
- package/dist/schema/kernel/index.d.ts +0 -3
- package/dist/schema/kernel/index.d.ts.map +0 -1
- package/dist/schema/kernel/index.js +0 -3
- package/dist/schema/kernel/index.js.map +0 -1
- package/dist/schema/v1/index.d.ts +0 -3
- package/dist/schema/v1/index.d.ts.map +0 -1
- package/dist/schema/v1/index.js +0 -3
- package/dist/schema/v1/index.js.map +0 -1
- package/dist/server/application.d.ts +0 -36
- package/dist/server/application.d.ts.map +0 -1
- package/dist/server/application.js +0 -128
- package/dist/server/application.js.map +0 -1
- package/dist/server/index.d.ts +0 -5
- package/dist/server/index.d.ts.map +0 -1
- package/dist/server/index.js +0 -3
- package/dist/server/index.js.map +0 -1
- package/dist/server/node/index.d.ts +0 -3
- package/dist/server/node/index.d.ts.map +0 -1
- package/dist/server/node/index.js +0 -2
- package/dist/server/node/index.js.map +0 -1
- package/dist/server/node/server.d.ts +0 -14
- package/dist/server/node/server.d.ts.map +0 -1
- package/dist/server/node/server.js +0 -71
- package/dist/server/node/server.js.map +0 -1
- package/dist/server/remote.d.ts +0 -57
- package/dist/server/remote.d.ts.map +0 -1
- package/dist/server/remote.js +0 -799
- package/dist/server/remote.js.map +0 -1
- package/dist/server/source.d.ts +0 -13
- package/dist/server/source.d.ts.map +0 -1
- package/dist/server/source.js +0 -40
- package/dist/server/source.js.map +0 -1
- package/dist/state/index.d.ts +0 -4
- package/dist/state/index.d.ts.map +0 -1
- package/dist/state/index.js +0 -2
- package/dist/state/index.js.map +0 -1
- package/dist/state/machine.d.ts +0 -28
- package/dist/state/machine.d.ts.map +0 -1
- package/dist/state/machine.js +0 -32
- package/dist/state/machine.js.map +0 -1
- package/dist/state/relation.d.ts +0 -28
- package/dist/state/relation.d.ts.map +0 -1
- package/dist/state/relation.js +0 -48
- package/dist/state/relation.js.map +0 -1
- package/dist/value/index.d.ts +0 -3
- package/dist/value/index.d.ts.map +0 -1
- package/dist/value/index.js +0 -3
- package/dist/value/index.js.map +0 -1
- package/dist/view/admission.d.ts +0 -6
- package/dist/view/admission.d.ts.map +0 -1
- package/dist/view/admission.js +0 -43
- package/dist/view/admission.js.map +0 -1
- package/dist/view/compile.d.ts +0 -15
- package/dist/view/compile.d.ts.map +0 -1
- package/dist/view/compile.js +0 -189
- package/dist/view/compile.js.map +0 -1
- package/dist/view/define.d.ts +0 -20
- package/dist/view/define.d.ts.map +0 -1
- package/dist/view/define.js +0 -236
- package/dist/view/define.js.map +0 -1
- package/dist/view/definition.d.ts +0 -96
- package/dist/view/definition.d.ts.map +0 -1
- package/dist/view/definition.js +0 -2
- package/dist/view/definition.js.map +0 -1
- package/dist/view/index.d.ts +0 -4
- package/dist/view/index.d.ts.map +0 -1
- package/dist/view/index.js +0 -3
- package/dist/view/index.js.map +0 -1
- package/dist/workflow/binding.d.ts +0 -43
- package/dist/workflow/binding.d.ts.map +0 -1
- package/dist/workflow/binding.js +0 -32
- package/dist/workflow/binding.js.map +0 -1
- package/dist/workflow/contract.d.ts +0 -57
- package/dist/workflow/contract.d.ts.map +0 -1
- package/dist/workflow/contract.js +0 -2
- package/dist/workflow/contract.js.map +0 -1
- package/dist/workflow/define.d.ts +0 -4
- package/dist/workflow/define.d.ts.map +0 -1
- package/dist/workflow/define.js +0 -57
- package/dist/workflow/define.js.map +0 -1
- package/dist/workflow/index.d.ts +0 -7
- package/dist/workflow/index.d.ts.map +0 -1
- package/dist/workflow/index.js +0 -4
- package/dist/workflow/index.js.map +0 -1
- package/dist/workflow/runner.d.ts +0 -4
- package/dist/workflow/runner.d.ts.map +0 -1
- package/dist/workflow/runner.js +0 -24
- package/dist/workflow/runner.js.map +0 -1
- package/dist/workflow/step/index.d.ts +0 -3
- package/dist/workflow/step/index.d.ts.map +0 -1
- package/dist/workflow/step/index.js +0 -2
- package/dist/workflow/step/index.js.map +0 -1
- package/dist/workflow/step/inline.d.ts +0 -6
- package/dist/workflow/step/inline.d.ts.map +0 -1
- package/dist/workflow/step/inline.js +0 -44
- package/dist/workflow/step/inline.js.map +0 -1
- package/dist/workflow/step/step.d.ts +0 -5
- package/dist/workflow/step/step.d.ts.map +0 -1
- package/dist/workflow/step/step.js +0 -2
- package/dist/workflow/step/step.js.map +0 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,1363 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [0.5.0-beta.80](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.79...sdk-v0.5.0-beta.80) (2026-08-29)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **deps:** consume portable Kernel redirect transport ([#337](https://github.com/astrale-os/sdk/issues/337)) ([9590f5e](https://github.com/astrale-os/sdk/commit/9590f5ef7d43fb0b65c6f7ef13a46bf65b6e4aaa))
|
|
9
|
+
|
|
10
|
+
## [0.5.0-beta.79](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.78...sdk-v0.5.0-beta.79) (2026-08-29)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* **state:** consume portable DSL topology ([#333](https://github.com/astrale-os/sdk/issues/333)) ([7f8e255](https://github.com/astrale-os/sdk/commit/7f8e25574f3409baa03ae6fa015ee906572a2aee))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **release:** require publishable public changes ([#335](https://github.com/astrale-os/sdk/issues/335)) ([46755ee](https://github.com/astrale-os/sdk/commit/46755ee9124ab01a9e72158da0126e96c9410774))
|
|
21
|
+
|
|
22
|
+
## [0.5.0-beta.78](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.77...sdk-v0.5.0-beta.78) (2026-08-29)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **mutation:** support atomic transition deltas ([#331](https://github.com/astrale-os/sdk/issues/331)) ([0bf94fa](https://github.com/astrale-os/sdk/commit/0bf94fa8193cdc52047007f25cbf59e79f1f97b4))
|
|
28
|
+
|
|
29
|
+
## [0.5.0-beta.77](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.76...sdk-v0.5.0-beta.77) (2026-08-29)
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### Features
|
|
33
|
+
|
|
34
|
+
* **iframe:** declare view iframe requirements ([#327](https://github.com/astrale-os/sdk/issues/327)) ([ca2e131](https://github.com/astrale-os/sdk/commit/ca2e1311291aee3c62a19cddb33a0b4c13a345d4))
|
|
35
|
+
|
|
36
|
+
## [0.5.0-beta.76](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.75...sdk-v0.5.0-beta.76) (2026-08-29)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Bug Fixes
|
|
40
|
+
|
|
41
|
+
* **build:** preserve state transition authority ([#328](https://github.com/astrale-os/sdk/issues/328)) ([5ae3301](https://github.com/astrale-os/sdk/commit/5ae3301c6b72cc1dc7a5bf901e143f3235cb53ab))
|
|
42
|
+
|
|
43
|
+
## [0.5.0-beta.75](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.74...sdk-v0.5.0-beta.75) (2026-08-29)
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
### Bug Fixes
|
|
47
|
+
|
|
48
|
+
* **release:** qualify public Worker routing flag ([#325](https://github.com/astrale-os/sdk/issues/325)) ([4620617](https://github.com/astrale-os/sdk/commit/4620617f9a009ca4ab45909d50b1495b04eb7abb))
|
|
49
|
+
|
|
50
|
+
## [0.5.0-beta.74](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.73...sdk-v0.5.0-beta.74) (2026-08-29)
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
### Features
|
|
54
|
+
|
|
55
|
+
* **schema:** remove Property visibility from the V1 facade ([#324](https://github.com/astrale-os/sdk/issues/324)) ([0857b74](https://github.com/astrale-os/sdk/commit/0857b7493fad244999ba374ba73578f73889696e))
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
### Bug Fixes
|
|
59
|
+
|
|
60
|
+
* **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))
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
### Documentation
|
|
64
|
+
|
|
65
|
+
* capture Admin beta delivery journey ([#321](https://github.com/astrale-os/sdk/issues/321)) ([e5cb249](https://github.com/astrale-os/sdk/commit/e5cb24948ddd3a37dda7da1e1897dcfb342cc210))
|
|
66
|
+
|
|
67
|
+
## [0.5.0-beta.73](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.72...sdk-v0.5.0-beta.73) (2026-08-28)
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
### Bug Fixes
|
|
71
|
+
|
|
72
|
+
* **adapter-astrale:** discover official CLI installation ([#320](https://github.com/astrale-os/sdk/issues/320)) ([aa5ade5](https://github.com/astrale-os/sdk/commit/aa5ade5e7d861b2b3e037ae84ca14a36fef48fb2))
|
|
73
|
+
* add command-specific astrale-domain help ([#318](https://github.com/astrale-os/sdk/issues/318)) ([4956a77](https://github.com/astrale-os/sdk/commit/4956a77337c70659fa45102bed84e4feab39aad1))
|
|
74
|
+
|
|
75
|
+
## [0.5.0-beta.72](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.71...sdk-v0.5.0-beta.72) (2026-08-28)
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
### Bug Fixes
|
|
79
|
+
|
|
80
|
+
* **linter:** recognize nested schema modules ([#316](https://github.com/astrale-os/sdk/issues/316)) ([d9ad841](https://github.com/astrale-os/sdk/commit/d9ad84165103ed7741f11801ea740476109b99b3))
|
|
81
|
+
|
|
82
|
+
## [0.5.0-beta.71](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.70...sdk-v0.5.0-beta.71) (2026-08-28)
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
### Bug Fixes
|
|
86
|
+
|
|
87
|
+
* **adapter-cloudflare:** bypass fresh tunnel DNS propagation ([#313](https://github.com/astrale-os/sdk/issues/313)) ([9a71196](https://github.com/astrale-os/sdk/commit/9a71196cf9bed1e2c27402ee893b44df3dd42d3f))
|
|
88
|
+
|
|
89
|
+
## [0.5.0-beta.70](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.69...sdk-v0.5.0-beta.70) (2026-08-28)
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
### Bug Fixes
|
|
93
|
+
|
|
94
|
+
* **ci:** align publication qualification prerequisites ([#311](https://github.com/astrale-os/sdk/issues/311)) ([814176e](https://github.com/astrale-os/sdk/commit/814176e1b659bdfb0fa03668901d47bcdd577bbb))
|
|
95
|
+
|
|
96
|
+
## [0.5.0-beta.69](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.68...sdk-v0.5.0-beta.69) (2026-08-28)
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
### Features
|
|
100
|
+
|
|
101
|
+
* add coordinated Domain development sessions ([#300](https://github.com/astrale-os/sdk/issues/300)) ([102104f](https://github.com/astrale-os/sdk/commit/102104f1ed55333f5892db23c036578aa0ffd2e1))
|
|
102
|
+
* **tooling:** keep frontend composition application-owned ([#310](https://github.com/astrale-os/sdk/issues/310)) ([31e9bb6](https://github.com/astrale-os/sdk/commit/31e9bb6de256ef9cdbcdb0296abb973086f11ff0))
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
### Bug Fixes
|
|
106
|
+
|
|
107
|
+
* **adapter-astrale:** preserve explicit Services installation ownership ([#305](https://github.com/astrale-os/sdk/issues/305)) ([1b9dd64](https://github.com/astrale-os/sdk/commit/1b9dd6422e5d80a552ec5a70b5d262b8413dd6bc))
|
|
108
|
+
* **cli:** skip unused secrets files ([3a1c534](https://github.com/astrale-os/sdk/commit/3a1c53439d5172add9c2c724060daaffc0a517bb))
|
|
109
|
+
|
|
110
|
+
## [0.5.0-beta.68](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.67...sdk-v0.5.0-beta.68) (2026-08-28)
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
### Performance Improvements
|
|
114
|
+
|
|
115
|
+
* **execution:** cache issuer verification basis ([#307](https://github.com/astrale-os/sdk/issues/307)) ([a88f227](https://github.com/astrale-os/sdk/commit/a88f22700e61f5c5926621f95fc66638b462fbf5))
|
|
116
|
+
|
|
117
|
+
## [0.5.0-beta.67](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.66...sdk-v0.5.0-beta.67) (2026-08-28)
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
### Features
|
|
121
|
+
|
|
122
|
+
* make StateProperty transitions intrinsic ([#306](https://github.com/astrale-os/sdk/issues/306)) ([a2b2575](https://github.com/astrale-os/sdk/commit/a2b2575cf19c585c26539839c4777c0c2d413275))
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
### Documentation
|
|
126
|
+
|
|
127
|
+
* **state:** ratify intrinsic property transitions ([#303](https://github.com/astrale-os/sdk/issues/303)) ([d484e58](https://github.com/astrale-os/sdk/commit/d484e58bc47f80c2571886b5c85d91d91da52b25))
|
|
128
|
+
|
|
129
|
+
## [0.5.0-beta.66](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.65...sdk-v0.5.0-beta.66) (2026-08-27)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
### Features
|
|
133
|
+
|
|
134
|
+
* **state:** use machine transition authority ([#301](https://github.com/astrale-os/sdk/issues/301)) ([6424217](https://github.com/astrale-os/sdk/commit/642421784d391863d33e90e85c0a1c11b1a6ed7b))
|
|
135
|
+
|
|
136
|
+
## [0.5.0-beta.65](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.64...sdk-v0.5.0-beta.65) (2026-08-27)
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
### Features
|
|
140
|
+
|
|
141
|
+
* **query:** add portable collection unions ([#291](https://github.com/astrale-os/sdk/issues/291)) ([1ea53bc](https://github.com/astrale-os/sdk/commit/1ea53bcf4767ae5adb9637a5942e674d839fb231))
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
### Bug Fixes
|
|
145
|
+
|
|
146
|
+
* document safe remote route refresh ([#298](https://github.com/astrale-os/sdk/issues/298)) ([bd0d9b4](https://github.com/astrale-os/sdk/commit/bd0d9b479b61ba5007fed3abd30e7aeee1035df4))
|
|
147
|
+
|
|
148
|
+
## [0.5.0-beta.64](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.63...sdk-v0.5.0-beta.64) (2026-08-27)
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
### Bug Fixes
|
|
152
|
+
|
|
153
|
+
* normalize semantic imports in Domain packages ([#294](https://github.com/astrale-os/sdk/issues/294)) ([4041b2a](https://github.com/astrale-os/sdk/commit/4041b2ac6da30776f64a74e19f5b74208e9e1eb7))
|
|
154
|
+
* **release:** materialize generated Bun during publication proof ([#293](https://github.com/astrale-os/sdk/issues/293)) ([935529b](https://github.com/astrale-os/sdk/commit/935529b9f7ae629c88b35f84202e03d0f3203e16))
|
|
155
|
+
|
|
156
|
+
## [0.5.0-beta.63](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.62...sdk-v0.5.0-beta.63) (2026-08-27)
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
### Features
|
|
160
|
+
|
|
161
|
+
* expose Domain graph authority modes ([#287](https://github.com/astrale-os/sdk/issues/287)) ([84369ef](https://github.com/astrale-os/sdk/commit/84369ef9eec89506b9b5eb47894e83d7ac544149))
|
|
162
|
+
|
|
163
|
+
## [0.5.0-beta.62](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.61...sdk-v0.5.0-beta.62) (2026-08-27)
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
### Features
|
|
167
|
+
|
|
168
|
+
* **adapter-cloudflare:** configure invocation timeout ([#290](https://github.com/astrale-os/sdk/issues/290)) ([9c4e144](https://github.com/astrale-os/sdk/commit/9c4e144618846e8e1c8d76c432e8d5008285c3b7))
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
### Bug Fixes
|
|
172
|
+
|
|
173
|
+
* admit pnpm multi-document locks ([#288](https://github.com/astrale-os/sdk/issues/288)) ([eedfdf4](https://github.com/astrale-os/sdk/commit/eedfdf4aa3be97766a546d1cf37556b233bdcfd3))
|
|
174
|
+
|
|
175
|
+
## [0.5.0-beta.61](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.60...sdk-v0.5.0-beta.61) (2026-08-27)
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
### Features
|
|
179
|
+
|
|
180
|
+
* **app:** make state machines authoritative ([#284](https://github.com/astrale-os/sdk/issues/284)) ([2c22561](https://github.com/astrale-os/sdk/commit/2c2256170a1cc1c86b4cc31fce9684329f87a4d1))
|
|
181
|
+
* declare layer facades at layer roots ([#281](https://github.com/astrale-os/sdk/issues/281)) ([86f875a](https://github.com/astrale-os/sdk/commit/86f875a73a9baeca7968e6bfefbd9c1b0b5eacc8))
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
### Bug Fixes
|
|
185
|
+
|
|
186
|
+
* **app:** preserve Services deployment rejections ([#282](https://github.com/astrale-os/sdk/issues/282)) ([102a74f](https://github.com/astrale-os/sdk/commit/102a74f296c58bf70a59b0fd3ef942ebd813808e))
|
|
187
|
+
* conform lifecycle authority for domains ([#286](https://github.com/astrale-os/sdk/issues/286)) ([1725d11](https://github.com/astrale-os/sdk/commit/1725d11f75449930ba437c4a57549f40df2b4757))
|
|
188
|
+
|
|
189
|
+
## [0.5.0-beta.60](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.59...sdk-v0.5.0-beta.60) (2026-08-27)
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
### Bug Fixes
|
|
193
|
+
|
|
194
|
+
* **release:** qualify stable managed service requests ([#275](https://github.com/astrale-os/sdk/issues/275)) ([192efb8](https://github.com/astrale-os/sdk/commit/192efb8b9cdb990b8e3647e68f90fb649a132316))
|
|
195
|
+
|
|
196
|
+
## [0.5.0-beta.59](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.58...sdk-v0.5.0-beta.59) (2026-08-27)
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
### Bug Fixes
|
|
200
|
+
|
|
201
|
+
* align SDK with Edge policy Kernel cohort ([#277](https://github.com/astrale-os/sdk/issues/277)) ([1859301](https://github.com/astrale-os/sdk/commit/1859301e2d98200be0627001cdf48f653efd42a9))
|
|
202
|
+
|
|
203
|
+
## [0.5.0-beta.58](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.57...sdk-v0.5.0-beta.58) (2026-08-27)
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
### Features
|
|
207
|
+
|
|
208
|
+
* **app:** add project rule escape hatch ([#271](https://github.com/astrale-os/sdk/issues/271)) ([27edc07](https://github.com/astrale-os/sdk/commit/27edc078ac8936c86c325bbd382e9b11392bc79a))
|
|
209
|
+
* **app:** close hosted Application runtime contracts ([#261](https://github.com/astrale-os/sdk/issues/261)) ([b0ec17b](https://github.com/astrale-os/sdk/commit/b0ec17bcfeb613a2e6dcd986a22355ba8ea0efd5))
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
### Bug Fixes
|
|
213
|
+
|
|
214
|
+
* preserve stable compatible Service routing ([#272](https://github.com/astrale-os/sdk/issues/272)) ([059f188](https://github.com/astrale-os/sdk/commit/059f1884c7d4e65018721abc0ad0af17917e9812))
|
|
215
|
+
|
|
216
|
+
## [0.5.0-beta.57](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.56...sdk-v0.5.0-beta.57) (2026-08-27)
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
### Features
|
|
220
|
+
|
|
221
|
+
* **app:** enforce cross-domain capability requirements ([#267](https://github.com/astrale-os/sdk/issues/267)) ([5c358e3](https://github.com/astrale-os/sdk/commit/5c358e3a36f8e277eee552f0709e1b875b2e511d))
|
|
222
|
+
|
|
223
|
+
## [0.5.0-beta.56](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.55...sdk-v0.5.0-beta.56) (2026-08-27)
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
### Bug Fixes
|
|
227
|
+
|
|
228
|
+
* **execution:** serve canonical publication media type ([#268](https://github.com/astrale-os/sdk/issues/268)) ([62b4d49](https://github.com/astrale-os/sdk/commit/62b4d49e1f8736916d83240401662f3b9c705d38))
|
|
229
|
+
|
|
230
|
+
## [0.5.0-beta.55](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.54...sdk-v0.5.0-beta.55) (2026-08-26)
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
### Bug Fixes
|
|
234
|
+
|
|
235
|
+
* **ci:** normalize terminal output in publication proof ([#259](https://github.com/astrale-os/sdk/issues/259)) ([5eb3f90](https://github.com/astrale-os/sdk/commit/5eb3f90892667d26f813141965e5dc5762f552bf))
|
|
236
|
+
* **identity:** refresh callbacks during long invocations ([#263](https://github.com/astrale-os/sdk/issues/263)) ([dcfbfb7](https://github.com/astrale-os/sdk/commit/dcfbfb7e570e44b8b1a17b7decdde7e4a2d407fc))
|
|
237
|
+
|
|
238
|
+
## [0.5.0-beta.54](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.53...sdk-v0.5.0-beta.54) (2026-08-26)
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
### Bug Fixes
|
|
242
|
+
|
|
243
|
+
* **ci:** isolate manual qualification runs ([#256](https://github.com/astrale-os/sdk/issues/256)) ([50d48fe](https://github.com/astrale-os/sdk/commit/50d48fed713f1d898395d36645fcd6276ac7e2f0))
|
|
244
|
+
* **release:** adopt latest Kernel client cohort ([#258](https://github.com/astrale-os/sdk/issues/258)) ([ee7f865](https://github.com/astrale-os/sdk/commit/ee7f865b410598819b807202a8382c82689e59a4))
|
|
245
|
+
|
|
246
|
+
## [0.5.0-beta.53](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.52...sdk-v0.5.0-beta.53) (2026-08-26)
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
### Features
|
|
250
|
+
|
|
251
|
+
* package multiple Domain schemas ([#253](https://github.com/astrale-os/sdk/issues/253)) ([3074518](https://github.com/astrale-os/sdk/commit/3074518dc342c30d12aee64754aba4701d3ed806))
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
### Bug Fixes
|
|
255
|
+
|
|
256
|
+
* **ci:** admit manual qualification recovery ([#254](https://github.com/astrale-os/sdk/issues/254)) ([103a383](https://github.com/astrale-os/sdk/commit/103a3837e163ee586f1f40d806dd0d28e634403a))
|
|
257
|
+
|
|
258
|
+
## [0.5.0-beta.52](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.51...sdk-v0.5.0-beta.52) (2026-08-26)
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
### Bug Fixes
|
|
262
|
+
|
|
263
|
+
* **ci:** finalize SDK publication qualification ([#250](https://github.com/astrale-os/sdk/issues/250)) ([5de288c](https://github.com/astrale-os/sdk/commit/5de288c9b15486ae244d56e2d1424639acb79aee))
|
|
264
|
+
|
|
265
|
+
## [0.5.0-beta.51](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.50...sdk-v0.5.0-beta.51) (2026-08-26)
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
### Bug Fixes
|
|
269
|
+
|
|
270
|
+
* **worker:** restore exact generated builds ([#248](https://github.com/astrale-os/sdk/issues/248)) ([f4cc0e0](https://github.com/astrale-os/sdk/commit/f4cc0e012c70c992ca8ff23ff5999d12c18e5e7d))
|
|
271
|
+
|
|
272
|
+
## [0.5.0-beta.50](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.49...sdk-v0.5.0-beta.50) (2026-08-26)
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
### Bug Fixes
|
|
276
|
+
|
|
277
|
+
* **cloudflare:** pin local development origin ([#246](https://github.com/astrale-os/sdk/issues/246)) ([0dbce7f](https://github.com/astrale-os/sdk/commit/0dbce7fbbe048a5856304b602c892b3e02af98f5))
|
|
278
|
+
|
|
279
|
+
## [0.5.0-beta.49](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.48...sdk-v0.5.0-beta.49) (2026-08-26)
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
### Bug Fixes
|
|
283
|
+
|
|
284
|
+
* **sdk:** adopt kernel beta 12 cohort ([#244](https://github.com/astrale-os/sdk/issues/244)) ([9e78c70](https://github.com/astrale-os/sdk/commit/9e78c70aecf542ab41728b3f1b1630e0ab182619))
|
|
285
|
+
|
|
286
|
+
## [0.5.0-beta.48](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.47...sdk-v0.5.0-beta.48) (2026-08-26)
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
### Bug Fixes
|
|
290
|
+
|
|
291
|
+
* **scaffold:** honor the selected package manager ([#242](https://github.com/astrale-os/sdk/issues/242)) ([e9afcdc](https://github.com/astrale-os/sdk/commit/e9afcdc9dc684a7fc29903313b6d6bce7b8113cb))
|
|
292
|
+
|
|
293
|
+
## [0.5.0-beta.47](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.46...sdk-v0.5.0-beta.47) (2026-08-26)
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
### Bug Fixes
|
|
297
|
+
|
|
298
|
+
* **deps:** pin internal package cohort ([#240](https://github.com/astrale-os/sdk/issues/240)) ([739d397](https://github.com/astrale-os/sdk/commit/739d397bd651e559fe6c97b0bdf9c684941054a1))
|
|
299
|
+
|
|
300
|
+
## [0.5.0-beta.46](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.45...sdk-v0.5.0-beta.46) (2026-08-25)
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
### Features
|
|
304
|
+
|
|
305
|
+
* **domain:** admit native binary responses and routes ([8554b24](https://github.com/astrale-os/sdk/commit/8554b24796ba11a067f828c982a766e001d84c0d))
|
|
306
|
+
* **domain:** support native binary HTTP routes ([6549db4](https://github.com/astrale-os/sdk/commit/6549db4206348632cdd2a4ed1567ffe7d89a7aa4))
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
### Bug Fixes
|
|
310
|
+
|
|
311
|
+
* **app:** clarify binary Action receiver reads ([a91eeaa](https://github.com/astrale-os/sdk/commit/a91eeaaef7ff8e26c07070f564362eaee319dd60))
|
|
312
|
+
* **app:** follow buffered binary result ([c2f7b9a](https://github.com/astrale-os/sdk/commit/c2f7b9a8e4b7ad06525161400c3ca7537012113a))
|
|
313
|
+
* **deploy:** preserve partial readiness evidence ([c37a1c5](https://github.com/astrale-os/sdk/commit/c37a1c53680bf26211b51e880a4bd6519a842b0c))
|
|
314
|
+
* **scaffold:** register routes aliases ([2ad1675](https://github.com/astrale-os/sdk/commit/2ad1675db54193eb678a2c2d5b11f219f59100c2))
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
### Documentation
|
|
318
|
+
|
|
319
|
+
* record Domain publication recovery ([97c6b73](https://github.com/astrale-os/sdk/commit/97c6b73fe62ea18f3a258b41a818647361df5111))
|
|
320
|
+
* record Domain publication recovery ([009b1cb](https://github.com/astrale-os/sdk/commit/009b1cb07221d037ba5d3f15204f0dd85cad8a6c))
|
|
321
|
+
|
|
322
|
+
## [0.5.0-beta.45](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.44...sdk-v0.5.0-beta.45) (2026-08-25)
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
### Bug Fixes
|
|
326
|
+
|
|
327
|
+
* **schema:** keep KernelSchema declarations portable ([bd4690b](https://github.com/astrale-os/sdk/commit/bd4690bf5defde05a847770f0df90de1a4f77180))
|
|
328
|
+
* **schema:** keep KernelSchema declarations portable ([bae4bc2](https://github.com/astrale-os/sdk/commit/bae4bc2e9f432aa013f96921c53b789723c175c8))
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
### Documentation
|
|
332
|
+
|
|
333
|
+
* record KernelSchema CI proof ([6f67d04](https://github.com/astrale-os/sdk/commit/6f67d04c2e0b4ca838b2c3ea7efa1de5f8190243))
|
|
334
|
+
|
|
335
|
+
## [0.5.0-beta.44](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.43...sdk-v0.5.0-beta.44) (2026-08-25)
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
### Features
|
|
339
|
+
|
|
340
|
+
* make Domain packages Schema-only by default ([2eea4ef](https://github.com/astrale-os/sdk/commit/2eea4ef46360026bbabfb3607b8defc75f89d23e))
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
### Bug Fixes
|
|
344
|
+
|
|
345
|
+
* **ci:** materialize admitted Bun during publication qualification ([ca0e998](https://github.com/astrale-os/sdk/commit/ca0e9985cafae26aead5e39a80c3b98f5b73507d))
|
|
346
|
+
* **ci:** materialize admitted Bun during publication qualification ([7f23b30](https://github.com/astrale-os/sdk/commit/7f23b300849200c7431beeabfab742be276e03c6))
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
### Documentation
|
|
350
|
+
|
|
351
|
+
* **history:** decouple generic Domains workflows ([3b13f5f](https://github.com/astrale-os/sdk/commit/3b13f5fd1d164c21dc4b625f7195a24603997f13))
|
|
352
|
+
* **history:** record generic workflow CI ([1eb39a4](https://github.com/astrale-os/sdk/commit/1eb39a44de59d582b85c5908a853e8651d2d4c31))
|
|
353
|
+
* **history:** record Windows publication proof ([d054ba5](https://github.com/astrale-os/sdk/commit/d054ba5f80c356a2af63ebff28b47aea8212eda4))
|
|
354
|
+
|
|
355
|
+
## [0.5.0-beta.43](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.42...sdk-v0.5.0-beta.43) (2026-08-25)
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
### Bug Fixes
|
|
359
|
+
|
|
360
|
+
* **app:** provision project-local Bun in domain scaffold ([5e8b462](https://github.com/astrale-os/sdk/commit/5e8b462a8f966759428339ea353a926e0b600021))
|
|
361
|
+
* **scaffold:** provision project-local bun ([132a939](https://github.com/astrale-os/sdk/commit/132a9399573196e833d693c21460d55995089205))
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
### Documentation
|
|
365
|
+
|
|
366
|
+
* **history:** retain Services function latency proof ([32a398c](https://github.com/astrale-os/sdk/commit/32a398c7c932c717b540d8c3a342094c7c851a96))
|
|
367
|
+
* **history:** retain Services function latency proof ([413b1bf](https://github.com/astrale-os/sdk/commit/413b1bfe349c56530f7d949e5c81211472748247))
|
|
368
|
+
|
|
369
|
+
## [0.5.0-beta.42](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.41...sdk-v0.5.0-beta.42) (2026-08-25)
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
### Bug Fixes
|
|
373
|
+
|
|
374
|
+
* **cloudflare:** prefer concrete SPA assets ([039d47b](https://github.com/astrale-os/sdk/commit/039d47b347d0b1a6d3cda5e6896cbcecc9a65106))
|
|
375
|
+
* **cloudflare:** serve root frontend assets ([f8f5a11](https://github.com/astrale-os/sdk/commit/f8f5a11b4558107713608605be883aeedcc60907))
|
|
376
|
+
* **frontend:** serve complete generated identity ([0a8987e](https://github.com/astrale-os/sdk/commit/0a8987e82e47850d4fbfbad7c4ef475dfae56388))
|
|
377
|
+
* **scaffold:** generate complete frontend identity ([c5b03b4](https://github.com/astrale-os/sdk/commit/c5b03b4f97bce129ac934e96583e5e83f4516367))
|
|
378
|
+
|
|
379
|
+
## [0.5.0-beta.41](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.40...sdk-v0.5.0-beta.41) (2026-08-25)
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
### Bug Fixes
|
|
383
|
+
|
|
384
|
+
* **cloudflare:** admit compatibility flag order ([#227](https://github.com/astrale-os/sdk/issues/227)) ([b4a7695](https://github.com/astrale-os/sdk/commit/b4a769525ae75beaa480a0b0d860d44a7bfe785a))
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
### Documentation
|
|
388
|
+
|
|
389
|
+
* **history:** retain Services latency qualification ([#223](https://github.com/astrale-os/sdk/issues/223)) ([c3a7107](https://github.com/astrale-os/sdk/commit/c3a71076a103f6ed2be565fbda3f5c718e9fd2c5))
|
|
390
|
+
|
|
391
|
+
## [0.5.0-beta.40](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.39...sdk-v0.5.0-beta.40) (2026-08-25)
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
### Performance Improvements
|
|
395
|
+
|
|
396
|
+
* **cloudflare:** serve frontend before runtime realization ([#221](https://github.com/astrale-os/sdk/issues/221)) ([1c3f8db](https://github.com/astrale-os/sdk/commit/1c3f8db9fe3f8a0f3120fe92f5341ddf5bcd7f3f))
|
|
397
|
+
|
|
398
|
+
## [0.5.0-beta.39](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.38...sdk-v0.5.0-beta.39) (2026-08-25)
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
### Bug Fixes
|
|
402
|
+
|
|
403
|
+
* **client:** consume retained query provenance ([#218](https://github.com/astrale-os/sdk/issues/218)) ([00781c8](https://github.com/astrale-os/sdk/commit/00781c88cf683d040116c94107f51864058a9b64))
|
|
404
|
+
|
|
405
|
+
## [0.5.0-beta.38](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.37...sdk-v0.5.0-beta.38) (2026-08-25)
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
### Bug Fixes
|
|
409
|
+
|
|
410
|
+
* **scaffold:** discover project frontend sources ([#216](https://github.com/astrale-os/sdk/issues/216)) ([019ef30](https://github.com/astrale-os/sdk/commit/019ef3096f8e29aa532b4ea67bd9816dc11d7781))
|
|
411
|
+
|
|
412
|
+
## [0.5.0-beta.37](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.36...sdk-v0.5.0-beta.37) (2026-08-25)
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
### Bug Fixes
|
|
416
|
+
|
|
417
|
+
* **adapter-cloudflare:** parse status stdout only ([#213](https://github.com/astrale-os/sdk/issues/213)) ([4ebb41a](https://github.com/astrale-os/sdk/commit/4ebb41ad918e1cb8aefbfb396218204c96a9fd48))
|
|
418
|
+
* **release:** invoke the canonical deployment script ([#215](https://github.com/astrale-os/sdk/issues/215)) ([b59e739](https://github.com/astrale-os/sdk/commit/b59e7395c7cb6f41ce17d05270f9aa844ca26d0d))
|
|
419
|
+
|
|
420
|
+
## [0.5.0-beta.36](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.35...sdk-v0.5.0-beta.36) (2026-08-25)
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
### Bug Fixes
|
|
424
|
+
|
|
425
|
+
* **scaffold:** remove redundant prod script ([#210](https://github.com/astrale-os/sdk/issues/210)) ([7327ea9](https://github.com/astrale-os/sdk/commit/7327ea9e09daadc7a060a11b0b3df423a2be66b1))
|
|
426
|
+
|
|
427
|
+
## [0.5.0-beta.35](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.34...sdk-v0.5.0-beta.35) (2026-08-25)
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
### Bug Fixes
|
|
431
|
+
|
|
432
|
+
* **adapter-cloudflare:** retain watch service modules ([#208](https://github.com/astrale-os/sdk/issues/208)) ([0c0fb64](https://github.com/astrale-os/sdk/commit/0c0fb6497776cabb399717df92b0a7b3eab9f5d8))
|
|
433
|
+
|
|
434
|
+
## [0.5.0-beta.34](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.33...sdk-v0.5.0-beta.34) (2026-08-25)
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
### Bug Fixes
|
|
438
|
+
|
|
439
|
+
* **scaffold:** own selected adapter closure ([#205](https://github.com/astrale-os/sdk/issues/205)) ([19336f5](https://github.com/astrale-os/sdk/commit/19336f50819ab5237ced04f7a55d3ca9f50796eb))
|
|
440
|
+
|
|
441
|
+
## [0.5.0-beta.33](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.32...sdk-v0.5.0-beta.33) (2026-08-25)
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
### Bug Fixes
|
|
445
|
+
|
|
446
|
+
* **adapter-astrale:** carry large managed artifacts portably ([#201](https://github.com/astrale-os/sdk/issues/201)) ([49425dd](https://github.com/astrale-os/sdk/commit/49425dd89ac9e45fc51b5b0ebbe86ecf068479b2))
|
|
447
|
+
|
|
448
|
+
## [0.5.0-beta.32](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.31...sdk-v0.5.0-beta.32) (2026-08-25)
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
### Bug Fixes
|
|
452
|
+
|
|
453
|
+
* **schema:** consume compact resolved projections ([#202](https://github.com/astrale-os/sdk/issues/202)) ([ec59d41](https://github.com/astrale-os/sdk/commit/ec59d41cbcf632dba0059e0dad7dce3e545c499c))
|
|
454
|
+
|
|
455
|
+
## [0.5.0-beta.31](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.30...sdk-v0.5.0-beta.31) (2026-08-24)
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
### Bug Fixes
|
|
459
|
+
|
|
460
|
+
* **client:** consume canonical mutation closure ([#197](https://github.com/astrale-os/sdk/issues/197)) ([6023215](https://github.com/astrale-os/sdk/commit/6023215cfdd797832f173b1ef9f72d181173ba94))
|
|
461
|
+
* **deps:** close downstream package boundaries ([#193](https://github.com/astrale-os/sdk/issues/193)) ([00ac85a](https://github.com/astrale-os/sdk/commit/00ac85a23f65f4d34384812e33f3a77b9cc8e572))
|
|
462
|
+
|
|
463
|
+
## [0.5.0-beta.30](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.29...sdk-v0.5.0-beta.30) (2026-08-24)
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
### Bug Fixes
|
|
467
|
+
|
|
468
|
+
* **release:** pin token-scoped package mirror ([#194](https://github.com/astrale-os/sdk/issues/194)) ([1c95eeb](https://github.com/astrale-os/sdk/commit/1c95eebbdfc1e3356a1298a27323a66ef46528c5))
|
|
469
|
+
|
|
470
|
+
## [0.5.0-beta.29](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.28...sdk-v0.5.0-beta.29) (2026-08-24)
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
### Bug Fixes
|
|
474
|
+
|
|
475
|
+
* **app:** complete projected recipe realization ([#188](https://github.com/astrale-os/sdk/issues/188)) ([47bd9ed](https://github.com/astrale-os/sdk/commit/47bd9ed54292962721cf79c356ff1198608c6834))
|
|
476
|
+
* **cloudflare:** disable workers.dev for routed deployments ([#189](https://github.com/astrale-os/sdk/issues/189)) ([d0781f6](https://github.com/astrale-os/sdk/commit/d0781f6027cfdaf34d304af2e12a4c917740729e))
|
|
477
|
+
|
|
478
|
+
## [0.5.0-beta.28](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.27...sdk-v0.5.0-beta.28) (2026-08-24)
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
### Bug Fixes
|
|
482
|
+
|
|
483
|
+
* **release:** admit exact managed publication projection ([#190](https://github.com/astrale-os/sdk/issues/190)) ([20bd081](https://github.com/astrale-os/sdk/commit/20bd08149261089daed9d70b50f8986c5eb07ddf))
|
|
484
|
+
|
|
485
|
+
## [0.5.0-beta.27](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.26...sdk-v0.5.0-beta.27) (2026-08-24)
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
### Features
|
|
489
|
+
|
|
490
|
+
* **adapters:** productionize managed Astrale deployment ([#181](https://github.com/astrale-os/sdk/issues/181)) ([bf6180a](https://github.com/astrale-os/sdk/commit/bf6180af70ed3e6c1863b509ba2d038fba27ed9e))
|
|
491
|
+
* **release:** mirror private GitHub packages ([#187](https://github.com/astrale-os/sdk/issues/187)) ([a39f8a3](https://github.com/astrale-os/sdk/commit/a39f8a335473d46b237539aafd0dad79bc92c295))
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
### Bug Fixes
|
|
495
|
+
|
|
496
|
+
* **cloudflare:** watch admitted worker entrypoint ([#186](https://github.com/astrale-os/sdk/issues/186)) ([37a70b5](https://github.com/astrale-os/sdk/commit/37a70b5f5a3fe1453947edfd9e5dad81a9e8221d))
|
|
497
|
+
|
|
498
|
+
## [0.5.0-beta.26](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.25...sdk-v0.5.0-beta.26) (2026-08-24)
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
### Bug Fixes
|
|
502
|
+
|
|
503
|
+
* **adapter-cloudflare:** omit implicit router in local watch ([#182](https://github.com/astrale-os/sdk/issues/182)) ([4788faf](https://github.com/astrale-os/sdk/commit/4788fafec22d6906eedad9f08e7743f27e5a8e9f))
|
|
504
|
+
|
|
505
|
+
## [0.5.0-beta.25](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.24...sdk-v0.5.0-beta.25) (2026-08-24)
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
### Features
|
|
509
|
+
|
|
510
|
+
* complete cross-domain runtime execution ([#179](https://github.com/astrale-os/sdk/issues/179)) ([e6a3d6a](https://github.com/astrale-os/sdk/commit/e6a3d6a2985fb2ea2631a728e6c06497a4670f04))
|
|
511
|
+
|
|
512
|
+
## [0.5.0-beta.24](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.23...sdk-v0.5.0-beta.24) (2026-08-24)
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
### Performance Improvements
|
|
516
|
+
|
|
517
|
+
* reuse admitted build evidence ([#176](https://github.com/astrale-os/sdk/issues/176)) ([b13ad77](https://github.com/astrale-os/sdk/commit/b13ad772093ff61805fff576aa46f4f31bfe1cdf))
|
|
518
|
+
|
|
519
|
+
## [0.5.0-beta.23](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.22...sdk-v0.5.0-beta.23) (2026-08-24)
|
|
520
|
+
|
|
521
|
+
|
|
522
|
+
### Bug Fixes
|
|
523
|
+
|
|
524
|
+
* **app:** colocate custom scaffold features ([#174](https://github.com/astrale-os/sdk/issues/174)) ([4825bb6](https://github.com/astrale-os/sdk/commit/4825bb6d1395f91bec0a0f70690ff248603114e6))
|
|
525
|
+
* **cloudflare:** defer worker application loading ([#173](https://github.com/astrale-os/sdk/issues/173)) ([aa47ddd](https://github.com/astrale-os/sdk/commit/aa47ddda94372dadea9491b5492bfecf689f8d8a))
|
|
526
|
+
|
|
527
|
+
## [0.5.0-beta.22](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.21...sdk-v0.5.0-beta.22) (2026-08-24)
|
|
528
|
+
|
|
529
|
+
|
|
530
|
+
### Bug Fixes
|
|
531
|
+
|
|
532
|
+
* **packaging:** normalize local declaration specifiers ([#171](https://github.com/astrale-os/sdk/issues/171)) ([e7cda6d](https://github.com/astrale-os/sdk/commit/e7cda6dfb896e3ce26c621114ea0daa433f79b1b))
|
|
533
|
+
|
|
534
|
+
## [0.5.0-beta.21](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.20...sdk-v0.5.0-beta.21) (2026-08-24)
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
### Bug Fixes
|
|
538
|
+
|
|
539
|
+
* **scaffold:** isolate registry qualification ([#169](https://github.com/astrale-os/sdk/issues/169)) ([472e93b](https://github.com/astrale-os/sdk/commit/472e93bfa1a5d39070a05dc3ec7556ea76b425f6))
|
|
540
|
+
|
|
541
|
+
## [0.5.0-beta.20](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.19...sdk-v0.5.0-beta.20) (2026-08-24)
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
### Bug Fixes
|
|
545
|
+
|
|
546
|
+
* **ci:** install bun for release qualification ([#167](https://github.com/astrale-os/sdk/issues/167)) ([dae20bf](https://github.com/astrale-os/sdk/commit/dae20bfd6775a8efe35ddb37bd6bafaff7ffcf78))
|
|
547
|
+
|
|
548
|
+
## [0.5.0-beta.19](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.18...sdk-v0.5.0-beta.19) (2026-08-24)
|
|
549
|
+
|
|
550
|
+
|
|
551
|
+
### Bug Fixes
|
|
552
|
+
|
|
553
|
+
* **ci:** harden public package qualification ([#165](https://github.com/astrale-os/sdk/issues/165)) ([da0728f](https://github.com/astrale-os/sdk/commit/da0728f70ac7b9b9db5e0be46b20a101f9689f9b))
|
|
554
|
+
* **release:** remove cohort publication topology ([#163](https://github.com/astrale-os/sdk/issues/163)) ([eab66f5](https://github.com/astrale-os/sdk/commit/eab66f51c4e003d0e81b909eca83783a2101388a))
|
|
555
|
+
|
|
556
|
+
## [0.5.0-beta.18](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.17...sdk-v0.5.0-beta.18) (2026-08-24)
|
|
557
|
+
|
|
558
|
+
|
|
559
|
+
### Bug Fixes
|
|
560
|
+
|
|
561
|
+
* **ci:** publish public packages through npm ([65fa7f9](https://github.com/astrale-os/sdk/commit/65fa7f98c4248dfc2aaa9cd19f1a397bcf24dccc))
|
|
562
|
+
* **ci:** publish public packages through npm ([4a6960e](https://github.com/astrale-os/sdk/commit/4a6960e685c7c46ed5667352e87552d8f73d132f))
|
|
563
|
+
|
|
564
|
+
## [0.5.0-beta.17](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.16...sdk-v0.5.0-beta.17) (2026-08-24)
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
### Features
|
|
568
|
+
|
|
569
|
+
* **action:** bind query and mutation executors ([1e7dd8b](https://github.com/astrale-os/sdk/commit/1e7dd8b22b3450671bb046997a6d0f905ae15ab0))
|
|
570
|
+
* **action:** bind query and mutation executors ([459068c](https://github.com/astrale-os/sdk/commit/459068cc20773e311e1347e44f721ce2c2d3e4b5))
|
|
571
|
+
* **app:** accept string mutation bindings ([fd509c0](https://github.com/astrale-os/sdk/commit/fd509c052566bf51577bb1311b1796b984c38a7b))
|
|
572
|
+
* expose canonical DNS label values ([2c8d251](https://github.com/astrale-os/sdk/commit/2c8d251f48377da4470c057aa72b0b4c579eea6f))
|
|
573
|
+
* **platform:** expose wire contract facades ([a0f2cd2](https://github.com/astrale-os/sdk/commit/a0f2cd20eac1dc4f334f4fef72a56777e4cde7ec))
|
|
574
|
+
|
|
575
|
+
|
|
576
|
+
### Bug Fixes
|
|
577
|
+
|
|
578
|
+
* **adapter-cloudflare:** retain installed schema revisions ([f3b65a6](https://github.com/astrale-os/sdk/commit/f3b65a601d77989bcbfafe605644c5b90e6538cc))
|
|
579
|
+
* **adapter-cloudflare:** retain installed schema revisions ([32b277b](https://github.com/astrale-os/sdk/commit/32b277b1bdec619ef227183046765249f460da5a))
|
|
580
|
+
* **adapters:** retain execution signing identity ([1b8d50d](https://github.com/astrale-os/sdk/commit/1b8d50d73708c3202bb886dadaf1bf2dce09525c))
|
|
581
|
+
* **app:** keep recipe declarations portable ([ec9f334](https://github.com/astrale-os/sdk/commit/ec9f33473d47600351c04385e7bf1769bc8b1350))
|
|
582
|
+
* **app:** preserve exact packed domain types ([866e4af](https://github.com/astrale-os/sdk/commit/866e4af37df3ffae24c9009355d53bdcec352799))
|
|
583
|
+
* **cloudflare:** admit revision deployment evidence ([82de3cf](https://github.com/astrale-os/sdk/commit/82de3cf20348b0782efc74dce8791b2a32c14b24))
|
|
584
|
+
* **cloudflare:** derive signing key ids from material ([3423348](https://github.com/astrale-os/sdk/commit/3423348017dbbcfc77f3038e867fd6a315dd51dc))
|
|
585
|
+
* **cloudflare:** derive signing key ids from material ([324f61f](https://github.com/astrale-os/sdk/commit/324f61f3a75e2486a436827d5f69729765a42487))
|
|
586
|
+
* **cloudflare:** migrate legacy signing key ids ([afe97d7](https://github.com/astrale-os/sdk/commit/afe97d79627ea95b82d46f0ce38e7728e4f1cbb3))
|
|
587
|
+
* **deps:** advance published kernel cohort ([b95952c](https://github.com/astrale-os/sdk/commit/b95952c6ce34378b551234f48db5e5a2467d7578))
|
|
588
|
+
* **deps:** consume the Kernel beta.10 cohort ([75c380f](https://github.com/astrale-os/sdk/commit/75c380ffb0e5e324ccd9dac7cbb30c6bee14aab0))
|
|
589
|
+
* **deps:** consume the Kernel beta.10 cohort ([a6a34d2](https://github.com/astrale-os/sdk/commit/a6a34d213d62501d3471c593b9ceb6af9a7aa1d3))
|
|
590
|
+
* **deps:** preserve release-age admission ([f0c7977](https://github.com/astrale-os/sdk/commit/f0c7977b0c4deef6e4cef8798c3db6d990553e7f))
|
|
591
|
+
* **packaging:** admit the exact domain package boundary ([d84900e](https://github.com/astrale-os/sdk/commit/d84900efa7c8954c89f47b1e02973c178c62f839))
|
|
592
|
+
* **packaging:** publish domains through sdk facades ([48d3eef](https://github.com/astrale-os/sdk/commit/48d3eef0825d97d34a38a8fef671e085baea913a))
|
|
593
|
+
* **platform:** restore result facade ([d07152c](https://github.com/astrale-os/sdk/commit/d07152c975c001c9eb88283e9b847298aa124cba))
|
|
594
|
+
* remove broken published source maps ([38237dc](https://github.com/astrale-os/sdk/commit/38237dc4f6c4b7a91a1de1001dbb930216c24324))
|
|
595
|
+
* select precise declaration facades ([c5ba6c3](https://github.com/astrale-os/sdk/commit/c5ba6c320372b48aaaafbd3c47b1b18017827809))
|
|
596
|
+
* **worker:** merge Cloudflare revision gateway ([df2887c](https://github.com/astrale-os/sdk/commit/df2887ce2b097623548c04e1c13456952aec4230))
|
|
597
|
+
* **worker:** merge Cloudflare signing identity ([3aefa00](https://github.com/astrale-os/sdk/commit/3aefa00c84d385fc929fa9f3bf416d8af11c6ed3))
|
|
598
|
+
|
|
599
|
+
|
|
600
|
+
### Documentation
|
|
601
|
+
|
|
602
|
+
* close kernel publication gate ([c291b25](https://github.com/astrale-os/sdk/commit/c291b259f3ba16ec32f1bf62383b89d091e88dfa))
|
|
603
|
+
* record downstream release readiness ([d571c7e](https://github.com/astrale-os/sdk/commit/d571c7e09a072877f3e8e84f38fd3f3fc5f1cd76))
|
|
604
|
+
* record public Shell release owner ([28d5104](https://github.com/astrale-os/sdk/commit/28d5104c5c92f0bff6e905aeac8b17dd152166f1))
|
|
605
|
+
|
|
606
|
+
## [0.5.0-beta.16](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.15...sdk-v0.5.0-beta.16) (2026-08-24)
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
### ⚠ BREAKING CHANGES
|
|
610
|
+
|
|
611
|
+
* redesign SDK V1 authoring and execution
|
|
612
|
+
|
|
613
|
+
* redesign SDK V1 authoring and execution ([41653c2](https://github.com/astrale-os/sdk/commit/41653c20e371e5ed3d3992a930ad5460e3163019))
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
### Features
|
|
617
|
+
|
|
618
|
+
* **application:** expose direct graph node targets ([fd05d33](https://github.com/astrale-os/sdk/commit/fd05d335ace1ee00fe672ec222818d7d8a2d1b59))
|
|
619
|
+
* **application:** expose direct graph node targets ([9ae24d9](https://github.com/astrale-os/sdk/commit/9ae24d941f42b4817497ca7ab26b900fed8d74d8))
|
|
620
|
+
|
|
621
|
+
|
|
622
|
+
### Bug Fixes
|
|
623
|
+
|
|
624
|
+
* **ci:** contain runtime delegation failures ([ac9da14](https://github.com/astrale-os/sdk/commit/ac9da14394f6f57db0f39768ba9d3b4af659597e))
|
|
625
|
+
* **ci:** delegate runtime commands to bun ([2a6c878](https://github.com/astrale-os/sdk/commit/2a6c878f4a6bad1e615f8bb1bfb900cb3c50b3b4))
|
|
626
|
+
* **ci:** preserve sdk cli executable mode ([207d4e1](https://github.com/astrale-os/sdk/commit/207d4e1288a5a46e286210aab34db043b54d280e))
|
|
627
|
+
* **ci:** run package tooling under node ([577222f](https://github.com/astrale-os/sdk/commit/577222f2f4510d6dbd606be69a291161dfa3ed05))
|
|
628
|
+
* **ci:** separate source and published cli runtimes ([66c0729](https://github.com/astrale-os/sdk/commit/66c0729060e18789f93f065036183fa8d9ff0520))
|
|
629
|
+
* **ci:** supervise sdk runtime delegation ([355a1bb](https://github.com/astrale-os/sdk/commit/355a1bb93a5f4dd829b9cd5408843a21f042cfd2))
|
|
630
|
+
* **ci:** verify exact linked kernel cohort ([eb17821](https://github.com/astrale-os/sdk/commit/eb178210e01b83e52580d701720191110323a739))
|
|
631
|
+
* **deployment:** use resolved domain projection ([#146](https://github.com/astrale-os/sdk/issues/146)) ([af58848](https://github.com/astrale-os/sdk/commit/af5884810048758d05e9606235fcb83846a9871e))
|
|
632
|
+
* **deps:** consume the published Kernel cohort ([#152](https://github.com/astrale-os/sdk/issues/152)) ([8ca7548](https://github.com/astrale-os/sdk/commit/8ca7548191d176089bf75ffb887a253a69425691))
|
|
633
|
+
* **execution:** complete remote admission proof ([f7e988e](https://github.com/astrale-os/sdk/commit/f7e988e450fd26974087bf98035bc90826a7446b))
|
|
634
|
+
* **sdk:** close downstream facade and runtime boundaries ([bb4a29f](https://github.com/astrale-os/sdk/commit/bb4a29f62a612b9eb96dc137b51edfb8eef0abe0))
|
|
635
|
+
* **sdk:** close downstream facade and runtime boundaries ([740799b](https://github.com/astrale-os/sdk/commit/740799bb9b13b2947f0b28133b21517dfff33f68))
|
|
636
|
+
* **sdk:** make packed authoring token-free ([feacf89](https://github.com/astrale-os/sdk/commit/feacf8941dfac1e372cfdc04623c59f3903e4305))
|
|
637
|
+
|
|
638
|
+
|
|
639
|
+
### Documentation
|
|
640
|
+
|
|
641
|
+
* refresh final SDK V1 evidence ([0a0c96b](https://github.com/astrale-os/sdk/commit/0a0c96b1d6a5f00f0d3d10608f89d3e30fdeaa3d))
|
|
642
|
+
|
|
643
|
+
## [0.5.0-beta.15](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.14...sdk-v0.5.0-beta.15) (2026-08-21)
|
|
644
|
+
|
|
645
|
+
|
|
646
|
+
### Bug Fixes
|
|
647
|
+
|
|
648
|
+
* **scaffold:** align generated domains with the cohort ([#142](https://github.com/astrale-os/sdk/issues/142)) ([3877bfa](https://github.com/astrale-os/sdk/commit/3877bfa1713093b5beaf42dca18e7daf26f7866b))
|
|
649
|
+
|
|
650
|
+
## [0.5.0-beta.14](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.13...sdk-v0.5.0-beta.14) (2026-08-21)
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
### Bug Fixes
|
|
654
|
+
|
|
655
|
+
* adopt the official kernel cohort ([#140](https://github.com/astrale-os/sdk/issues/140)) ([afb6580](https://github.com/astrale-os/sdk/commit/afb6580bc7ac39a1cc32a8668ba70ec19767b1be))
|
|
656
|
+
|
|
657
|
+
## [0.5.0-beta.13](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.12...sdk-v0.5.0-beta.13) (2026-08-21)
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+
### ⚠ BREAKING CHANGES
|
|
661
|
+
|
|
662
|
+
* View declarations no longer accept or expose auth. Function authentication uses anonymous, authenticated, or authorized, while frontend access remains governed by publication routes and Shell handshake.
|
|
663
|
+
|
|
664
|
+
### Features
|
|
665
|
+
|
|
666
|
+
* remove View authentication metadata ([33e99ad](https://github.com/astrale-os/sdk/commit/33e99adcee470a7f78278dbc3db6023c099d058f))
|
|
667
|
+
|
|
668
|
+
## [0.5.0-beta.12](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.11...sdk-v0.5.0-beta.12) (2026-08-21)
|
|
669
|
+
|
|
670
|
+
|
|
671
|
+
### Bug Fixes
|
|
672
|
+
|
|
673
|
+
* **app:** align InvocationError with Protocol ([f0b921f](https://github.com/astrale-os/sdk/commit/f0b921fbd58230fd599446a69971cf8bf7b96d3a))
|
|
674
|
+
* **app:** align InvocationError with Protocol ([f07d0ae](https://github.com/astrale-os/sdk/commit/f07d0ae59103022f85475baf925f8ad35f6d8cca))
|
|
675
|
+
|
|
676
|
+
## [0.5.0-beta.11](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.10...sdk-v0.5.0-beta.11) (2026-08-21)
|
|
677
|
+
|
|
678
|
+
|
|
679
|
+
### Bug Fixes
|
|
680
|
+
|
|
681
|
+
* **app:** expose Domain InvocationError ([bf23fc9](https://github.com/astrale-os/sdk/commit/bf23fc9c37d3388d6a841fab9d3af8776cd38847))
|
|
682
|
+
* **app:** expose Domain InvocationError ([b2e5bbe](https://github.com/astrale-os/sdk/commit/b2e5bbe2a078ae09da69f9632f2dcf758d194294))
|
|
683
|
+
* **ci:** qualify packed frontend lint boundary ([09478b4](https://github.com/astrale-os/sdk/commit/09478b4bde3fada6b4fbc3a9a56a5945ce6e5618))
|
|
684
|
+
|
|
685
|
+
## [0.5.0-beta.10](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.9...sdk-v0.5.0-beta.10) (2026-08-21)
|
|
686
|
+
|
|
687
|
+
|
|
688
|
+
### Bug Fixes
|
|
689
|
+
|
|
690
|
+
* **auth:** delegate Subject to Core ([c653d46](https://github.com/astrale-os/sdk/commit/c653d460a64cc2d9b1696c4dcd502b3e03b4f61f))
|
|
691
|
+
* **deps:** require Subject-compatible kernel cohort ([1146277](https://github.com/astrale-os/sdk/commit/114627729eea51b6960d28b36b71c6ad93bae6bc))
|
|
692
|
+
* **sdk:** restore private invocation boundary ([af016b0](https://github.com/astrale-os/sdk/commit/af016b09212d5a31afb139eaa917bd74dcb9823f))
|
|
693
|
+
|
|
694
|
+
## [0.5.0-beta.9](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.8...sdk-v0.5.0-beta.9) (2026-08-21)
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
### ⚠ BREAKING CHANGES
|
|
698
|
+
|
|
699
|
+
* Cloudflare domain workers no longer expose the legacy /meta endpoint; consumers must use the canonical Publication chain.
|
|
700
|
+
|
|
701
|
+
### Features
|
|
702
|
+
|
|
703
|
+
* qualify deployment readiness through publications ([980cd35](https://github.com/astrale-os/sdk/commit/980cd35587483b50851744137f569a7bf0bb89bf))
|
|
704
|
+
|
|
705
|
+
|
|
706
|
+
### Bug Fixes
|
|
707
|
+
|
|
708
|
+
* **invocation:** preserve mutation replay key ([951c404](https://github.com/astrale-os/sdk/commit/951c40429f8eb818e2ce2f60cd15d7e99d3636e4))
|
|
709
|
+
* **invocation:** preserve mutation replay key ([8f30a50](https://github.com/astrale-os/sdk/commit/8f30a5082bbcf34b0d243e3dd8da0d7a1f410ed8))
|
|
710
|
+
|
|
711
|
+
## [0.5.0-beta.8](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.7...sdk-v0.5.0-beta.8) (2026-08-21)
|
|
712
|
+
|
|
713
|
+
|
|
714
|
+
### Bug Fixes
|
|
715
|
+
|
|
716
|
+
* **release:** target repository when dispatching publish ([8cfc337](https://github.com/astrale-os/sdk/commit/8cfc3377b735dc40a5a82dc99ad71539d1e6718f))
|
|
717
|
+
* **release:** target repository when dispatching publish ([c94c89e](https://github.com/astrale-os/sdk/commit/c94c89ebebab83d88aa7b0ffbd9bc5010c9f4322))
|
|
718
|
+
|
|
719
|
+
## [0.5.0-beta.7](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.6...sdk-v0.5.0-beta.7) (2026-08-21)
|
|
720
|
+
|
|
721
|
+
|
|
722
|
+
### Bug Fixes
|
|
723
|
+
|
|
724
|
+
* **ci:** dispatch trusted Publish workflow ([d1c746d](https://github.com/astrale-os/sdk/commit/d1c746d2d682777ee8c0022f62a9e4801deee707))
|
|
725
|
+
* **ci:** dispatch trusted Publish workflow ([5b4caa0](https://github.com/astrale-os/sdk/commit/5b4caa06b27739cdee0fb1e6214a02771cb72857))
|
|
726
|
+
|
|
727
|
+
## [0.5.0-beta.6](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.5...sdk-v0.5.0-beta.6) (2026-08-21)
|
|
728
|
+
|
|
729
|
+
|
|
730
|
+
### Bug Fixes
|
|
731
|
+
|
|
732
|
+
* **ci:** isolate reusable publish concurrency ([f1436b0](https://github.com/astrale-os/sdk/commit/f1436b0f2ae4fb6f62b6491e32acd88397e9c9be))
|
|
733
|
+
* **ci:** isolate reusable publish concurrency ([b2de893](https://github.com/astrale-os/sdk/commit/b2de8937c147abf7da92f6824c69335527eacf74))
|
|
734
|
+
* **scaffold:** require compatible Shell beta ([f61a356](https://github.com/astrale-os/sdk/commit/f61a356d352b99ac7f6fd4be6b27ac9fb5b83b2a))
|
|
735
|
+
* **scaffold:** require compatible Shell beta ([7a8016a](https://github.com/astrale-os/sdk/commit/7a8016aa21db53bc8e472805b50c9a976a6bf283))
|
|
736
|
+
* **test:** launch Wrangler from its package root ([#122](https://github.com/astrale-os/sdk/issues/122)) ([547b450](https://github.com/astrale-os/sdk/commit/547b45022625fc84834215223e6e4ffb56f862ad))
|
|
737
|
+
|
|
738
|
+
## [0.5.0-beta.5](https://github.com/astrale-os/sdk/compare/sdk-v0.5.0-beta.1...sdk-v0.5.0-beta.5) (2026-08-21)
|
|
739
|
+
|
|
740
|
+
|
|
741
|
+
### ⚠ BREAKING CHANGES
|
|
742
|
+
|
|
743
|
+
* expose explicit edge builders
|
|
744
|
+
* **sdk:** Capability replay kind non-repeatable is replaced by unsafe.
|
|
745
|
+
* adopt path-only invocation
|
|
746
|
+
* **sdk:** introduce semantic authoring modules
|
|
747
|
+
* **server:** adopt publication and installation vocabulary
|
|
748
|
+
* rename domain-config `installLocation` → `path` ([#18](https://github.com/astrale-os/sdk/issues/18))
|
|
749
|
+
* **backend:** drop ctx.graph; ctx.kernel carries the graph sugar directly
|
|
750
|
+
* **backend:** remove dead graph-patch, workerMeta, hashSpecFile; patch types from core
|
|
751
|
+
* pushPatch and PatchKernel are removed from @astrale-os/sdk. Batch graph writes through ctx.graph.mutate(patch) instead.
|
|
752
|
+
|
|
753
|
+
* **backend:** drop ctx.graph; ctx.kernel carries the graph sugar directly ([c08b5a9](https://github.com/astrale-os/sdk/commit/c08b5a925aed63bd8c60dfaa5d23e3a02e8e8906))
|
|
754
|
+
* **backend:** remove dead graph-patch, workerMeta, hashSpecFile; patch types from core ([bdf5483](https://github.com/astrale-os/sdk/commit/bdf54834b6577aa862471118adf1ea455cef0e8c))
|
|
755
|
+
* rename domain-config `installLocation` → `path` ([#18](https://github.com/astrale-os/sdk/issues/18)) ([e34bd3a](https://github.com/astrale-os/sdk/commit/e34bd3a77de6279e9f221996f04f56040233161d))
|
|
756
|
+
* route SDK graph access through function.get/mutate doors ([adf07ff](https://github.com/astrale-os/sdk/commit/adf07ffd423e8824ebeb8dcac525fb7b819d0ae6))
|
|
757
|
+
* **server:** adopt publication and installation vocabulary ([7309843](https://github.com/astrale-os/sdk/commit/7309843f7da3d349216a8392a87ecd989a14ae06))
|
|
758
|
+
|
|
759
|
+
|
|
760
|
+
### Features
|
|
761
|
+
|
|
762
|
+
* **adapter-cloudflare:** load worker domains lazily ([15df5b1](https://github.com/astrale-os/sdk/commit/15df5b14f06c0a469dbdcedda2f331594d943397))
|
|
763
|
+
* **adapter-cloudflare:** load worker domains lazily ([45deafd](https://github.com/astrale-os/sdk/commit/45deafda5060be9000a4bd8a8048c5a945b193ae))
|
|
764
|
+
* **adapter-cloudflare:** resolve domain environment from bindings ([68dfa2b](https://github.com/astrale-os/sdk/commit/68dfa2bec4a8e69d34cd0dfa5e71353bde5dfc8c))
|
|
765
|
+
* add .dev.vars to .gitignore and update type assertion in derivePublicJwk function ([9a0cfc1](https://github.com/astrale-os/sdk/commit/9a0cfc13944f34ccd790a2f9832332886d6aaf1a))
|
|
766
|
+
* add `installLocation` domain-config field; place domains under /domains/<origin> ([7ee04f7](https://github.com/astrale-os/sdk/commit/7ee04f78dd70f584a1addcdbc2a981280dba94c0))
|
|
767
|
+
* add auth policy to remote method definitions ([369d5b4](https://github.com/astrale-os/sdk/commit/369d5b42561f502b8dd38986051aa217d4de2f46))
|
|
768
|
+
* add authorize hook + assertPerm helpers + fix public auth policy ([b644585](https://github.com/astrale-os/sdk/commit/b6445857cd3bef35890388869a4c61e5a618b35a))
|
|
769
|
+
* add comments.json template and update CLI references in publish functions ([b689797](https://github.com/astrale-os/sdk/commit/b689797b7139b380943390fddae95e9a2c040ce4))
|
|
770
|
+
* add defineCapability SDK contract ([2fe180a](https://github.com/astrale-os/sdk/commit/2fe180a0b46f845b99ff892c451b0e8edfa2527f))
|
|
771
|
+
* add defineCapability SDK contract ([1478747](https://github.com/astrale-os/sdk/commit/1478747becef9c6ebb90548bb340a0293e6b6dee))
|
|
772
|
+
* add dispatch method to SdkDispatcher for handling local resolutions and return types ([5c190b1](https://github.com/astrale-os/sdk/commit/5c190b15df995b34b24bc7ed1036745d08c52d31))
|
|
773
|
+
* add governed domain architecture toolkit ([672b179](https://github.com/astrale-os/sdk/commit/672b1793b8bc6d70e673c3276eb8d07196a36329))
|
|
774
|
+
* add governed domain architecture toolkit ([c36c54d](https://github.com/astrale-os/sdk/commit/c36c54d5c5b532dbd115d6e2ef601d46298ad110))
|
|
775
|
+
* add latest version of @typescript/native-preview to devDependencies ([003647a](https://github.com/astrale-os/sdk/commit/003647a30f96c1a161bf773946e221a5a71b8470))
|
|
776
|
+
* add manifest support for domain definition and metadata ([247afa2](https://github.com/astrale-os/sdk/commit/247afa2f1bf502a94221b2209af61ff36348829e))
|
|
777
|
+
* add optional core parameter to RemoteDomain and RemoteDomainConfig types ([ebacba6](https://github.com/astrale-os/sdk/commit/ebacba687506e81702d08115eeb623331b31d2ec))
|
|
778
|
+
* add remoteInterfaceMethods factory for interface-hosted methods ([#5](https://github.com/astrale-os/sdk/issues/5)) ([9f05a0c](https://github.com/astrale-os/sdk/commit/9f05a0cb71d1b8f73d7f676fb8af1e19ef9d1510))
|
|
779
|
+
* add requireEnv helper and require issuer in createRemoteServer ([ac4f25a](https://github.com/astrale-os/sdk/commit/ac4f25a610a549f069739a2b09891b0529fc2ec7))
|
|
780
|
+
* add schema-first domain definition ([72cd622](https://github.com/astrale-os/sdk/commit/72cd622de2b056086d3eb5fdaf85b0225f9c9713))
|
|
781
|
+
* add SDK v2 with JSON-RPC support and streaming capabilities ([a9c30ec](https://github.com/astrale-os/sdk/commit/a9c30ec1527e381c715d7881200af3db0903dc53))
|
|
782
|
+
* add SDK-native Astrale domain linter ([#50](https://github.com/astrale-os/sdk/issues/50)) ([002c4f0](https://github.com/astrale-os/sdk/commit/002c4f0da8f09670d4ad3fa8c139d336a0d6ca52))
|
|
783
|
+
* add semantic kernel facades ([31a212c](https://github.com/astrale-os/sdk/commit/31a212c9baf1b810e3948e654f042327ac06a0c1))
|
|
784
|
+
* add semantic kernel facades ([260c31c](https://github.com/astrale-os/sdk/commit/260c31cd25015f0ac2f2aa5d07d84294e4b9e50b))
|
|
785
|
+
* add unit tests for method resolution and enhance normalization logic ([b4ffebd](https://github.com/astrale-os/sdk/commit/b4ffebd3cc4a54aaf1eb2221982c46ddf32329fc))
|
|
786
|
+
* adopt kernel client session vocabulary ([87de6f1](https://github.com/astrale-os/sdk/commit/87de6f15bdf8b77b1f7bc0e06cdbae00efe2bec5))
|
|
787
|
+
* adopt Kernel Client Session vocabulary ([8810285](https://github.com/astrale-os/sdk/commit/881028508c4823315ecd2160161475c5cb7d871f))
|
|
788
|
+
* adopt path-only invocation ([6749661](https://github.com/astrale-os/sdk/commit/67496619c597257e0f3df4b6a888a1dddbec8400))
|
|
789
|
+
* astrale adapter ships prod secrets on the install call ([80f7420](https://github.com/astrale-os/sdk/commit/80f742035df96b13e3ff9c001f525ef543566b5b))
|
|
790
|
+
* astrale-domain publish = register-only (no deploy) + --public-url ([708656b](https://github.com/astrale-os/sdk/commit/708656b4c38b0daa5e69cb88802652fa774daf2b))
|
|
791
|
+
* astrale() managed adapter and template fixes (hono dep, bun compat) ([9cee71c](https://github.com/astrale-os/sdk/commit/9cee71c1c9ecbf6ed42451d8a6ac225ebd38a9c5))
|
|
792
|
+
* author publication authority requirements ([169df91](https://github.com/astrale-os/sdk/commit/169df91ec6ba22f71dd532c122d94c08afed81e1))
|
|
793
|
+
* **auth:** provide domain token exchange ([8fa9466](https://github.com/astrale-os/sdk/commit/8fa9466b643d1d5e49841fb58f5d80bd7d0cec2f))
|
|
794
|
+
* auto-materialize Views/RemoteFunctions + mount worker routes from defineRemoteDomain ([34f4011](https://github.com/astrale-os/sdk/commit/34f4011369d6bedcbd1293f0b43cbc256057c14c))
|
|
795
|
+
* **backend:** bind handler kernels from compiled schemas ([2f87bf9](https://github.com/astrale-os/sdk/commit/2f87bf9dc65362c1a8bd552a99afb1d8c9fe3439))
|
|
796
|
+
* **backend:** carry declarative core into builds ([e9b64b1](https://github.com/astrale-os/sdk/commit/e9b64b14ac1ac7eeb93b3b8c60f586631ca5ecfb))
|
|
797
|
+
* **backend:** provide Domain token exchange ([d9bc475](https://github.com/astrale-os/sdk/commit/d9bc475f14fa47bea2c7bcd1c01485ed3eac75ea))
|
|
798
|
+
* **backend:** support deferred and redirected functions ([4180d69](https://github.com/astrale-os/sdk/commit/4180d694a15af6de20f4c684b32fd91bde33425c))
|
|
799
|
+
* **backend:** support deferred handler execution ([1bb4fd8](https://github.com/astrale-os/sdk/commit/1bb4fd8fc5cd8b0c1e270f791a063caafd6b6643))
|
|
800
|
+
* carry publication and caller authority ([64088be](https://github.com/astrale-os/sdk/commit/64088be1d188229b78d3062a1f1671138ad645f6))
|
|
801
|
+
* **cli:** consume canonical domain definitions ([c498a8b](https://github.com/astrale-os/sdk/commit/c498a8b4c88d850f4e26c0fe5511eb6ed223577f))
|
|
802
|
+
* cloudflare adapter, create-astrale-domain, and devkit ([60d67ec](https://github.com/astrale-os/sdk/commit/60d67ec1f2dad3a77cce4c3410d6e52c088c228a))
|
|
803
|
+
* complete kernel v2 sdk migration ([854114d](https://github.com/astrale-os/sdk/commit/854114d256156cbb4e7f2e0fe3c50b3c99553db8))
|
|
804
|
+
* config hot-regen (adapter.regenerate + config watch) + X-Forwarded-Proto origin upgrade ([4cd5fb8](https://github.com/astrale-os/sdk/commit/4cd5fb878d03cd4333c12b10e48094f78e70c29b))
|
|
805
|
+
* ctx.callRemote for worker→worker remote-method calls ([d61a3aa](https://github.com/astrale-os/sdk/commit/d61a3aaa99b8d6ecb4b9e7e9f91e6a7c1b88b3fe))
|
|
806
|
+
* declare remote functions in the schema (functions-in-DSL) ([f5c1482](https://github.com/astrale-os/sdk/commit/f5c1482398de83091557ea1b20a6f08f92d570a4))
|
|
807
|
+
* decouple JWT issuer from server URL and use method path as outbound subject ([3af4055](https://github.com/astrale-os/sdk/commit/3af4055121dff6ef0d1cf5f2a192b7cdff719145))
|
|
808
|
+
* defineView and defineRemoteFunction declarative authoring helpers ([b300183](https://github.com/astrale-os/sdk/commit/b30018354e7523e06563f7db570db9548eccf332))
|
|
809
|
+
* dev --host <public-url> for off-localhost dev ([0d13136](https://github.com/astrale-os/sdk/commit/0d1313666a36bb69e0efcfc030cc5849bdc6db8d))
|
|
810
|
+
* devkit dev --port override ([17ff493](https://github.com/astrale-os/sdk/commit/17ff493f865a9227c56474ee83003d285c3f9e2a))
|
|
811
|
+
* devkit dx batch — loud dev build failure, adapter-swap hint, managed footer, missing-def hint ([b6c0b0b](https://github.com/astrale-os/sdk/commit/b6c0b0b611a9887b06569d6798d46c2b76016856))
|
|
812
|
+
* enhance authorization flow with JWKS and issuer registry support ([2bfab25](https://github.com/astrale-os/sdk/commit/2bfab25d1d651e7b97137a53112c20f4816212bd))
|
|
813
|
+
* enhance identity handling and function path derivation in remote server setup ([6cbdf59](https://github.com/astrale-os/sdk/commit/6cbdf591913bd982f5b3b070dd86316a6fb4f4f6))
|
|
814
|
+
* enhance SDK v2 with new domain methods and testing framework ([3ba1b5e](https://github.com/astrale-os/sdk/commit/3ba1b5e00b4af316ddbfec188a8cbefdd1846a6c))
|
|
815
|
+
* enhance SDK with domain installation and authorization features ([faaebab](https://github.com/astrale-os/sdk/commit/faaebab1ec1ec5ee29d56b765ccae18f26730653))
|
|
816
|
+
* enhance SdkValidationError to include detailed error messages and structure ([c498580](https://github.com/astrale-os/sdk/commit/c498580e44132ce05c272f13f557954f92b545c7))
|
|
817
|
+
* enhance self resolution handling and add tests for resolveSelf functionality ([63c8de5](https://github.com/astrale-os/sdk/commit/63c8de5b08281afc803dc57e711d080da374acb7))
|
|
818
|
+
* expose dispatcher capabilities to handlers ([0e32cba](https://github.com/astrale-os/sdk/commit/0e32cba3af1aeace84e695bfabdbd35eda9415fc))
|
|
819
|
+
* expose dispatcher capabilities to handlers ([26d5891](https://github.com/astrale-os/sdk/commit/26d5891986fc10c6db04a8559f3761fd42be3a64))
|
|
820
|
+
* expose explicit edge builders ([c067445](https://github.com/astrale-os/sdk/commit/c0674455f470d648cb91d856dc55e6332b088e9b))
|
|
821
|
+
* expose kernel client to defineRemoteFunction handlers ([b1ff25a](https://github.com/astrale-os/sdk/commit/b1ff25a698045b1a6df2df0d85072515f57c43dd))
|
|
822
|
+
* fail loud when a preset-declared secrets file is missing ([d2f7202](https://github.com/astrale-os/sdk/commit/d2f7202fc5f8b177a0b6da77cedb3b9504eec825))
|
|
823
|
+
* implement buildSpec function for RemoteDomain and update exports ([a1673db](https://github.com/astrale-os/sdk/commit/a1673dbfd3e7dc3b29e8f4ba03bfed2df5d8a4c8))
|
|
824
|
+
* implement deploy check functionality and related types for SDK deployment validation ([bf81c9a](https://github.com/astrale-os/sdk/commit/bf81c9abc5fe02efbec78786200a8aee2eabda16))
|
|
825
|
+
* implement managed service readiness checks and retry logic ([4d5f91d](https://github.com/astrale-os/sdk/commit/4d5f91dcadaf3f3314ba1de6d4bbbd380615038d))
|
|
826
|
+
* Implement StatusPage functionality with monitoring capabilities ([18cc7f6](https://github.com/astrale-os/sdk/commit/18cc7f6ea95e47740857effa19551c6ef58be725))
|
|
827
|
+
* initial SDK packages for Astrale OS ([9b0e085](https://github.com/astrale-os/sdk/commit/9b0e08591b301882686db51703ccf730901f70b6))
|
|
828
|
+
* integrate remaining kernel v2 SDK changes ([c614eac](https://github.com/astrale-os/sdk/commit/c614eacfbe6096021c174fa9fa517ed36fe2ac12))
|
|
829
|
+
* integrate remaining kernel v2 SDK changes ([e144a77](https://github.com/astrale-os/sdk/commit/e144a7762358df4a4d951d6e89278de38454ce69))
|
|
830
|
+
* introduce deploy and domain configuration for standalone domains ([eac596b](https://github.com/astrale-os/sdk/commit/eac596b3774719f2767ec8f2d6ec8bde60502266))
|
|
831
|
+
* introduce remote server configuration and creation ([a669256](https://github.com/astrale-os/sdk/commit/a669256cb88010f5b7f2aba135d6e5b32db15507))
|
|
832
|
+
* **invocation:** add v2 handler adapter ([87943bd](https://github.com/astrale-os/sdk/commit/87943bd3d9a02d71d241f9ee43c372e6732f679c))
|
|
833
|
+
* lazy self.node() accessor for method handlers ([920ac6a](https://github.com/astrale-os/sdk/commit/920ac6ae98690008ae9348fcd6eac11aba5072dc))
|
|
834
|
+
* managed adapter is the scaffold default; --instance stamps the slug ([4e300d6](https://github.com/astrale-os/sdk/commit/4e300d692e6b8bc91d9f298fb21f936ada9c10d9))
|
|
835
|
+
* managed deploys ship the client SPA — /ui serves on managed services ([51c1ee3](https://github.com/astrale-os/sdk/commit/51c1ee37d3f0b17c2ad6b0640a28cb951c446a59))
|
|
836
|
+
* modernize domain scaffolding ([d0830af](https://github.com/astrale-os/sdk/commit/d0830afb093426884b68a62266d64e1c67c0117a))
|
|
837
|
+
* normalize method names in resolveMethod and update buildSpec return type ([4175e22](https://github.com/astrale-os/sdk/commit/4175e220fdb0cc8ea603de10ea01f6fe37e1caf2))
|
|
838
|
+
* prepare canonical domain publications ([d27135f](https://github.com/astrale-os/sdk/commit/d27135f1d5dc5f0b973b7fb2a0f1b042610f6067))
|
|
839
|
+
* promote v2 to top-level sdk, archive legacy packages ([05946b0](https://github.com/astrale-os/sdk/commit/05946b05caa0e541ed6e6e40ad232a8a136c1605))
|
|
840
|
+
* **react:** add managed domain frontend substrate ([459ea31](https://github.com/astrale-os/sdk/commit/459ea31e121e74707d3bd08038516fcf37dec115))
|
|
841
|
+
* **react:** add managed Domain frontend substrate ([60d011d](https://github.com/astrale-os/sdk/commit/60d011d3efad53e407631b0ab653b3c45b782a51))
|
|
842
|
+
* redesign remote context api ([de02159](https://github.com/astrale-os/sdk/commit/de0215924b5b5e4c0c2055358ba93603a266792c))
|
|
843
|
+
* redesign remote context api ([f332ac8](https://github.com/astrale-os/sdk/commit/f332ac8fa9f9978e8f1ea975e1c36f371753e62d))
|
|
844
|
+
* refactor authentication and identity handling, improve method resolution and deploy checks ([a70bf10](https://github.com/astrale-os/sdk/commit/a70bf101473404b364dfed34b50a5d62c56b1d7d))
|
|
845
|
+
* refine domain dx refactor ([b2f7768](https://github.com/astrale-os/sdk/commit/b2f7768b521563a22411562d3878bb1c18d2ee86))
|
|
846
|
+
* replace BoundClient with BoundSessionView in authentication and dispatch layers ([c6020e3](https://github.com/astrale-os/sdk/commit/c6020e39fe4cee59d124c000def2ef0f9c1250ce))
|
|
847
|
+
* rich typed self (BoundNode) + schema-bound dispatch wiring ([#16](https://github.com/astrale-os/sdk/issues/16)) ([05c46b8](https://github.com/astrale-os/sdk/commit/05c46b8d01663aeb26e2bc2b0db266a182ea685e))
|
|
848
|
+
* scaffold ships the astrale-cli skill alongside astrale-domain ([52519c4](https://github.com/astrale-os/sdk/commit/52519c448ef3ea7a67d6649378f94b9bfcf63929))
|
|
849
|
+
* scaffolder prints the workspace-level skills registration one-liner ([9d838be](https://github.com/astrale-os/sdk/commit/9d838bea586524ad300abf0e84688b29a297d8cc))
|
|
850
|
+
* **scaffold:** make the default domain template a wired blank skeleton ([74e72d5](https://github.com/astrale-os/sdk/commit/74e72d52852c907bb4b5c04fe00a71e1bce9351d))
|
|
851
|
+
* **scaffold:** rebuild the default domain template ([#43](https://github.com/astrale-os/sdk/issues/43)) ([091147c](https://github.com/astrale-os/sdk/commit/091147c156a2bfff783fa002cd0e7a8152013d33))
|
|
852
|
+
* scaffolds ship the astrale-domain authoring skill (.agents/skills) ([5e3338d](https://github.com/astrale-os/sdk/commit/5e3338dc94bb059df3ef1465329df81c92df94ff))
|
|
853
|
+
* **sdk:** add typed domain scaffolding ([bedff51](https://github.com/astrale-os/sdk/commit/bedff51fd81766077e92c34ef87667afc6ad1069))
|
|
854
|
+
* **sdk:** add typed domain scaffolding ([66a8b14](https://github.com/astrale-os/sdk/commit/66a8b14a1ae71de2a3578a7e9fcb5b771138ad26))
|
|
855
|
+
* **sdk:** expand governed domain primitives ([ecfa7c8](https://github.com/astrale-os/sdk/commit/ecfa7c8da819c68bf0de34003eb94b53e0ae0cb9))
|
|
856
|
+
* **sdk:** introduce semantic authoring modules ([638efd5](https://github.com/astrale-os/sdk/commit/638efd50be696cb2023996fadcb9f58eb602b7c6))
|
|
857
|
+
* **sdk:** rename replay kind to unsafe ([80ed6de](https://github.com/astrale-os/sdk/commit/80ed6de1c6f4ca03f4e434f72b46405ae6cf30d2))
|
|
858
|
+
* **sdk:** wire capability execution ([0d89524](https://github.com/astrale-os/sdk/commit/0d8952415d3470bc0a9d91d91f696d167df20b86))
|
|
859
|
+
* **sdk:** wire capability execution ([433beeb](https://github.com/astrale-os/sdk/commit/433beebe2ef88eb2117f08c092b5a643c7707389))
|
|
860
|
+
* selfKernel — public/webhook handlers act as the function's own identity ([30b71b6](https://github.com/astrale-os/sdk/commit/30b71b65e6a5e89939fcb257ce2235cc0a710876))
|
|
861
|
+
* selfKernel in the view render context + dev port auto-pick ([6a53616](https://github.com/astrale-os/sdk/commit/6a53616eab32accab79490e85cd2a3b9dc061f02))
|
|
862
|
+
* **server:** compose v2 application lifecycle ([68fa85a](https://github.com/astrale-os/sdk/commit/68fa85af6d98d3e4d244bf9142cdfe6787918842))
|
|
863
|
+
* single status-page view; release 0.2.0 ([cb202cd](https://github.com/astrale-os/sdk/commit/cb202cd30f15965d5d06657aec4bc1425b972a76))
|
|
864
|
+
* stamp /meta endpoint and spec.json with build provenance ([41d8a92](https://github.com/astrale-os/sdk/commit/41d8a92d0dce55c6ba91a7e59f11d6abd661a27c))
|
|
865
|
+
* support domain import aliases ([d56ec80](https://github.com/astrale-os/sdk/commit/d56ec801a35aab45ea2472a0cfaad319c8f52752))
|
|
866
|
+
* **template:** add domain import aliases ([b67032e](https://github.com/astrale-os/sdk/commit/b67032ec09ec0aefa8400f21170cfccde345a9fa))
|
|
867
|
+
* type auth context by policy ([db3d5f5](https://github.com/astrale-os/sdk/commit/db3d5f5278838136936808fd22519efa99e2af50))
|
|
868
|
+
* update /meta endpoint to publish JWKS URL and improve identity resolution ([265c170](https://github.com/astrale-os/sdk/commit/265c170d0ce4fd6bb47636865b9c734482064816))
|
|
869
|
+
* update buildSpec and defineRemoteDomain to streamline remote domain handling ([daba714](https://github.com/astrale-os/sdk/commit/daba714624cbb066a6ced0c18884670545e90d42))
|
|
870
|
+
* update buildSpec and identity binding to use Graph instead of PortableSpec ([acd3441](https://github.com/astrale-os/sdk/commit/acd344152dba56487076da10c1b5fe1ff9675e59))
|
|
871
|
+
* validate function outputs against outputSchema (parity with kernel) ([#6](https://github.com/astrale-os/sdk/issues/6)) ([22648ea](https://github.com/astrale-os/sdk/commit/22648ea2c9ceca5ff42dbaaf78944935c957c3f9))
|
|
872
|
+
* **worker:** add declarative hosted functions ([407f50c](https://github.com/astrale-os/sdk/commit/407f50c07f1b23455ac8bc0c90c1599f85e21a2b))
|
|
873
|
+
* **worker:** add declarative hosted functions ([ea0e457](https://github.com/astrale-os/sdk/commit/ea0e45739249f3503aa169a072c6ebaacd296bd8))
|
|
874
|
+
* **worker:** bind lazy domain resolution ([083a195](https://github.com/astrale-os/sdk/commit/083a195e67324957024fa65f47dc3fb6c6a9d3ee))
|
|
875
|
+
* **worker:** bind lazy Domain resolution ([f2b3612](https://github.com/astrale-os/sdk/commit/f2b3612d605689f4c364ea05b8ffbf990b8f6ed6))
|
|
876
|
+
* **worker:** compose domain environment from Cloudflare bindings ([dc7852c](https://github.com/astrale-os/sdk/commit/dc7852c02cc880fb7461dbab090243420faf5ecc))
|
|
877
|
+
* **worker:** refine monitoring template ([4c1887c](https://github.com/astrale-os/sdk/commit/4c1887c09fd1a785a72a47258bf2b4a4d87c859f))
|
|
878
|
+
* **worker:** simplify inline step contract ([de6a6e1](https://github.com/astrale-os/sdk/commit/de6a6e1eb11330ac552f491014d28507594f1c03))
|
|
879
|
+
* workspace-refactor enablers — manifest roles, DomainIssuer mint seam, fn-context graph ([6202965](https://github.com/astrale-os/sdk/commit/62029654453f67a365df93abaa9bcd1db130baff))
|
|
880
|
+
|
|
881
|
+
|
|
882
|
+
### Bug Fixes
|
|
883
|
+
|
|
884
|
+
* 30m session-credential ttl — handlers outliving 60s could not write back ([985834d](https://github.com/astrale-os/sdk/commit/985834d0fd8a869633698d50f6fe30d32f457ce9))
|
|
885
|
+
* accept public/optional functions in domain function maps ([#9](https://github.com/astrale-os/sdk/issues/9)) ([46ccb4a](https://github.com/astrale-os/sdk/commit/46ccb4a7c6ff3c582475f2baaad60fb3a112d24e))
|
|
886
|
+
* accept public/optional method handlers in the AnyRemoteHandler bag ([#10](https://github.com/astrale-os/sdk/issues/10)) ([4969779](https://github.com/astrale-os/sdk/commit/49697796988ad28174cf16993401715c5282fe45))
|
|
887
|
+
* adapt build-spec to the kernel two-axis placement (parent, not mount) ([#17](https://github.com/astrale-os/sdk/issues/17)) ([61ac025](https://github.com/astrale-os/sdk/commit/61ac025bfe51f9460caf470be005b43716f0117c))
|
|
888
|
+
* **adapter-cloudflare:** keep Wrangler logs in workspace [skip ci] ([bb1dadc](https://github.com/astrale-os/sdk/commit/bb1dadc19c50747d851688ec644a4279a557a035))
|
|
889
|
+
* **adapter-cloudflare:** pin supported compatibility date ([9fd9798](https://github.com/astrale-os/sdk/commit/9fd9798037a50a1878b842aec1c96ad432f21d3b))
|
|
890
|
+
* **adapter-cloudflare:** pin supported compatibility date ([9652315](https://github.com/astrale-os/sdk/commit/9652315c78c86a4e11b797727ca91e80e2c52048))
|
|
891
|
+
* **adapter-cloudflare:** preserve remote invocation lifetime ([a77f4bf](https://github.com/astrale-os/sdk/commit/a77f4bfc2af85e053f532d76696bfce0c53342e0))
|
|
892
|
+
* **adapter-cloudflare:** preserve remote invocation lifetime ([fe95965](https://github.com/astrale-os/sdk/commit/fe95965c2e170526bc5c5865b83eef3e6e0804f8))
|
|
893
|
+
* **adapter-cloudflare:** refresh worker compatibility baseline ([00b921c](https://github.com/astrale-os/sdk/commit/00b921c4d111f7b8f0888bce11e433c0fa2220c6))
|
|
894
|
+
* add js/cjs/mjs to lint-staged config ([d932f8f](https://github.com/astrale-os/sdk/commit/d932f8f8c1825bc05a80654bcffcc3208bec1a65))
|
|
895
|
+
* align domain runtime with current kernel ([ab97857](https://github.com/astrale-os/sdk/commit/ab978576709860097a63f8cec40122a2fb35e64a))
|
|
896
|
+
* align packed beta scaffold ([e3fb45f](https://github.com/astrale-os/sdk/commit/e3fb45f1e50402c93df57da33e9bc0f2c88c5ab9))
|
|
897
|
+
* align remote domain delivery with current kernel protocol ([3cd6e2a](https://github.com/astrale-os/sdk/commit/3cd6e2aa1529c2d99b0643bd5c6d0fc349863f7a))
|
|
898
|
+
* align remote domain delivery with current kernel protocol ([3cd6e2a](https://github.com/astrale-os/sdk/commit/3cd6e2aa1529c2d99b0643bd5c6d0fc349863f7a))
|
|
899
|
+
* align SDK with current kernel beta APIs ([7a0bf6e](https://github.com/astrale-os/sdk/commit/7a0bf6e1dea5b619d15e536bb9dab7ef3afaa43f))
|
|
900
|
+
* align SDK with the current Kernel cohort ([0e553f8](https://github.com/astrale-os/sdk/commit/0e553f8a6af5b265bc4ec82211ef040625bc735a))
|
|
901
|
+
* apply CORS to auxiliary /functions and /views routes ([0cb8e12](https://github.com/astrale-os/sdk/commit/0cb8e12ae97c7b334584bcd79d2e907fbbf0ffa9))
|
|
902
|
+
* **app:** pin exchange proof verification basis ([bdd8782](https://github.com/astrale-os/sdk/commit/bdd878212ec4466647d3a8de789e29ed5cb92666))
|
|
903
|
+
* **app:** resolve eslint errors for empty object and any types ([6e4272a](https://github.com/astrale-os/sdk/commit/6e4272a3af3770e65f1e079838866e67edb05084))
|
|
904
|
+
* **app:** restore zod type import ([c9a9f99](https://github.com/astrale-os/sdk/commit/c9a9f997f390aa587749511862b57ead47c2b8ad))
|
|
905
|
+
* **app:** skip scaffold target instance prompt ([8b0254a](https://github.com/astrale-os/sdk/commit/8b0254a7b71f66f6773ca977a2f1bdbeacddd93a))
|
|
906
|
+
* **app:** skip scaffold target instance prompt (issue iss_8abc9b4b) ([fd6608e](https://github.com/astrale-os/sdk/commit/fd6608e2abeececd4d55552acd5283649b71e385))
|
|
907
|
+
* **backend:** deploy services by semantic method path ([991dcae](https://github.com/astrale-os/sdk/commit/991dcaecb861be7fe884ed9ff34e0d8c403e3135))
|
|
908
|
+
* **backend:** emit node-compatible ESM specifiers ([7cf13a9](https://github.com/astrale-os/sdk/commit/7cf13a997746ee93ec2ff0eefea27090d737b940))
|
|
909
|
+
* **backend:** forward ctx.issuer to remote handlers ([12031d4](https://github.com/astrale-os/sdk/commit/12031d408d68753f2c2aa53dfc1bb2eb286babdf))
|
|
910
|
+
* **backend:** keep lifetime adapter structurally private ([a3c70be](https://github.com/astrale-os/sdk/commit/a3c70bed0f22ccd7bef417181dbda5d741c44a1b))
|
|
911
|
+
* **ci:** admit packed runtime preinstall ([d34c6d6](https://github.com/astrale-os/sdk/commit/d34c6d6921c616b4df2797011816c20bb5af1557))
|
|
912
|
+
* **ci:** authenticate packed scaffold install ([b1249a7](https://github.com/astrale-os/sdk/commit/b1249a70c0bb3455e62196be75ce58a2d4078800))
|
|
913
|
+
* **ci:** automate SDK beta releases ([bbc2406](https://github.com/astrale-os/sdk/commit/bbc2406bc9c64f7da169dce8b3ce42a8388a1dfc))
|
|
914
|
+
* **ci:** automate SDK beta releases ([8d68ac4](https://github.com/astrale-os/sdk/commit/8d68ac49f57c86d0e758852720d0c56d14b82d83))
|
|
915
|
+
* **ci:** configure GitHub Packages auth for external dependencies ([9cbf721](https://github.com/astrale-os/sdk/commit/9cbf721ae811d3940de34e4c9a0ded09a7998c0d))
|
|
916
|
+
* **ci:** gracefully handle missing external dependencies ([a9e315e](https://github.com/astrale-os/sdk/commit/a9e315e0eae61e4e07e70085f285f75e062cf7db))
|
|
917
|
+
* **ci:** remove cache requirement and use --no-frozen-lockfile ([1f2e25e](https://github.com/astrale-os/sdk/commit/1f2e25e7aafb5efca62de7e0e4e62241c5fda31a))
|
|
918
|
+
* **ci:** target beta versions per package ([392e613](https://github.com/astrale-os/sdk/commit/392e6132638b2156b53dd5d3e8b1ee7b16f3c9eb))
|
|
919
|
+
* **ci:** update publish workflow to handle missing dependencies ([5ce3ea9](https://github.com/astrale-os/sdk/commit/5ce3ea94c217506157302193754e92e69aac8dbb))
|
|
920
|
+
* **ci:** use shared publish action and fix typegraph dependency ([9a211f4](https://github.com/astrale-os/sdk/commit/9a211f4005259ec2ae8178265715aa05fcfa0854))
|
|
921
|
+
* **ci:** verify SDK dist in linked workspaces ([64c47ce](https://github.com/astrale-os/sdk/commit/64c47cecb412b7245497d7990242f3acc4d4994e))
|
|
922
|
+
* clean up error handling and validation ([a669256](https://github.com/astrale-os/sdk/commit/a669256cb88010f5b7f2aba135d6e5b32db15507))
|
|
923
|
+
* **cloudflare:** adapt redirect before request construction ([243c80f](https://github.com/astrale-os/sdk/commit/243c80fcf32fd4cb697a7db64dc912c3e66c9fa9))
|
|
924
|
+
* **cloudflare:** adapt redirect before request construction ([e600814](https://github.com/astrale-os/sdk/commit/e6008146e80e3e8e229a9ec44191d087d39bf27c))
|
|
925
|
+
* **cloudflare:** preserve redirect error semantics ([aa2578c](https://github.com/astrale-os/sdk/commit/aa2578c49258069e1dfc7beb7dc272079b56956b))
|
|
926
|
+
* **cloudflare:** preserve redirect error semantics ([a2486e1](https://github.com/astrale-os/sdk/commit/a2486e1906d20034999f4e9f89bb02d7e65b3bd4))
|
|
927
|
+
* **cloudflare:** publish domain authority requirements ([011b024](https://github.com/astrale-os/sdk/commit/011b024807b327d6e878acc810cb419a8a4c321e))
|
|
928
|
+
* **cloudflare:** publish Domain-owned authority requirements ([a01ab1b](https://github.com/astrale-os/sdk/commit/a01ab1ba5cf3bcf68e240019daf0930e97dcbeae))
|
|
929
|
+
* **cloudflare:** restore service response metadata ([4d56d66](https://github.com/astrale-os/sdk/commit/4d56d6609f186827194e7c73fa800b0f486dee1e))
|
|
930
|
+
* **cloudflare:** restore service response metadata ([50128a1](https://github.com/astrale-os/sdk/commit/50128a1ad1ac82f9335c1c7f70cee2c61bd09d74))
|
|
931
|
+
* cold-run dx batch (timeout, epilogue, pnpm-first, .env.dev) ([a3398f0](https://github.com/astrale-os/sdk/commit/a3398f022e2eca98188627217443369d59469a69))
|
|
932
|
+
* correctness + quality pass on SDK dispatch, auth, and server ([d58f17c](https://github.com/astrale-os/sdk/commit/d58f17c8e95d0f9e201da2534a1243662b9ab5d5))
|
|
933
|
+
* **deploy:** ignore transport ETags in checks ([5c3f1c9](https://github.com/astrale-os/sdk/commit/5c3f1c9154648ae0a9d76bfe44234f4f7dd2f083))
|
|
934
|
+
* **deploy:** ignore transport ETags in checks [skip ci] ([eafd4e2](https://github.com/astrale-os/sdk/commit/eafd4e233786093d21f5edc1effc95480bd35fc3))
|
|
935
|
+
* **deps:** align kernel package family ([aab90fc](https://github.com/astrale-os/sdk/commit/aab90fc4a24a99de70d3d7c984815744e19a0b26))
|
|
936
|
+
* **deps:** require a consistent kernel package set ([11d738c](https://github.com/astrale-os/sdk/commit/11d738c7d0c18fc83c640cf1a055b6dfdfc60679))
|
|
937
|
+
* **deps:** require edge-cardinality kernel packages ([c7b81f8](https://github.com/astrale-os/sdk/commit/c7b81f894202e8826d0dbff1be3233894c6dc410))
|
|
938
|
+
* devkit --help prints usage instead of deploying; devkit 0.1.6 ([65541cd](https://github.com/astrale-os/sdk/commit/65541cd1c227de15406282139ffdbd4e41cfda62))
|
|
939
|
+
* **domain:** make install graphs authoritative ([#46](https://github.com/astrale-os/sdk/issues/46)) ([3d7e898](https://github.com/astrale-os/sdk/commit/3d7e898550676ba45e629a39268098946b2b5345))
|
|
940
|
+
* **domain:** reject classes without kernel bases ([d67a153](https://github.com/astrale-os/sdk/commit/d67a153c98390788a63dd2a5a002b916cd860706))
|
|
941
|
+
* **domain:** reject domains missing kernel before deploy ([16efcf3](https://github.com/astrale-os/sdk/commit/16efcf361177a88d98201c28784ac4e4bff0ecc6))
|
|
942
|
+
* drop stray version field from /meta manifest schema ([69889fa](https://github.com/astrale-os/sdk/commit/69889fa7d62d3b7d063f6973a4fd6359f56524a4))
|
|
943
|
+
* drop the client ESM pre-bundle workaround, resolve first-party deps fresh ([a3f73ec](https://github.com/astrale-os/sdk/commit/a3f73ec25a132f4cfa2f0b05bbe65b428edd8419))
|
|
944
|
+
* drop the client ESM pre-bundle workaround, resolve first-party deps fresh ([c7876c4](https://github.com/astrale-os/sdk/commit/c7876c47d094a79607843d60166d09a6f9b438c6))
|
|
945
|
+
* export ./package.json in publishConfig.exports — the map that ships ([982eb50](https://github.com/astrale-os/sdk/commit/982eb50b808bc935e37ed907fd797159ad00d8e2))
|
|
946
|
+
* export ./package.json in publishConfig.exports — the map that ships ([a7b419f](https://github.com/astrale-os/sdk/commit/a7b419fecfd35052cf3c0d0a87466653b0bb899e))
|
|
947
|
+
* expose `self.id` on SelfResult for instance dispatch — META_TRACE [#61](https://github.com/astrale-os/sdk/issues/61) ([850ffd8](https://github.com/astrale-os/sdk/commit/850ffd8aa9b28d7f90a28b22344b88848a2b81d5))
|
|
948
|
+
* guard sdk preinstall for tarball installs + bump publish chain (workspace:^ internal pins) ([7519a29](https://github.com/astrale-os/sdk/commit/7519a29a1ae6b29a452cf5629b93b3c8419a324f))
|
|
949
|
+
* **iframe:** mark render views no-handshake ([5cfea82](https://github.com/astrale-os/sdk/commit/5cfea826edb2c96d113322ac9bca1595acda4759))
|
|
950
|
+
* **invocation:** honor kernel-selected receiver ([cf58a55](https://github.com/astrale-os/sdk/commit/cf58a55707e563f5921ee543c56c941bb7613013))
|
|
951
|
+
* **invocation:** honor kernel-selected receiver ([730fe57](https://github.com/astrale-os/sdk/commit/730fe57df22eb34d55d3cdcdcb5993504fc3ca74))
|
|
952
|
+
* **linter:** allow configurable layer paths ([b2d6bdd](https://github.com/astrale-os/sdk/commit/b2d6bdd1cf0b3aaddf4674062fe936bc50d08639))
|
|
953
|
+
* **linter:** honor configured physical source paths ([7d23e40](https://github.com/astrale-os/sdk/commit/7d23e40bc95bab9955345a07816435bb9ceabc5a))
|
|
954
|
+
* **linter:** prevent managed lint crashes and hangs ([4af5f40](https://github.com/astrale-os/sdk/commit/4af5f40b4c5e7de94c51019ce892d29a5b575eda))
|
|
955
|
+
* make astrale adapter params.instance optional for dev-only envs ([7e44313](https://github.com/astrale-os/sdk/commit/7e4431334cc440c9375c10922733f9c36ed22438))
|
|
956
|
+
* make packed scaffold installs reproducible ([17ccac6](https://github.com/astrale-os/sdk/commit/17ccac677435c5a089c896f5258c0b46df5f639a))
|
|
957
|
+
* never ship a pnpm-lock.yaml in scaffolds ([80c0196](https://github.com/astrale-os/sdk/commit/80c01964c5f777887f77cafc98fb4cb0da09e094))
|
|
958
|
+
* next-hop delegation mints as the function's own identity with composed grant ([77e570e](https://github.com/astrale-os/sdk/commit/77e570e9837be524c0f858e652fd966af3e021d6))
|
|
959
|
+
* opaque @hono/node-server import so worker bundles skip the optional peer ([e53e983](https://github.com/astrale-os/sdk/commit/e53e983638b2643875e55ca1587e1fe606479d1c))
|
|
960
|
+
* **package:** emit node-compatible esm specifiers ([257e312](https://github.com/astrale-os/sdk/commit/257e312597bd09da7f2aacd6937eb513f473e84e))
|
|
961
|
+
* pin zod by exact version in create-astrale-domain --link scaffolds ([9a778ca](https://github.com/astrale-os/sdk/commit/9a778ca44073a2f318faf7d1f1092844946046da))
|
|
962
|
+
* postInstall must be a typed colon-path - template seed becomes a Note static ([35c5d45](https://github.com/astrale-os/sdk/commit/35c5d45836c13109d28af0f541f41550457767f1))
|
|
963
|
+
* prevent managed lint crashes and hangs ([3c191d5](https://github.com/astrale-os/sdk/commit/3c191d549786d0c02cb7f05c63981f12ebfdc68a))
|
|
964
|
+
* **query:** support explicit edge endpoint counts ([f9846c7](https://github.com/astrale-os/sdk/commit/f9846c70a0322e81392327da08229376c1046aa7))
|
|
965
|
+
* **remote:** expose carried caller authority ([4e6d3da](https://github.com/astrale-os/sdk/commit/4e6d3dac8a8145b6aea333256300e69e80522632))
|
|
966
|
+
* replace ~20 `any` casts with proper types across worker, react, and backend ([786bba2](https://github.com/astrale-os/sdk/commit/786bba22a13e8ddef0e71b047163c2b6dc3145bd))
|
|
967
|
+
* require virtual capability-safe kernel client ([#41](https://github.com/astrale-os/sdk/issues/41)) ([5ce48a8](https://github.com/astrale-os/sdk/commit/5ce48a8aa48504e7b0e490b08dfee4b28e2a6182))
|
|
968
|
+
* resolve package imports in analyzer ([a9f7c15](https://github.com/astrale-os/sdk/commit/a9f7c15641171041e51180668df31f6e205d2f09))
|
|
969
|
+
* roll back partial scaffolds, name resolver failures, green client template ([50faef5](https://github.com/astrale-os/sdk/commit/50faef5146a61f25282f30486adf6f7e9ab19ef7))
|
|
970
|
+
* scaffold cp filter must test template-relative paths (npx installs live in node_modules) ([3fd0a79](https://github.com/astrale-os/sdk/commit/3fd0a7925bb3c77a5aba3cde24aad26013cd7973))
|
|
971
|
+
* **scaffold:** admit published shell fallback ([ddede2f](https://github.com/astrale-os/sdk/commit/ddede2fe76e3f0aa0dde025d2e8158bfe5e6dc46))
|
|
972
|
+
* **scaffold:** derive managed adapter range from target ([936561f](https://github.com/astrale-os/sdk/commit/936561f217c93b5e34abd5c1420211fdca11130b))
|
|
973
|
+
* **scaffold:** derive managed adapter range from target ([d8f0ad9](https://github.com/astrale-os/sdk/commit/d8f0ad971803e98ae33308d73693ad0aae7863dd))
|
|
974
|
+
* scaffolder rollback + failure transparency, client template green (iss_12ae5ba3, iss_a7fe5e38) ([c05ab86](https://github.com/astrale-os/sdk/commit/c05ab86520ab9268b00b98eba4779743ae5fed34))
|
|
975
|
+
* **scaffold:** omit bundled agent skills ([978b172](https://github.com/astrale-os/sdk/commit/978b17204ae67ced328cbc17d50e92343f360bbc))
|
|
976
|
+
* **scaffold:** qualify published dependencies ([b603ffd](https://github.com/astrale-os/sdk/commit/b603ffda9a46a5a87e748bc1ce8dece905488cf7))
|
|
977
|
+
* scaffolds keep template semver ranges; resilient package-root resolution ([e458207](https://github.com/astrale-os/sdk/commit/e458207891d7c5427b036b7af4233979e737aa17))
|
|
978
|
+
* scaffolds keep template semver ranges; resilient package-root resolution ([b43ba4a](https://github.com/astrale-os/sdk/commit/b43ba4aa6050264668f45a401be65372cfa3c978))
|
|
979
|
+
* sdk root tsconfig extends its own base for standalone build ([2cd7eab](https://github.com/astrale-os/sdk/commit/2cd7eab861ae4728fce119cf2249548d00d5b8ad))
|
|
980
|
+
* **sdk:** align remote delivery with kernel protocol ([3af21ca](https://github.com/astrale-os/sdk/commit/3af21ca72a3697f2c939f5fb91df9d085b02c200))
|
|
981
|
+
* **sdk:** preserve Domain failure semantics ([deb0ad3](https://github.com/astrale-os/sdk/commit/deb0ad314acddab6ba199d65f8d1434a6bff3f4a))
|
|
982
|
+
* **sdk:** preserve nested mutation failures ([97d3aca](https://github.com/astrale-os/sdk/commit/97d3aca82ea0d67c0fd9e8ec9b0e946ede2f9108))
|
|
983
|
+
* **sdk:** preserve remote public errors ([70e9349](https://github.com/astrale-os/sdk/commit/70e934977aa9c5af7c252b01ebac5becd8ad70b6))
|
|
984
|
+
* selfKernel prefers INSTANCE_KERNEL_URL (instance graph) over the host KERNEL_URL ([a767aa8](https://github.com/astrale-os/sdk/commit/a767aa83f9bf0c3357cbed6f7bfc11a4f94cb51a))
|
|
985
|
+
* **server:** publish verification-safe jwks ([a5a5608](https://github.com/astrale-os/sdk/commit/a5a560825f6ee6411b418d9c50da70ec0917dcd8))
|
|
986
|
+
* **server:** publish verification-safe JWKS ([abeb106](https://github.com/astrale-os/sdk/commit/abeb106c8bbffee76838ac9f679436a063cc57b1))
|
|
987
|
+
* **server:** support source-qualified invocation identities ([9817996](https://github.com/astrale-os/sdk/commit/9817996c093acd3c9fb080e1fe651e8b5dff6709))
|
|
988
|
+
* sign runtime creds with bare-slug iss; verify with audience tolerance ([16d8a26](https://github.com/astrale-os/sdk/commit/16d8a26025435059a03ce736efeb1225c976dd9a))
|
|
989
|
+
* support published beta cohort ([34984b6](https://github.com/astrale-os/sdk/commit/34984b6d3edfa28828f0b04c95ebeba859f9bcf1))
|
|
990
|
+
* template dep floors to known-good versions + pnpm build-gate declarations ([bc681da](https://github.com/astrale-os/sdk/commit/bc681daabc717316b1e22f9b0bcaa0b7c727981f))
|
|
991
|
+
* WFP tenant self-subrequest 404 + scaffolds shipping a stale lockfile ([fda3a28](https://github.com/astrale-os/sdk/commit/fda3a285ddc775474ec53c1ea2a902b4c364b361))
|
|
992
|
+
* wire + default-on the router service binding ([4d05110](https://github.com/astrale-os/sdk/commit/4d05110e4796a2dad9e7fca1fab53206dca39823))
|
|
993
|
+
* **worker:** accept public domain environment resolution ([b41df98](https://github.com/astrale-os/sdk/commit/b41df98971983a8e9f360354ef85f7b24df157d8))
|
|
994
|
+
* **worker:** accept public Domain environment resolution ([88a7e14](https://github.com/astrale-os/sdk/commit/88a7e1456936f8c23781dd1e78cd4ffbe187988a))
|
|
995
|
+
* **worker:** dispatch same-origin self-subrequests in-process when no SELF binding ([6017c75](https://github.com/astrale-os/sdk/commit/6017c759c6ba70efdda9f8b699f1f6cb25b080fb))
|
|
996
|
+
* **worker:** preserve raw request body for standalone function routes ([025a273](https://github.com/astrale-os/sdk/commit/025a2730a5ac14709cd956d174e56c53122c6609))
|
|
997
|
+
* **worker:** preserve raw request body for standalone function routes ([aa23799](https://github.com/astrale-os/sdk/commit/aa2379940b84b5d3792a80c663587815d9024b2b))
|
|
998
|
+
* **worker:** repair managed deploy hotfix ([65bdbb9](https://github.com/astrale-os/sdk/commit/65bdbb90c9036e5591e10be61079ed4f4baec52c))
|
|
999
|
+
* **worker:** support schema-only domain deployments ([413a003](https://github.com/astrale-os/sdk/commit/413a0038ac3efabc8b2f72db023a245e7bb8d794))
|
|
1000
|
+
|
|
1001
|
+
|
|
1002
|
+
### Performance Improvements
|
|
1003
|
+
|
|
1004
|
+
* cache JWKS resolvers, evict-and-retry on stale issuer keys ([bc31c93](https://github.com/astrale-os/sdk/commit/bc31c9317c421361182d1851e74ea25f5f23373a))
|
|
1005
|
+
|
|
1006
|
+
|
|
1007
|
+
### Documentation
|
|
1008
|
+
|
|
1009
|
+
* **adapter-astrale:** document beta installation ([2e5cba8](https://github.com/astrale-os/sdk/commit/2e5cba8cdab2f647d5868994e5ea30cd5cf2639e))
|
|
1010
|
+
* **adapter-cloudflare:** document beta installation ([7c0b030](https://github.com/astrale-os/sdk/commit/7c0b030084191f1c794ba65ac0280eb2034d267b))
|
|
1011
|
+
* **backend:** reference kernel Domain.install in adapter-astrale comment ([1fcdca2](https://github.com/astrale-os/sdk/commit/1fcdca28b660985ddd31a056e026f636e9e294f6))
|
|
1012
|
+
* clarify development setup and workspace dependency ([6af5a67](https://github.com/astrale-os/sdk/commit/6af5a673dce763fa65e22234a76f74387fd1dc69))
|
|
1013
|
+
* **create-astrale-domain:** document beta scaffolding ([1a3b5b4](https://github.com/astrale-os/sdk/commit/1a3b5b4774df461284447d4003733e5de31b6348))
|
|
1014
|
+
* document instance kernel url for the cloudflare adapter ([4a25ddd](https://github.com/astrale-os/sdk/commit/4a25dddef405540935e180dd8c547c26ec04c323))
|
|
1015
|
+
* note raw build-spec-cli lacks cross-domain env injection (use astrale domain build) ([d9864ae](https://github.com/astrale-os/sdk/commit/d9864ae0aca9f4bc3857bee94a3a4184a2b7086c))
|
|
1016
|
+
* rename instance install -> domain install; point hints at --direct ([ce0c567](https://github.com/astrale-os/sdk/commit/ce0c567851077cce56d5fd8569cd9f110fc5216e))
|
|
1017
|
+
* self binding present on managed runtime; logs rows in skills ([265841e](https://github.com/astrale-os/sdk/commit/265841e7eb921bdcf75b7294f8f7604fbd92adf5))
|
|
1018
|
+
* selfKernel in skill webhook section ([4be446b](https://github.com/astrale-os/sdk/commit/4be446bc8620eaa2cc57ea1e2ab448b991d520c1))
|
|
1019
|
+
* skill — correct schema registration (edges under classes) and defineSchema import ([7b5de46](https://github.com/astrale-os/sdk/commit/7b5de46cdd17ac3d5f704e1925354919517e8352))
|
|
1020
|
+
* skill — dev --port ([9f1f90a](https://github.com/astrale-os/sdk/commit/9f1f90a9d6481732edef31bf7b6335ef76baa711))
|
|
1021
|
+
* skill — local-dev vs remote-instance install reality ([61eacaf](https://github.com/astrale-os/sdk/commit/61eacaf2517c63eb6fb04bfb9f83f9389076a7db))
|
|
1022
|
+
* skill — view discovery, mount semantics, managed-install debugging and recovery ([88f2e7f](https://github.com/astrale-os/sdk/commit/88f2e7f15a0018a9ef6b1c896a72f80f9adf5127))
|
|
1023
|
+
* skill — views ship on both adapters ([63b8825](https://github.com/astrale-os/sdk/commit/63b88253f6001d63f910d92ae113f88a31466f41))
|
|
1024
|
+
* skill + scope — managed secrets shipped ([55fe37e](https://github.com/astrale-os/sdk/commit/55fe37e01852b5717f7cbeb210f66b6957a9d023))
|
|
1025
|
+
* skill carries the grantperm snippet for the public-view pattern ([3c5d346](https://github.com/astrale-os/sdk/commit/3c5d346765a42946620d34acb352e6b141d57181))
|
|
1026
|
+
* skill recipe — public server-rendered view reading the graph ([32b00ea](https://github.com/astrale-os/sdk/commit/32b00ea0b115c8178c248c4dc5f61d05b45e9d2a))
|
|
1027
|
+
* update shell domain references ([099a01b](https://github.com/astrale-os/sdk/commit/099a01bd11b78b0a51a3896779b9fba0e93f999f))
|
|
1028
|
+
* update shell domain references ([1d97ac5](https://github.com/astrale-os/sdk/commit/1d97ac5508a8d94f11728cc288785cd83db34a91))
|
|
1029
|
+
|
|
1030
|
+
## [0.4.19](https://github.com/astrale-os/sdk/compare/sdk-v0.4.18...sdk-v0.4.19) (2026-07-17)
|
|
1031
|
+
|
|
1032
|
+
|
|
1033
|
+
### Bug Fixes
|
|
1034
|
+
|
|
1035
|
+
* **deps:** align kernel package family ([aab90fc](https://github.com/astrale-os/sdk/commit/aab90fc4a24a99de70d3d7c984815744e19a0b26))
|
|
1036
|
+
* **domain:** reject classes without kernel bases ([d67a153](https://github.com/astrale-os/sdk/commit/d67a153c98390788a63dd2a5a002b916cd860706))
|
|
1037
|
+
* **domain:** reject domains missing kernel before deploy ([16efcf3](https://github.com/astrale-os/sdk/commit/16efcf361177a88d98201c28784ac4e4bff0ecc6))
|
|
1038
|
+
* **linter:** prevent managed lint crashes and hangs ([4af5f40](https://github.com/astrale-os/sdk/commit/4af5f40b4c5e7de94c51019ce892d29a5b575eda))
|
|
1039
|
+
* make packed scaffold installs reproducible ([17ccac6](https://github.com/astrale-os/sdk/commit/17ccac677435c5a089c896f5258c0b46df5f639a))
|
|
1040
|
+
* prevent managed lint crashes and hangs ([3c191d5](https://github.com/astrale-os/sdk/commit/3c191d549786d0c02cb7f05c63981f12ebfdc68a))
|
|
1041
|
+
|
|
1042
|
+
## [0.4.18](https://github.com/astrale-os/sdk/compare/sdk-v0.4.17...sdk-v0.4.18) (2026-07-16)
|
|
1043
|
+
|
|
1044
|
+
|
|
1045
|
+
### Bug Fixes
|
|
1046
|
+
|
|
1047
|
+
* **scaffold:** derive managed adapter range from target ([936561f](https://github.com/astrale-os/sdk/commit/936561f217c93b5e34abd5c1420211fdca11130b))
|
|
1048
|
+
* **scaffold:** derive managed adapter range from target ([d8f0ad9](https://github.com/astrale-os/sdk/commit/d8f0ad971803e98ae33308d73693ad0aae7863dd))
|
|
1049
|
+
|
|
1050
|
+
## [0.4.17](https://github.com/astrale-os/sdk/compare/sdk-v0.4.16...sdk-v0.4.17) (2026-07-16)
|
|
1051
|
+
|
|
1052
|
+
|
|
1053
|
+
### Bug Fixes
|
|
1054
|
+
|
|
1055
|
+
* **app:** skip scaffold target instance prompt ([8b0254a](https://github.com/astrale-os/sdk/commit/8b0254a7b71f66f6773ca977a2f1bdbeacddd93a))
|
|
1056
|
+
* **app:** skip scaffold target instance prompt (issue iss_8abc9b4b) ([fd6608e](https://github.com/astrale-os/sdk/commit/fd6608e2abeececd4d55552acd5283649b71e385))
|
|
1057
|
+
|
|
1058
|
+
## [0.4.16](https://github.com/astrale-os/sdk/compare/sdk-v0.4.15...sdk-v0.4.16) (2026-07-15)
|
|
1059
|
+
|
|
1060
|
+
|
|
1061
|
+
### Bug Fixes
|
|
1062
|
+
|
|
1063
|
+
* **ci:** verify SDK dist in linked workspaces ([64c47ce](https://github.com/astrale-os/sdk/commit/64c47cecb412b7245497d7990242f3acc4d4994e))
|
|
1064
|
+
|
|
1065
|
+
## [0.4.15](https://github.com/astrale-os/sdk/compare/sdk-v0.4.14...sdk-v0.4.15) (2026-07-14)
|
|
1066
|
+
|
|
1067
|
+
|
|
1068
|
+
### Bug Fixes
|
|
1069
|
+
|
|
1070
|
+
* **adapter-cloudflare:** pin supported compatibility date ([9fd9798](https://github.com/astrale-os/sdk/commit/9fd9798037a50a1878b842aec1c96ad432f21d3b))
|
|
1071
|
+
* **adapter-cloudflare:** pin supported compatibility date ([9652315](https://github.com/astrale-os/sdk/commit/9652315c78c86a4e11b797727ca91e80e2c52048))
|
|
1072
|
+
|
|
1073
|
+
## [0.4.14](https://github.com/astrale-os/sdk/compare/sdk-v0.4.13...sdk-v0.4.14) (2026-07-13)
|
|
1074
|
+
|
|
1075
|
+
|
|
1076
|
+
### Features
|
|
1077
|
+
|
|
1078
|
+
* support domain import aliases ([d56ec80](https://github.com/astrale-os/sdk/commit/d56ec801a35aab45ea2472a0cfaad319c8f52752))
|
|
1079
|
+
* **template:** add domain import aliases ([b67032e](https://github.com/astrale-os/sdk/commit/b67032ec09ec0aefa8400f21170cfccde345a9fa))
|
|
1080
|
+
* **worker:** add declarative hosted functions ([407f50c](https://github.com/astrale-os/sdk/commit/407f50c07f1b23455ac8bc0c90c1599f85e21a2b))
|
|
1081
|
+
* **worker:** add declarative hosted functions ([ea0e457](https://github.com/astrale-os/sdk/commit/ea0e45739249f3503aa169a072c6ebaacd296bd8))
|
|
1082
|
+
|
|
1083
|
+
|
|
1084
|
+
### Bug Fixes
|
|
1085
|
+
|
|
1086
|
+
* resolve package imports in analyzer ([a9f7c15](https://github.com/astrale-os/sdk/commit/a9f7c15641171041e51180668df31f6e205d2f09))
|
|
1087
|
+
|
|
1088
|
+
## [0.4.13](https://github.com/astrale-os/sdk/compare/sdk-v0.4.12...sdk-v0.4.13) (2026-07-13)
|
|
1089
|
+
|
|
1090
|
+
|
|
1091
|
+
### Features
|
|
1092
|
+
|
|
1093
|
+
* add SDK-native Astrale domain linter ([#50](https://github.com/astrale-os/sdk/issues/50)) ([002c4f0](https://github.com/astrale-os/sdk/commit/002c4f0da8f09670d4ad3fa8c139d336a0d6ca52))
|
|
1094
|
+
* expose dispatcher capabilities to handlers ([0e32cba](https://github.com/astrale-os/sdk/commit/0e32cba3af1aeace84e695bfabdbd35eda9415fc))
|
|
1095
|
+
* expose dispatcher capabilities to handlers ([26d5891](https://github.com/astrale-os/sdk/commit/26d5891986fc10c6db04a8559f3761fd42be3a64))
|
|
1096
|
+
|
|
1097
|
+
## [0.4.12](https://github.com/astrale-os/sdk/compare/sdk-v0.4.11...sdk-v0.4.12) (2026-07-13)
|
|
1098
|
+
|
|
1099
|
+
|
|
1100
|
+
### Bug Fixes
|
|
1101
|
+
|
|
1102
|
+
* **backend:** emit node-compatible ESM specifiers ([7cf13a9](https://github.com/astrale-os/sdk/commit/7cf13a997746ee93ec2ff0eefea27090d737b940))
|
|
1103
|
+
* **package:** emit node-compatible esm specifiers ([257e312](https://github.com/astrale-os/sdk/commit/257e312597bd09da7f2aacd6937eb513f473e84e))
|
|
1104
|
+
|
|
1105
|
+
## [0.4.11](https://github.com/astrale-os/sdk/compare/sdk-v0.4.10...sdk-v0.4.11) (2026-07-13)
|
|
1106
|
+
|
|
1107
|
+
|
|
1108
|
+
### Features
|
|
1109
|
+
|
|
1110
|
+
* **backend:** carry declarative core into builds ([e9b64b1](https://github.com/astrale-os/sdk/commit/e9b64b14ac1ac7eeb93b3b8c60f586631ca5ecfb))
|
|
1111
|
+
* **backend:** support deferred and redirected functions ([4180d69](https://github.com/astrale-os/sdk/commit/4180d694a15af6de20f4c684b32fd91bde33425c))
|
|
1112
|
+
* **backend:** support deferred handler execution ([1bb4fd8](https://github.com/astrale-os/sdk/commit/1bb4fd8fc5cd8b0c1e270f791a063caafd6b6643))
|
|
1113
|
+
|
|
1114
|
+
|
|
1115
|
+
### Bug Fixes
|
|
1116
|
+
|
|
1117
|
+
* **adapter-cloudflare:** refresh worker compatibility baseline ([00b921c](https://github.com/astrale-os/sdk/commit/00b921c4d111f7b8f0888bce11e433c0fa2220c6))
|
|
1118
|
+
* **backend:** deploy services by semantic method path ([991dcae](https://github.com/astrale-os/sdk/commit/991dcaecb861be7fe884ed9ff34e0d8c403e3135))
|
|
1119
|
+
* **backend:** keep lifetime adapter structurally private ([a3c70be](https://github.com/astrale-os/sdk/commit/a3c70bed0f22ccd7bef417181dbda5d741c44a1b))
|
|
1120
|
+
* **domain:** make install graphs authoritative ([#46](https://github.com/astrale-os/sdk/issues/46)) ([3d7e898](https://github.com/astrale-os/sdk/commit/3d7e898550676ba45e629a39268098946b2b5345))
|
|
1121
|
+
|
|
1122
|
+
## [0.4.10](https://github.com/astrale-os/sdk/compare/sdk-v0.4.9...sdk-v0.4.10) (2026-07-12)
|
|
1123
|
+
|
|
1124
|
+
|
|
1125
|
+
### Features
|
|
1126
|
+
|
|
1127
|
+
* **scaffold:** rebuild the default domain template ([#43](https://github.com/astrale-os/sdk/issues/43)) ([091147c](https://github.com/astrale-os/sdk/commit/091147c156a2bfff783fa002cd0e7a8152013d33))
|
|
1128
|
+
|
|
1129
|
+
## [0.4.9](https://github.com/astrale-os/sdk/compare/sdk-v0.4.8...sdk-v0.4.9) (2026-07-12)
|
|
1130
|
+
|
|
1131
|
+
|
|
1132
|
+
### Bug Fixes
|
|
1133
|
+
|
|
1134
|
+
* require virtual capability-safe kernel client ([#41](https://github.com/astrale-os/sdk/issues/41)) ([5ce48a8](https://github.com/astrale-os/sdk/commit/5ce48a8aa48504e7b0e490b08dfee4b28e2a6182))
|
|
1135
|
+
|
|
1136
|
+
## [0.4.8](https://github.com/astrale-os/sdk/compare/sdk-v0.4.7...sdk-v0.4.8) (2026-07-12)
|
|
1137
|
+
|
|
1138
|
+
|
|
1139
|
+
### Bug Fixes
|
|
1140
|
+
|
|
1141
|
+
* **deps:** require edge-cardinality kernel packages ([c7b81f8](https://github.com/astrale-os/sdk/commit/c7b81f894202e8826d0dbff1be3233894c6dc410))
|
|
1142
|
+
|
|
1143
|
+
## [0.4.7](https://github.com/astrale-os/sdk/compare/sdk-v0.4.6...sdk-v0.4.7) (2026-07-12)
|
|
1144
|
+
|
|
1145
|
+
|
|
1146
|
+
### Bug Fixes
|
|
1147
|
+
|
|
1148
|
+
* **deps:** require a consistent kernel package set ([11d738c](https://github.com/astrale-os/sdk/commit/11d738c7d0c18fc83c640cf1a055b6dfdfc60679))
|
|
1149
|
+
|
|
1150
|
+
## [0.4.6](https://github.com/astrale-os/sdk/compare/sdk-v0.4.5...sdk-v0.4.6) (2026-07-12)
|
|
1151
|
+
|
|
1152
|
+
|
|
1153
|
+
### Features
|
|
1154
|
+
|
|
1155
|
+
* **backend:** bind handler kernels from compiled schemas ([2f87bf9](https://github.com/astrale-os/sdk/commit/2f87bf9dc65362c1a8bd552a99afb1d8c9fe3439))
|
|
1156
|
+
|
|
1157
|
+
## [0.4.5](https://github.com/astrale-os/sdk/compare/sdk-v0.4.4...sdk-v0.4.5) (2026-07-11)
|
|
1158
|
+
|
|
1159
|
+
|
|
1160
|
+
### Bug Fixes
|
|
1161
|
+
|
|
1162
|
+
* drop the client ESM pre-bundle workaround, resolve first-party deps fresh ([a3f73ec](https://github.com/astrale-os/sdk/commit/a3f73ec25a132f4cfa2f0b05bbe65b428edd8419))
|
|
1163
|
+
* drop the client ESM pre-bundle workaround, resolve first-party deps fresh ([c7876c4](https://github.com/astrale-os/sdk/commit/c7876c47d094a79607843d60166d09a6f9b438c6))
|
|
1164
|
+
* **worker:** preserve raw request body for standalone function routes ([025a273](https://github.com/astrale-os/sdk/commit/025a2730a5ac14709cd956d174e56c53122c6609))
|
|
1165
|
+
* **worker:** preserve raw request body for standalone function routes ([aa23799](https://github.com/astrale-os/sdk/commit/aa2379940b84b5d3792a80c663587815d9024b2b))
|
|
1166
|
+
|
|
1167
|
+
## [0.4.4](https://github.com/astrale-os/sdk/compare/sdk-v0.4.3...sdk-v0.4.4) (2026-07-10)
|
|
1168
|
+
|
|
1169
|
+
|
|
1170
|
+
### Bug Fixes
|
|
1171
|
+
|
|
1172
|
+
* roll back partial scaffolds, name resolver failures, green client template ([50faef5](https://github.com/astrale-os/sdk/commit/50faef5146a61f25282f30486adf6f7e9ab19ef7))
|
|
1173
|
+
* scaffolder rollback + failure transparency, client template green (iss_12ae5ba3, iss_a7fe5e38) ([c05ab86](https://github.com/astrale-os/sdk/commit/c05ab86520ab9268b00b98eba4779743ae5fed34))
|
|
1174
|
+
|
|
1175
|
+
## [0.4.3](https://github.com/astrale-os/sdk/compare/sdk-v0.4.2...sdk-v0.4.3) (2026-07-10)
|
|
1176
|
+
|
|
1177
|
+
|
|
1178
|
+
### Bug Fixes
|
|
1179
|
+
|
|
1180
|
+
* export ./package.json in publishConfig.exports — the map that ships ([982eb50](https://github.com/astrale-os/sdk/commit/982eb50b808bc935e37ed907fd797159ad00d8e2))
|
|
1181
|
+
* export ./package.json in publishConfig.exports — the map that ships ([a7b419f](https://github.com/astrale-os/sdk/commit/a7b419fecfd35052cf3c0d0a87466653b0bb899e))
|
|
1182
|
+
* scaffolds keep template semver ranges; resilient package-root resolution ([e458207](https://github.com/astrale-os/sdk/commit/e458207891d7c5427b036b7af4233979e737aa17))
|
|
1183
|
+
* scaffolds keep template semver ranges; resilient package-root resolution ([b43ba4a](https://github.com/astrale-os/sdk/commit/b43ba4aa6050264668f45a401be65372cfa3c978))
|
|
1184
|
+
|
|
1185
|
+
## [0.4.2](https://github.com/astrale-os/sdk/compare/sdk-v0.4.1...sdk-v0.4.2) (2026-07-09)
|
|
1186
|
+
|
|
1187
|
+
|
|
1188
|
+
### Features
|
|
1189
|
+
|
|
1190
|
+
* redesign remote context api ([de02159](https://github.com/astrale-os/sdk/commit/de0215924b5b5e4c0c2055358ba93603a266792c))
|
|
1191
|
+
* redesign remote context api ([f332ac8](https://github.com/astrale-os/sdk/commit/f332ac8fa9f9978e8f1ea975e1c36f371753e62d))
|
|
1192
|
+
|
|
1193
|
+
## [0.4.1](https://github.com/astrale-os/sdk/compare/sdk-v0.4.0...sdk-v0.4.1) (2026-07-08)
|
|
1194
|
+
|
|
1195
|
+
|
|
1196
|
+
### Bug Fixes
|
|
1197
|
+
|
|
1198
|
+
* **scaffold:** omit bundled agent skills ([978b172](https://github.com/astrale-os/sdk/commit/978b17204ae67ced328cbc17d50e92343f360bbc))
|
|
1199
|
+
|
|
1200
|
+
## [0.4.0](https://github.com/astrale-os/sdk/compare/sdk-v0.3.0...sdk-v0.4.0) (2026-07-08)
|
|
1201
|
+
|
|
1202
|
+
|
|
1203
|
+
### ⚠ BREAKING CHANGES
|
|
1204
|
+
|
|
1205
|
+
* rename domain-config `installLocation` → `path` ([#18](https://github.com/astrale-os/sdk/issues/18))
|
|
1206
|
+
* **backend:** drop ctx.graph; ctx.kernel carries the graph sugar directly
|
|
1207
|
+
* **backend:** remove dead graph-patch, workerMeta, hashSpecFile; patch types from core
|
|
1208
|
+
* pushPatch and PatchKernel are removed from @astrale-os/sdk. Batch graph writes through ctx.graph.mutate(patch) instead.
|
|
1209
|
+
|
|
1210
|
+
* **backend:** drop ctx.graph; ctx.kernel carries the graph sugar directly ([c08b5a9](https://github.com/astrale-os/sdk/commit/c08b5a925aed63bd8c60dfaa5d23e3a02e8e8906))
|
|
1211
|
+
* **backend:** remove dead graph-patch, workerMeta, hashSpecFile; patch types from core ([bdf5483](https://github.com/astrale-os/sdk/commit/bdf54834b6577aa862471118adf1ea455cef0e8c))
|
|
1212
|
+
* rename domain-config `installLocation` → `path` ([#18](https://github.com/astrale-os/sdk/issues/18)) ([e34bd3a](https://github.com/astrale-os/sdk/commit/e34bd3a77de6279e9f221996f04f56040233161d))
|
|
1213
|
+
* route SDK graph access through function.get/mutate doors ([adf07ff](https://github.com/astrale-os/sdk/commit/adf07ffd423e8824ebeb8dcac525fb7b819d0ae6))
|
|
1214
|
+
|
|
1215
|
+
|
|
1216
|
+
### Features
|
|
1217
|
+
|
|
1218
|
+
* add .dev.vars to .gitignore and update type assertion in derivePublicJwk function ([9a0cfc1](https://github.com/astrale-os/sdk/commit/9a0cfc13944f34ccd790a2f9832332886d6aaf1a))
|
|
1219
|
+
* add `installLocation` domain-config field; place domains under /domains/<origin> ([7ee04f7](https://github.com/astrale-os/sdk/commit/7ee04f78dd70f584a1addcdbc2a981280dba94c0))
|
|
1220
|
+
* add auth policy to remote method definitions ([369d5b4](https://github.com/astrale-os/sdk/commit/369d5b42561f502b8dd38986051aa217d4de2f46))
|
|
1221
|
+
* add authorize hook + assertPerm helpers + fix public auth policy ([b644585](https://github.com/astrale-os/sdk/commit/b6445857cd3bef35890388869a4c61e5a618b35a))
|
|
1222
|
+
* add comments.json template and update CLI references in publish functions ([b689797](https://github.com/astrale-os/sdk/commit/b689797b7139b380943390fddae95e9a2c040ce4))
|
|
1223
|
+
* add dispatch method to SdkDispatcher for handling local resolutions and return types ([5c190b1](https://github.com/astrale-os/sdk/commit/5c190b15df995b34b24bc7ed1036745d08c52d31))
|
|
1224
|
+
* add latest version of @typescript/native-preview to devDependencies ([003647a](https://github.com/astrale-os/sdk/commit/003647a30f96c1a161bf773946e221a5a71b8470))
|
|
1225
|
+
* add manifest support for domain definition and metadata ([247afa2](https://github.com/astrale-os/sdk/commit/247afa2f1bf502a94221b2209af61ff36348829e))
|
|
1226
|
+
* add optional core parameter to RemoteDomain and RemoteDomainConfig types ([ebacba6](https://github.com/astrale-os/sdk/commit/ebacba687506e81702d08115eeb623331b31d2ec))
|
|
1227
|
+
* add remoteInterfaceMethods factory for interface-hosted methods ([#5](https://github.com/astrale-os/sdk/issues/5)) ([9f05a0c](https://github.com/astrale-os/sdk/commit/9f05a0cb71d1b8f73d7f676fb8af1e19ef9d1510))
|
|
1228
|
+
* add requireEnv helper and require issuer in createRemoteServer ([ac4f25a](https://github.com/astrale-os/sdk/commit/ac4f25a610a549f069739a2b09891b0529fc2ec7))
|
|
1229
|
+
* add SDK v2 with JSON-RPC support and streaming capabilities ([a9c30ec](https://github.com/astrale-os/sdk/commit/a9c30ec1527e381c715d7881200af3db0903dc53))
|
|
1230
|
+
* add unit tests for method resolution and enhance normalization logic ([b4ffebd](https://github.com/astrale-os/sdk/commit/b4ffebd3cc4a54aaf1eb2221982c46ddf32329fc))
|
|
1231
|
+
* astrale adapter ships prod secrets on the install call ([80f7420](https://github.com/astrale-os/sdk/commit/80f742035df96b13e3ff9c001f525ef543566b5b))
|
|
1232
|
+
* astrale-domain publish = register-only (no deploy) + --public-url ([708656b](https://github.com/astrale-os/sdk/commit/708656b4c38b0daa5e69cb88802652fa774daf2b))
|
|
1233
|
+
* astrale() managed adapter and template fixes (hono dep, bun compat) ([9cee71c](https://github.com/astrale-os/sdk/commit/9cee71c1c9ecbf6ed42451d8a6ac225ebd38a9c5))
|
|
1234
|
+
* auto-materialize Views/RemoteFunctions + mount worker routes from defineRemoteDomain ([34f4011](https://github.com/astrale-os/sdk/commit/34f4011369d6bedcbd1293f0b43cbc256057c14c))
|
|
1235
|
+
* cloudflare adapter, create-astrale-domain, and devkit ([60d67ec](https://github.com/astrale-os/sdk/commit/60d67ec1f2dad3a77cce4c3410d6e52c088c228a))
|
|
1236
|
+
* config hot-regen (adapter.regenerate + config watch) + X-Forwarded-Proto origin upgrade ([4cd5fb8](https://github.com/astrale-os/sdk/commit/4cd5fb878d03cd4333c12b10e48094f78e70c29b))
|
|
1237
|
+
* ctx.callRemote for worker→worker remote-method calls ([d61a3aa](https://github.com/astrale-os/sdk/commit/d61a3aaa99b8d6ecb4b9e7e9f91e6a7c1b88b3fe))
|
|
1238
|
+
* declare remote functions in the schema (functions-in-DSL) ([f5c1482](https://github.com/astrale-os/sdk/commit/f5c1482398de83091557ea1b20a6f08f92d570a4))
|
|
1239
|
+
* decouple JWT issuer from server URL and use method path as outbound subject ([3af4055](https://github.com/astrale-os/sdk/commit/3af4055121dff6ef0d1cf5f2a192b7cdff719145))
|
|
1240
|
+
* defineView and defineRemoteFunction declarative authoring helpers ([b300183](https://github.com/astrale-os/sdk/commit/b30018354e7523e06563f7db570db9548eccf332))
|
|
1241
|
+
* dev --host <public-url> for off-localhost dev ([0d13136](https://github.com/astrale-os/sdk/commit/0d1313666a36bb69e0efcfc030cc5849bdc6db8d))
|
|
1242
|
+
* devkit dev --port override ([17ff493](https://github.com/astrale-os/sdk/commit/17ff493f865a9227c56474ee83003d285c3f9e2a))
|
|
1243
|
+
* devkit dx batch — loud dev build failure, adapter-swap hint, managed footer, missing-def hint ([b6c0b0b](https://github.com/astrale-os/sdk/commit/b6c0b0b611a9887b06569d6798d46c2b76016856))
|
|
1244
|
+
* enhance authorization flow with JWKS and issuer registry support ([2bfab25](https://github.com/astrale-os/sdk/commit/2bfab25d1d651e7b97137a53112c20f4816212bd))
|
|
1245
|
+
* enhance identity handling and function path derivation in remote server setup ([6cbdf59](https://github.com/astrale-os/sdk/commit/6cbdf591913bd982f5b3b070dd86316a6fb4f4f6))
|
|
1246
|
+
* enhance SDK v2 with new domain methods and testing framework ([3ba1b5e](https://github.com/astrale-os/sdk/commit/3ba1b5e00b4af316ddbfec188a8cbefdd1846a6c))
|
|
1247
|
+
* enhance SDK with domain installation and authorization features ([faaebab](https://github.com/astrale-os/sdk/commit/faaebab1ec1ec5ee29d56b765ccae18f26730653))
|
|
1248
|
+
* enhance SdkValidationError to include detailed error messages and structure ([c498580](https://github.com/astrale-os/sdk/commit/c498580e44132ce05c272f13f557954f92b545c7))
|
|
1249
|
+
* enhance self resolution handling and add tests for resolveSelf functionality ([63c8de5](https://github.com/astrale-os/sdk/commit/63c8de5b08281afc803dc57e711d080da374acb7))
|
|
1250
|
+
* expose kernel client to defineRemoteFunction handlers ([b1ff25a](https://github.com/astrale-os/sdk/commit/b1ff25a698045b1a6df2df0d85072515f57c43dd))
|
|
1251
|
+
* fail loud when a preset-declared secrets file is missing ([d2f7202](https://github.com/astrale-os/sdk/commit/d2f7202fc5f8b177a0b6da77cedb3b9504eec825))
|
|
1252
|
+
* implement buildSpec function for RemoteDomain and update exports ([a1673db](https://github.com/astrale-os/sdk/commit/a1673dbfd3e7dc3b29e8f4ba03bfed2df5d8a4c8))
|
|
1253
|
+
* implement deploy check functionality and related types for SDK deployment validation ([bf81c9a](https://github.com/astrale-os/sdk/commit/bf81c9abc5fe02efbec78786200a8aee2eabda16))
|
|
1254
|
+
* implement managed service readiness checks and retry logic ([4d5f91d](https://github.com/astrale-os/sdk/commit/4d5f91dcadaf3f3314ba1de6d4bbbd380615038d))
|
|
1255
|
+
* Implement StatusPage functionality with monitoring capabilities ([18cc7f6](https://github.com/astrale-os/sdk/commit/18cc7f6ea95e47740857effa19551c6ef58be725))
|
|
1256
|
+
* initial SDK packages for Astrale OS ([9b0e085](https://github.com/astrale-os/sdk/commit/9b0e08591b301882686db51703ccf730901f70b6))
|
|
1257
|
+
* introduce deploy and domain configuration for standalone domains ([eac596b](https://github.com/astrale-os/sdk/commit/eac596b3774719f2767ec8f2d6ec8bde60502266))
|
|
1258
|
+
* introduce remote server configuration and creation ([a669256](https://github.com/astrale-os/sdk/commit/a669256cb88010f5b7f2aba135d6e5b32db15507))
|
|
1259
|
+
* lazy self.node() accessor for method handlers ([920ac6a](https://github.com/astrale-os/sdk/commit/920ac6ae98690008ae9348fcd6eac11aba5072dc))
|
|
1260
|
+
* managed adapter is the scaffold default; --instance stamps the slug ([4e300d6](https://github.com/astrale-os/sdk/commit/4e300d692e6b8bc91d9f298fb21f936ada9c10d9))
|
|
1261
|
+
* managed deploys ship the client SPA — /ui serves on managed services ([51c1ee3](https://github.com/astrale-os/sdk/commit/51c1ee37d3f0b17c2ad6b0640a28cb951c446a59))
|
|
1262
|
+
* normalize method names in resolveMethod and update buildSpec return type ([4175e22](https://github.com/astrale-os/sdk/commit/4175e220fdb0cc8ea603de10ea01f6fe37e1caf2))
|
|
1263
|
+
* promote v2 to top-level sdk, archive legacy packages ([05946b0](https://github.com/astrale-os/sdk/commit/05946b05caa0e541ed6e6e40ad232a8a136c1605))
|
|
1264
|
+
* refactor authentication and identity handling, improve method resolution and deploy checks ([a70bf10](https://github.com/astrale-os/sdk/commit/a70bf101473404b364dfed34b50a5d62c56b1d7d))
|
|
1265
|
+
* refine domain dx refactor ([b2f7768](https://github.com/astrale-os/sdk/commit/b2f7768b521563a22411562d3878bb1c18d2ee86))
|
|
1266
|
+
* replace BoundClient with BoundSessionView in authentication and dispatch layers ([c6020e3](https://github.com/astrale-os/sdk/commit/c6020e39fe4cee59d124c000def2ef0f9c1250ce))
|
|
1267
|
+
* rich typed self (BoundNode) + schema-bound dispatch wiring ([#16](https://github.com/astrale-os/sdk/issues/16)) ([05c46b8](https://github.com/astrale-os/sdk/commit/05c46b8d01663aeb26e2bc2b0db266a182ea685e))
|
|
1268
|
+
* scaffold ships the astrale-cli skill alongside astrale-domain ([52519c4](https://github.com/astrale-os/sdk/commit/52519c448ef3ea7a67d6649378f94b9bfcf63929))
|
|
1269
|
+
* scaffolder prints the workspace-level skills registration one-liner ([9d838be](https://github.com/astrale-os/sdk/commit/9d838bea586524ad300abf0e84688b29a297d8cc))
|
|
1270
|
+
* **scaffold:** make the default domain template a wired blank skeleton ([74e72d5](https://github.com/astrale-os/sdk/commit/74e72d52852c907bb4b5c04fe00a71e1bce9351d))
|
|
1271
|
+
* scaffolds ship the astrale-domain authoring skill (.agents/skills) ([5e3338d](https://github.com/astrale-os/sdk/commit/5e3338dc94bb059df3ef1465329df81c92df94ff))
|
|
1272
|
+
* selfKernel — public/webhook handlers act as the function's own identity ([30b71b6](https://github.com/astrale-os/sdk/commit/30b71b65e6a5e89939fcb257ce2235cc0a710876))
|
|
1273
|
+
* selfKernel in the view render context + dev port auto-pick ([6a53616](https://github.com/astrale-os/sdk/commit/6a53616eab32accab79490e85cd2a3b9dc061f02))
|
|
1274
|
+
* single status-page view; release 0.2.0 ([cb202cd](https://github.com/astrale-os/sdk/commit/cb202cd30f15965d5d06657aec4bc1425b972a76))
|
|
1275
|
+
* stamp /meta endpoint and spec.json with build provenance ([41d8a92](https://github.com/astrale-os/sdk/commit/41d8a92d0dce55c6ba91a7e59f11d6abd661a27c))
|
|
1276
|
+
* type auth context by policy ([db3d5f5](https://github.com/astrale-os/sdk/commit/db3d5f5278838136936808fd22519efa99e2af50))
|
|
1277
|
+
* update /meta endpoint to publish JWKS URL and improve identity resolution ([265c170](https://github.com/astrale-os/sdk/commit/265c170d0ce4fd6bb47636865b9c734482064816))
|
|
1278
|
+
* update buildSpec and defineRemoteDomain to streamline remote domain handling ([daba714](https://github.com/astrale-os/sdk/commit/daba714624cbb066a6ced0c18884670545e90d42))
|
|
1279
|
+
* update buildSpec and identity binding to use Graph instead of PortableSpec ([acd3441](https://github.com/astrale-os/sdk/commit/acd344152dba56487076da10c1b5fe1ff9675e59))
|
|
1280
|
+
* validate function outputs against outputSchema (parity with kernel) ([#6](https://github.com/astrale-os/sdk/issues/6)) ([22648ea](https://github.com/astrale-os/sdk/commit/22648ea2c9ceca5ff42dbaaf78944935c957c3f9))
|
|
1281
|
+
* **worker:** refine monitoring template ([4c1887c](https://github.com/astrale-os/sdk/commit/4c1887c09fd1a785a72a47258bf2b4a4d87c859f))
|
|
1282
|
+
* workspace-refactor enablers — manifest roles, DomainIssuer mint seam, fn-context graph ([6202965](https://github.com/astrale-os/sdk/commit/62029654453f67a365df93abaa9bcd1db130baff))
|
|
1283
|
+
|
|
1284
|
+
|
|
1285
|
+
### Bug Fixes
|
|
1286
|
+
|
|
1287
|
+
* 30m session-credential ttl — handlers outliving 60s could not write back ([985834d](https://github.com/astrale-os/sdk/commit/985834d0fd8a869633698d50f6fe30d32f457ce9))
|
|
1288
|
+
* accept public/optional functions in domain function maps ([#9](https://github.com/astrale-os/sdk/issues/9)) ([46ccb4a](https://github.com/astrale-os/sdk/commit/46ccb4a7c6ff3c582475f2baaad60fb3a112d24e))
|
|
1289
|
+
* accept public/optional method handlers in the AnyRemoteHandler bag ([#10](https://github.com/astrale-os/sdk/issues/10)) ([4969779](https://github.com/astrale-os/sdk/commit/49697796988ad28174cf16993401715c5282fe45))
|
|
1290
|
+
* adapt build-spec to the kernel two-axis placement (parent, not mount) ([#17](https://github.com/astrale-os/sdk/issues/17)) ([61ac025](https://github.com/astrale-os/sdk/commit/61ac025bfe51f9460caf470be005b43716f0117c))
|
|
1291
|
+
* add js/cjs/mjs to lint-staged config ([d932f8f](https://github.com/astrale-os/sdk/commit/d932f8f8c1825bc05a80654bcffcc3208bec1a65))
|
|
1292
|
+
* apply CORS to auxiliary /functions and /views routes ([0cb8e12](https://github.com/astrale-os/sdk/commit/0cb8e12ae97c7b334584bcd79d2e907fbbf0ffa9))
|
|
1293
|
+
* **app:** resolve eslint errors for empty object and any types ([6e4272a](https://github.com/astrale-os/sdk/commit/6e4272a3af3770e65f1e079838866e67edb05084))
|
|
1294
|
+
* **app:** restore zod type import ([c9a9f99](https://github.com/astrale-os/sdk/commit/c9a9f997f390aa587749511862b57ead47c2b8ad))
|
|
1295
|
+
* **backend:** forward ctx.issuer to remote handlers ([12031d4](https://github.com/astrale-os/sdk/commit/12031d408d68753f2c2aa53dfc1bb2eb286babdf))
|
|
1296
|
+
* **ci:** configure GitHub Packages auth for external dependencies ([9cbf721](https://github.com/astrale-os/sdk/commit/9cbf721ae811d3940de34e4c9a0ded09a7998c0d))
|
|
1297
|
+
* **ci:** gracefully handle missing external dependencies ([a9e315e](https://github.com/astrale-os/sdk/commit/a9e315e0eae61e4e07e70085f285f75e062cf7db))
|
|
1298
|
+
* **ci:** remove cache requirement and use --no-frozen-lockfile ([1f2e25e](https://github.com/astrale-os/sdk/commit/1f2e25e7aafb5efca62de7e0e4e62241c5fda31a))
|
|
1299
|
+
* **ci:** update publish workflow to handle missing dependencies ([5ce3ea9](https://github.com/astrale-os/sdk/commit/5ce3ea94c217506157302193754e92e69aac8dbb))
|
|
1300
|
+
* **ci:** use shared publish action and fix typegraph dependency ([9a211f4](https://github.com/astrale-os/sdk/commit/9a211f4005259ec2ae8178265715aa05fcfa0854))
|
|
1301
|
+
* clean up error handling and validation ([a669256](https://github.com/astrale-os/sdk/commit/a669256cb88010f5b7f2aba135d6e5b32db15507))
|
|
1302
|
+
* cold-run dx batch (timeout, epilogue, pnpm-first, .env.dev) ([a3398f0](https://github.com/astrale-os/sdk/commit/a3398f022e2eca98188627217443369d59469a69))
|
|
1303
|
+
* correctness + quality pass on SDK dispatch, auth, and server ([d58f17c](https://github.com/astrale-os/sdk/commit/d58f17c8e95d0f9e201da2534a1243662b9ab5d5))
|
|
1304
|
+
* devkit --help prints usage instead of deploying; devkit 0.1.6 ([65541cd](https://github.com/astrale-os/sdk/commit/65541cd1c227de15406282139ffdbd4e41cfda62))
|
|
1305
|
+
* drop stray version field from /meta manifest schema ([69889fa](https://github.com/astrale-os/sdk/commit/69889fa7d62d3b7d063f6973a4fd6359f56524a4))
|
|
1306
|
+
* expose `self.id` on SelfResult for instance dispatch — META_TRACE [#61](https://github.com/astrale-os/sdk/issues/61) ([850ffd8](https://github.com/astrale-os/sdk/commit/850ffd8aa9b28d7f90a28b22344b88848a2b81d5))
|
|
1307
|
+
* guard sdk preinstall for tarball installs + bump publish chain (workspace:^ internal pins) ([7519a29](https://github.com/astrale-os/sdk/commit/7519a29a1ae6b29a452cf5629b93b3c8419a324f))
|
|
1308
|
+
* **iframe:** mark render views no-handshake ([5cfea82](https://github.com/astrale-os/sdk/commit/5cfea826edb2c96d113322ac9bca1595acda4759))
|
|
1309
|
+
* make astrale adapter params.instance optional for dev-only envs ([7e44313](https://github.com/astrale-os/sdk/commit/7e4431334cc440c9375c10922733f9c36ed22438))
|
|
1310
|
+
* never ship a pnpm-lock.yaml in scaffolds ([80c0196](https://github.com/astrale-os/sdk/commit/80c01964c5f777887f77cafc98fb4cb0da09e094))
|
|
1311
|
+
* next-hop delegation mints as the function's own identity with composed grant ([77e570e](https://github.com/astrale-os/sdk/commit/77e570e9837be524c0f858e652fd966af3e021d6))
|
|
1312
|
+
* opaque @hono/node-server import so worker bundles skip the optional peer ([e53e983](https://github.com/astrale-os/sdk/commit/e53e983638b2643875e55ca1587e1fe606479d1c))
|
|
1313
|
+
* pin zod by exact version in create-astrale-domain --link scaffolds ([9a778ca](https://github.com/astrale-os/sdk/commit/9a778ca44073a2f318faf7d1f1092844946046da))
|
|
1314
|
+
* postInstall must be a typed colon-path - template seed becomes a Note static ([35c5d45](https://github.com/astrale-os/sdk/commit/35c5d45836c13109d28af0f541f41550457767f1))
|
|
1315
|
+
* replace ~20 `any` casts with proper types across worker, react, and backend ([786bba2](https://github.com/astrale-os/sdk/commit/786bba22a13e8ddef0e71b047163c2b6dc3145bd))
|
|
1316
|
+
* scaffold cp filter must test template-relative paths (npx installs live in node_modules) ([3fd0a79](https://github.com/astrale-os/sdk/commit/3fd0a7925bb3c77a5aba3cde24aad26013cd7973))
|
|
1317
|
+
* sdk root tsconfig extends its own base for standalone build ([2cd7eab](https://github.com/astrale-os/sdk/commit/2cd7eab861ae4728fce119cf2249548d00d5b8ad))
|
|
1318
|
+
* selfKernel prefers INSTANCE_KERNEL_URL (instance graph) over the host KERNEL_URL ([a767aa8](https://github.com/astrale-os/sdk/commit/a767aa83f9bf0c3357cbed6f7bfc11a4f94cb51a))
|
|
1319
|
+
* sign runtime creds with bare-slug iss; verify with audience tolerance ([16d8a26](https://github.com/astrale-os/sdk/commit/16d8a26025435059a03ce736efeb1225c976dd9a))
|
|
1320
|
+
* template dep floors to known-good versions + pnpm build-gate declarations ([bc681da](https://github.com/astrale-os/sdk/commit/bc681daabc717316b1e22f9b0bcaa0b7c727981f))
|
|
1321
|
+
* WFP tenant self-subrequest 404 + scaffolds shipping a stale lockfile ([fda3a28](https://github.com/astrale-os/sdk/commit/fda3a285ddc775474ec53c1ea2a902b4c364b361))
|
|
1322
|
+
* wire + default-on the router service binding ([4d05110](https://github.com/astrale-os/sdk/commit/4d05110e4796a2dad9e7fca1fab53206dca39823))
|
|
1323
|
+
* **worker:** dispatch same-origin self-subrequests in-process when no SELF binding ([6017c75](https://github.com/astrale-os/sdk/commit/6017c759c6ba70efdda9f8b699f1f6cb25b080fb))
|
|
1324
|
+
* **worker:** repair managed deploy hotfix ([65bdbb9](https://github.com/astrale-os/sdk/commit/65bdbb90c9036e5591e10be61079ed4f4baec52c))
|
|
1325
|
+
|
|
1326
|
+
|
|
1327
|
+
### Performance Improvements
|
|
1328
|
+
|
|
1329
|
+
* cache JWKS resolvers, evict-and-retry on stale issuer keys ([bc31c93](https://github.com/astrale-os/sdk/commit/bc31c9317c421361182d1851e74ea25f5f23373a))
|
|
1330
|
+
|
|
1331
|
+
|
|
1332
|
+
### Documentation
|
|
1333
|
+
|
|
1334
|
+
* **backend:** reference kernel Domain.install in adapter-astrale comment ([1fcdca2](https://github.com/astrale-os/sdk/commit/1fcdca28b660985ddd31a056e026f636e9e294f6))
|
|
1335
|
+
* clarify development setup and workspace dependency ([6af5a67](https://github.com/astrale-os/sdk/commit/6af5a673dce763fa65e22234a76f74387fd1dc69))
|
|
1336
|
+
* document instance kernel url for the cloudflare adapter ([4a25ddd](https://github.com/astrale-os/sdk/commit/4a25dddef405540935e180dd8c547c26ec04c323))
|
|
1337
|
+
* note raw build-spec-cli lacks cross-domain env injection (use astrale domain build) ([d9864ae](https://github.com/astrale-os/sdk/commit/d9864ae0aca9f4bc3857bee94a3a4184a2b7086c))
|
|
1338
|
+
* rename instance install -> domain install; point hints at --direct ([ce0c567](https://github.com/astrale-os/sdk/commit/ce0c567851077cce56d5fd8569cd9f110fc5216e))
|
|
1339
|
+
* self binding present on managed runtime; logs rows in skills ([265841e](https://github.com/astrale-os/sdk/commit/265841e7eb921bdcf75b7294f8f7604fbd92adf5))
|
|
1340
|
+
* selfKernel in skill webhook section ([4be446b](https://github.com/astrale-os/sdk/commit/4be446bc8620eaa2cc57ea1e2ab448b991d520c1))
|
|
1341
|
+
* skill — correct schema registration (edges under classes) and defineSchema import ([7b5de46](https://github.com/astrale-os/sdk/commit/7b5de46cdd17ac3d5f704e1925354919517e8352))
|
|
1342
|
+
* skill — dev --port ([9f1f90a](https://github.com/astrale-os/sdk/commit/9f1f90a9d6481732edef31bf7b6335ef76baa711))
|
|
1343
|
+
* skill — local-dev vs remote-instance install reality ([61eacaf](https://github.com/astrale-os/sdk/commit/61eacaf2517c63eb6fb04bfb9f83f9389076a7db))
|
|
1344
|
+
* skill — view discovery, mount semantics, managed-install debugging and recovery ([88f2e7f](https://github.com/astrale-os/sdk/commit/88f2e7f15a0018a9ef6b1c896a72f80f9adf5127))
|
|
1345
|
+
* skill — views ship on both adapters ([63b8825](https://github.com/astrale-os/sdk/commit/63b88253f6001d63f910d92ae113f88a31466f41))
|
|
1346
|
+
* skill + scope — managed secrets shipped ([55fe37e](https://github.com/astrale-os/sdk/commit/55fe37e01852b5717f7cbeb210f66b6957a9d023))
|
|
1347
|
+
* skill carries the grantperm snippet for the public-view pattern ([3c5d346](https://github.com/astrale-os/sdk/commit/3c5d346765a42946620d34acb352e6b141d57181))
|
|
1348
|
+
* skill recipe — public server-rendered view reading the graph ([32b00ea](https://github.com/astrale-os/sdk/commit/32b00ea0b115c8178c248c4dc5f61d05b45e9d2a))
|
|
1349
|
+
|
|
1350
|
+
## [0.2.1](https://github.com/astrale-os/sdk/compare/sdk-v0.2.0...sdk-v0.2.1) (2026-06-24)
|
|
1351
|
+
|
|
1352
|
+
|
|
1353
|
+
### Features
|
|
1354
|
+
|
|
1355
|
+
* add comments.json template and update CLI references in publish functions ([b689797](https://github.com/astrale-os/sdk/commit/b689797b7139b380943390fddae95e9a2c040ce4))
|
|
1356
|
+
* add manifest support for domain definition and metadata ([247afa2](https://github.com/astrale-os/sdk/commit/247afa2f1bf502a94221b2209af61ff36348829e))
|
|
1357
|
+
* **scaffold:** make the default domain template a wired blank skeleton ([74e72d5](https://github.com/astrale-os/sdk/commit/74e72d52852c907bb4b5c04fe00a71e1bce9351d))
|
|
1358
|
+
|
|
1359
|
+
|
|
1360
|
+
### Bug Fixes
|
|
1361
|
+
|
|
1362
|
+
* drop stray version field from /meta manifest schema ([69889fa](https://github.com/astrale-os/sdk/commit/69889fa7d62d3b7d063f6973a4fd6359f56524a4))
|
|
1363
|
+
* sdk root tsconfig extends its own base for standalone build ([2cd7eab](https://github.com/astrale-os/sdk/commit/2cd7eab861ae4728fce119cf2249548d00d5b8ad))
|