5 Commits
Author SHA1 Message Date
austnv da5a15237e update dependencies
Build and Deploy Backend / build-and-deploy (push) Successful in 5m2s
2026-07-03 18:51:48 +03:00
austnv c1a7f237ab v0.7.9 2026-06-26 13:34:20 +03:00
austnv 3aa1f582e3 fix: .hex -> str()
Build and Deploy Backend / build-and-deploy (push) Successful in 55s
2026-06-26 13:26:58 +03:00
austnv 006c6487f6 v0.7.8
Build and Deploy Backend / build-and-deploy (push) Successful in 1m10s
2026-06-26 13:23:30 +03:00
austnv 6a4999f48f fix: UUID -> str (.hex property) 2026-06-26 13:22:39 +03:00
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
[project] [project]
name = "uvpn-backend" name = "uvpn-backend"
version = "0.7.7" version = "0.7.10"
description = "FastAPI backend with Docker for uvpn.shop" description = "FastAPI backend with Docker for uvpn.shop"
readme = "README.md" readme = "README.md"
requires-python = ">=3.12" requires-python = ">=3.12"
@@ -10,7 +10,7 @@ dependencies = [
"bs4>=0.0.2", "bs4>=0.0.2",
"fastapi>=0.136.3", "fastapi>=0.136.3",
"httpx>=0.27.2", "httpx>=0.27.2",
"remnawave>=2.7.1", "remnawave>=2.8.0",
"uvicorn>=0.49.0", "uvicorn>=0.49.0",
] ]
+1 -1
View File
@@ -42,7 +42,7 @@ async def get_nodes():
'name': clean_host_name(host.remark), 'name': clean_host_name(host.remark),
'address': host.address, 'address': host.address,
'port': host.port, 'port': host.port,
'country_code': (await remnawave.nodes.get_one_node(uuid=host.nodes[0])).country_code 'country_code': (await remnawave.nodes.get_one_node(uuid=str(host.nodes[0]))).country_code
} }
for host in hosts.root if not host.is_disabled and not host.is_hidden for host in hosts.root if not host.is_disabled and not host.is_hidden