@aiaiai-pt/frankctl 0.14.1 → 0.16.4
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/CHANGELOG.md +27 -0
- package/dist/index.js +215 -215
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to `@aiaiai-pt/frankctl` are documented here. This project
|
|
4
4
|
adheres to [Semantic Versioning](https://semver.org/).
|
|
5
5
|
|
|
6
|
+
## 0.16.1
|
|
7
|
+
|
|
8
|
+
- Sinks: accept `topic_prefix` in `sinks create` and `sinks update` config files as
|
|
9
|
+
the recommended way to address a sink. The API derives the MQTT ACL (`{prefix}/#`)
|
|
10
|
+
and the Kafka topic from it, so `mqtt_topic_pattern` and `kafka_topic` are now
|
|
11
|
+
optional (one of `topic_prefix` or `kafka_topic` is still required). `sinks get`
|
|
12
|
+
shows `topic_prefix` and `derived_acl_pattern`.
|
|
13
|
+
|
|
14
|
+
## 0.16.0
|
|
15
|
+
|
|
16
|
+
- Expose durable SQL submission and observation receipts for transform execution.
|
|
17
|
+
Active callbacks now report their stable `TransformRun` identity, while terminal
|
|
18
|
+
replay preserves verified output rows and exact Iceberg snapshot strings.
|
|
19
|
+
|
|
20
|
+
## 0.15.1
|
|
21
|
+
|
|
22
|
+
- Surface durable stale-ontology recovery lineage on BackingDataset sync runs,
|
|
23
|
+
including the failed parent bulk job and linked successor jobs (#1018).
|
|
24
|
+
|
|
25
|
+
## 0.15.0
|
|
26
|
+
|
|
27
|
+
- Request the `organization:*` OIDC scope on every login (password and PKCE), so
|
|
28
|
+
the token lists every Keycloak Organization the user belongs to. Frank's API
|
|
29
|
+
validates `X-Tenant-ID` against that membership claim and rejects user tokens
|
|
30
|
+
without it (#905 Slice 2, ADL-037). Realms must assign the `organization`
|
|
31
|
+
client scope to the Frank clients; see the operations guide.
|
|
32
|
+
|
|
6
33
|
## 0.14.1
|
|
7
34
|
|
|
8
35
|
- Drain queued stdout and stderr before exiting, preserving complete JSON and
|