@burgan-tech/vnext-meta 0.0.65 → 0.0.66

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/features.json CHANGED
@@ -23,6 +23,12 @@
23
23
  "apiEndpoints": [
24
24
  "POST {domain}/workflows/{workflow}/instances/{instance}/longpoll/ack"
25
25
  ]
26
+ },
27
+ "stateNotification": {
28
+ "since": "0.0.63",
29
+ "status": "stable",
30
+ "description": "Declarative state-level notifications. A state may declare a notifications[] array; each entry has a type (default 'state' — only 'state' is processed today, 'command' is reserved), an optional rule (compiled to IConditionMapping), and a mapping (compiled to IStateNotificationMapping, same contract as the NotificationTask state channel). After the transition pipeline settles and the instance state/status is finalized and committed, the engine schedules a durable one-shot background job (handler 'state.notify') that rebuilds a ScriptContext from the carried request context (Headers, RouteValues, Body), evaluates each entry's rule (absent rule => always processed; present rule => only entries whose rule returns true), and dispatches the applicable entries through the platform-managed state Dapr binding (vnext-notification-state) off the request thread, so the client response is never blocked. Fires once per settle (not on intermediate auto-chain hops). The state-channel payload is the slim pointer { domain, flow, id, version } — consumers re-fetch full state via the State function. Independent of and backward-compatible with the existing NotificationTask state channel.",
31
+ "schemaPath": "state.notifications[]"
26
32
  }
27
33
  }
28
34
  }
package/migrations.json CHANGED
@@ -1,3 +1,15 @@
1
1
  {
2
- "items": []
2
+ "items": [
3
+ {
4
+ "id": "state-channel-slim-payload",
5
+ "type": "behavior",
6
+ "component": "notification",
7
+ "path": "notificationTask.channels[state]",
8
+ "since": "0.0.63",
9
+ "severity": "warning",
10
+ "title": "State notification channel payload slimmed to a pointer",
11
+ "description": "The platform-managed 'state' notification channel (NotificationTask state channel and the new state-level notification directive) no longer embeds the full State function output (GetInstanceStateOutput) in the message data. The data payload is now the slim pointer { domain, flow, id, version } inside the CloudEvents envelope; consumers must re-fetch the full state via the State function. Binding metadata and IStateNotificationMapping enrichment are unchanged.",
12
+ "action": "Update state-channel consumers to treat the message as a change pointer and call the State function for full state instead of reading data.data.* fields."
13
+ }
14
+ ]
3
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burgan-tech/vnext-meta",
3
- "version": "0.0.65",
3
+ "version": "0.0.66",
4
4
  "description": "vNext Runtime metadata package — version manifest, feature catalog, deprecation registry, and component metadata for offline consumption by Forge Studio, CLI, and domain packages.",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -1,5 +1,25 @@
1
1
  {
2
2
  "versions": {
3
+ "0.0.66": {
4
+ "schemaVersion": "0.0.48",
5
+ "releasedAt": "2026-06-28",
6
+ "releaseNotes": "https://burgan-tech.github.io/vnext-docs/blog/release-v0-0-66"
7
+ },
8
+ "0.0.65": {
9
+ "schemaVersion": "0.0.47",
10
+ "releasedAt": "2026-06-25",
11
+ "releaseNotes": "https://burgan-tech.github.io/vnext-docs/blog"
12
+ },
13
+ "0.0.64": {
14
+ "schemaVersion": "0.0.47",
15
+ "releasedAt": "2026-06-19",
16
+ "releaseNotes": "https://burgan-tech.github.io/vnext-docs/blog"
17
+ },
18
+ "0.0.63": {
19
+ "schemaVersion": "0.0.47",
20
+ "releasedAt": "2026-06-18",
21
+ "releaseNotes": "https://burgan-tech.github.io/vnext-docs/blog"
22
+ },
3
23
  "0.0.62": {
4
24
  "schemaVersion": "0.0.47",
5
25
  "releasedAt": "2026-06-18",