Version 0.16.4

This commit is contained in:
Dessalines 2022-05-26 18:43:44 -04:00
parent a7074c8407
commit 00bf9b4e8f
20 changed files with 98 additions and 98 deletions

28
Cargo.lock generated
View file

@ -1762,7 +1762,7 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "lemmy_api"
version = "0.16.4-rc.10"
version = "0.16.4"
dependencies = [
"actix-web",
"anyhow",
@ -1789,7 +1789,7 @@ dependencies = [
[[package]]
name = "lemmy_api_common"
version = "0.16.4-rc.10"
version = "0.16.4"
dependencies = [
"actix-rt",
"actix-web",
@ -1813,7 +1813,7 @@ dependencies = [
[[package]]
name = "lemmy_api_crud"
version = "0.16.4-rc.10"
version = "0.16.4"
dependencies = [
"actix-web",
"async-trait",
@ -1835,7 +1835,7 @@ dependencies = [
[[package]]
name = "lemmy_apub"
version = "0.16.4-rc.10"
version = "0.16.4"
dependencies = [
"activitystreams-kinds",
"actix",
@ -1875,7 +1875,7 @@ dependencies = [
[[package]]
name = "lemmy_apub_lib"
version = "0.16.4-rc.10"
version = "0.16.4"
dependencies = [
"actix-web",
"anyhow",
@ -1902,7 +1902,7 @@ dependencies = [
[[package]]
name = "lemmy_apub_lib_derive"
version = "0.16.4-rc.10"
version = "0.16.4"
dependencies = [
"proc-macro2 1.0.36",
"quote 1.0.17",
@ -1912,7 +1912,7 @@ dependencies = [
[[package]]
name = "lemmy_db_schema"
version = "0.16.4-rc.10"
version = "0.16.4"
dependencies = [
"bcrypt",
"chrono",
@ -1934,7 +1934,7 @@ dependencies = [
[[package]]
name = "lemmy_db_views"
version = "0.16.4-rc.10"
version = "0.16.4"
dependencies = [
"diesel",
"lemmy_db_schema",
@ -1945,7 +1945,7 @@ dependencies = [
[[package]]
name = "lemmy_db_views_actor"
version = "0.16.4-rc.10"
version = "0.16.4"
dependencies = [
"diesel",
"lemmy_db_schema",
@ -1954,7 +1954,7 @@ dependencies = [
[[package]]
name = "lemmy_db_views_moderator"
version = "0.16.4-rc.10"
version = "0.16.4"
dependencies = [
"diesel",
"lemmy_db_schema",
@ -1963,7 +1963,7 @@ dependencies = [
[[package]]
name = "lemmy_routes"
version = "0.16.4-rc.10"
version = "0.16.4"
dependencies = [
"actix-web",
"anyhow",
@ -1990,7 +1990,7 @@ dependencies = [
[[package]]
name = "lemmy_server"
version = "0.16.4-rc.10"
version = "0.16.4"
dependencies = [
"actix",
"actix-web",
@ -2026,7 +2026,7 @@ dependencies = [
[[package]]
name = "lemmy_utils"
version = "0.16.4-rc.10"
version = "0.16.4"
dependencies = [
"actix-web",
"anyhow",
@ -2062,7 +2062,7 @@ dependencies = [
[[package]]
name = "lemmy_websocket"
version = "0.16.4-rc.10"
version = "0.16.4"
dependencies = [
"actix",
"actix-web",

View file

@ -1,6 +1,6 @@
[package]
name = "lemmy_server"
version = "0.16.4-rc.10"
version = "0.16.4"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
@ -36,15 +36,15 @@ members = [
]
[dependencies]
lemmy_api = { version = "=0.16.4-rc.10", path = "./crates/api" }
lemmy_api_crud = { version = "=0.16.4-rc.10", path = "./crates/api_crud" }
lemmy_apub = { version = "=0.16.4-rc.10", path = "./crates/apub" }
lemmy_apub_lib = { version = "=0.16.4-rc.10", path = "./crates/apub_lib" }
lemmy_utils = { version = "=0.16.4-rc.10", path = "./crates/utils" }
lemmy_db_schema = { version = "=0.16.4-rc.10", path = "./crates/db_schema" }
lemmy_api_common = { version = "=0.16.4-rc.10", path = "crates/api_common" }
lemmy_websocket = { version = "=0.16.4-rc.10", path = "./crates/websocket" }
lemmy_routes = { version = "=0.16.4-rc.10", path = "./crates/routes" }
lemmy_api = { version = "=0.16.4", path = "./crates/api" }
lemmy_api_crud = { version = "=0.16.4", path = "./crates/api_crud" }
lemmy_apub = { version = "=0.16.4", path = "./crates/apub" }
lemmy_apub_lib = { version = "=0.16.4", path = "./crates/apub_lib" }
lemmy_utils = { version = "=0.16.4", path = "./crates/utils" }
lemmy_db_schema = { version = "=0.16.4", path = "./crates/db_schema" }
lemmy_api_common = { version = "=0.16.4", path = "crates/api_common" }
lemmy_websocket = { version = "=0.16.4", path = "./crates/websocket" }
lemmy_routes = { version = "=0.16.4", path = "./crates/routes" }
diesel = "1.4.8"
diesel_migrations = "1.4.0"
serde = { version = "1.0.136", features = ["derive"] }

View file

@ -16,7 +16,7 @@
"eslint": "^7.30.0",
"eslint-plugin-jane": "^9.0.3",
"jest": "^27.0.6",
"lemmy-js-client": "0.16.0-rc.1",
"lemmy-js-client": "0.16.4",
"node-fetch": "^2.6.1",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",

View file

@ -3076,10 +3076,10 @@ language-tags@^1.0.5:
dependencies:
language-subtag-registry "~0.3.2"
lemmy-js-client@0.16.0-rc.1:
version "0.16.0-rc.1"
resolved "https://registry.yarnpkg.com/lemmy-js-client/-/lemmy-js-client-0.16.0-rc.1.tgz#14c4a526abf4b171c8afe4efbe2a62dcaf6a6f17"
integrity sha512-0hR/gHHsokp46whIHGMBQO2zBKWM7bT6mwKNMZxPvyJo+YW9EbKTO5edjF5E4v8nf3FuIE+gFtm5NFAjCaeWJg==
lemmy-js-client@0.16.4:
version "0.16.4"
resolved "https://registry.yarnpkg.com/lemmy-js-client/-/lemmy-js-client-0.16.4.tgz#d24bae2b0d93c4d13eb4a5e5ddceaa2999f94740"
integrity sha512-EFHl6tbFZ0jk8VE68bgZOXoWuNHVzfcsyoAEZeHP6f8PkQ1g9zjxB/e3b5cIG2fFzOLsYIDh2w/SJy21WkFiiA==
leven@^3.1.0:
version "3.1.0"

View file

@ -1,6 +1,6 @@
[package]
name = "lemmy_api"
version = "0.16.4-rc.10"
version = "0.16.4"
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.4-rc.10", path = "../apub" }
lemmy_apub_lib = { version = "=0.16.4-rc.10", path = "../apub_lib" }
lemmy_utils = { version = "=0.16.4-rc.10", path = "../utils" }
lemmy_db_schema = { version = "=0.16.4-rc.10", path = "../db_schema", features = ["full"] }
lemmy_db_views = { version = "=0.16.4-rc.10", path = "../db_views", features = ["full"] }
lemmy_db_views_moderator = { version = "=0.16.4-rc.10", path = "../db_views_moderator", features = ["full"] }
lemmy_db_views_actor = { version = "=0.16.4-rc.10", path = "../db_views_actor", features = ["full"] }
lemmy_api_common = { version = "=0.16.4-rc.10", path = "../api_common", features = ["full"] }
lemmy_websocket = { version = "=0.16.4-rc.10", path = "../websocket" }
lemmy_apub = { version = "=0.16.4", path = "../apub" }
lemmy_apub_lib = { version = "=0.16.4", path = "../apub_lib" }
lemmy_utils = { version = "=0.16.4", path = "../utils" }
lemmy_db_schema = { version = "=0.16.4", path = "../db_schema", features = ["full"] }
lemmy_db_views = { version = "=0.16.4", path = "../db_views", features = ["full"] }
lemmy_db_views_moderator = { version = "=0.16.4", path = "../db_views_moderator", features = ["full"] }
lemmy_db_views_actor = { version = "=0.16.4", path = "../db_views_actor", features = ["full"] }
lemmy_api_common = { version = "=0.16.4", path = "../api_common", features = ["full"] }
lemmy_websocket = { version = "=0.16.4", path = "../websocket" }
diesel = "1.4.8"
bcrypt = "0.12.1"
chrono = { version = "0.4.19", features = ["serde"], default-features = false }

View file

@ -1,6 +1,6 @@
[package]
name = "lemmy_api_common"
version = "0.16.4-rc.10"
version = "0.16.4"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
@ -18,11 +18,11 @@ full = ["diesel", "tracing", "rosetta-i18n", "chrono", "actix-web", "lemmy_utils
"percent-encoding", "encoding", "reqwest-middleware", "webpage"]
[dependencies]
lemmy_db_views = { version = "=0.16.4-rc.10", path = "../db_views" }
lemmy_db_views_moderator = { version = "=0.16.4-rc.10", path = "../db_views_moderator" }
lemmy_db_views_actor = { version = "=0.16.4-rc.10", path = "../db_views_actor" }
lemmy_db_schema = { version = "=0.16.4-rc.10", path = "../db_schema", default-features = false }
lemmy_utils = { version = "=0.16.4-rc.10", path = "../utils", optional = true }
lemmy_db_views = { version = "=0.16.4", path = "../db_views" }
lemmy_db_views_moderator = { version = "=0.16.4", path = "../db_views_moderator" }
lemmy_db_views_actor = { version = "=0.16.4", path = "../db_views_actor" }
lemmy_db_schema = { version = "=0.16.4", path = "../db_schema", default-features = false }
lemmy_utils = { version = "=0.16.4", path = "../utils", optional = true }
serde = { version = "1.0.136", features = ["derive"] }
url = "2.2.2"
actix-web = { version = "4.0.1", default-features = false, features = ["cookies"], optional = true }

View file

@ -1,6 +1,6 @@
[package]
name = "lemmy_api_crud"
version = "0.16.4-rc.10"
version = "0.16.4"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
@ -8,14 +8,14 @@ homepage = "https://join-lemmy.org/"
documentation = "https://join-lemmy.org/docs/en/index.html"
[dependencies]
lemmy_apub = { version = "=0.16.4-rc.10", path = "../apub" }
lemmy_apub_lib = { version = "=0.16.4-rc.10", path = "../apub_lib" }
lemmy_utils = { version = "=0.16.4-rc.10", path = "../utils" }
lemmy_db_schema = { version = "=0.16.4-rc.10", path = "../db_schema", features = ["full"] }
lemmy_db_views = { version = "=0.16.4-rc.10", path = "../db_views", features = ["full"] }
lemmy_db_views_actor = { version = "=0.16.4-rc.10", path = "../db_views_actor", features = ["full"] }
lemmy_api_common = { version = "=0.16.4-rc.10", path = "../api_common", features = ["full"] }
lemmy_websocket = { version = "=0.16.4-rc.10", path = "../websocket" }
lemmy_apub = { version = "=0.16.4", path = "../apub" }
lemmy_apub_lib = { version = "=0.16.4", path = "../apub_lib" }
lemmy_utils = { version = "=0.16.4", path = "../utils" }
lemmy_db_schema = { version = "=0.16.4", path = "../db_schema", features = ["full"] }
lemmy_db_views = { version = "=0.16.4", path = "../db_views", features = ["full"] }
lemmy_db_views_actor = { version = "=0.16.4", path = "../db_views_actor", features = ["full"] }
lemmy_api_common = { version = "=0.16.4", path = "../api_common", features = ["full"] }
lemmy_websocket = { version = "=0.16.4", path = "../websocket" }
bcrypt = "0.12.1"
serde_json = { version = "1.0.79", features = ["preserve_order"] }
serde = { version = "1.0.136", features = ["derive"] }

View file

@ -1,6 +1,6 @@
[package]
name = "lemmy_apub"
version = "0.16.4-rc.10"
version = "0.16.4"
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.4-rc.10", path = "../utils" }
lemmy_apub_lib = { version = "=0.16.4-rc.10", path = "../apub_lib" }
lemmy_db_schema = { version = "=0.16.4-rc.10", path = "../db_schema", features = ["full"] }
lemmy_db_views = { version = "=0.16.4-rc.10", path = "../db_views", features = ["full"] }
lemmy_db_views_actor = { version = "=0.16.4-rc.10", path = "../db_views_actor", features = ["full"] }
lemmy_api_common = { version = "=0.16.4-rc.10", path = "../api_common", features = ["full"] }
lemmy_websocket = { version = "=0.16.4-rc.10", path = "../websocket" }
lemmy_utils = { version = "=0.16.4", path = "../utils" }
lemmy_apub_lib = { version = "=0.16.4", path = "../apub_lib" }
lemmy_db_schema = { version = "=0.16.4", path = "../db_schema", features = ["full"] }
lemmy_db_views = { version = "=0.16.4", path = "../db_views", features = ["full"] }
lemmy_db_views_actor = { version = "=0.16.4", path = "../db_views_actor", features = ["full"] }
lemmy_api_common = { version = "=0.16.4", path = "../api_common", features = ["full"] }
lemmy_websocket = { version = "=0.16.4", path = "../websocket" }
diesel = "1.4.8"
activitystreams-kinds = "0.2.1"
chrono = { version = "0.4.19", features = ["serde"], default-features = false }

View file

@ -1,6 +1,6 @@
[package]
name = "lemmy_apub_lib"
version = "0.16.4-rc.10"
version = "0.16.4"
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.4-rc.10", path = "../utils" }
lemmy_apub_lib_derive = { version = "=0.16.4-rc.10", path = "../apub_lib_derive" }
lemmy_utils = { version = "=0.16.4", path = "../utils" }
lemmy_apub_lib_derive = { version = "=0.16.4", path = "../apub_lib_derive" }
chrono = { version = "0.4.19", default-features = false }
serde = { version = "1.0.136", features = ["derive"] }
async-trait = "0.1.53"

View file

@ -1,6 +1,6 @@
[package]
name = "lemmy_apub_lib_derive"
version = "0.16.4-rc.10"
version = "0.16.4"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"

View file

@ -1,6 +1,6 @@
[package]
name = "lemmy_db_schema"
version = "0.16.4-rc.10"
version = "0.16.4"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
@ -23,8 +23,8 @@ url = { version = "2.2.2", features = ["serde"] }
strum = "0.24.0"
strum_macros = "0.24.0"
serde_json = { version = "1.0.79", features = ["preserve_order"], optional = true }
lemmy_apub_lib = { version = "=0.16.4-rc.10", path = "../apub_lib", optional = true }
lemmy_utils = { version = "=0.16.4-rc.10", path = "../utils", optional = true }
lemmy_apub_lib = { version = "=0.16.4", path = "../apub_lib", optional = true }
lemmy_utils = { version = "=0.16.4", path = "../utils", optional = true }
bcrypt = { version = "0.12.1", optional = true }
diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"], optional = true }
diesel-derive-newtype = { version = "0.1.2", optional = true }

View file

@ -1,6 +1,6 @@
[package]
name = "lemmy_db_views"
version = "0.16.4-rc.10"
version = "0.16.4"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
@ -14,7 +14,7 @@ doctest = false
full = ["lemmy_db_schema/full", "diesel", "tracing"]
[dependencies]
lemmy_db_schema = { version = "=0.16.4-rc.10", path = "../db_schema" }
lemmy_db_schema = { version = "=0.16.4", path = "../db_schema" }
diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"], optional = true }
serde = { version = "1.0.136", features = ["derive"] }
tracing = { version = "0.1.32", optional = true }

View file

@ -1,6 +1,6 @@
[package]
name = "lemmy_db_views_actor"
version = "0.16.4-rc.10"
version = "0.16.4"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
@ -14,6 +14,6 @@ doctest = false
full = ["lemmy_db_schema/full", "diesel"]
[dependencies]
lemmy_db_schema = { version = "=0.16.4-rc.10", path = "../db_schema" }
lemmy_db_schema = { version = "=0.16.4", path = "../db_schema" }
diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"], optional = true }
serde = { version = "1.0.136", features = ["derive"] }

View file

@ -1,6 +1,6 @@
[package]
name = "lemmy_db_views_moderator"
version = "0.16.4-rc.10"
version = "0.16.4"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
@ -14,6 +14,6 @@ doctest = false
full = ["lemmy_db_schema/full", "diesel"]
[dependencies]
lemmy_db_schema = { version = "=0.16.4-rc.10", path = "../db_schema" }
lemmy_db_schema = { version = "=0.16.4", path = "../db_schema" }
diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"], optional = true }
serde = { version = "1.0.136", features = ["derive"] }

View file

@ -1,6 +1,6 @@
[package]
name = "lemmy_routes"
version = "0.16.4-rc.10"
version = "0.16.4"
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.4-rc.10", path = "../utils" }
lemmy_websocket = { version = "=0.16.4-rc.10", path = "../websocket" }
lemmy_db_views = { version = "=0.16.4-rc.10", path = "../db_views" }
lemmy_db_views_actor = { version = "=0.16.4-rc.10", path = "../db_views_actor" }
lemmy_db_schema = { version = "=0.16.4-rc.10", path = "../db_schema" }
lemmy_api_common = { version = "=0.16.4-rc.10", path = "../api_common" }
lemmy_apub = { version = "=0.16.4-rc.10", path = "../apub" }
lemmy_utils = { version = "=0.16.4", path = "../utils" }
lemmy_websocket = { version = "=0.16.4", path = "../websocket" }
lemmy_db_views = { version = "=0.16.4", path = "../db_views" }
lemmy_db_views_actor = { version = "=0.16.4", path = "../db_views_actor" }
lemmy_db_schema = { version = "=0.16.4", path = "../db_schema" }
lemmy_api_common = { version = "=0.16.4", path = "../api_common" }
lemmy_apub = { version = "=0.16.4", path = "../apub" }
diesel = "1.4.8"
actix-web = { version = "4.0.1", default-features = false, features = ["rustls"] }
anyhow = "1.0.56"

View file

@ -1,6 +1,6 @@
[package]
name = "lemmy_utils"
version = "0.16.4-rc.10"
version = "0.16.4"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"

View file

@ -1,6 +1,6 @@
[package]
name = "lemmy_websocket"
version = "0.16.4-rc.10"
version = "0.16.4"
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.4-rc.10", path = "../utils" }
lemmy_api_common = { version = "=0.16.4-rc.10", path = "../api_common" }
lemmy_db_schema = { version = "=0.16.4-rc.10", path = "../db_schema", features = ["full"] }
lemmy_db_views = { version = "=0.16.4-rc.10", path = "../db_views", features = ["full"] }
lemmy_db_views_actor = { version = "=0.16.4-rc.10", path = "../db_views_actor", features = ["full"] }
lemmy_utils = { version = "=0.16.4", path = "../utils" }
lemmy_api_common = { version = "=0.16.4", path = "../api_common" }
lemmy_db_schema = { version = "=0.16.4", path = "../db_schema", features = ["full"] }
lemmy_db_views = { version = "=0.16.4", path = "../db_views", features = ["full"] }
lemmy_db_views_actor = { version = "=0.16.4", path = "../db_views_actor", features = ["full"] }
reqwest-middleware = "0.1.5"
tracing = "0.1.32"
rand = "0.8.5"

View file

@ -28,7 +28,7 @@ services:
- otel
lemmy-ui:
image: dessalines/lemmy-ui:0.16.3
image: dessalines/lemmy-ui:0.16.4
restart: always
environment:
- LEMMY_INTERNAL_HOST=lemmy:8536

View file

@ -28,7 +28,7 @@ services:
- ./volumes/pictrs_alpha:/mnt
lemmy-alpha-ui:
image: dessalines/lemmy-ui:0.16.3
image: dessalines/lemmy-ui:0.16.4
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.3
image: dessalines/lemmy-ui:0.16.4
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.3
image: dessalines/lemmy-ui:0.16.4
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.3
image: dessalines/lemmy-ui:0.16.4
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.3
image: dessalines/lemmy-ui:0.16.4
environment:
- LEMMY_INTERNAL_HOST=lemmy-epsilon:8581
- LEMMY_EXTERNAL_HOST=localhost:8581

View file

@ -12,7 +12,7 @@ services:
restart: always
lemmy:
image: dessalines/lemmy:0.16.3
image: dessalines/lemmy:0.16.4
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.3
image: dessalines/lemmy-ui:0.16.4
ports:
- "127.0.0.1:1235:1234"
restart: always