@burgan-tech/vnext-meta 0.0.54-rc.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/README.md +47 -0
- package/component-registry.json +3 -0
- package/deprecations.json +15 -0
- package/features.json +3 -0
- package/index.js +10 -0
- package/known-issues.json +64 -0
- package/migrations.json +3 -0
- package/package.json +26 -0
- package/performance-profiles.json +4 -0
- package/security-policy.json +65 -0
- package/version-manifest.json +279 -0
package/README.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# @burgan-tech/vnext-meta
|
|
2
|
+
|
|
3
|
+
npm metadata bundle for the vNext workflow runtime: structured JSON for tooling that runs **offline** without loading .NET assemblies.
|
|
4
|
+
|
|
5
|
+
## Contents
|
|
6
|
+
|
|
7
|
+
| File | Purpose |
|
|
8
|
+
|------|---------|
|
|
9
|
+
| `version-manifest.json` | Released runtime versions, schema versions, release pointers. |
|
|
10
|
+
| `features.json` | Engine, API, and integration capability catalog. |
|
|
11
|
+
| `deprecations.json` | Deprecated APIs and behaviors with timelines or replacements. |
|
|
12
|
+
| `migrations.json` | Breaking-change and upgrade guidance between versions. |
|
|
13
|
+
| `known-issues.json` | Documented limitations, caveats, and operational notes. |
|
|
14
|
+
| `component-registry.json` | Task types and component identifiers understood by the runtime. |
|
|
15
|
+
| `performance-profiles.json` | Documented limits and performance-related constants. |
|
|
16
|
+
| `security-policy.json` | Input validation and authorization-related policy summary. |
|
|
17
|
+
|
|
18
|
+
## Usage
|
|
19
|
+
|
|
20
|
+
Install from your org registry (configure `.npmrc` for `@burgan-tech` as needed):
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
npm install @burgan-tech/vnext-meta
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
CommonJS:
|
|
27
|
+
|
|
28
|
+
```js
|
|
29
|
+
const meta = require('@burgan-tech/vnext-meta');
|
|
30
|
+
console.log(meta.features);
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
ESM (via default import from a loader or bundler that resolves JSON):
|
|
34
|
+
|
|
35
|
+
```js
|
|
36
|
+
import meta from '@burgan-tech/vnext-meta';
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
The package exposes each JSON document as a named export on the default export object (see `index.js`).
|
|
40
|
+
|
|
41
|
+
## Version alignment
|
|
42
|
+
|
|
43
|
+
The npm package **version should match** the runtime release defined in the repo root `common.props` (`Version`). Consumers should pin `@burgan-tech/vnext-meta` to the same semver as the orchestration/execution hosts they target.
|
|
44
|
+
|
|
45
|
+
## Offline-first design
|
|
46
|
+
|
|
47
|
+
All payloads are **static JSON** shipped inside the package. There is **no runtime dependency** on live services or the .NET hosts to read manifests—suitable for Forge Studio, CLIs, code generators, and documentation pipelines running in isolated environments.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"items": [
|
|
3
|
+
{
|
|
4
|
+
"id": "direct-trigger-task-version",
|
|
5
|
+
"type": "field",
|
|
6
|
+
"component": "task",
|
|
7
|
+
"path": "directTriggerTask.version",
|
|
8
|
+
"deprecatedSince": "0.0.26",
|
|
9
|
+
"removedAt": null,
|
|
10
|
+
"replacement": null,
|
|
11
|
+
"severity": "warning",
|
|
12
|
+
"message": "Version is not used for direct trigger tasks"
|
|
13
|
+
}
|
|
14
|
+
]
|
|
15
|
+
}
|
package/features.json
ADDED
package/index.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
versionManifest: require('./version-manifest.json'),
|
|
3
|
+
features: require('./features.json'),
|
|
4
|
+
deprecations: require('./deprecations.json'),
|
|
5
|
+
migrations: require('./migrations.json'),
|
|
6
|
+
knownIssues: require('./known-issues.json'),
|
|
7
|
+
componentRegistry: require('./component-registry.json'),
|
|
8
|
+
performanceProfiles: require('./performance-profiles.json'),
|
|
9
|
+
securityPolicy: require('./security-policy.json'),
|
|
10
|
+
};
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"items": [
|
|
3
|
+
{
|
|
4
|
+
"id": "automatic-transition-chain-depth-capped",
|
|
5
|
+
"affectedVersions": ">=0.0.26",
|
|
6
|
+
"severity": "error",
|
|
7
|
+
"component": "transition",
|
|
8
|
+
"path": "states[].transitions[] (automatic chains)",
|
|
9
|
+
"title": "Automatic transition sync dispatch stops when chain depth exceeds 50; the pipeline fails with error code Transition:100017.",
|
|
10
|
+
"workaround": "Refactor the workflow so automatic chains do not exceed the depth guard, insert intermediate human states, or split logic across transitions.",
|
|
11
|
+
"fixedIn": null
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"id": "scheduled-transition-without-timer-skipped",
|
|
15
|
+
"affectedVersions": ">=0.0.26",
|
|
16
|
+
"severity": "warning",
|
|
17
|
+
"component": "timer",
|
|
18
|
+
"path": "states[].scheduledTransitions[].timer",
|
|
19
|
+
"title": "If a scheduled transition has no timer configuration, ScheduleTransitionsStep logs a warning and skips enqueueing that schedule (transition does not fire from scheduling).",
|
|
20
|
+
"workaround": "Ensure every scheduled transition defines a timer evaluated by the timer service.",
|
|
21
|
+
"fixedIn": null
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"id": "workflow-timeout-mapping-fallback-static-duration",
|
|
25
|
+
"affectedVersions": ">=0.0.26",
|
|
26
|
+
"severity": "warning",
|
|
27
|
+
"component": "timer",
|
|
28
|
+
"path": "workflow.timeout.mapping",
|
|
29
|
+
"title": "When dynamic workflow timeout mapping fails, the runtime falls back to the static ISO 8601 duration from workflow timeout configuration.",
|
|
30
|
+
"workaround": "Fix or simplify the timeout mapping script; verify TimeoutMappingFallback logs during instance start.",
|
|
31
|
+
"fixedIn": null
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"id": "workflow-timeout-job-scheduling-failure-non-blocking",
|
|
35
|
+
"affectedVersions": ">=0.0.26",
|
|
36
|
+
"severity": "warning",
|
|
37
|
+
"component": "instance",
|
|
38
|
+
"path": "workflow.timeout",
|
|
39
|
+
"title": "If enqueueing or persisting the workflow timeout background job throws, the failure is logged but instance start continues without blocking.",
|
|
40
|
+
"workaround": "Monitor WorkflowTimeoutSchedulingFailed logs and job infrastructure; retry or reconcile timeouts externally if needed.",
|
|
41
|
+
"fixedIn": null
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"id": "cancel-scheduled-jobs-failure-does-not-block-transition",
|
|
45
|
+
"affectedVersions": ">=0.0.26",
|
|
46
|
+
"severity": "warning",
|
|
47
|
+
"component": "timer",
|
|
48
|
+
"path": "lifecycle.CancelScheduledJobsStep",
|
|
49
|
+
"title": "When cancelling scheduled transition jobs for the leaving state fails, the pipeline logs ScheduledJobsCancellationFailed and continues the transition anyway.",
|
|
50
|
+
"workaround": "Inspect cancellation/job-store failures; manually reconcile orphaned scheduled jobs if transitions completed despite cancellation errors.",
|
|
51
|
+
"fixedIn": null
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"id": "duplicate-async-transition-job-conflict",
|
|
55
|
+
"affectedVersions": ">=0.0.26",
|
|
56
|
+
"severity": "info",
|
|
57
|
+
"component": "transition",
|
|
58
|
+
"path": null,
|
|
59
|
+
"title": "A second async transition request for the same instance and transition key while a job is already active is rejected with HTTP 409 Conflict.",
|
|
60
|
+
"workaround": "Use idempotency keys, poll instance state, or wait for the in-flight job to finish before retrying.",
|
|
61
|
+
"fixedIn": null
|
|
62
|
+
}
|
|
63
|
+
]
|
|
64
|
+
}
|
package/migrations.json
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@burgan-tech/vnext-meta",
|
|
3
|
+
"version": "0.0.54-rc.1",
|
|
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
|
+
"main": "index.js",
|
|
6
|
+
"files": [
|
|
7
|
+
"index.js",
|
|
8
|
+
"version-manifest.json",
|
|
9
|
+
"features.json",
|
|
10
|
+
"deprecations.json",
|
|
11
|
+
"migrations.json",
|
|
12
|
+
"known-issues.json",
|
|
13
|
+
"component-registry.json",
|
|
14
|
+
"performance-profiles.json",
|
|
15
|
+
"security-policy.json"
|
|
16
|
+
],
|
|
17
|
+
"license": "UNLICENSED",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/burgan-tech/vnext.git",
|
|
21
|
+
"directory": "vnext-meta"
|
|
22
|
+
},
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public"
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"since": "0.0.1",
|
|
3
|
+
"policies": [
|
|
4
|
+
{
|
|
5
|
+
"id": "query-filter-count-and-length-limits",
|
|
6
|
+
"scope": "query",
|
|
7
|
+
"enforcedSince": "0.0.1",
|
|
8
|
+
"description": "Instance/query filter inputs reject more than InputValidator.MaxFiltersCount filters and any filter string longer than InputValidator.MaxFilterLength."
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"id": "query-field-name-safety",
|
|
12
|
+
"scope": "query",
|
|
13
|
+
"enforcedSince": "0.0.1",
|
|
14
|
+
"description": "Filter field paths must satisfy InputValidator.ValidateFieldName: length limits, max dot depth, alphanumeric segments starting with a letter, and rejection of dangerous punctuation/control characters."
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"id": "query-filter-value-length",
|
|
18
|
+
"scope": "query",
|
|
19
|
+
"enforcedSince": "0.0.1",
|
|
20
|
+
"description": "Filter values passed to InputValidator.ValidateValue may not exceed InputValidator.MaxValueLength characters."
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"id": "query-includes-json-limits",
|
|
24
|
+
"scope": "query",
|
|
25
|
+
"enforcedSince": "0.0.1",
|
|
26
|
+
"description": "Includes-filter JSON payloads must be objects bounded by InputValidator MaxIncludesPayloadJsonLength, MaxIncludesPayloadNestingDepth, and MaxIncludesPayloadPropertyCount (including array element counts)."
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"id": "query-json-and-sql-identifier-safety",
|
|
30
|
+
"scope": "query",
|
|
31
|
+
"enforcedSince": "0.0.1",
|
|
32
|
+
"description": "Arbitrary JSON strings are capped by InputValidator.ValidateJsonLength (same max as filters); JSONB column identifiers must pass InputValidator.ValidateSqlJsonColumnIdentifier (PostgreSQL-safe quoted identifiers)."
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"id": "transition-automatic-trigger-system-actor-only",
|
|
36
|
+
"scope": "transition",
|
|
37
|
+
"enforcedSince": "0.0.1",
|
|
38
|
+
"description": "ActorAuthorizationSpecification requires ExecutionActor.System for TriggerType.Automatic transitions."
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"id": "transition-scheduled-trigger-system-actor-only",
|
|
42
|
+
"scope": "transition",
|
|
43
|
+
"enforcedSince": "0.0.1",
|
|
44
|
+
"description": "ActorAuthorizationSpecification requires ExecutionActor.System for TriggerType.Scheduled transitions."
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"id": "transition-automatic-chain-depth-limit",
|
|
48
|
+
"scope": "transition",
|
|
49
|
+
"enforcedSince": "0.0.1",
|
|
50
|
+
"description": "ActorAuthorizationSpecification rejects automatic transitions when TransitionExecutionContext.ChainDepth exceeds 50 (defense in depth alongside the pipeline)."
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"id": "transition-role-grant-evaluation",
|
|
54
|
+
"scope": "transition",
|
|
55
|
+
"enforcedSince": "0.0.1",
|
|
56
|
+
"description": "TransitionAuthorizationManager evaluates transition RoleGrant lists: any matching DENY denies; otherwise any matching ALLOW permits; empty role grants allow all callers."
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"id": "transition-predefined-and-dynamic-role-grants",
|
|
60
|
+
"scope": "transition",
|
|
61
|
+
"enforcedSince": "0.0.1",
|
|
62
|
+
"description": "When an instance is present, TransitionAuthorizationManager resolves $InstanceStarter, $PreviousUser, $InstanceBehalfOfStarter, $PreviousBehalfOfUser against CreatedBy/CreatedByBehalfOf and last completed manual transition; dynamic grants use $.context.* paths compared to actor, subject, or caller role."
|
|
63
|
+
}
|
|
64
|
+
]
|
|
65
|
+
}
|
|
@@ -0,0 +1,279 @@
|
|
|
1
|
+
{
|
|
2
|
+
"versions": {
|
|
3
|
+
"0.0.54": {
|
|
4
|
+
"schemaVersion": "0.0.42",
|
|
5
|
+
"releasedAt": "2026-05-08",
|
|
6
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/tree/main/release"
|
|
7
|
+
},
|
|
8
|
+
"0.0.53": {
|
|
9
|
+
"schemaVersion": "0.0.41",
|
|
10
|
+
"releasedAt": "2026-05-08",
|
|
11
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/tree/main/release"
|
|
12
|
+
},
|
|
13
|
+
"0.0.52": {
|
|
14
|
+
"schemaVersion": "0.0.41",
|
|
15
|
+
"releasedAt": "2026-05-08",
|
|
16
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/tree/main/release"
|
|
17
|
+
},
|
|
18
|
+
"0.0.51": {
|
|
19
|
+
"schemaVersion": "0.0.41",
|
|
20
|
+
"releasedAt": "2026-05-05",
|
|
21
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/tree/main/release"
|
|
22
|
+
},
|
|
23
|
+
"0.0.50": {
|
|
24
|
+
"schemaVersion": "0.0.41",
|
|
25
|
+
"releasedAt": "2026-04-25",
|
|
26
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.44-50.md"
|
|
27
|
+
},
|
|
28
|
+
"0.0.49": {
|
|
29
|
+
"schemaVersion": "0.0.41",
|
|
30
|
+
"releasedAt": "2026-04-15",
|
|
31
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.44-50.md"
|
|
32
|
+
},
|
|
33
|
+
"0.0.48": {
|
|
34
|
+
"schemaVersion": "0.0.41",
|
|
35
|
+
"releasedAt": "2026-04-13",
|
|
36
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.44-50.md"
|
|
37
|
+
},
|
|
38
|
+
"0.0.47": {
|
|
39
|
+
"schemaVersion": "0.0.41",
|
|
40
|
+
"releasedAt": "2026-04-12",
|
|
41
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.44-50.md"
|
|
42
|
+
},
|
|
43
|
+
"0.0.46": {
|
|
44
|
+
"schemaVersion": "0.0.41",
|
|
45
|
+
"releasedAt": "2026-04-09",
|
|
46
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.44-50.md"
|
|
47
|
+
},
|
|
48
|
+
"0.0.45": {
|
|
49
|
+
"schemaVersion": "0.0.41",
|
|
50
|
+
"releasedAt": "2026-04-08",
|
|
51
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.44-50.md"
|
|
52
|
+
},
|
|
53
|
+
"0.0.44": {
|
|
54
|
+
"schemaVersion": "0.0.41",
|
|
55
|
+
"releasedAt": "2026-04-07",
|
|
56
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.44-50.md"
|
|
57
|
+
},
|
|
58
|
+
"0.0.43": {
|
|
59
|
+
"schemaVersion": "0.0.39",
|
|
60
|
+
"releasedAt": "2026-04-06",
|
|
61
|
+
"releaseNotes": "https://burgan-tech.github.io/vnext-docs/blog/release-v0-0-43"
|
|
62
|
+
},
|
|
63
|
+
"0.0.42": {
|
|
64
|
+
"schemaVersion": "0.0.39",
|
|
65
|
+
"releasedAt": "2026-03-26",
|
|
66
|
+
"releaseNotes": "https://burgan-tech.github.io/vnext-docs/blog/release-v0-0-42"
|
|
67
|
+
},
|
|
68
|
+
"0.0.41": {
|
|
69
|
+
"schemaVersion": "0.0.41",
|
|
70
|
+
"releasedAt": "2026-03-11",
|
|
71
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/tree/main/release"
|
|
72
|
+
},
|
|
73
|
+
"0.0.40": {
|
|
74
|
+
"schemaVersion": "0.0.38",
|
|
75
|
+
"releasedAt": "2026-03-09",
|
|
76
|
+
"releaseNotes": "https://burgan-tech.github.io/vnext-docs/blog/release-v0-0-40"
|
|
77
|
+
},
|
|
78
|
+
"0.0.39": {
|
|
79
|
+
"schemaVersion": "0.0.37",
|
|
80
|
+
"releasedAt": "2026-03-08",
|
|
81
|
+
"releaseNotes": "https://burgan-tech.github.io/vnext-docs/blog/release-v0-0-39"
|
|
82
|
+
},
|
|
83
|
+
"0.0.38": {
|
|
84
|
+
"schemaVersion": "0.0.36",
|
|
85
|
+
"releasedAt": "2026-02-26",
|
|
86
|
+
"releaseNotes": "https://burgan-tech.github.io/vnext-docs/blog/release-v0-0-38"
|
|
87
|
+
},
|
|
88
|
+
"0.0.37": {
|
|
89
|
+
"schemaVersion": "0.0.36",
|
|
90
|
+
"releasedAt": "2026-02-17",
|
|
91
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.37.md"
|
|
92
|
+
},
|
|
93
|
+
"0.0.36": {
|
|
94
|
+
"schemaVersion": "0.0.35",
|
|
95
|
+
"releasedAt": "2026-02-05",
|
|
96
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.36.md"
|
|
97
|
+
},
|
|
98
|
+
"0.0.35": {
|
|
99
|
+
"schemaVersion": "0.0.34",
|
|
100
|
+
"releasedAt": "2026-02-03",
|
|
101
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.34-35.md"
|
|
102
|
+
},
|
|
103
|
+
"0.0.34": {
|
|
104
|
+
"schemaVersion": "0.0.34",
|
|
105
|
+
"releasedAt": "2026-02-01",
|
|
106
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.34-35.md"
|
|
107
|
+
},
|
|
108
|
+
"0.0.33": {
|
|
109
|
+
"schemaVersion": "0.0.33",
|
|
110
|
+
"releasedAt": "2026-01-28",
|
|
111
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.33.md"
|
|
112
|
+
},
|
|
113
|
+
"0.0.32": {
|
|
114
|
+
"schemaVersion": "0.0.32",
|
|
115
|
+
"releasedAt": "2026-01-26",
|
|
116
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/tree/main/release"
|
|
117
|
+
},
|
|
118
|
+
"0.0.31": {
|
|
119
|
+
"schemaVersion": "0.0.30",
|
|
120
|
+
"releasedAt": "2026-01-13",
|
|
121
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.31.md"
|
|
122
|
+
},
|
|
123
|
+
"0.0.30": {
|
|
124
|
+
"schemaVersion": "0.0.30",
|
|
125
|
+
"releasedAt": "2026-01-07",
|
|
126
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/tree/main/release"
|
|
127
|
+
},
|
|
128
|
+
"0.0.29": {
|
|
129
|
+
"schemaVersion": "0.0.29",
|
|
130
|
+
"releasedAt": "2026-01-04",
|
|
131
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.29.md"
|
|
132
|
+
},
|
|
133
|
+
"0.0.28": {
|
|
134
|
+
"schemaVersion": "0.0.28",
|
|
135
|
+
"releasedAt": "2025-12-23",
|
|
136
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/tree/main/release"
|
|
137
|
+
},
|
|
138
|
+
"0.0.27": {
|
|
139
|
+
"schemaVersion": "0.0.28",
|
|
140
|
+
"releasedAt": "2025-12-19",
|
|
141
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.27.md"
|
|
142
|
+
},
|
|
143
|
+
"0.0.26": {
|
|
144
|
+
"schemaVersion": "0.0.28",
|
|
145
|
+
"releasedAt": "2025-12-16",
|
|
146
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.23-26.md"
|
|
147
|
+
},
|
|
148
|
+
"0.0.25": {
|
|
149
|
+
"schemaVersion": "0.0.25",
|
|
150
|
+
"releasedAt": "2025-12-15",
|
|
151
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.23-26.md"
|
|
152
|
+
},
|
|
153
|
+
"0.0.24": {
|
|
154
|
+
"schemaVersion": "0.0.24",
|
|
155
|
+
"releasedAt": "2025-12-15",
|
|
156
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.23-26.md"
|
|
157
|
+
},
|
|
158
|
+
"0.0.23": {
|
|
159
|
+
"schemaVersion": "0.0.23",
|
|
160
|
+
"releasedAt": "2025-12-15",
|
|
161
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.23-26.md"
|
|
162
|
+
},
|
|
163
|
+
"0.0.22": {
|
|
164
|
+
"schemaVersion": "0.0.27",
|
|
165
|
+
"releasedAt": "2025-12-03",
|
|
166
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.22.md"
|
|
167
|
+
},
|
|
168
|
+
"0.0.21": {
|
|
169
|
+
"schemaVersion": "0.0.26",
|
|
170
|
+
"releasedAt": "2025-11-27",
|
|
171
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.21.md"
|
|
172
|
+
},
|
|
173
|
+
"0.0.20": {
|
|
174
|
+
"schemaVersion": "0.0.25",
|
|
175
|
+
"releasedAt": "2025-11-19",
|
|
176
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.20.md"
|
|
177
|
+
},
|
|
178
|
+
"0.0.19": {
|
|
179
|
+
"schemaVersion": "0.0.24",
|
|
180
|
+
"releasedAt": "2025-11-11",
|
|
181
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.19.md"
|
|
182
|
+
},
|
|
183
|
+
"0.0.18": {
|
|
184
|
+
"schemaVersion": "0.0.17",
|
|
185
|
+
"releasedAt": "2025-11-06",
|
|
186
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.18.md"
|
|
187
|
+
},
|
|
188
|
+
"0.0.17": {
|
|
189
|
+
"schemaVersion": "0.0.17",
|
|
190
|
+
"releasedAt": "2025-11-05",
|
|
191
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/tree/main/release"
|
|
192
|
+
},
|
|
193
|
+
"0.0.16": {
|
|
194
|
+
"schemaVersion": "0.0.16",
|
|
195
|
+
"releasedAt": "2025-10-24",
|
|
196
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.16.md"
|
|
197
|
+
},
|
|
198
|
+
"0.0.15": {
|
|
199
|
+
"schemaVersion": "0.0.15",
|
|
200
|
+
"releasedAt": "2025-10-24",
|
|
201
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/tree/main/release"
|
|
202
|
+
},
|
|
203
|
+
"0.0.14": {
|
|
204
|
+
"schemaVersion": "0.0.14",
|
|
205
|
+
"releasedAt": "2025-10-24",
|
|
206
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.14.md"
|
|
207
|
+
},
|
|
208
|
+
"0.0.13": {
|
|
209
|
+
"schemaVersion": "0.0.13",
|
|
210
|
+
"releasedAt": "2025-10-23",
|
|
211
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/blob/main/release/RELEASE-NOTES-v0.0.13.md"
|
|
212
|
+
},
|
|
213
|
+
"0.0.12": {
|
|
214
|
+
"schemaVersion": "0.0.12",
|
|
215
|
+
"releasedAt": "2025-10-01",
|
|
216
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/tree/main/release"
|
|
217
|
+
},
|
|
218
|
+
"0.0.11": {
|
|
219
|
+
"schemaVersion": "0.0.11",
|
|
220
|
+
"releasedAt": "2025-09-25",
|
|
221
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/tree/main/release"
|
|
222
|
+
},
|
|
223
|
+
"0.0.10": {
|
|
224
|
+
"schemaVersion": "0.0.10",
|
|
225
|
+
"releasedAt": "2025-09-22",
|
|
226
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/tree/main/release"
|
|
227
|
+
},
|
|
228
|
+
"0.0.9": {
|
|
229
|
+
"schemaVersion": "0.0.9",
|
|
230
|
+
"releasedAt": "2025-08-25",
|
|
231
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/tree/main/release"
|
|
232
|
+
},
|
|
233
|
+
"0.0.8": {
|
|
234
|
+
"schemaVersion": "0.0.8",
|
|
235
|
+
"releasedAt": "2025-08-25",
|
|
236
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/tree/main/release"
|
|
237
|
+
},
|
|
238
|
+
"0.0.7": {
|
|
239
|
+
"schemaVersion": "0.0.7",
|
|
240
|
+
"releasedAt": "2025-08-25",
|
|
241
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/tree/main/release"
|
|
242
|
+
},
|
|
243
|
+
"0.0.6": {
|
|
244
|
+
"schemaVersion": "0.0.6",
|
|
245
|
+
"releasedAt": "2025-08-19",
|
|
246
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/tree/main/release"
|
|
247
|
+
},
|
|
248
|
+
"0.0.5": {
|
|
249
|
+
"schemaVersion": "0.0.5",
|
|
250
|
+
"releasedAt": "2025-08-19",
|
|
251
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/tree/main/release"
|
|
252
|
+
},
|
|
253
|
+
"0.0.4": {
|
|
254
|
+
"schemaVersion": "0.0.4",
|
|
255
|
+
"releasedAt": "2025-08-19",
|
|
256
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/tree/main/release"
|
|
257
|
+
},
|
|
258
|
+
"0.0.3": {
|
|
259
|
+
"schemaVersion": "0.0.3",
|
|
260
|
+
"releasedAt": "2025-08-15",
|
|
261
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/tree/main/release"
|
|
262
|
+
},
|
|
263
|
+
"0.0.2": {
|
|
264
|
+
"schemaVersion": "0.0.2",
|
|
265
|
+
"releasedAt": "2025-08-15",
|
|
266
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/tree/main/release"
|
|
267
|
+
},
|
|
268
|
+
"0.0.1": {
|
|
269
|
+
"schemaVersion": "0.0.1",
|
|
270
|
+
"releasedAt": "2025-08-12",
|
|
271
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/tree/main/release"
|
|
272
|
+
},
|
|
273
|
+
"0.0.0": {
|
|
274
|
+
"schemaVersion": "0.0.0",
|
|
275
|
+
"releasedAt": "2025-08-12",
|
|
276
|
+
"releaseNotes": "https://github.com/burgan-tech/vnext-runtime/tree/main/release"
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
}
|