@configbutler/krm-stream 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- // krm-stream — a live, honest window onto Kubernetes resources, in the browser.
1
+ // krm-stream — live Kubernetes resource updates and three-way merges for browser applications.
2
2
  //
3
3
  // The public surface is small on purpose:
4
4
  //
package/dist/store.js CHANGED
@@ -250,8 +250,7 @@ export class LiveResourceStore {
250
250
  }
251
251
  /** Every edit goes through here: a write to `status`, to `metadata.name`, or to a redacted path is
252
252
  * refused. The engine is not the security boundary — the gateway rejects such a patch too — but a
253
- * UI that cannot even form the edit is the difference between "safe" and "safe if the client is
254
- * honest". */
253
+ * UI that cannot even form the edit is safer than one that relies on client cooperation. */
255
254
  #editable(id, path) {
256
255
  const res = this.#must(id);
257
256
  if (!this.isEditable(id, path)) {
package/dist/version.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  /** The npm package version of this build. Assert it against the copy you vendored. */
2
- export declare const VERSION = "0.1.0";
2
+ export declare const VERSION = "0.1.1";
3
3
  /** The wire protocol this build speaks (spec/v1.md). The gateway sends it as `X-KRM-Stream-Protocol`. */
4
4
  export declare const PROTOCOL_VERSION = 1;
package/dist/version.js CHANGED
@@ -21,6 +21,6 @@
21
21
  // release-please-config.json). Do not edit it by hand: the release PR bumps package.json and this
22
22
  // line together, and version.test.ts fails if they ever disagree.
23
23
  /** The npm package version of this build. Assert it against the copy you vendored. */
24
- export const VERSION = "0.1.0"; // x-release-please-version
24
+ export const VERSION = "0.1.1"; // x-release-please-version
25
25
  /** The wire protocol this build speaks (spec/v1.md). The gateway sends it as `X-KRM-Stream-Protocol`. */
26
26
  export const PROTOCOL_VERSION = 1;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@configbutler/krm-stream",
3
- "version": "0.1.0",
4
- "description": "A live, honest window onto Kubernetes resources, in the browser: consume a KRM resource stream, three-way merge local edits, build a merge patch.",
3
+ "version": "0.1.1",
4
+ "description": "Receive live Kubernetes resource updates in browser apps and three-way merge them with form edits.",
5
5
  "keywords": [
6
6
  "kubernetes",
7
7
  "krm",