]> Untitled Git - lemmy.git/commitdiff
Version 0.14.2
authorDessalines <tyhou13@gmx.com>
Tue, 23 Nov 2021 16:48:49 +0000 (11:48 -0500)
committerDessalines <tyhou13@gmx.com>
Tue, 23 Nov 2021 16:48:49 +0000 (11:48 -0500)
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 7d962f595562fed8416634ab7af29f1cd7a52e94..aeffb178e53579eb11845f200fb2b0eb36048ce2 100644 (file)
@@ -1722,7 +1722,7 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
 
 [[package]]
 name = "lemmy_api"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 dependencies = [
  "actix",
  "actix-rt",
@@ -1765,7 +1765,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_api_common"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 dependencies = [
  "actix-web",
  "chrono",
@@ -1782,7 +1782,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_api_crud"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 dependencies = [
  "actix",
  "actix-rt",
@@ -1826,7 +1826,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 dependencies = [
  "activitystreams-kinds",
  "actix",
@@ -1872,7 +1872,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub_lib"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 dependencies = [
  "activitystreams",
  "actix-web",
@@ -1898,7 +1898,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub_lib_derive"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 dependencies = [
  "proc-macro2 1.0.32",
  "quote 1.0.10",
@@ -1908,7 +1908,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_schema"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 dependencies = [
  "bcrypt",
  "chrono",
@@ -1930,7 +1930,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -1942,7 +1942,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views_actor"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -1951,7 +1951,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views_moderator"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -1960,7 +1960,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_routes"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 dependencies = [
  "actix",
  "actix-http",
@@ -1987,7 +1987,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_server"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 dependencies = [
  "activitystreams",
  "actix",
@@ -2029,7 +2029,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_utils"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 dependencies = [
  "actix-rt",
  "actix-web",
@@ -2066,7 +2066,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_websocket"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 dependencies = [
  "actix",
  "actix-web",
index 6e8b3e7fc58fe3e5322e227b6a49f76166151496..bb4fe85b7cd346ba8390db5e5c74088fa8ad0524 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_server"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 edition = "2018"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -31,18 +31,18 @@ members = [
 ]
 
 [dependencies]
-lemmy_api = { version = "=0.14.2-rc.1", path = "./crates/api" }
-lemmy_api_crud = { version = "=0.14.2-rc.1", path = "./crates/api_crud" }
-lemmy_apub = { version = "=0.14.2-rc.1", path = "./crates/apub" }
-lemmy_apub_lib = { version = "=0.14.2-rc.1", path = "./crates/apub_lib" }
-lemmy_utils = { version = "=0.14.2-rc.1", path = "./crates/utils" }
-lemmy_db_schema = { version = "=0.14.2-rc.1", path = "./crates/db_schema" }
-lemmy_db_views = { version = "=0.14.2-rc.1", path = "./crates/db_views" }
-lemmy_db_views_moderator = { version = "=0.14.2-rc.1", path = "./crates/db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.14.2-rc.1", path = "./crates/db_views_actor" }
-lemmy_api_common = { version = "=0.14.2-rc.1", path = "crates/api_common" }
-lemmy_websocket = { version = "=0.14.2-rc.1", path = "./crates/websocket" }
-lemmy_routes = { version = "=0.14.2-rc.1", path = "./crates/routes" }
+lemmy_api = { version = "=0.14.2", path = "./crates/api" }
+lemmy_api_crud = { version = "=0.14.2", path = "./crates/api_crud" }
+lemmy_apub = { version = "=0.14.2", path = "./crates/apub" }
+lemmy_apub_lib = { version = "=0.14.2", path = "./crates/apub_lib" }
+lemmy_utils = { version = "=0.14.2", path = "./crates/utils" }
+lemmy_db_schema = { version = "=0.14.2", path = "./crates/db_schema" }
+lemmy_db_views = { version = "=0.14.2", path = "./crates/db_views" }
+lemmy_db_views_moderator = { version = "=0.14.2", path = "./crates/db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.14.2", path = "./crates/db_views_actor" }
+lemmy_api_common = { version = "=0.14.2", path = "crates/api_common" }
+lemmy_websocket = { version = "=0.14.2", path = "./crates/websocket" }
+lemmy_routes = { version = "=0.14.2", path = "./crates/routes" }
 diesel = "1.4.8"
 diesel_migrations = "1.4.0"
 chrono = { version = "0.4.19", features = ["serde"] }
index f123dff45ed105bd531b1eac76d2bd9f0a2a2d5b..dc427a12f500dceea22541c0b56c61aeda051cfa 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 edition = "2018"
 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.14.2-rc.1", path = "../apub" }
-lemmy_apub_lib = { version = "=0.14.2-rc.1", path = "../apub_lib" }
-lemmy_utils = { version = "=0.14.2-rc.1", path = "../utils" }
-lemmy_db_schema = { version = "=0.14.2-rc.1", path = "../db_schema" }
-lemmy_db_views = { version = "=0.14.2-rc.1", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.14.2-rc.1", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.14.2-rc.1", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.14.2-rc.1", path = "../api_common" }
-lemmy_websocket = { version = "=0.14.2-rc.1", path = "../websocket" }
+lemmy_apub = { version = "=0.14.2", path = "../apub" }
+lemmy_apub_lib = { version = "=0.14.2", path = "../apub_lib" }
+lemmy_utils = { version = "=0.14.2", path = "../utils" }
+lemmy_db_schema = { version = "=0.14.2", path = "../db_schema" }
+lemmy_db_views = { version = "=0.14.2", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.14.2", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.14.2", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.14.2", path = "../api_common" }
+lemmy_websocket = { version = "=0.14.2", path = "../websocket" }
 diesel = "1.4.8"
 bcrypt = "0.10.1"
 chrono = { version = "0.4.19", features = ["serde"] }
index b57784aa3868875defd6666a32ac2023b6f5a3fb..8e43136e1d03b508003a86742b24991e3abd5a58 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api_common"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 edition = "2018"
 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.14.2-rc.1", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.14.2-rc.1", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.14.2-rc.1", path = "../db_views_actor" }
-lemmy_db_schema = { version = "=0.14.2-rc.1", path = "../db_schema" }
-lemmy_utils = { version = "=0.14.2-rc.1", path = "../utils" }
+lemmy_db_views = { version = "=0.14.2", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.14.2", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.14.2", path = "../db_views_actor" }
+lemmy_db_schema = { version = "=0.14.2", path = "../db_schema" }
+lemmy_utils = { version = "=0.14.2", path = "../utils" }
 serde = { version = "1.0.130", features = ["derive"] }
 diesel = "1.4.8"
 actix-web = { version = "4.0.0-beta.9", default-features = false, features = ["cookies"] }
index 8b5763009c51a6a137354aaf21a45d56db62ad2c..d514fc5e1d0b09ffb2b4143acc1362eaf88fcad0 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api_crud"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 edition = "2018"
 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.14.2-rc.1", path = "../apub" }
-lemmy_apub_lib = { version = "=0.14.2-rc.1", path = "../apub_lib" }
-lemmy_utils = { version = "=0.14.2-rc.1", path = "../utils" }
-lemmy_db_schema = { version = "=0.14.2-rc.1", path = "../db_schema" }
-lemmy_db_views = { version = "=0.14.2-rc.1", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.14.2-rc.1", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.14.2-rc.1", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.14.2-rc.1", path = "../api_common" }
-lemmy_websocket = { version = "=0.14.2-rc.1", path = "../websocket" }
+lemmy_apub = { version = "=0.14.2", path = "../apub" }
+lemmy_apub_lib = { version = "=0.14.2", path = "../apub_lib" }
+lemmy_utils = { version = "=0.14.2", path = "../utils" }
+lemmy_db_schema = { version = "=0.14.2", path = "../db_schema" }
+lemmy_db_views = { version = "=0.14.2", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.14.2", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.14.2", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.14.2", path = "../api_common" }
+lemmy_websocket = { version = "=0.14.2", path = "../websocket" }
 diesel = "1.4.8"
 bcrypt = "0.10.1"
 chrono = { version = "0.4.19", features = ["serde"] }
index 760cc952fe1688afe470a3d8625cd2feba084c15..8bc9071fad2406620ed47c25484950520fb75faa 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 edition = "2018"
 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.14.2-rc.1", path = "../utils" }
-lemmy_apub_lib = { version = "=0.14.2-rc.1", path = "../apub_lib" }
-lemmy_db_schema = { version = "=0.14.2-rc.1", path = "../db_schema" }
-lemmy_db_views = { version = "=0.14.2-rc.1", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.14.2-rc.1", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.14.2-rc.1", path = "../api_common" }
-lemmy_websocket = { version = "=0.14.2-rc.1", path = "../websocket" }
+lemmy_utils = { version = "=0.14.2", path = "../utils" }
+lemmy_apub_lib = { version = "=0.14.2", path = "../apub_lib" }
+lemmy_db_schema = { version = "=0.14.2", path = "../db_schema" }
+lemmy_db_views = { version = "=0.14.2", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.14.2", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.14.2", path = "../api_common" }
+lemmy_websocket = { version = "=0.14.2", path = "../websocket" }
 diesel = "1.4.8"
 activitystreams-kinds = "0.1.2"
 bcrypt = "0.10.1"
index 2bf1f7ce7e31e1133695031396cfc4169e66d120..0ef638e2c5fea48c3e4d720ebdcf9a00b5095bdb 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub_lib"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 edition = "2018"
 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.14.2-rc.1", path = "../utils" }
-lemmy_apub_lib_derive = { version = "=0.14.2-rc.1", path = "../apub_lib_derive" }
+lemmy_utils = { version = "=0.14.2", path = "../utils" }
+lemmy_apub_lib_derive = { version = "=0.14.2", path = "../apub_lib_derive" }
 activitystreams = "0.7.0-alpha.11"
 serde = { version = "1.0.130", features = ["derive"] }
 async-trait = "0.1.51"
index 7964bbe41d334447dacf5dbd72d1e9ce59d045d2..7af7943f233632d156ddda42f4628f851773c8bc 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub_lib_derive"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 edition = "2018"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
index 9dbcdc3c5f9dd253f8a18a84803d125d1f257325..c6838d3327de45fa2247c381cf865e08a6ad5a47 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_schema"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 edition = "2018"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -11,8 +11,8 @@ documentation = "https://join-lemmy.org/docs/en/index.html"
 doctest = false
 
 [dependencies]
-lemmy_utils = { version = "=0.14.2-rc.1", path = "../utils" }
-lemmy_apub_lib = { version = "=0.14.2-rc.1", path = "../apub_lib" }
+lemmy_utils = { version = "=0.14.2", path = "../utils" }
+lemmy_apub_lib = { version = "=0.14.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 192bea8d36cb976db8f560387f793edc91ebb5e0..aee15de8d5c016516d96eddf072811b899a1ef4c 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 edition = "2018"
 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.14.2-rc.1", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.14.2", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.130", features = ["derive"] }
 tracing = "0.1.29"
index 049c5797b4210963cf2a629dc7cf9351b0a6091b..b80a67ab31e7f6abedf55cd8e0144538c990b3bc 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views_actor"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 edition = "2018"
 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.14.2-rc.1", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.14.2", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.130", features = ["derive"] }
index 525bbb0cf49b144d60cf8f65875c732a49a1c886..b0ef3b8abf714e6f64933ccb1aef6d07236225ae 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views_moderator"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 edition = "2018"
 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.14.2-rc.1", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.14.2", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.130", features = ["derive"] }
index e540406fa659387e2bec5d36f20f33d36d119937..ecaeec6d30c474eae1d4e4a4e2e07bd4e38fa5a4 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_routes"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 edition = "2018"
 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.14.2-rc.1", path = "../utils" }
-lemmy_websocket = { version = "=0.14.2-rc.1", path = "../websocket" }
-lemmy_db_views = { version = "=0.14.2-rc.1", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.14.2-rc.1", path = "../db_views_actor" }
-lemmy_db_schema = { version = "=0.14.2-rc.1", path = "../db_schema" }
-lemmy_api_common = { version = "=0.14.2-rc.1", path = "../api_common" }
-lemmy_apub = { version = "=0.14.2-rc.1", path = "../apub" }
+lemmy_utils = { version = "=0.14.2", path = "../utils" }
+lemmy_websocket = { version = "=0.14.2", path = "../websocket" }
+lemmy_db_views = { version = "=0.14.2", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.14.2", path = "../db_views_actor" }
+lemmy_db_schema = { version = "=0.14.2", path = "../db_schema" }
+lemmy_api_common = { version = "=0.14.2", path = "../api_common" }
+lemmy_apub = { version = "=0.14.2", path = "../apub" }
 diesel = "1.4.8"
 actix = "0.12.0"
 actix-web = { version = "4.0.0-beta.9", default-features = false, features = ["rustls"] }
index cab3678cb3177e822ee2abfadcf33ad8c1a2e27a..ea9b7a111187025cee910498178eda85b5da1bc9 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_utils"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 edition = "2018"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
index e1f7109e5a7c2f647a5d85195d7d598bb167dea2..1bf5a8173d487f731d93055a9870fecdd4a557aa 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_websocket"
-version = "0.14.2-rc.1"
+version = "0.14.2"
 edition = "2018"
 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.14.2-rc.1", path = "../utils" }
-lemmy_api_common = { version = "=0.14.2-rc.1", path = "../api_common" }
-lemmy_db_schema = { version = "=0.14.2-rc.1", path = "../db_schema" }
-lemmy_db_views = { version = "=0.14.2-rc.1", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.14.2-rc.1", path = "../db_views_actor" }
+lemmy_utils = { version = "=0.14.2", path = "../utils" }
+lemmy_api_common = { version = "=0.14.2", path = "../api_common" }
+lemmy_db_schema = { version = "=0.14.2", path = "../db_schema" }
+lemmy_db_views = { version = "=0.14.2", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.14.2", path = "../db_views_actor" }
 reqwest = { version = "0.11.4", features = ["json"] }
 tracing = "0.1.29"
 rand = "0.8.4"
index 18a125e0d731b5ce0d48a652366147ed2b93a2ba..5281ec771b50574ac9fc5fa58803a99be4b6e7d1 100644 (file)
@@ -26,7 +26,7 @@ services:
       - postgres
 
   lemmy-ui:
-    image: dessalines/lemmy-ui:0.14.1
+    image: dessalines/lemmy-ui:0.14.2
     restart: always
     environment:
       - LEMMY_INTERNAL_HOST=lemmy:8536
index cf01bc9b593d31dd95a39e16af30ffc0edca6d34..14e39c3096f473a530bffd55bd4f3554be170aa6 100644 (file)
@@ -28,7 +28,7 @@ services:
       - ./volumes/pictrs_alpha:/mnt
 
   lemmy-alpha-ui:
-    image: dessalines/lemmy-ui:0.14.1
+    image: dessalines/lemmy-ui:0.14.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.14.1
+    image: dessalines/lemmy-ui:0.14.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.14.1
+    image: dessalines/lemmy-ui:0.14.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.14.1
+    image: dessalines/lemmy-ui:0.14.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.14.1
+    image: dessalines/lemmy-ui:0.14.2
     environment:
       - LEMMY_INTERNAL_HOST=lemmy-epsilon:8581
       - LEMMY_EXTERNAL_HOST=localhost:8581
index eade097d12e2e0fa812115da496f20ab347f26c4..a8cc5c180113d0ca9f19446fbb0a748dbc4408f4 100644 (file)
@@ -12,7 +12,7 @@ services:
     restart: always
 
   lemmy:
-    image: dessalines/lemmy:0.14.1
+    image: dessalines/lemmy:0.14.2
     ports:
       - "127.0.0.1:8536:8536"
     restart: always
@@ -25,7 +25,7 @@ services:
       - pictrs
 
   lemmy-ui:
-    image: dessalines/lemmy-ui:0.14.1
+    image: dessalines/lemmy-ui:0.14.2
     ports:
       - "127.0.0.1:1235:1234"
     restart: always