Skip to content

Commit 5d70da0

Browse files
Add CHANGELOG entry for persist query parameter.
1 parent 8f1ee61 commit 5d70da0

File tree

2 files changed

+20
-9
lines changed

2 files changed

+20
-9
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ Write the date in place of the "Unreleased" in the case a new version is release
33

44
# Changelog
55

6+
7+
## PLACEHOLDER
8+
9+
### Added
10+
11+
- Optional `persist` query parameter to PUT and PATCH /array/... routes.
12+
13+
614
## v0.2.0 (2025-10-29)
715

816
### Added

docker-compose.yml

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
version: "3.2"
22
services:
3-
tiled:
4-
image: ghcr.io/bluesky/tiled:0.2.0
3+
tiled-base:
4+
container_name: tiled-base
5+
# image: ghcr.io/bluesky/tiled:v0.1.0b10
6+
image: tiled:local
7+
platform: linux/arm64
8+
build:
9+
context: "." # Local repo directory
10+
platforms:
11+
- linux/arm64
12+
tags:
13+
- tiled:local
514
environment:
615
- TILED_SINGLE_USER_API_KEY=${TILED_SINGLE_USER_API_KEY}
716
ports:
8-
- 8000:8000
17+
- 127.0.0.1:8080:8000
918
restart: unless-stopped
10-
healthcheck:
11-
test: curl --fail http://localhost:8000/healthz || exit 1
12-
interval: 60s
13-
timeout: 10s
14-
retries: 3
15-
start_period: 30s
1619

1720
# Below we additionally configure monitoring with Prometheus and Grafana.
1821
# This is optional; it is not required for Tiled to function.

0 commit comments

Comments
 (0)