@overpod/mcp-telegram 1.36.0 → 1.36.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/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.36.1] — 2026-05-04
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Add `big-integer` as a direct dependency. Previously it was imported by `src/telegram-client.ts` and `src/telegram-helpers.ts` but only resolved transitively, which broke `tsc --noEmit` on strict-hoisting installers like pnpm.
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- Dependency updates (no behavioral changes):
|
|
17
|
+
- `zod` `^4.3.6` → `^4.4.3` (patch bump, runtime backward-compatible)
|
|
18
|
+
- `@biomejs/biome` `^2.4.13` → `^2.4.14` (devDep, lint/format only)
|
|
19
|
+
|
|
8
20
|
## [1.36.0] — 2026-04-28
|
|
9
21
|
|
|
10
22
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@overpod/mcp-telegram",
|
|
3
|
-
"version": "1.36.
|
|
3
|
+
"version": "1.36.1",
|
|
4
4
|
"description": "MCP server for Telegram userbot — messages, media, reactions, polls & more. Built on GramJS/MTProto.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -59,13 +59,14 @@
|
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
62
|
+
"big-integer": "^1.6.52",
|
|
62
63
|
"dotenv": "^17.4.2",
|
|
63
64
|
"qrcode": "^1.5.4",
|
|
64
65
|
"telegram": "^2.26.22",
|
|
65
|
-
"zod": "^4.3
|
|
66
|
+
"zod": "^4.4.3"
|
|
66
67
|
},
|
|
67
68
|
"devDependencies": {
|
|
68
|
-
"@biomejs/biome": "^2.4.
|
|
69
|
+
"@biomejs/biome": "^2.4.14",
|
|
69
70
|
"@types/node": "^25.6.0",
|
|
70
71
|
"@types/qrcode": "^1.5.6",
|
|
71
72
|
"c8": "^11.0.0",
|