fastscript 2.0.0 → 3.0.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/CHANGELOG.md +12 -0
- package/README.md +669 -600
- package/node_modules/@fastscript/core-private/src/fs-error-codes.mjs +2 -2
- package/node_modules/@fastscript/core-private/src/fs-normalize.mjs +125 -91
- package/node_modules/@fastscript/core-private/src/fs-parser.mjs +197 -57
- package/node_modules/@fastscript/core-private/src/typecheck.mjs +1466 -1462
- package/package.json +41 -5
- package/src/benchmark-discipline.mjs +39 -0
- package/src/cli.mjs +37 -2
- package/src/compatibility-governance.mjs +257 -0
- package/src/conversion-manifest.mjs +101 -0
- package/src/diagnostics.mjs +100 -0
- package/src/fs-error-codes.mjs +2 -2
- package/src/fs-normalize.mjs +39 -7
- package/src/generated/compatibility-registry-report.mjs +815 -0
- package/src/generated/docs-search-index.mjs +1137 -275
- package/src/migrate-rollback.mjs +144 -0
- package/src/migrate.mjs +1275 -47
- package/src/migration-wizard.mjs +37 -11
- package/src/module-loader.mjs +13 -1
- package/src/permissions-cli.mjs +112 -0
- package/src/profile.mjs +95 -0
- package/src/regression-guard.mjs +245 -0
- package/src/runtime-permissions.mjs +299 -0
- package/src/trace.mjs +95 -0
- package/src/validate.mjs +10 -0
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,18 @@
|
|
|
14
14
|
- `spec/V2_0_MIGRATION_PROOF_REPORT.md`
|
|
15
15
|
- `spec/V2_0_PERFORMANCE_PROTOCOL_REPORT.md`
|
|
16
16
|
|
|
17
|
+
## v3.0.1 - 2026-04-15
|
|
18
|
+
- Broaden the governed ecosystem proof surface across Next-style route/layout/shared-module patterns
|
|
19
|
+
- Deepen React hooks/context/shared-helper, Node middleware/error/mixed-module, and Vue composable/app-utility coverage
|
|
20
|
+
- Expand npm/package interop proof to next/navigation, react-dom/server, vue-router, and export-condition subpath cases
|
|
21
|
+
- Refresh website/docs/README/npm-facing copy to align with the governed support matrix and current proof-backed public contract
|
|
22
|
+
|
|
23
|
+
## v3.0.0 - 2026-04-15
|
|
24
|
+
- Launch FastScript v3 as the active public line with `.fs` positioned as a universal JS/TS container
|
|
25
|
+
- Publish v3 website/docs alignment, `/docs/v3` latest-track routing, and proof-backed benchmark messaging
|
|
26
|
+
- Elevate JS/TS syntax proof and `.fs` parity proof into release discipline and proof-pack publishing
|
|
27
|
+
- Refresh the proprietary/source-available product story and position the next FastScript AI assistant wave on the roadmap
|
|
28
|
+
|
|
17
29
|
## v2.0.0 - 2026-04-14
|
|
18
30
|
- Ratify the FastScript v2.0 language/runtime surface and freeze the public spec pack
|
|
19
31
|
- Complete ambient runtime, standard library, DOM/platform, inference, and zero-JS authored app proof gates
|