Skip to content

Commit 9c05025

Browse files
committed
chore(release): v0.10.1
Patch release. Fixes the PHPStan type_coverage failure from v0.10.0 (one missing param type in DevBarController) and includes the homepage Dev Bar / composition feature cards and the comparison-table observability row. Bumps VERSION in src/Via.php and the health-check JSON in README.md and docs/broker.html.twig per the release checklist.
1 parent 32ad3bc commit 9c05025

4 files changed

Lines changed: 15 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
All notable changes to php-via will be documented in this file.
44

5+
## [0.10.1] - 2026-06-15
6+
7+
### Fixed
8+
9+
- Added the one missing parameter type (`Context` on a `DevBarController` closure) so the
10+
full-project PHPStan `type_coverage` run passes again. No runtime change.
11+
12+
### Documentation & Website
13+
14+
- Homepage: new feature cards for the Dev Bar and the closure/composition API choice, plus a
15+
"Built-in debugging / observability" row in the comparison table.
16+
517
## [0.10.0] - 2026-06-15
618

719
### New Features

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ Both brokers reconnect automatically with exponential backoff (1 s → 30 s cap)
209209
A `GET /_health` endpoint is available on every php-via server (no configuration needed):
210210

211211
```json
212-
{"status":"ok","version":"0.10.0","broker":{"driver":"RedisBroker","connected":true},"connections":{"contexts":42,"sse":38}}
212+
{"status":"ok","version":"0.10.1","broker":{"driver":"RedisBroker","connected":true},"connections":{"contexts":42,"sse":38}}
213213
```
214214

215215
Returns HTTP 503 when the broker is in the reconnect backoff window.

src/Via.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
* Main application class that manages routing, contexts, and SSE connections.
4949
*/
5050
class Via {
51-
public const string VERSION = '0.10.0';
51+
public const string VERSION = '0.10.1';
5252

5353
// Legacy public properties for HTTP handlers (will be phased out)
5454
/** @var array<string, Context> */

website/templates/docs/broker.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ curl https://myapp.example.com/_health
234234
{% code 'json' %}{% verbatim %}
235235
{
236236
"status": "ok",
237-
"version": "0.10.0",
237+
"version": "0.10.1",
238238
"broker": {
239239
"driver": "RedisBroker",
240240
"connected": true

0 commit comments

Comments
 (0)