mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-07-17 01:12:27 -05:00
[GH-ISSUE #7227] Unable to parse latest web-vault version #35604
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Longshot on GitHub (May 15, 2026).
Original GitHub issue: https://github.com/dani-garcia/vaultwarden/issues/7227
Prerequisites
Vaultwarden Support String
Your environment (Generated via diagnostics page)
Config & Details (Generated via diagnostics page)
Show Config & Details
Environment settings which are overridden: DOMAIN, SIGNUPS_ALLOWED, ADMIN_TOKEN
Config:
Vaultwarden Build Version
1.36.0
Deployment method
Official Container Image
Custom deployment method
No response
Reverse Proxy
nginx/1.24.0 (Ubuntu)
Host/Server Operating System
Linux
Operating System Version
all
Clients
Desktop
Client Version
Firefox 150.0.3
Steps To Reproduce
Expected Result
Server Installed
1.36.0
Server Latest
1.36.0
Web Installed
2026.4.1
Web Latest
2026.4.1
Database
SQLite: 3.51.3
Actual Result
Server Installed
1.36.0
Server Latest Unknown
-
Web Installed
2026.4.1
Web Latest Unknown
-
Database
SQLite: 3.51.3
Logs
Screenshots or Videos
No response
Additional Context
Everything else is working but this triggers me :)
@BlackDex commented on GitHub (May 15, 2026):
How did you installed it?
What does the vw-version.json and version.json file say?
@Longshot commented on GitHub (May 15, 2026):
I just ran docker compose up -d
$ cat docker-compose.yml
services:
vaultwarden:
image: vaultwarden/server:latest
container_name: vaultwarden
restart: unless-stopped
labels:
- "com.centurylinklabs.watchtower.monitor-only=true"
ports:
- "80:80"
- "3012:3012"
volumes:
- /opt/vaultwarden/vw-data:/data
- /usr/local/share/ca-certificates/internal-ca.crt:/usr/local/share/ca-certificates/internal-ca.crt:ro
- /etc/ssl/certs/ca-certificates.crt:/etc/ssl/certs/ca-certificates.crt:ro
environment:
- WEBSOCKET_ENABLED
- SIGNUPS_ALLOWED
- DOMAIN
- TZ
- ADMIN_TOKEN
- LOG_LEVEL
- ROCKET_WORKERS
cat /web-vault/version.json
{ "version": "2026.4.1" }
cat /web-vault/vw-version.json
{"version":"2026.4.1"}
@BlackDex commented on GitHub (May 15, 2026):
Not seeing any
-in there.@stefan0xC commented on GitHub (May 15, 2026):
Your server IP might have been rate limited by the GitHub API.
@Longshot commented on GitHub (May 15, 2026):
Yeah that's what i thought at first, so I created a api.github.com proxy on my nginx.
docker exec -it vaultwarden sh -c "curl -s https://api.github.com/rate_limit"
{
"resources": {
"core": {
"limit": 5000,
"used": 0,
"remaining": 5000,
"reset": 1778851038
},
"search": {
"limit": 30,
"used": 0,
"remaining": 30,
"reset": 1778847498
},
"graphql": {
"limit": 5000,
"used": 0,
"remaining": 5000,
"reset": 1778851038
},
"integration_manifest": {
"limit": 5000,
"used": 0,
"remaining": 5000,
"reset": 1778851038
},
"source_import": {
"limit": 100,
"used": 0,
"remaining": 100,
"reset": 1778847498
},
"code_scanning_upload": {
"limit": 5000,
"used": 0,
"remaining": 5000,
"reset": 1778851038
},
"code_scanning_autofix": {
"limit": 10,
"used": 0,
"remaining": 10,
"reset": 1778847498
},
"actions_runner_registration": {
"limit": 10000,
"used": 0,
"remaining": 10000,
"reset": 1778851038
},
"scim": {
"limit": 15000,
"used": 0,
"remaining": 15000,
"reset": 1778851038
},
"dependency_snapshots": {
"limit": 100,
"used": 0,
"remaining": 100,
"reset": 1778847498
},
"dependency_sbom": {
"limit": 100,
"used": 0,
"remaining": 100,
"reset": 1778847498
},
"audit_log": {
"limit": 1750,
"used": 0,
"remaining": 1750,
"reset": 1778851038
},
"audit_log_streaming": {
"limit": 15,
"used": 0,
"remaining": 15,
"reset": 1778851038
},
"code_search": {
"limit": 10,
"used": 0,
"remaining": 10,
"reset": 1778847498
}
},
"rate": {
"limit": 5000,
"used": 0,
"remaining": 5000,
"reset": 1778851038
}
}
@Longshot commented on GitHub (May 15, 2026):
Nope.
@BlackDex commented on GitHub (May 15, 2026):
It's probably something @stefan0xC mentioned. It for some reason wasn't able to connect to or extract the online version from the repo. I can reproduce the same by preventing internet access.
It isn't a huge buggy, but better to be solved i guess.
@Longshot commented on GitHub (May 15, 2026):
Whats the url it's trying to reach?
Maybe it's blocked by pihole.
api.github.com is reachable by the container.
@Longshot commented on GitHub (May 15, 2026):
I've got a caching proxy for api.github.com with a self signed certificate.
Maybe Vaultwarden is rejecting the cert?
Can i set it as trusted in the .env ?
@BlackDex commented on GitHub (May 15, 2026):
You should either add the CA, or the Self-Signed cert as a file via docker mount.
Best way would be as followed.
This should cause Vaultwarden's HTTP Client to accept that certificate.
@BlackDex commented on GitHub (May 15, 2026):
Also, since this is a warning, and not really something we need to fix, as this was accounted for, I'm going to move this to a discussion.