@overpod/mcp-telegram 1.36.0 → 1.36.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/package.json +4 -3
package/CHANGELOG.md CHANGED
@@ -5,6 +5,33 @@ 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.2] — 2026-05-10
9
+
10
+ ### Changed
11
+
12
+ - Dependency updates (no behavioral changes, no API surface changes):
13
+ - `@biomejs/biome` `^2.4.14` → `^2.4.15` (devDep, lint/format only)
14
+ - `biome.json` schema bumped to 2.4.15 via `biome migrate --write`
15
+ - `npm audit fix` resolved 9 transitive advisories pulled in via `@modelcontextprotocol/sdk`:
16
+ - `hono` 4.12.9 → 4.12.18 (CSS injection in JSX SSR, JWT NumericDate, Cache `Vary`, etc.)
17
+ - `fast-uri` 3.1.0 → 3.1.2 (host confusion + path traversal)
18
+ - `ip-address` 10.1.0 → 10.2.0 (Address6 HTML XSS)
19
+ - `@hono/node-server` 1.19.11 → 1.19.14 (middleware bypass via repeated slashes)
20
+ - `express-rate-limit` 8.3.1 → 8.5.1
21
+ - 3 remaining moderate advisories in `vitepress → vite → esbuild` are dev-only (docs site) with no upstream fix available.
22
+
23
+ ## [1.36.1] — 2026-05-04
24
+
25
+ ### Fixed
26
+
27
+ - 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.
28
+
29
+ ### Changed
30
+
31
+ - Dependency updates (no behavioral changes):
32
+ - `zod` `^4.3.6` → `^4.4.3` (patch bump, runtime backward-compatible)
33
+ - `@biomejs/biome` `^2.4.13` → `^2.4.14` (devDep, lint/format only)
34
+
8
35
  ## [1.36.0] — 2026-04-28
9
36
 
10
37
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@overpod/mcp-telegram",
3
- "version": "1.36.0",
3
+ "version": "1.36.2",
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.6"
66
+ "zod": "^4.4.3"
66
67
  },
67
68
  "devDependencies": {
68
- "@biomejs/biome": "^2.4.13",
69
+ "@biomejs/biome": "^2.4.15",
69
70
  "@types/node": "^25.6.0",
70
71
  "@types/qrcode": "^1.5.6",
71
72
  "c8": "^11.0.0",