Skip to content

Commit 63e9b16

Browse files
committed
release: v0.6.1 — Cloudflare Worker + R2 adapter
Introduce first-class Cloudflare Worker + R2 adapter for StatikAPI. - Add cloudflare-adapter template to create-statikapi - Wire Worker entry, R2 bucket, KV manifest, and STATIK_* env vars - Support webhook-style POST /build endpoint for full or per-route rebuilds - Keep adapter JavaScript-only (no TS/eslint prompts) for a simpler DX - Update docs: getting started, CLI scaffolding, and new Cloudflare adapter guide - Document recommended Git + Cloudflare Worker workflow and R2 update flow This release is tagged as v0.6.1 and focuses on serverless deployment via Cloudflare Workers + R2 with webhook-triggered rebuilds.
1 parent 183950a commit 63e9b16

13 files changed

Lines changed: 15 additions & 15 deletions

File tree

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ type(scope): subject
5555
| **chore** | Maintenance / tooling | `chore(repo): align .editorconfig + prettier config` |
5656
| **security** | Security patch | `security(cli): sanitize route param printing` |
5757
| **deps** | Dependency bump | `deps(ui): upgrade react to 18.3.1` |
58-
| **release** | Version tags and changelog updates | `release: v0.6.0` |
58+
| **release** | Version tags and changelog updates | `release: v0.6.1` |
5959

6060
---
6161

@@ -122,7 +122,7 @@ Use `statikapi dev` for incremental rebuilds.
122122
| 🧪 | test | `🧪 test(router): stable route order` |
123123
| 🔧 | chore | `🔧 chore(repo): update pnpm lockfile` |
124124
| 🛠️ | build | `🛠️ build(ui): add vite alias` |
125-
| 🚀 | release | `🚀 release: v0.6.0` |
125+
| 🚀 | release | `🚀 release: v0.6.1` |
126126

127127
---
128128

@@ -137,7 +137,7 @@ Use `statikapi dev` for incremental rebuilds.
137137
- `ci: publish order core → cli → create-statikapi`
138138
- `test(router): stable ordering for static/dynamic/catchall`
139139
- `chore(repo): add pnpm-workspace.yaml`
140-
- `release: v0.6.0`
140+
- `release: v0.6.1`
141141

142142
---
143143

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ Tests cover:
154154

155155
Publishing is automated via **GitHub Actions** (`.github/workflows/release.yml`):
156156

157-
1. Triggered on pushing a version tag (e.g. `v0.6.0`).
157+
1. Triggered on pushing a version tag (e.g. `v0.6.1`).
158158
2. Verifies tag version matches `package.json` across packages.
159159
3. Builds & embeds the UI.
160160
4. Packs and publishes in order:

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Supported Versions
44

5-
StatikAPI is currently v0.6.0 and developed in a monorepo. We aim to patch the latest minor version only.
5+
StatikAPI is currently v0.6.1 and developed in a monorepo. We aim to patch the latest minor version only.
66

77
| Version | Supported |
88
| ------- | --------- |

docs/_meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "StatikAPI",
33
"description": "Build static JSON endpoints from filesystem modules — like Next.js static export, but for APIs.",
4-
"version": "0.6.0",
4+
"version": "0.6.1",
55
"lastUpdated": "2025-11-09T02:00:00.000Z",
66
"repo": "https://github.com/zonayedpca/statikapi"
77
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@statikapi/monorepo",
33
"private": true,
44
"type": "module",
5-
"version": "0.6.0",
5+
"version": "0.6.1",
66
"workspaces": [
77
"packages/*"
88
],

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "statikapi",
3-
"version": "0.6.0",
3+
"version": "0.6.1",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/zonayedpca/statikapi",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@statikapi/core",
3-
"version": "0.6.0",
3+
"version": "0.6.1",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/zonayedpca/statikapi",

packages/create-statikapi/bin/create-statikapi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ async function patchPkgJson(dest, appName, { pkgMgr, template, srcDir }) {
527527
'dev:headless': 'statikapi dev --no-ui',
528528
'build:api': 'statikapi build',
529529
};
530-
json.devDependencies = { ...(json.devDependencies || {}), statikapi: '^0.6.0' };
530+
json.devDependencies = { ...(json.devDependencies || {}), statikapi: '^0.6.1' };
531531

532532
await fs.writeFile(p, JSON.stringify(json, null, 2) + '\n', 'utf8');
533533
}

packages/create-statikapi/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-statikapi",
3-
"version": "0.6.0",
3+
"version": "0.6.1",
44
"type": "module",
55
"bin": {
66
"create-statikapi": "bin/create-statikapi.js"

packages/create-statikapi/templates/basic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"dev:headless": "statikapi dev --no-ui"
99
},
1010
"devDependencies": {
11-
"statikapi": "^0.6.0"
11+
"statikapi": "^0.6.1"
1212
}
1313
}

0 commit comments

Comments
 (0)