Skip to content

Commit f931547

Browse files
committed
chore(release): prepare 0.0.13
1 parent 2e801b8 commit f931547

5 files changed

Lines changed: 24 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,20 @@ This project is pre-1.0. Breaking changes may appear in minor or patch releases
66

77
## Unreleased
88

9+
## 0.0.13 - 2026-07-24
10+
11+
### Editor, import, and publishing
12+
13+
- Added a dedicated Page settings dialog so authors can edit page slugs directly.
14+
- Preserved node inline styles in image previews and hid empty canvas chrome for ambient style rules.
15+
- Rendered imported SVG sizing and presentation styles on the canvas root so editor previews match published output.
16+
- Preserved safe SVG fragment references through Super Import, editor rendering, and publishing so circular text paths remain visible and animated.
17+
18+
### Platform and maintenance
19+
20+
- Updated Sharp to its patched release.
21+
- Restored function-level coverage reporting for Fallow health checks.
22+
923
## 0.0.12 - 2026-07-24
1024

1125
### AI and integrations

docs/deployment/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ INSTATIC_IMAGE=ghcr.io/corebunch/instatic:latest docker compose -f compose.prod.
5757
Pin a semver tag for predictable upgrades:
5858

5959
```sh
60-
INSTATIC_IMAGE=ghcr.io/corebunch/instatic:0.0.12 docker compose -f compose.prod.yml -f compose.sqlite.yml up -d
60+
INSTATIC_IMAGE=ghcr.io/corebunch/instatic:0.0.13 docker compose -f compose.prod.yml -f compose.sqlite.yml up -d
6161
```
6262

6363
Source builds remain supported for contributors and release-candidate testing:

docs/deployment/docker-image.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ GHCR is the canonical image registry:
3636

3737
```sh
3838
docker pull ghcr.io/corebunch/instatic:latest
39-
docker pull ghcr.io/corebunch/instatic:0.0.12
39+
docker pull ghcr.io/corebunch/instatic:0.0.13
4040
```
4141

42-
The v0.0.12 published image is built for `linux/amd64`. Use it on Railway and x86_64 VPS/container hosts. ARM64 hosts should build from source for now, or wait for the native arm64 release job before pulling GHCR images directly.
42+
The v0.0.13 published image is built for `linux/amd64`. Use it on Railway and x86_64 VPS/container hosts. ARM64 hosts should build from source for now, or wait for the native arm64 release job before pulling GHCR images directly.
4343

4444
## Run With SQLite
4545

@@ -92,7 +92,7 @@ Replace `instatic:local` with `ghcr.io/corebunch/instatic:<tag>` when deploying
9292
Create an app service from Docker image source:
9393

9494
```txt
95-
ghcr.io/corebunch/instatic:0.0.12
95+
ghcr.io/corebunch/instatic:0.0.13
9696
```
9797

9898
Attach a Railway volume at `/app/storage`, set the health check path to `/health`, and set app variables:
@@ -109,7 +109,7 @@ RAILWAY_RUN_UID=0
109109

110110
`RAILWAY_RUN_UID=0` is required because Railway volumes are mounted as `root` and the published image otherwise runs as the non-root `bun` user. `PUBLIC_ORIGIN=https://${{RAILWAY_PUBLIC_DOMAIN}}` gives Instatic the public origin for its CSRF check now that Railway terminates HTTPS at the edge; the server would auto-detect the same value from `RAILWAY_PUBLIC_DOMAIN`, but setting it explicitly survives custom-domain edits.
111111

112-
Enable Railway Image Auto Updates when you want Railway to move the service forward automatically during a maintenance window. Use `:latest` for "always follow the newest image", or a semver tag such as `:0.0.12` if you want Railway's semver update controls.
112+
Enable Railway Image Auto Updates when you want Railway to move the service forward automatically during a maintenance window. Use `:latest` for "always follow the newest image", or a semver tag such as `:0.0.13` if you want Railway's semver update controls.
113113

114114
## Run On Render From The Image
115115

docs/deployment/railway.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Railway is the simplest managed target for Instatic because it can run the publi
1616
Both templates use:
1717

1818
```txt
19-
Image=ghcr.io/corebunch/instatic:0.0.12
19+
Image=ghcr.io/corebunch/instatic:0.0.13
2020
PORT=8080
2121
UPLOADS_DIR=/app/storage/uploads
2222
STATIC_DIR=/app/dist
@@ -32,7 +32,7 @@ Configure the app service health check path as `/health`. If Railway asks which
3232
Use a Docker image source for production installs:
3333

3434
```txt
35-
ghcr.io/corebunch/instatic:0.0.12
35+
ghcr.io/corebunch/instatic:0.0.13
3636
```
3737

3838
The image already runs:
@@ -48,7 +48,7 @@ Recommended service settings:
4848
| Setting | Value |
4949
|---|---|
5050
| Source | Docker image |
51-
| Image | `ghcr.io/corebunch/instatic:0.0.12` |
51+
| Image | `ghcr.io/corebunch/instatic:0.0.13` |
5252
| Public networking | HTTP enabled |
5353
| Target port | `8080` |
5454
| Healthcheck path | `/health` |
@@ -135,7 +135,7 @@ Railway volume backups apply to mounted volumes. For Postgres, use Railway's dat
135135
Enable Railway Image Auto Updates on the app service:
136136

137137
- Use `ghcr.io/corebunch/instatic:latest` when you want the service to redeploy whenever the `latest` tag moves.
138-
- Use a semver tag like `ghcr.io/corebunch/instatic:0.0.12` when you want Railway to stage matching patch or minor updates according to the service's auto-update preference.
138+
- Use a semver tag like `ghcr.io/corebunch/instatic:0.0.13` when you want Railway to stage matching patch or minor updates according to the service's auto-update preference.
139139

140140
Set a maintenance window before enabling automatic updates on sites with attached volumes.
141141

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "instatic",
33
"private": true,
4-
"version": "0.0.12",
4+
"version": "0.0.13",
55
"engines": {
66
"bun": ">=1.3.0 <1.4.0"
77
},

0 commit comments

Comments
 (0)