Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| be6036e879 | |||
| bba85a309a |
@@ -1,3 +1,3 @@
|
||||
{
|
||||
".": "3.12.0"
|
||||
".": "3.12.1"
|
||||
}
|
||||
|
||||
@@ -1,5 +1,15 @@
|
||||
# Changelog
|
||||
|
||||
## [3.12.1](https://github.com/BEDOLAGA-DEV/remnawave-bedolaga-telegram-bot/compare/v3.12.0...v3.12.1) (2026-02-16)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add /start burst rate-limit to prevent spam abuse ([61a9722](https://github.com/BEDOLAGA-DEV/remnawave-bedolaga-telegram-bot/commit/61a97220d30031816ab23e33a46717e4895c0758))
|
||||
* add promo code anti-abuse protections ([97ec39a](https://github.com/BEDOLAGA-DEV/remnawave-bedolaga-telegram-bot/commit/97ec39aa803f0e3f03fdcd482df0cbcb86fd1efd))
|
||||
* handle TelegramBadRequest in ticket edit_message_text calls ([8e61fe4](https://github.com/BEDOLAGA-DEV/remnawave-bedolaga-telegram-bot/commit/8e61fe47746da2ac09c3ea8c4dbfc6be198e49e3))
|
||||
* replace deprecated Query(regex=) with pattern= ([871ceb8](https://github.com/BEDOLAGA-DEV/remnawave-bedolaga-telegram-bot/commit/871ceb866ccf1f3a770c7ef33406e1a43d0a7ff7))
|
||||
|
||||
## [3.12.0](https://github.com/BEDOLAGA-DEV/remnawave-bedolaga-telegram-bot/compare/v3.11.0...v3.12.0) (2026-02-15)
|
||||
|
||||
|
||||
|
||||
+1
-1
@@ -14,7 +14,7 @@ RUN pip install --no-cache-dir --upgrade pip && \
|
||||
|
||||
FROM python:3.13-slim
|
||||
|
||||
ARG VERSION="v3.12.0" # x-release-please-version
|
||||
ARG VERSION="v3.12.1" # x-release-please-version
|
||||
ARG BUILD_DATE
|
||||
ARG VCS_REF
|
||||
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = 'remnawave-bedolaga-telegram-bot'
|
||||
version = "3.12.0"
|
||||
version = "3.12.1"
|
||||
description = 'Telegram bot for RemnaWave VPN service'
|
||||
readme = 'README.md'
|
||||
license = { text = 'MIT' }
|
||||
|
||||
+10
-10
@@ -1,21 +1,21 @@
|
||||
# Основные зависимости
|
||||
aiogram==3.25.0
|
||||
aiohttp==3.13.3
|
||||
aiogram==3.22.0
|
||||
aiohttp==3.12.15
|
||||
asyncpg==0.31.0
|
||||
SQLAlchemy==2.0.46
|
||||
alembic==1.18.4
|
||||
aiosqlite==0.22.1
|
||||
|
||||
# Дополнительные зависимости
|
||||
pydantic==2.12.5
|
||||
pydantic-settings==2.13.0
|
||||
python-dotenv==1.2.1
|
||||
pydantic==2.11.9
|
||||
pydantic-settings==2.10.1
|
||||
python-dotenv==1.1.1
|
||||
redis==7.1.1
|
||||
PyYAML==6.0.3
|
||||
fastapi==0.129.0
|
||||
uvicorn==0.40.0
|
||||
uvicorn==0.32.1
|
||||
websockets>=12.0
|
||||
python-multipart==0.0.22
|
||||
python-multipart==0.0.9
|
||||
|
||||
# YooKassa SDK
|
||||
yookassa==3.10.0
|
||||
@@ -28,18 +28,18 @@ httpx # зависимость для nalogo
|
||||
structlog==23.2.0
|
||||
|
||||
# Планировщик задач для техработ
|
||||
APScheduler==3.11.2
|
||||
APScheduler==3.11.0
|
||||
|
||||
# Утилиты
|
||||
python-dateutil==2.9.0.post0
|
||||
pytz==2023.4
|
||||
cryptography>=44.0.1
|
||||
qrcode[pil]==8.2
|
||||
qrcode[pil]==8.0
|
||||
|
||||
# Личный кабинет (Cabinet)
|
||||
bcrypt==5.0.0
|
||||
PyJWT==2.11.0
|
||||
email-validator==2.3.0
|
||||
email-validator==2.1.0
|
||||
|
||||
# Для работы с версиями
|
||||
packaging==26.0
|
||||
|
||||
Reference in New Issue
Block a user