]> Untitled Git - lemmy.git/commitdiff
Version 0.16.3
authorDessalines <tyhou13@gmx.com>
Fri, 8 Apr 2022 14:20:31 +0000 (10:20 -0400)
committerDessalines <tyhou13@gmx.com>
Fri, 8 Apr 2022 14:20:31 +0000 (10:20 -0400)
18 files changed:
Cargo.lock
Cargo.toml
crates/api/Cargo.toml
crates/api_common/Cargo.toml
crates/api_crud/Cargo.toml
crates/apub/Cargo.toml
crates/apub_lib/Cargo.toml
crates/apub_lib_derive/Cargo.toml
crates/db_schema/Cargo.toml
crates/db_views/Cargo.toml
crates/db_views_actor/Cargo.toml
crates/db_views_moderator/Cargo.toml
crates/routes/Cargo.toml
crates/utils/Cargo.toml
crates/websocket/Cargo.toml
docker/dev/docker-compose.yml
docker/federation/docker-compose.yml
docker/prod/docker-compose.yml

index d98bb4b01bdc5a5391bff2e709e582647887faa4..9ff315255b3f1d2f39d71b82dbeef1db5e60e18f 100644 (file)
@@ -1802,7 +1802,7 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
 
 [[package]]
 name = "lemmy_api"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 dependencies = [
  "actix",
  "actix-rt",
@@ -1845,7 +1845,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_api_common"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 dependencies = [
  "actix-web",
  "chrono",
@@ -1865,7 +1865,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_api_crud"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 dependencies = [
  "actix",
  "actix-rt",
@@ -1908,7 +1908,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 dependencies = [
  "activitystreams-kinds",
  "actix",
@@ -1955,7 +1955,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub_lib"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 dependencies = [
  "actix-web",
  "anyhow",
@@ -1982,7 +1982,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub_lib_derive"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 dependencies = [
  "proc-macro2 1.0.36",
  "quote 1.0.17",
@@ -1992,7 +1992,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_schema"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 dependencies = [
  "bcrypt",
  "chrono",
@@ -2014,7 +2014,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -2026,7 +2026,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views_actor"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -2035,7 +2035,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views_moderator"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -2044,7 +2044,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_routes"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 dependencies = [
  "actix",
  "actix-web",
@@ -2074,7 +2074,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_server"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 dependencies = [
  "actix",
  "actix-rt",
@@ -2121,7 +2121,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_utils"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 dependencies = [
  "actix-rt",
  "actix-web",
@@ -2164,7 +2164,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_websocket"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 dependencies = [
  "actix",
  "actix-web",
index 9d1320199f031d2571885bd6621ef7d7068d86e1..a8fce721daf84f6b246df4130f34a59b873404cf 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_server"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -35,18 +35,18 @@ members = [
 ]
 
 [dependencies]
-lemmy_api = { version = "=0.16.3-rc.1", path = "./crates/api" }
-lemmy_api_crud = { version = "=0.16.3-rc.1", path = "./crates/api_crud" }
-lemmy_apub = { version = "=0.16.3-rc.1", path = "./crates/apub" }
-lemmy_apub_lib = { version = "=0.16.3-rc.1", path = "./crates/apub_lib" }
-lemmy_utils = { version = "=0.16.3-rc.1", path = "./crates/utils" }
-lemmy_db_schema = { version = "=0.16.3-rc.1", path = "./crates/db_schema" }
-lemmy_db_views = { version = "=0.16.3-rc.1", path = "./crates/db_views" }
-lemmy_db_views_moderator = { version = "=0.16.3-rc.1", path = "./crates/db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.16.3-rc.1", path = "./crates/db_views_actor" }
-lemmy_api_common = { version = "=0.16.3-rc.1", path = "crates/api_common" }
-lemmy_websocket = { version = "=0.16.3-rc.1", path = "./crates/websocket" }
-lemmy_routes = { version = "=0.16.3-rc.1", path = "./crates/routes" }
+lemmy_api = { version = "=0.16.3", path = "./crates/api" }
+lemmy_api_crud = { version = "=0.16.3", path = "./crates/api_crud" }
+lemmy_apub = { version = "=0.16.3", path = "./crates/apub" }
+lemmy_apub_lib = { version = "=0.16.3", path = "./crates/apub_lib" }
+lemmy_utils = { version = "=0.16.3", path = "./crates/utils" }
+lemmy_db_schema = { version = "=0.16.3", path = "./crates/db_schema" }
+lemmy_db_views = { version = "=0.16.3", path = "./crates/db_views" }
+lemmy_db_views_moderator = { version = "=0.16.3", path = "./crates/db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.3", path = "./crates/db_views_actor" }
+lemmy_api_common = { version = "=0.16.3", path = "crates/api_common" }
+lemmy_websocket = { version = "=0.16.3", path = "./crates/websocket" }
+lemmy_routes = { version = "=0.16.3", path = "./crates/routes" }
 diesel = "1.4.8"
 diesel_migrations = "1.4.0"
 chrono = { version = "0.4.19", features = ["serde"] }
index 308221e327b5503a82abee7ef7befafb4ace7381..9a69a0dd1e78aa8692bdb14cb7dd118c7777444a 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -13,15 +13,15 @@ path = "src/lib.rs"
 doctest = false
 
 [dependencies]
-lemmy_apub = { version = "=0.16.3-rc.1", path = "../apub" }
-lemmy_apub_lib = { version = "=0.16.3-rc.1", path = "../apub_lib" }
-lemmy_utils = { version = "=0.16.3-rc.1", path = "../utils" }
-lemmy_db_schema = { version = "=0.16.3-rc.1", path = "../db_schema" }
-lemmy_db_views = { version = "=0.16.3-rc.1", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.16.3-rc.1", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.16.3-rc.1", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.16.3-rc.1", path = "../api_common" }
-lemmy_websocket = { version = "=0.16.3-rc.1", path = "../websocket" }
+lemmy_apub = { version = "=0.16.3", path = "../apub" }
+lemmy_apub_lib = { version = "=0.16.3", path = "../apub_lib" }
+lemmy_utils = { version = "=0.16.3", path = "../utils" }
+lemmy_db_schema = { version = "=0.16.3", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.3", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.16.3", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.3", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.16.3", path = "../api_common" }
+lemmy_websocket = { version = "=0.16.3", path = "../websocket" }
 diesel = "1.4.8"
 bcrypt = "0.12.1"
 chrono = { version = "0.4.19", features = ["serde"] }
index 8f76a1b457be53acd6980f6fd8eb3fd1700652ba..f262a89e31d9c548db3628379db64589348c41ce 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api_common"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -13,11 +13,11 @@ path = "src/lib.rs"
 doctest = false
 
 [dependencies]
-lemmy_db_views = { version = "=0.16.3-rc.1", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.16.3-rc.1", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.16.3-rc.1", path = "../db_views_actor" }
-lemmy_db_schema = { version = "=0.16.3-rc.1", path = "../db_schema" }
-lemmy_utils = { version = "=0.16.3-rc.1", path = "../utils" }
+lemmy_db_views = { version = "=0.16.3", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.16.3", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.3", path = "../db_views_actor" }
+lemmy_db_schema = { version = "=0.16.3", path = "../db_schema" }
+lemmy_utils = { version = "=0.16.3", path = "../utils" }
 serde = { version = "1.0.136", features = ["derive"] }
 diesel = "1.4.8"
 actix-web = { version = "4.0.1", default-features = false, features = ["cookies"] }
index 07611329536d24d9ba823b52b0962a96eef2e50e..5f618b1b9ae89671052c032806c07182dfd78b19 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api_crud"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -8,15 +8,15 @@ homepage = "https://join-lemmy.org/"
 documentation = "https://join-lemmy.org/docs/en/index.html"
 
 [dependencies]
-lemmy_apub = { version = "=0.16.3-rc.1", path = "../apub" }
-lemmy_apub_lib = { version = "=0.16.3-rc.1", path = "../apub_lib" }
-lemmy_utils = { version = "=0.16.3-rc.1", path = "../utils" }
-lemmy_db_schema = { version = "=0.16.3-rc.1", path = "../db_schema" }
-lemmy_db_views = { version = "=0.16.3-rc.1", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.16.3-rc.1", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.16.3-rc.1", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.16.3-rc.1", path = "../api_common" }
-lemmy_websocket = { version = "=0.16.3-rc.1", path = "../websocket" }
+lemmy_apub = { version = "=0.16.3", path = "../apub" }
+lemmy_apub_lib = { version = "=0.16.3", path = "../apub_lib" }
+lemmy_utils = { version = "=0.16.3", path = "../utils" }
+lemmy_db_schema = { version = "=0.16.3", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.3", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.16.3", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.3", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.16.3", path = "../api_common" }
+lemmy_websocket = { version = "=0.16.3", path = "../websocket" }
 diesel = "1.4.8"
 bcrypt = "0.12.1"
 chrono = { version = "0.4.19", features = ["serde"] }
index e5f59bb99c0e786ae433737de1f3c02a3819d207..7426284d0a5667d336bea869a59433c4a4974654 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -13,13 +13,13 @@ path = "src/lib.rs"
 doctest = false
 
 [dependencies]
-lemmy_utils = { version = "=0.16.3-rc.1", path = "../utils" }
-lemmy_apub_lib = { version = "=0.16.3-rc.1", path = "../apub_lib" }
-lemmy_db_schema = { version = "=0.16.3-rc.1", path = "../db_schema" }
-lemmy_db_views = { version = "=0.16.3-rc.1", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.16.3-rc.1", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.16.3-rc.1", path = "../api_common" }
-lemmy_websocket = { version = "=0.16.3-rc.1", path = "../websocket" }
+lemmy_utils = { version = "=0.16.3", path = "../utils" }
+lemmy_apub_lib = { version = "=0.16.3", path = "../apub_lib" }
+lemmy_db_schema = { version = "=0.16.3", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.3", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.16.3", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.16.3", path = "../api_common" }
+lemmy_websocket = { version = "=0.16.3", path = "../websocket" }
 diesel = "1.4.8"
 activitystreams-kinds = "0.2.1"
 bcrypt = "0.12.1"
index cbedb075590c9fcf2bf39bc89ce0fbdc1833f263..1b2cabbf4566d778cdd5f74a60be7e90fad90aa4 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub_lib"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -8,8 +8,8 @@ homepage = "https://join-lemmy.org/"
 documentation = "https://join-lemmy.org/docs/en/index.html"
 
 [dependencies]
-lemmy_utils = { version = "=0.16.3-rc.1", path = "../utils" }
-lemmy_apub_lib_derive = { version = "=0.16.3-rc.1", path = "../apub_lib_derive" }
+lemmy_utils = { version = "=0.16.3", path = "../utils" }
+lemmy_apub_lib_derive = { version = "=0.16.3", path = "../apub_lib_derive" }
 chrono = "0.4.19"
 serde = { version = "1.0.136", features = ["derive"] }
 async-trait = "0.1.53"
index 0ca0d72d8b27baa0c5f4a476ec452166f9206ee4..01e7fef77ee99a3466dab3623a997130f705561d 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub_lib_derive"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
index 2543118305895fe035ee3c2770edf221d1cf2b59..0ee7dd5ad7c9ac94f7337a068d5f514e5475efe5 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_schema"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -13,8 +13,8 @@ path = "src/lib.rs"
 doctest = false
 
 [dependencies]
-lemmy_utils = { version = "=0.16.3-rc.1", path = "../utils" }
-lemmy_apub_lib = { version = "=0.16.3-rc.1", path = "../apub_lib" }
+lemmy_utils = { version = "=0.16.3", path = "../utils" }
+lemmy_apub_lib = { version = "=0.16.3", path = "../apub_lib" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 diesel_migrations = "1.4.0"
 chrono = { version = "0.4.19", features = ["serde"] }
index 7efd509d7bed747cda81dc1ecf2f2e566baa8745..7fcf278255ef8fd2950bf8f89f65f52c5da1a5bd 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -11,7 +11,7 @@ documentation = "https://join-lemmy.org/docs/en/index.html"
 doctest = false
 
 [dependencies]
-lemmy_db_schema = { version = "=0.16.3-rc.1", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.16.3", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.136", features = ["derive"] }
 tracing = "0.1.32"
index 4ea415b7b42b56c45d74404d8fcca826ce88acd9..81c837619cb1ae790728a7397ebf386237028dfd 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views_actor"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -11,6 +11,6 @@ documentation = "https://join-lemmy.org/docs/en/index.html"
 doctest = false
 
 [dependencies]
-lemmy_db_schema = { version = "=0.16.3-rc.1", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.16.3", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.136", features = ["derive"] }
index 59fb0c51b11e795811bd07db451e98687b1b0b09..2e5493922cb6415ef65cbff4f5a7e59944fb052f 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views_moderator"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -11,6 +11,6 @@ documentation = "https://join-lemmy.org/docs/en/index.html"
 doctest = false
 
 [dependencies]
-lemmy_db_schema = { version = "=0.16.3-rc.1", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.16.3", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.136", features = ["derive"] }
index 009be0a5352d4e6460e1ff7189ec39310a5a7f52..6f55d283bb41bafce2d62a93e68234954b337e7d 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_routes"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -11,13 +11,13 @@ documentation = "https://join-lemmy.org/docs/en/index.html"
 doctest = false
 
 [dependencies]
-lemmy_utils = { version = "=0.16.3-rc.1", path = "../utils" }
-lemmy_websocket = { version = "=0.16.3-rc.1", path = "../websocket" }
-lemmy_db_views = { version = "=0.16.3-rc.1", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.16.3-rc.1", path = "../db_views_actor" }
-lemmy_db_schema = { version = "=0.16.3-rc.1", path = "../db_schema" }
-lemmy_api_common = { version = "=0.16.3-rc.1", path = "../api_common" }
-lemmy_apub = { version = "=0.16.3-rc.1", path = "../apub" }
+lemmy_utils = { version = "=0.16.3", path = "../utils" }
+lemmy_websocket = { version = "=0.16.3", path = "../websocket" }
+lemmy_db_views = { version = "=0.16.3", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.16.3", path = "../db_views_actor" }
+lemmy_db_schema = { version = "=0.16.3", path = "../db_schema" }
+lemmy_api_common = { version = "=0.16.3", path = "../api_common" }
+lemmy_apub = { version = "=0.16.3", path = "../apub" }
 diesel = "1.4.8"
 actix = "0.13.0"
 actix-web = { version = "4.0.1", default-features = false, features = ["rustls"] }
index 7ab0b966847dfc20c6df0e067064866e0111669d..951fa96459ce9aec597ccd5e6f442a6270744f9b 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_utils"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
index 21ea3d6f99998ab921a842af99344f22622fd964..8caf35612ce205c3330b49badc875501e2b5c294 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_websocket"
-version = "0.16.3-rc.1"
+version = "0.16.3"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -13,11 +13,11 @@ path = "src/lib.rs"
 doctest = false
 
 [dependencies]
-lemmy_utils = { version = "=0.16.3-rc.1", path = "../utils" }
-lemmy_api_common = { version = "=0.16.3-rc.1", path = "../api_common" }
-lemmy_db_schema = { version = "=0.16.3-rc.1", path = "../db_schema" }
-lemmy_db_views = { version = "=0.16.3-rc.1", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.16.3-rc.1", path = "../db_views_actor" }
+lemmy_utils = { version = "=0.16.3", path = "../utils" }
+lemmy_api_common = { version = "=0.16.3", path = "../api_common" }
+lemmy_db_schema = { version = "=0.16.3", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.3", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.16.3", path = "../db_views_actor" }
 reqwest = { version = "0.11.10", features = ["json"] }
 reqwest-middleware = "0.1.5"
 tracing = "0.1.32"
index 934235b01e31e3da83d5b8f0f437d0d957f3ba17..9956d98c68e02af1b80871b7db0dda3786bc2ff6 100644 (file)
@@ -28,7 +28,7 @@ services:
       - otel
 
   lemmy-ui:
-    image: dessalines/lemmy-ui:0.16.2
+    image: dessalines/lemmy-ui:0.16.3
     restart: always
     environment:
       - LEMMY_INTERNAL_HOST=lemmy:8536
index cb299db0065beaa6041edbbebc7d8b2401ef34c9..d3c11f79b8d45969b076a16cea30dd663bed15c0 100644 (file)
@@ -28,7 +28,7 @@ services:
       - ./volumes/pictrs_alpha:/mnt
 
   lemmy-alpha-ui:
-    image: dessalines/lemmy-ui:0.16.2
+    image: dessalines/lemmy-ui:0.16.3
     environment:
       - LEMMY_INTERNAL_HOST=lemmy-alpha:8541
       - LEMMY_EXTERNAL_HOST=localhost:8541
@@ -57,7 +57,7 @@ services:
       - ./volumes/postgres_alpha:/var/lib/postgresql/data
 
   lemmy-beta-ui:
-    image: dessalines/lemmy-ui:0.16.2
+    image: dessalines/lemmy-ui:0.16.3
     environment:
       - LEMMY_INTERNAL_HOST=lemmy-beta:8551
       - LEMMY_EXTERNAL_HOST=localhost:8551
@@ -86,7 +86,7 @@ services:
       - ./volumes/postgres_beta:/var/lib/postgresql/data
 
   lemmy-gamma-ui:
-    image: dessalines/lemmy-ui:0.16.2
+    image: dessalines/lemmy-ui:0.16.3
     environment:
       - LEMMY_INTERNAL_HOST=lemmy-gamma:8561
       - LEMMY_EXTERNAL_HOST=localhost:8561
@@ -116,7 +116,7 @@ services:
 
   # An instance with only an allowlist for beta
   lemmy-delta-ui:
-    image: dessalines/lemmy-ui:0.16.2
+    image: dessalines/lemmy-ui:0.16.3
     environment:
       - LEMMY_INTERNAL_HOST=lemmy-delta:8571
       - LEMMY_EXTERNAL_HOST=localhost:8571
@@ -146,7 +146,7 @@ services:
 
   # An instance who has a blocklist, with lemmy-alpha blocked
   lemmy-epsilon-ui:
-    image: dessalines/lemmy-ui:0.16.2
+    image: dessalines/lemmy-ui:0.16.3
     environment:
       - LEMMY_INTERNAL_HOST=lemmy-epsilon:8581
       - LEMMY_EXTERNAL_HOST=localhost:8581
index ec7d2247d577dc58a2a09d972536ac57f5ae2ff3..b7285634b6599cfcb57edb63b4aefc2b18564810 100644 (file)
@@ -12,7 +12,7 @@ services:
     restart: always
 
   lemmy:
-    image: dessalines/lemmy:0.16.2
+    image: dessalines/lemmy:0.16.3
     ports:
       - "127.0.0.1:8536:8536"
       - "127.0.0.1:6669:6669"
@@ -26,7 +26,7 @@ services:
       - pictrs
 
   lemmy-ui:
-    image: dessalines/lemmy-ui:0.16.2
+    image: dessalines/lemmy-ui:0.16.3
     ports:
       - "127.0.0.1:1235:1234"
     restart: always