]> Untitled Git - lemmy.git/commitdiff
Version 0.16.2
authorDessalines <tyhou13@gmx.com>
Tue, 29 Mar 2022 16:56:21 +0000 (12:56 -0400)
committerDessalines <tyhou13@gmx.com>
Tue, 29 Mar 2022 16:56:21 +0000 (12:56 -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 6543b46287f04de974d64f8d52f018f9bdeea219..907b489cf31754c0eaaa7127b015c809eaa8de76 100644 (file)
@@ -1830,7 +1830,7 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
 
 [[package]]
 name = "lemmy_api"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 dependencies = [
  "actix",
  "actix-rt",
@@ -1873,7 +1873,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_api_common"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 dependencies = [
  "actix-web",
  "chrono",
@@ -1893,7 +1893,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_api_crud"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 dependencies = [
  "actix",
  "actix-rt",
@@ -1936,7 +1936,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 dependencies = [
  "activitystreams-kinds",
  "actix",
@@ -1983,7 +1983,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub_lib"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 dependencies = [
  "actix-web",
  "anyhow",
@@ -2010,7 +2010,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub_lib_derive"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 dependencies = [
  "proc-macro2 1.0.33",
  "quote 1.0.10",
@@ -2020,7 +2020,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_schema"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 dependencies = [
  "bcrypt",
  "chrono",
@@ -2042,7 +2042,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -2054,7 +2054,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views_actor"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -2063,7 +2063,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views_moderator"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -2072,7 +2072,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_routes"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 dependencies = [
  "actix",
  "actix-web",
@@ -2102,7 +2102,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_server"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 dependencies = [
  "actix",
  "actix-rt",
@@ -2149,7 +2149,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_utils"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 dependencies = [
  "actix-rt",
  "actix-web",
@@ -2192,7 +2192,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_websocket"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 dependencies = [
  "actix",
  "actix-web",
index ad805353d2d39ea53655c872465a084317dd5ed2..6edfdc5ced6a28d8fe90ff8cf68c14fffe917432 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_server"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -35,18 +35,18 @@ members = [
 ]
 
 [dependencies]
-lemmy_api = { version = "=0.16.2-rc.3", path = "./crates/api" }
-lemmy_api_crud = { version = "=0.16.2-rc.3", path = "./crates/api_crud" }
-lemmy_apub = { version = "=0.16.2-rc.3", path = "./crates/apub" }
-lemmy_apub_lib = { version = "=0.16.2-rc.3", path = "./crates/apub_lib" }
-lemmy_utils = { version = "=0.16.2-rc.3", path = "./crates/utils" }
-lemmy_db_schema = { version = "=0.16.2-rc.3", path = "./crates/db_schema" }
-lemmy_db_views = { version = "=0.16.2-rc.3", path = "./crates/db_views" }
-lemmy_db_views_moderator = { version = "=0.16.2-rc.3", path = "./crates/db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.16.2-rc.3", path = "./crates/db_views_actor" }
-lemmy_api_common = { version = "=0.16.2-rc.3", path = "crates/api_common" }
-lemmy_websocket = { version = "=0.16.2-rc.3", path = "./crates/websocket" }
-lemmy_routes = { version = "=0.16.2-rc.3", path = "./crates/routes" }
+lemmy_api = { version = "=0.16.2", path = "./crates/api" }
+lemmy_api_crud = { version = "=0.16.2", path = "./crates/api_crud" }
+lemmy_apub = { version = "=0.16.2", path = "./crates/apub" }
+lemmy_apub_lib = { version = "=0.16.2", path = "./crates/apub_lib" }
+lemmy_utils = { version = "=0.16.2", path = "./crates/utils" }
+lemmy_db_schema = { version = "=0.16.2", path = "./crates/db_schema" }
+lemmy_db_views = { version = "=0.16.2", path = "./crates/db_views" }
+lemmy_db_views_moderator = { version = "=0.16.2", path = "./crates/db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.2", path = "./crates/db_views_actor" }
+lemmy_api_common = { version = "=0.16.2", path = "crates/api_common" }
+lemmy_websocket = { version = "=0.16.2", path = "./crates/websocket" }
+lemmy_routes = { version = "=0.16.2", path = "./crates/routes" }
 diesel = "1.4.8"
 diesel_migrations = "1.4.0"
 chrono = { version = "0.4.19", features = ["serde"] }
index 2566e112efbec7bfaa6df0177c8e1ee279d1106c..9a6bf8fe6c387f890936b697d8cfbcf0cbe5159c 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 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.2-rc.3", path = "../apub" }
-lemmy_apub_lib = { version = "=0.16.2-rc.3", path = "../apub_lib" }
-lemmy_utils = { version = "=0.16.2-rc.3", path = "../utils" }
-lemmy_db_schema = { version = "=0.16.2-rc.3", path = "../db_schema" }
-lemmy_db_views = { version = "=0.16.2-rc.3", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.16.2-rc.3", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.16.2-rc.3", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.16.2-rc.3", path = "../api_common" }
-lemmy_websocket = { version = "=0.16.2-rc.3", path = "../websocket" }
+lemmy_apub = { version = "=0.16.2", path = "../apub" }
+lemmy_apub_lib = { version = "=0.16.2", path = "../apub_lib" }
+lemmy_utils = { version = "=0.16.2", path = "../utils" }
+lemmy_db_schema = { version = "=0.16.2", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.2", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.16.2", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.2", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.16.2", path = "../api_common" }
+lemmy_websocket = { version = "=0.16.2", path = "../websocket" }
 diesel = "1.4.8"
 bcrypt = "0.10.1"
 chrono = { version = "0.4.19", features = ["serde"] }
index 2c073289790d84071347d3bc13f0baabdd654b32..4c4ea2c2015943d3cdc434e65bf37ffbb7b15e9e 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api_common"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 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.2-rc.3", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.16.2-rc.3", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.16.2-rc.3", path = "../db_views_actor" }
-lemmy_db_schema = { version = "=0.16.2-rc.3", path = "../db_schema" }
-lemmy_utils = { version = "=0.16.2-rc.3", path = "../utils" }
+lemmy_db_views = { version = "=0.16.2", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.16.2", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.2", path = "../db_views_actor" }
+lemmy_db_schema = { version = "=0.16.2", path = "../db_schema" }
+lemmy_utils = { version = "=0.16.2", path = "../utils" }
 serde = { version = "1.0.131", features = ["derive"] }
 diesel = "1.4.8"
 actix-web = { version = "4.0.0", default-features = false, features = ["cookies"] }
index 1c84755e413865db3c95773d2123098d1d06d1ee..159beaafe973b6d0ebbc25ce1ad5cc099f1278a1 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api_crud"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 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.2-rc.3", path = "../apub" }
-lemmy_apub_lib = { version = "=0.16.2-rc.3", path = "../apub_lib" }
-lemmy_utils = { version = "=0.16.2-rc.3", path = "../utils" }
-lemmy_db_schema = { version = "=0.16.2-rc.3", path = "../db_schema" }
-lemmy_db_views = { version = "=0.16.2-rc.3", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.16.2-rc.3", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.16.2-rc.3", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.16.2-rc.3", path = "../api_common" }
-lemmy_websocket = { version = "=0.16.2-rc.3", path = "../websocket" }
+lemmy_apub = { version = "=0.16.2", path = "../apub" }
+lemmy_apub_lib = { version = "=0.16.2", path = "../apub_lib" }
+lemmy_utils = { version = "=0.16.2", path = "../utils" }
+lemmy_db_schema = { version = "=0.16.2", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.2", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.16.2", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.2", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.16.2", path = "../api_common" }
+lemmy_websocket = { version = "=0.16.2", path = "../websocket" }
 diesel = "1.4.8"
 bcrypt = "0.10.1"
 chrono = { version = "0.4.19", features = ["serde"] }
index cbcebe676fecda66fd322b908401dbe44b4ed094..51165ea9cce489126304df42bf6263aba41a95ef 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 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.2-rc.3", path = "../utils" }
-lemmy_apub_lib = { version = "=0.16.2-rc.3", path = "../apub_lib" }
-lemmy_db_schema = { version = "=0.16.2-rc.3", path = "../db_schema" }
-lemmy_db_views = { version = "=0.16.2-rc.3", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.16.2-rc.3", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.16.2-rc.3", path = "../api_common" }
-lemmy_websocket = { version = "=0.16.2-rc.3", path = "../websocket" }
+lemmy_utils = { version = "=0.16.2", path = "../utils" }
+lemmy_apub_lib = { version = "=0.16.2", path = "../apub_lib" }
+lemmy_db_schema = { version = "=0.16.2", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.2", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.16.2", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.16.2", path = "../api_common" }
+lemmy_websocket = { version = "=0.16.2", path = "../websocket" }
 diesel = "1.4.8"
 activitystreams-kinds = "0.1.2"
 bcrypt = "0.10.1"
index cfb37e6319b634c29ed8c30bb0b52c5493f2bed0..e91ad89aa564a67399bdddd2ebcb63e8417ee98a 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub_lib"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 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.2-rc.3", path = "../utils" }
-lemmy_apub_lib_derive = { version = "=0.16.2-rc.3", path = "../apub_lib_derive" }
+lemmy_utils = { version = "=0.16.2", path = "../utils" }
+lemmy_apub_lib_derive = { version = "=0.16.2", path = "../apub_lib_derive" }
 chrono = "0.4.19"
 serde = { version = "1.0.131", features = ["derive"] }
 async-trait = "0.1.52"
index 00f5561b07c471d26d2011e2e313556d81b882e2..6d46fd580371ca6bf707f97af0ca8a89adb2efd7 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub_lib_derive"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
index 28e826b40ee4d2b868f3501820752b285daa204f..96e97ffe3e86e80cceffa80b48a8519cb712cd3c 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_schema"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 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.2-rc.3", path = "../utils" }
-lemmy_apub_lib = { version = "=0.16.2-rc.3", path = "../apub_lib" }
+lemmy_utils = { version = "=0.16.2", path = "../utils" }
+lemmy_apub_lib = { version = "=0.16.2", 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 174a410e389375a684c85eb95b5099517c8c5a6a..57bd363db4a530ae54cbf92eab351756b55626b0 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 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.2-rc.3", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.16.2", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.131", features = ["derive"] }
 tracing = "0.1.29"
index 253f3fca8f10c3bd582651bff7e0e8a82b3c2aa2..1ad6e7534468bc49a006dee1bfbc576778ecffda 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views_actor"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 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.2-rc.3", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.16.2", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.131", features = ["derive"] }
index 0b74f8bfa8a55fae51627d222a693e59f78ccc83..c9e4ae5517ec9359a5ac435684681af1234ae966 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views_moderator"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 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.2-rc.3", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.16.2", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.131", features = ["derive"] }
index 240dd50c90f1f1ff220efa932a3328a64b172a00..3831b72076b79376ea7bf0e6673dcf7ed764ef0c 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_routes"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 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.2-rc.3", path = "../utils" }
-lemmy_websocket = { version = "=0.16.2-rc.3", path = "../websocket" }
-lemmy_db_views = { version = "=0.16.2-rc.3", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.16.2-rc.3", path = "../db_views_actor" }
-lemmy_db_schema = { version = "=0.16.2-rc.3", path = "../db_schema" }
-lemmy_api_common = { version = "=0.16.2-rc.3", path = "../api_common" }
-lemmy_apub = { version = "=0.16.2-rc.3", path = "../apub" }
+lemmy_utils = { version = "=0.16.2", path = "../utils" }
+lemmy_websocket = { version = "=0.16.2", path = "../websocket" }
+lemmy_db_views = { version = "=0.16.2", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.16.2", path = "../db_views_actor" }
+lemmy_db_schema = { version = "=0.16.2", path = "../db_schema" }
+lemmy_api_common = { version = "=0.16.2", path = "../api_common" }
+lemmy_apub = { version = "=0.16.2", path = "../apub" }
 diesel = "1.4.8"
 actix = "0.13.0"
 actix-web = { version = "4.0.0", default-features = false, features = ["rustls"] }
index a4a0752ddaefed3bc881d083388613fa4b7bb216..19990d5ea013efdd44b2b477609928e10e3949d2 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_utils"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
index e045f1baf886fd0ba730cb0b664f686e1cb586d8..d6fc1f24fbfb31820680fc55bb954049bdda9f19 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_websocket"
-version = "0.16.2-rc.3"
+version = "0.16.2"
 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.2-rc.3", path = "../utils" }
-lemmy_api_common = { version = "=0.16.2-rc.3", path = "../api_common" }
-lemmy_db_schema = { version = "=0.16.2-rc.3", path = "../db_schema" }
-lemmy_db_views = { version = "=0.16.2-rc.3", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.16.2-rc.3", path = "../db_views_actor" }
+lemmy_utils = { version = "=0.16.2", path = "../utils" }
+lemmy_api_common = { version = "=0.16.2", path = "../api_common" }
+lemmy_db_schema = { version = "=0.16.2", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.2", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.16.2", path = "../db_views_actor" }
 reqwest = { version = "0.11.7", features = ["json"] }
 reqwest-middleware = "0.1.3"
 tracing = "0.1.29"
index 17791b0c669a5b5ef1a7f1121e03ba449f7018b1..8cc833d64fcf1e563af4cc01754488c32d40022e 100644 (file)
@@ -28,7 +28,7 @@ services:
       - otel
 
   lemmy-ui:
-    image: dessalines/lemmy-ui:0.16.1
+    image: dessalines/lemmy-ui:0.16.2
     restart: always
     environment:
       - LEMMY_INTERNAL_HOST=lemmy:8536
index 02f170e88283999915cf2cad8523c3e3924c98c8..5830bef10d44b87d14a55bac03e6b3e775fc173f 100644 (file)
@@ -28,7 +28,7 @@ services:
       - ./volumes/pictrs_alpha:/mnt
 
   lemmy-alpha-ui:
-    image: dessalines/lemmy-ui:0.16.1
+    image: dessalines/lemmy-ui:0.16.2
     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.1
+    image: dessalines/lemmy-ui:0.16.2
     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.1
+    image: dessalines/lemmy-ui:0.16.2
     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.1
+    image: dessalines/lemmy-ui:0.16.2
     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.1
+    image: dessalines/lemmy-ui:0.16.2
     environment:
       - LEMMY_INTERNAL_HOST=lemmy-epsilon:8581
       - LEMMY_EXTERNAL_HOST=localhost:8581
index ae39589ea29932db855a8a6d34ceed01a41221be..a7b0db7a8f65ca19167395ab34fd3f9d4fd7a2e6 100644 (file)
@@ -12,7 +12,7 @@ services:
     restart: always
 
   lemmy:
-    image: dessalines/lemmy:0.16.1
+    image: dessalines/lemmy:0.16.2
     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.1
+    image: dessalines/lemmy-ui:0.16.2
     ports:
       - "127.0.0.1:1235:1234"
     restart: always