prepare v0.7.3

This commit is contained in:
Scott Lamb 2022-03-22 14:55:24 -07:00
parent 4c9aa93fdf
commit 3bc410b417
5 changed files with 6 additions and 6 deletions

View File

@ -6,7 +6,7 @@ changes, see Git history.
Each release is tagged in Git and on the Docker repository Each release is tagged in Git and on the Docker repository
[`scottlamb/moonfire-nvr`](https://hub.docker.com/r/scottlamb/moonfire-nvr). [`scottlamb/moonfire-nvr`](https://hub.docker.com/r/scottlamb/moonfire-nvr).
## unreleased ## `v0.7.3` (2022-03-22)
* security fix: check the `Origin` header on live stream WebSocket requests * security fix: check the `Origin` header on live stream WebSocket requests
to avoid cross-site WebSocket hijacking (CSWSH). to avoid cross-site WebSocket hijacking (CSWSH).

View File

@ -35,7 +35,7 @@ There's no support yet for motion detection, no https/TLS support (you'll
need a proxy server, as described [here](guide/secure.md)), and only a need a proxy server, as described [here](guide/secure.md)), and only a
console-based (rather than web-based) configuration UI. console-based (rather than web-based) configuration UI.
Moonfire NVR is currently at version 0.7.2. Until version 1.0, there will be no Moonfire NVR is currently at version 0.7.3. Until version 1.0, there will be no
compatibility guarantees: configuration and storage formats may change from compatibility guarantees: configuration and storage formats may change from
version to version. There is an [upgrade procedure](guide/schema.md) but it is version to version. There is an [upgrade procedure](guide/schema.md) but it is
not for the faint of heart. not for the faint of heart.

4
server/Cargo.lock generated
View File

@ -1040,7 +1040,7 @@ dependencies = [
[[package]] [[package]]
name = "moonfire-db" name = "moonfire-db"
version = "0.7.2" version = "0.7.3"
dependencies = [ dependencies = [
"base64", "base64",
"blake3", "blake3",
@ -1080,7 +1080,7 @@ dependencies = [
[[package]] [[package]]
name = "moonfire-nvr" name = "moonfire-nvr"
version = "0.7.2" version = "0.7.3"
dependencies = [ dependencies = [
"base64", "base64",
"blake3", "blake3",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "moonfire-nvr" name = "moonfire-nvr"
version = "0.7.2" version = "0.7.3"
authors = ["Scott Lamb <slamb@slamb.org>"] authors = ["Scott Lamb <slamb@slamb.org>"]
edition = "2018" edition = "2018"
resolver = "2" resolver = "2"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "moonfire-db" name = "moonfire-db"
version = "0.7.2" version = "0.7.3"
authors = ["Scott Lamb <slamb@slamb.org>"] authors = ["Scott Lamb <slamb@slamb.org>"]
readme = "../README.md" readme = "../README.md"
edition = "2018" edition = "2018"