OPEN SOURCE RELEASE HISTORY NovaServe Changelog
Continuous improvements to the open-source cloud application compiler.
- Published official open-source package novaserve@2.1.12 to NPM registry
+ import { defineApp, api, storage } from "novaserve";
+ export default defineApp({ name: "my-nova-app", version: "2.1.12" });
- Published official open-source package novaserve@2.1.6 to NPM registry
- Deterministic SHA-256 state verification & automated least-privilege IAM policy generator
- Full support for AWS Lambda, S3, SQS, API Gateway v2 & local Hono emulator
+ import { defineApp, api, storage } from "novaserve";
+ export default defineApp({ name: "my-nova-app" });
- Added SHA-256 cryptographic state checksum verification pass
- OpenTelemetry distributed tracing headers automatically compiled into binaries
- Sub-second deployment pipeline performance optimizations for AWS us-east-1
+ const stateHash = sha256(compiledIR);
+ assertZeroDrift(stateHash);
- Introduced GCP Cloud Run target provider compilation
- Native VectorStore primitive for AI RAG inference apps
- Multi-stage Dockerfile automatic layer optimization
+ import { GPUWorker, VectorStore } from "@novaserve/core";
+ export const model = new GPUWorker("llama-3");
- Sub-5ms global KV read latency via 320 Cloudflare PoPs
- Automatic sharding between AWS Lambda and Cloudflare Edge
- Instant zero-downtime rollback CLI engine
+ export const cache = new EdgeKV("global-sessions");