@jilimb0/tgwrapper 0.5.0 → 0.5.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 +2 -1
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -37,10 +37,11 @@ Releases are CI-gated only via Changesets workflow.
|
|
|
37
37
|
Manual local publishing is not part of supported flow.
|
|
38
38
|
See `/Users/jilimbo/Documents/Personal/TGWrapper/docs/RELEASE_POLICY.md` for semver and process details.
|
|
39
39
|
|
|
40
|
-
##
|
|
40
|
+
## Release Readiness Docs
|
|
41
41
|
|
|
42
42
|
- API stability contract: `/Users/jilimbo/Documents/Personal/TGWrapper/docs/API_STABILITY_0.5.md`
|
|
43
43
|
- Observability contract: `/Users/jilimbo/Documents/Personal/TGWrapper/docs/OBSERVABILITY_CONTRACT.md`
|
|
44
44
|
- Production checklist: `/Users/jilimbo/Documents/Personal/TGWrapper/docs/PRODUCTION_CHECKLIST.md`
|
|
45
45
|
- Migration notes (`0.4.0 -> 0.5.0`): `/Users/jilimbo/Documents/Personal/TGWrapper/docs/MIGRATION_0.4_TO_0.5.md`
|
|
46
46
|
- Release runbook checklist: `/Users/jilimbo/Documents/Personal/TGWrapper/docs/RELEASE_CHECKLIST_0.5.0.md`
|
|
47
|
+
- Next patch release checklist: `/Users/jilimbo/Documents/Personal/TGWrapper/docs/RELEASE_CHECKLIST_0.5.1.md`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jilimb0/tgwrapper",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Serverless-first Telegram bot framework without external bot libraries",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -47,6 +47,8 @@
|
|
|
47
47
|
"test:chaos": "vitest run test/chaos/multi-tenant.chaos.test.ts",
|
|
48
48
|
"test:phase4": "pnpm test:load && pnpm test:chaos && pnpm test:integration",
|
|
49
49
|
"benchmark": "pnpm build && node benchmark/run-benchmark.mjs",
|
|
50
|
+
"benchmark:trend": "node scripts/check-benchmark-trend.mjs",
|
|
51
|
+
"pack:size": "node scripts/check-package-size-budget.mjs",
|
|
50
52
|
"docs": "typedoc src/index.ts --out docs/api",
|
|
51
53
|
"api:snapshot:check": "node scripts/check-api-snapshot.mjs",
|
|
52
54
|
"api:snapshot:update": "node scripts/update-api-snapshot.mjs",
|
|
@@ -54,6 +56,6 @@
|
|
|
54
56
|
"release:version": "changeset version",
|
|
55
57
|
"release:publish": "changeset publish",
|
|
56
58
|
"test:published-smoke": "node scripts/published-smoke.mjs",
|
|
57
|
-
"verify:release": "pnpm test && pnpm -r typecheck && pnpm build && pnpm -r build && pnpm api:snapshot:check"
|
|
59
|
+
"verify:release": "pnpm test && pnpm -r typecheck && pnpm build && pnpm -r build && pnpm api:snapshot:check && pnpm pack:size"
|
|
58
60
|
}
|
|
59
61
|
}
|