@sylwellsoftware/glue 0.9.0 → 0.9.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +99 -0
  2. package/package.json +2 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,99 @@
1
+ # Glue changelog
2
+
3
+ All notable changes to `@sylwellsoftware/glue` are documented here. The format
4
+ follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and Semantic
5
+ Versioning.
6
+
7
+ ## Unreleased
8
+
9
+ ## 0.9.1 - 2026-09-08
10
+
11
+ ### Fixed
12
+
13
+ - Published npm packages now include this changelog alongside their release
14
+ history.
15
+
16
+ ## 0.9.0 - 2026-09-08
17
+
18
+ ### Added
19
+
20
+ - Added `LiveQuery` `execution` policies for immediate loading, one-way deferred
21
+ activation, and permanently explicit refreshes, plus idempotent
22
+ `LiveQuery.activate()` and endpoint option propagation.
23
+
24
+ ### Changed
25
+
26
+ - Deferred queries now suppress argument subscriptions and polling until
27
+ activation. Existing `autoFetch` behavior remains compatible and is
28
+ mutually exclusive with the named policy.
29
+
30
+ ## 0.8.1 - 2026-09-07
31
+
32
+ ### Changed
33
+
34
+ - Reworked the package guide around current emitter, query, endpoint, command,
35
+ diagnostic, ownership, and complete package-root export contracts.
36
+ - Restored the framework overview's design rationale for keeping application
37
+ relationships direct instead of maintaining a framework-shaped copy of
38
+ application state, including the intent behind the Glue name.
39
+
40
+ ## 0.8.0 - 2026-09-06
41
+
42
+ ### Added
43
+
44
+ - Exported `NonEmptyArray<T>` for public APIs that require one or more values.
45
+
46
+ ### Changed
47
+
48
+ - Enabled strict TypeScript compiler checking.
49
+
50
+ ## 0.7.0 - 2026-09-04
51
+
52
+ - No public Glue API changes; version synchronized with the framework release.
53
+
54
+ ## 0.6.0 - 2026-09-04
55
+
56
+ - No public Glue API changes; version synchronized with the framework release.
57
+
58
+ ## 0.5.0 - 2026-09-03
59
+
60
+ - No public Glue API changes; version synchronized with the framework release.
61
+
62
+ ## 0.4.0 - 2026-09-03
63
+
64
+ ### Added
65
+
66
+ - Immutable `QueryEndpoint`, `RestEndpoint`, and `DerivedEndpoint`
67
+ declarations with shared `LiveResult` contracts and caller-owned instances.
68
+ - Opt-in `LiveQuery` polling with reactive controls, overlap prevention,
69
+ injectable scheduling, and deterministic cleanup.
70
+ - Optional `RestQueryHandler.parseResult` response validation after JSON
71
+ parsing.
72
+
73
+ ### Changed
74
+
75
+ - `LiveQuery` now exposes explicit `abort()` without disposing the query.
76
+ - Application services can declare reusable remote and offline-filtered
77
+ endpoints without a Glue registry, cache, or dependency-injection system.
78
+ - Command-triggered query reconciliation is application-owned; refreshed query
79
+ failures do not alter the settled command state.
80
+
81
+ ## 0.3.0 - 2026-09-03
82
+
83
+ - No public Glue API changes; version synchronized with the framework release.
84
+
85
+ ## 0.2.0 - 2026-09-03
86
+
87
+ - No public Glue API changes; version synchronized with the framework release.
88
+
89
+ ## 0.1.0-alpha.1 - 2026-09-02
90
+
91
+ ### Added
92
+
93
+ - Initial public packaging with strict TypeScript declarations, ESM exports,
94
+ generic caller-supplied scenario adapters, deterministic artifact checks, and
95
+ standalone verification.
96
+
97
+ ### Changed
98
+
99
+ - Glue became the external peer dependency used by Fray.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sylwellsoftware/glue",
3
3
  "private": false,
4
- "version": "0.9.0",
4
+ "version": "0.9.1",
5
5
  "description": "Platform-neutral reactive values, derived state, live queries, and causal tracing.",
6
6
  "license": "Apache-2.0",
7
7
  "author": {
@@ -37,6 +37,7 @@
37
37
  },
38
38
  "files": [
39
39
  "dist",
40
+ "CHANGELOG.md",
40
41
  "LICENSE",
41
42
  "NOTICE"
42
43
  ],