Skip to content

Commit 286c94b

Browse files
authored
Update/v1.35.3 (#61)
* Update to v1.35.3, correct URLs * Place admin token above Admin URLs * Fix VW docs link * Clarify what not to use on Interfaces page
1 parent 785e186 commit 286c94b

File tree

5 files changed

+24
-10
lines changed

5 files changed

+24
-10
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM vaultwarden/server:1.35.2-alpine
1+
FROM vaultwarden/server:1.35.3-alpine
22

33
RUN apk update && \
44
apk add --no-cache \

docker_entrypoint.sh

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,38 @@ EOF
1414
cat << EOF > /data/start9/stats.yaml
1515
version: 2
1616
data:
17+
"Local Server URL":
18+
type: string
19+
value: "https://$LAN_ADDRESS"
20+
description: "The URL for accessing your Vaultwarden server via your LAN"
21+
copyable: true
22+
qr: false
23+
masked: false
24+
"Tor Server URL":
25+
type: string
26+
value: "https://$TOR_ADDRESS"
27+
description: "The URL for accessing your Vaultwarden server via Tor"
28+
copyable: true
29+
qr: false
30+
masked: false
1731
"Admin Token":
1832
type: string
1933
value: "$ADMIN_TOKEN"
20-
description: "Authentication token for logging into your admin dashboard."
34+
description: "Authentication token for logging into your admin dashboard"
2135
copyable: true
2236
qr: false
2337
masked: true
2438
"Local Admin URL":
2539
type: string
2640
value: "https://$LAN_ADDRESS/admin"
27-
description: "The URL for accessing your admin dashboard via your LAN."
41+
description: "The URL for accessing your admin dashboard via your LAN"
2842
copyable: true
2943
qr: false
3044
masked: false
3145
"Tor Admin URL":
3246
type: string
3347
value: "https://$TOR_ADDRESS/admin"
34-
description: "The URL for accessing your admin dashboard via Tor."
48+
description: "The URL for accessing your admin dashboard via Tor"
3549
copyable: true
3650
qr: false
3751
masked: false

instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Vaultwarden is a _self-hosted_ password manager, which means your passwords phys
66

77
## Connecting to Your Vaultwarden Server
88

9-
You can use Vaultwarden simply by visitng your unique .local or .onion address in the browser. You can also use a variety of Bitwarden clients, including browsers extensions, desktop apps, and mobile apps. For a complete list of options and detailed instructions, see the [docs](https://docs.start9.com/latest/user-manual/service-guides/vaultwarden).
9+
You can use Vaultwarden simply by visitng your unique .local or .onion address in the browser. You can also use a variety of Bitwarden clients, including browsers extensions, desktop apps, and mobile apps. For a complete list of options and detailed instructions, see the [docs](https://docs.start9.com/latest/service-guides/vaultwarden).
1010

1111
## Using The Admin Portal
1212

manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"id": "vaultwarden",
33
"title": "Vaultwarden",
4-
"version": "1.35.2",
5-
"release-notes": "* Updated to the latest upstream code:\n Individual release notes: [v1.35.0](https://github.com/dani-garcia/vaultwarden/releases/tag/1.35.0), [v1.35.1](https://github.com/dani-garcia/vaultwarden/releases/tag/1.35.1), [v1.35.2](https://github.com/dani-garcia/vaultwarden/releases/tag/1.35.2), Full detailed change log available [here](https://github.com/dani-garcia/vaultwarden/compare/1.34.3...1.35.2)",
4+
"version": "1.35.3",
5+
"release-notes": "* Updated to the latest upstream code containing a security fix for large orgs:\n Release notes: [v1.35.3](https://github.com/dani-garcia/vaultwarden/releases/tag/1.35.3)",
66
"license": "AGPLv3",
77
"wrapper-repo": "https://github.com/Start9Labs/vaultwarden-startos",
88
"upstream-repo": "https://github.com/dani-garcia/vaultwarden",
@@ -64,7 +64,7 @@
6464
"interfaces": {
6565
"main": {
6666
"name": "Web Interface/Bitwarden Protocol",
67-
"description": "Main user interface for interacting with Vaultwarden in a web browser. Also serves the bitwarden protocol.",
67+
"description": "Do not use the Tor Address below. Instead, look in Vaultwarden's Properties section for your Tor server URL.",
6868
"tor-config": {
6969
"port-mapping": {
7070
"80": "8080",

scripts/procedures/migrations.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { manifest } from "../generated/manifest.ts";
33

44
export const migration: T.ExpectedExports.migration = migrations.fromMapping(
55
{
6-
// 1.35.2 No migration needed
6+
// 1.35.3 No migration needed
77
},
8-
manifest.version
8+
manifest.version,
99
);

0 commit comments

Comments
 (0)