Skip to content

Commit 7953920

Browse files
committed
release: v0.3.3
1 parent 12a70f7 commit 7953920

File tree

3 files changed

+31
-9
lines changed

3 files changed

+31
-9
lines changed

Diff for: CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The format is based on [Keep a
66
Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to
77
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9+
## [0.3.3] - 2024-12-17
10+
11+
- feat(dockerfile): Make workdir read/writable by root group for k8s
12+
- feat: Add option to configure via ENV variables (FAMEDLY_BDR)
13+
- bump: Update dependencies
14+
915
## [0.3.2] - 2024-05-02
1016

1117
- Aggregate stats hourly instead of daily

Diff for: Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Cargo.toml

+23-7
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,21 @@
11
[package]
22
name = "barad-dur"
3-
version = "0.3.2"
4-
authors = ["Shekhinah Memmel <[email protected]>", "Jan Christian Grünhage <[email protected]>"]
3+
version = "0.3.3"
4+
authors = [
5+
"Shekhinah Memmel <[email protected]>",
6+
"Jan Christian Grünhage <[email protected]>",
7+
]
58
edition = "2021"
69

710
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
811
[dependencies]
912
anyhow = "1.0.68"
10-
axum = { version = "0.6.20", features = [ "headers", "tokio" ] }
11-
time = { version = "0.3.36", features = [ "serde", "local-offset", "serde-human-readable" ] }
13+
axum = { version = "0.6.20", features = ["headers", "tokio"] }
14+
time = { version = "0.3.36", features = [
15+
"serde",
16+
"local-offset",
17+
"serde-human-readable",
18+
] }
1219
clap = "4.5.20"
1320
config = "0.14.1"
1421
fern = "0.6.1"
@@ -17,10 +24,19 @@ http-body = "0.4.6"
1724
hyper = "0.14.31"
1825
log = "0.4.17"
1926
once_cell = "1.16.0"
20-
serde = { version = "1.0.151", features = [ "derive" ] }
27+
serde = { version = "1.0.151", features = ["derive"] }
2128
serde_json = "1.0.91"
22-
sqlx = { version = "0.8.2", features = [ "runtime-tokio", "tls-rustls", "postgres", "macros", "migrate", "time", "json", "bigdecimal" ] }
23-
tokio = { version = "1.41.0", features = [ "time", "macros", "rt-multi-thread" ] }
29+
sqlx = { version = "0.8.2", features = [
30+
"runtime-tokio",
31+
"tls-rustls",
32+
"postgres",
33+
"macros",
34+
"migrate",
35+
"time",
36+
"json",
37+
"bigdecimal",
38+
] }
39+
tokio = { version = "1.41.0", features = ["time", "macros", "rt-multi-thread"] }
2440

2541
[dev-dependencies]
2642
tower = "0.4.13"

0 commit comments

Comments
 (0)