Skip to content

Commit 4f62e71

Browse files
Release v0.17.2
1 parent a690607 commit 4f62e71

7 files changed

Lines changed: 19 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.17.2] - 2026-04-24
11+
12+
### Changed
13+
14+
- **[Infrastructure] Bump Fly.io VM to `shared-cpu-2x` / 512 MB** — doubles memory headroom and burst CPU credits. The previous `shared-cpu-1x` / 256 MB sized warm-idle around 150 MB, leaving ~50 MB of headroom that a single active session could exhaust under non-pushdown DataFusion execution (cross-datasource joins, `json_length` / `json_keys` UDFs). The spike-then-throttle pattern under heavy queries is reduced (longer burst window before kernel CFS throttling kicks in) but not eliminated — moving to `performance-1x` would be required to remove burst-credit throttling outright.
15+
16+
### Docs
17+
18+
- **[Docs] README points at unversioned screenshot filenames** — image links no longer go stale across releases.
19+
1020
## [0.17.1] - 2026-04-24
1121

1222
### Changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

admin-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "admin-ui",
33
"private": true,
4-
"version": "0.17.1",
4+
"version": "0.17.2",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

docs-site/docs/.vitepress/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ export const OG_IMAGE_URL = `${WWW_URL}/og-image.png`
1414
// Current released proxy version. Bumped by /release alongside Cargo.toml
1515
// and admin-ui/package.json. Substituted into markdown via the {{VERSION}}
1616
// token — see the markdown.config hook in .vitepress/config.ts.
17-
export const VERSION = '0.17.1'
17+
export const VERSION = '0.17.2'

fly.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ image = 'ghcr.io/getbetweenrows/betweenrows:latest'
1515
destination = '/data'
1616
initial_size = '1gb'
1717

18-
# ── VM size: smallest available (shared CPU, 256 MB RAM) ─────────────────────
18+
# ── VM size: 2 shared CPU shares, 512 MB RAM ────────────────────────────────
1919
[[vm]]
20-
size = 'shared-cpu-1x'
21-
memory = '256mb'
20+
size = 'shared-cpu-2x'
21+
memory = '512mb'
2222

2323
# ── Admin REST API + bundled UI (HTTP/HTTPS on 80/443) ────────────────────────
2424
[[services]]

migration/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "migration"
3-
version = "0.17.1"
3+
version = "0.17.2"
44
edition = "2024"
55

66
[dependencies]

proxy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "proxy"
3-
version = "0.17.1"
3+
version = "0.17.2"
44
edition = "2024"
55

66
[dependencies]

0 commit comments

Comments
 (0)