@tera-system/pro 0.2.12 → 0.2.13
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/MANIFEST.json +1 -1
- package/RELEASES.md +12 -0
- package/package.json +1 -1
- package/scripts/lib/license-gate.mjs +1 -1
package/MANIFEST.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tera-system/pro",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.13",
|
|
4
4
|
"description": "Build manifest for the Tera System Pro commercial plugin component (THIN mode — content served from teranoo.com signed bundle).",
|
|
5
5
|
"compatibleEnvironments": [
|
|
6
6
|
"opencode"
|
package/RELEASES.md
CHANGED
|
@@ -7,6 +7,18 @@
|
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
+
|
|
11
|
+
## 0.2.13 (2026-08-30)
|
|
12
|
+
|
|
13
|
+
### Revocation speed: periodic recheck 30d -> 3d (SCP-2026-08-30-002)
|
|
14
|
+
|
|
15
|
+
**What changed (scripts only):**
|
|
16
|
+
- license-gate.mjs: RECHECK_INTERVAL_DAYS 30 -> 3 - an active client now contacts the license server at least every 3 days, so a server-side revocation is detected within <=3 days of usage (instead of up to 30).
|
|
17
|
+
|
|
18
|
+
**Why:**
|
|
19
|
+
- Revocation of Saeed was live on the server, but the 30-day recheck interval meant an active client would not notice for up to 30 days. 3 days balances detection speed with server load.
|
|
20
|
+
- Offline at recheck -> allowed (grace), no false blocking.
|
|
21
|
+
|
|
10
22
|
## 0.2.12 (2026-08-30)
|
|
11
23
|
|
|
12
24
|
### Bug fix: preflight false tamper detection (SCP-2026-08-30-002)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tera-system/pro",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.13",
|
|
4
4
|
"description": "Tera System Pro — commercial edition (thin): system files are fetched from teranoo.com as a signed bundle; enforced license gate + heartbeat",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"type": "module",
|
|
@@ -15,7 +15,7 @@ export const GATE_RESULTS = {
|
|
|
15
15
|
DENY_NEEDS_RECHECK: "deny-needs-recheck",
|
|
16
16
|
};
|
|
17
17
|
|
|
18
|
-
const RECHECK_INTERVAL_DAYS = 30
|
|
18
|
+
const RECHECK_INTERVAL_DAYS = 3; // SCP-2026-08-30-002: revocation detection within <=3 days (was 30)
|
|
19
19
|
const RECHECK_INTERVAL_MS = RECHECK_INTERVAL_DAYS * 86400000;
|
|
20
20
|
|
|
21
21
|
/**
|