Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"packages/krm-stream": "0.1.1",
"gateway": "0.1.1",
"gateway/kube": "0.1.1"
"packages/krm-stream": "0.2.0",
"gateway": "0.2.0",
"gateway/kube": "0.2.0"
}
17 changes: 17 additions & 0 deletions gateway/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## [0.2.0](https://github.com/ConfigButler/krm-stream/compare/gateway/v0.1.1...gateway/v0.2.0) (2026-07-14)


### ⚠ BREAKING CHANGES

* applyStreamEvent returns StreamChange rather than Path[], and onChange receives a StreamChange rather than Path[]. Read `.flashed` for the previous value.
* **gateway:** ScopeFromQuery and ScopePolicy.Validate return error rather than *StreamError. Callers reading .Code directly use errors.As instead.

### Features

* export gateway.Project, and return the whole StreamChange from applyStreamEvent ([#10](https://github.com/ConfigButler/krm-stream/issues/10)) ([915abff](https://github.com/ConfigButler/krm-stream/commit/915abff871d5553c69dd8792c4ab6277dbe50cce))


### Bug Fixes

* **gateway:** return error, not *StreamError, from the exported scope API ([#9](https://github.com/ConfigButler/krm-stream/issues/9)) ([53f7fbd](https://github.com/ConfigButler/krm-stream/commit/53f7fbdffa4fa85184fac5a93658cbfd30d1fc2d))

## [0.1.1](https://github.com/ConfigButler/krm-stream/compare/gateway/v0.1.0...gateway/v0.1.1) (2026-07-14)


Expand Down
11 changes: 11 additions & 0 deletions gateway/kube/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [0.2.0](https://github.com/ConfigButler/krm-stream/compare/gateway/kube/v0.1.1...gateway/kube/v0.2.0) (2026-07-14)


### ⚠ BREAKING CHANGES

* **gateway:** ScopeFromQuery and ScopePolicy.Validate return error rather than *StreamError. Callers reading .Code directly use errors.As instead.

### Bug Fixes

* **gateway:** return error, not *StreamError, from the exported scope API ([#9](https://github.com/ConfigButler/krm-stream/issues/9)) ([53f7fbd](https://github.com/ConfigButler/krm-stream/commit/53f7fbdffa4fa85184fac5a93658cbfd30d1fc2d))

## [0.1.1](https://github.com/ConfigButler/krm-stream/compare/gateway/kube/v0.1.0...gateway/kube/v0.1.1) (2026-07-14)


Expand Down
17 changes: 17 additions & 0 deletions packages/krm-stream/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## [0.2.0](https://github.com/ConfigButler/krm-stream/compare/@configbutler/krm-stream-v0.1.1...@configbutler/krm-stream-v0.2.0) (2026-07-14)


### ⚠ BREAKING CHANGES

* applyStreamEvent returns StreamChange rather than Path[], and onChange receives a StreamChange rather than Path[]. Read `.flashed` for the previous value.

### Features

* **client:** publish a single-file browser bundle as ./bundle ([#8](https://github.com/ConfigButler/krm-stream/issues/8)) ([5bbcdae](https://github.com/ConfigButler/krm-stream/commit/5bbcdae8f24be496ada9021ec86565fdd1f65816))
* export gateway.Project, and return the whole StreamChange from applyStreamEvent ([#10](https://github.com/ConfigButler/krm-stream/issues/10)) ([915abff](https://github.com/ConfigButler/krm-stream/commit/915abff871d5553c69dd8792c4ab6277dbe50cce))


### Documentation

* add alternatives, glossary, and why-a-gateway ([#6](https://github.com/ConfigButler/krm-stream/issues/6)) ([d5d686c](https://github.com/ConfigButler/krm-stream/commit/d5d686cd135e000c970517e09b7ed1653d29abf0))

## [0.1.1](https://github.com/ConfigButler/krm-stream/compare/@configbutler/krm-stream-v0.1.0...@configbutler/krm-stream-v0.1.1) (2026-07-14)


Expand Down
4 changes: 2 additions & 2 deletions packages/krm-stream/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/krm-stream/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@configbutler/krm-stream",
"version": "0.1.1",
"version": "0.2.0",
"description": "Receive live Kubernetes resource updates in browser apps and three-way merge them with form edits.",
"keywords": [
"kubernetes",
Expand Down
2 changes: 1 addition & 1 deletion packages/krm-stream/src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
// line together, and version.test.ts fails if they ever disagree.

/** The npm package version of this build. Assert it against the copy you vendored. */
export const VERSION = "0.1.1"; // x-release-please-version
export const VERSION = "0.2.0"; // x-release-please-version

/** The wire protocol this build speaks (spec/v1.md). The gateway sends it as `X-KRM-Stream-Protocol`. */
export const PROTOCOL_VERSION = 1;