Skip to content

Commit

Permalink
1.32.1 update (#49)
Browse files Browse the repository at this point in the history
* 1.32.1 update

* Add hardware-requirements to manifest
  • Loading branch information
k0gen authored Oct 8, 2024
1 parent bb023ae commit 74a5044
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM vaultwarden/server:1.31.0-alpine
FROM vaultwarden/server:1.32.1-alpine

RUN apk update && \
apk add --no-cache \
Expand Down
20 changes: 15 additions & 5 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"id": "vaultwarden",
"title": "Vaultwarden",
"version": "1.31.0",
"release-notes": "* Initial support for the beta releases of the new native mobile apps\n* Removed support for WebSocket traffic on port 3012, as it's been integrated on the main HTTP port for a few releases\n* Updated included web vault to 2024.5.1",
"version": "1.32.1",
"release-notes": "* Updated to the latest upstream code with notable changes:\n - Fixed syncing and login issues with native mobile clients\n* Full change log available [here](https://github.com/dani-garcia/vaultwarden/releases/tag/1.32.1)",
"license": "AGPLv3",
"wrapper-repo": "https://github.com/Start9Labs/vaultwarden-startos",
"upstream-repo": "https://github.com/dani-garcia/vaultwarden",
Expand Down Expand Up @@ -79,6 +79,12 @@
"protocols": ["tcp", "http"]
}
},
"hardware-requirements": {
"arch": [
"x86_64",
"aarch64"
]
},
"backup": {
"create": {
"type": "script"
Expand All @@ -91,14 +97,18 @@
"from": {
"*": {
"type": "script",
"args": ["from"]
"args": [
"from"
]
}
},
"to": {
"*": {
"type": "script",
"args": ["to"]
"args": [
"to"
]
}
}
}
}
}
2 changes: 1 addition & 1 deletion scripts/procedures/migrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { manifest } from "../generated/manifest.ts";

export const migration: T.ExpectedExports.migration = migrations.fromMapping(
{
// 1.31.0 No migration needed
// 1.32.1 No migration needed
},
manifest.version,
);

0 comments on commit 74a5044

Please sign in to comment.