]> Untitled Git - lemmy.git/commitdiff
Trying to add docker:latest. Fixes #1959 (#1960)
authorDessalines <dessalines@users.noreply.github.com>
Fri, 26 Nov 2021 12:38:55 +0000 (07:38 -0500)
committerGitHub <noreply@github.com>
Fri, 26 Nov 2021 12:38:55 +0000 (12:38 +0000)
* Trying to add docker:latest. Fixes #1959

* Version 0.14.4-rc.3

* Trying to fix clippy on crate build

* Version 0.14.4-rc.4

17 files changed:
.drone.yml
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/routes/src/nodeinfo.rs
crates/utils/Cargo.toml
crates/websocket/Cargo.toml

index 382dfb924962f6ce6a4b7c4165c0f1f9d098cb5f..001714545f27dd3a2662f55af73855b513758481 100644 (file)
@@ -80,7 +80,7 @@ steps:
 
   - name: publish release docker manifest
     image: plugins/manifest
-    settings: 
+    settings:
       username:
         from_secret: docker_username
       password:
@@ -95,6 +95,23 @@ steps:
       ref:
         - refs/tags/*
 
+  - name: publish latest release docker manifest
+    image: plugins/manifest
+    settings:
+      username:
+        from_secret: docker_username
+      password:
+        from_secret: docker_password
+      target: "dessalines/lemmy:latest"
+      template: "dessalines/lemmy:${DRONE_TAG}-OS-ARCH"
+      platforms:
+        - linux/amd64
+        - linux/arm64
+      ignore_missing: true
+    when:
+      ref:
+        - refs/tags/*
+
   # using https://github.com/pksunkara/cargo-workspaces
   - name: publish to crates.io
     image: rustlang/rust:nightly
@@ -192,7 +209,7 @@ steps:
 
   - name: publish release docker manifest
     image: plugins/manifest
-    settings: 
+    settings:
       username:
         from_secret: docker_username
       password:
@@ -207,6 +224,23 @@ steps:
       ref:
         - refs/tags/*
 
+  - name: publish latest release docker manifest
+    image: plugins/manifest
+    settings:
+      username:
+        from_secret: docker_username
+      password:
+        from_secret: docker_password
+      target: "dessalines/lemmy:latest"
+      template: "dessalines/lemmy:${DRONE_TAG}-OS-ARCH"
+      platforms:
+        - linux/amd64
+        - linux/arm64
+      ignore_missing: true
+    when:
+      ref:
+        - refs/tags/*
+
 # TODO temporarily disable arm tests
 # services:
 #   - name: database
index d6fd15a7fc381320f7525e562f8c0e75767c95c8..5e879b8a2cb3a94619ff46f486196f527f7fd40e 100644 (file)
@@ -1722,7 +1722,7 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
 
 [[package]]
 name = "lemmy_api"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 dependencies = [
  "actix",
  "actix-rt",
@@ -1765,7 +1765,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_api_common"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 dependencies = [
  "actix-web",
  "chrono",
@@ -1782,7 +1782,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_api_crud"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 dependencies = [
  "actix",
  "actix-rt",
@@ -1826,7 +1826,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 dependencies = [
  "activitystreams-kinds",
  "actix",
@@ -1872,7 +1872,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub_lib"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 dependencies = [
  "activitystreams",
  "actix-web",
@@ -1898,7 +1898,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub_lib_derive"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 dependencies = [
  "proc-macro2 1.0.32",
  "quote 1.0.10",
@@ -1908,7 +1908,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_schema"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 dependencies = [
  "bcrypt",
  "chrono",
@@ -1930,7 +1930,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -1942,7 +1942,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views_actor"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -1951,7 +1951,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views_moderator"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -1960,7 +1960,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_routes"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 dependencies = [
  "actix",
  "actix-http",
@@ -1987,7 +1987,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_server"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 dependencies = [
  "activitystreams",
  "actix",
@@ -2029,7 +2029,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_utils"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 dependencies = [
  "actix-rt",
  "actix-web",
@@ -2066,7 +2066,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_websocket"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 dependencies = [
  "actix",
  "actix-web",
index 1a5c07cb22e8534b3a66e78e0265fcf754e3500c..0d38c2e7fc17eb6ed8e6b9ed6e6b5c7e03350121 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_server"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 edition = "2018"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -31,18 +31,18 @@ members = [
 ]
 
 [dependencies]
-lemmy_api = { version = "=0.14.3", path = "./crates/api" }
-lemmy_api_crud = { version = "=0.14.3", path = "./crates/api_crud" }
-lemmy_apub = { version = "=0.14.3", path = "./crates/apub" }
-lemmy_apub_lib = { version = "=0.14.3", path = "./crates/apub_lib" }
-lemmy_utils = { version = "=0.14.3", path = "./crates/utils" }
-lemmy_db_schema = { version = "=0.14.3", path = "./crates/db_schema" }
-lemmy_db_views = { version = "=0.14.3", path = "./crates/db_views" }
-lemmy_db_views_moderator = { version = "=0.14.3", path = "./crates/db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.14.3", path = "./crates/db_views_actor" }
-lemmy_api_common = { version = "=0.14.3", path = "crates/api_common" }
-lemmy_websocket = { version = "=0.14.3", path = "./crates/websocket" }
-lemmy_routes = { version = "=0.14.3", path = "./crates/routes" }
+lemmy_api = { version = "=0.14.4-rc.4", path = "./crates/api" }
+lemmy_api_crud = { version = "=0.14.4-rc.4", path = "./crates/api_crud" }
+lemmy_apub = { version = "=0.14.4-rc.4", path = "./crates/apub" }
+lemmy_apub_lib = { version = "=0.14.4-rc.4", path = "./crates/apub_lib" }
+lemmy_utils = { version = "=0.14.4-rc.4", path = "./crates/utils" }
+lemmy_db_schema = { version = "=0.14.4-rc.4", path = "./crates/db_schema" }
+lemmy_db_views = { version = "=0.14.4-rc.4", path = "./crates/db_views" }
+lemmy_db_views_moderator = { version = "=0.14.4-rc.4", path = "./crates/db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.14.4-rc.4", path = "./crates/db_views_actor" }
+lemmy_api_common = { version = "=0.14.4-rc.4", path = "crates/api_common" }
+lemmy_websocket = { version = "=0.14.4-rc.4", path = "./crates/websocket" }
+lemmy_routes = { version = "=0.14.4-rc.4", path = "./crates/routes" }
 diesel = "1.4.8"
 diesel_migrations = "1.4.0"
 chrono = { version = "0.4.19", features = ["serde"] }
index 8235914540dec2fb25a9bf8391162c4a845bfd71..96b47f4647101d94ad7bd00cc5cfa522568ba344 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 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.3", path = "../apub" }
-lemmy_apub_lib = { version = "=0.14.3", path = "../apub_lib" }
-lemmy_utils = { version = "=0.14.3", path = "../utils" }
-lemmy_db_schema = { version = "=0.14.3", path = "../db_schema" }
-lemmy_db_views = { version = "=0.14.3", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.14.3", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.14.3", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.14.3", path = "../api_common" }
-lemmy_websocket = { version = "=0.14.3", path = "../websocket" }
+lemmy_apub = { version = "=0.14.4-rc.4", path = "../apub" }
+lemmy_apub_lib = { version = "=0.14.4-rc.4", path = "../apub_lib" }
+lemmy_utils = { version = "=0.14.4-rc.4", path = "../utils" }
+lemmy_db_schema = { version = "=0.14.4-rc.4", path = "../db_schema" }
+lemmy_db_views = { version = "=0.14.4-rc.4", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.14.4-rc.4", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.14.4-rc.4", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.14.4-rc.4", path = "../api_common" }
+lemmy_websocket = { version = "=0.14.4-rc.4", path = "../websocket" }
 diesel = "1.4.8"
 bcrypt = "0.10.1"
 chrono = { version = "0.4.19", features = ["serde"] }
index 93290bb148b1a44eb66a189dfb5873c67a52babe..078987eb2a144c9b3b1776ed85f5c7eff8e99184 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api_common"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 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.3", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.14.3", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.14.3", path = "../db_views_actor" }
-lemmy_db_schema = { version = "=0.14.3", path = "../db_schema" }
-lemmy_utils = { version = "=0.14.3", path = "../utils" }
+lemmy_db_views = { version = "=0.14.4-rc.4", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.14.4-rc.4", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.14.4-rc.4", path = "../db_views_actor" }
+lemmy_db_schema = { version = "=0.14.4-rc.4", path = "../db_schema" }
+lemmy_utils = { version = "=0.14.4-rc.4", 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 33954e6ec9461a4edc37c045f10f4d34ade9c80e..a6d116573375d7c2ea85426d0f8f57469b698a56 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api_crud"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 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.3", path = "../apub" }
-lemmy_apub_lib = { version = "=0.14.3", path = "../apub_lib" }
-lemmy_utils = { version = "=0.14.3", path = "../utils" }
-lemmy_db_schema = { version = "=0.14.3", path = "../db_schema" }
-lemmy_db_views = { version = "=0.14.3", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.14.3", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.14.3", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.14.3", path = "../api_common" }
-lemmy_websocket = { version = "=0.14.3", path = "../websocket" }
+lemmy_apub = { version = "=0.14.4-rc.4", path = "../apub" }
+lemmy_apub_lib = { version = "=0.14.4-rc.4", path = "../apub_lib" }
+lemmy_utils = { version = "=0.14.4-rc.4", path = "../utils" }
+lemmy_db_schema = { version = "=0.14.4-rc.4", path = "../db_schema" }
+lemmy_db_views = { version = "=0.14.4-rc.4", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.14.4-rc.4", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.14.4-rc.4", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.14.4-rc.4", path = "../api_common" }
+lemmy_websocket = { version = "=0.14.4-rc.4", path = "../websocket" }
 diesel = "1.4.8"
 bcrypt = "0.10.1"
 chrono = { version = "0.4.19", features = ["serde"] }
index 8a5b2edc4a8bc931a45211e5fd7d63aaed42a62f..fb4e5f100452ee2ff35965447906d4143f0138ca 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 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.3", path = "../utils" }
-lemmy_apub_lib = { version = "=0.14.3", path = "../apub_lib" }
-lemmy_db_schema = { version = "=0.14.3", path = "../db_schema" }
-lemmy_db_views = { version = "=0.14.3", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.14.3", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.14.3", path = "../api_common" }
-lemmy_websocket = { version = "=0.14.3", path = "../websocket" }
+lemmy_utils = { version = "=0.14.4-rc.4", path = "../utils" }
+lemmy_apub_lib = { version = "=0.14.4-rc.4", path = "../apub_lib" }
+lemmy_db_schema = { version = "=0.14.4-rc.4", path = "../db_schema" }
+lemmy_db_views = { version = "=0.14.4-rc.4", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.14.4-rc.4", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.14.4-rc.4", path = "../api_common" }
+lemmy_websocket = { version = "=0.14.4-rc.4", path = "../websocket" }
 diesel = "1.4.8"
 activitystreams-kinds = "0.1.2"
 bcrypt = "0.10.1"
index 66ec3fc489563475a83d7ef53b9a546d670a2b30..611c9fbc3cc35c1a77f6a3ff85a456f4ff8249bc 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub_lib"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 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.3", path = "../utils" }
-lemmy_apub_lib_derive = { version = "=0.14.3", path = "../apub_lib_derive" }
+lemmy_utils = { version = "=0.14.4-rc.4", path = "../utils" }
+lemmy_apub_lib_derive = { version = "=0.14.4-rc.4", path = "../apub_lib_derive" }
 activitystreams = "0.7.0-alpha.11"
 serde = { version = "1.0.130", features = ["derive"] }
 async-trait = "0.1.51"
index 176e47b90c804b152575118dc0b423b859911319..7fad6cfe2227c3182e193c10a9c1ffee9c0d266c 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub_lib_derive"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 edition = "2018"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
index 2cdf74b0141ef678cb077ef6e4a434d96b376545..3134faaf4d15f505b9ad0ba62af5225f3ca327d9 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_schema"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 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.3", path = "../utils" }
-lemmy_apub_lib = { version = "=0.14.3", path = "../apub_lib" }
+lemmy_utils = { version = "=0.14.4-rc.4", path = "../utils" }
+lemmy_apub_lib = { version = "=0.14.4-rc.4", 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 c831bcd28ffd529ef6cb0c38b81045022f2e68a3..4c4d31a6cd901a83ac4e4d4b2b3a59c2fafe7bed 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 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.3", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.14.4-rc.4", 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 36a29081ca1d517bb7d7024ded9263ffd07fa0e4..9eba071e820def6e722dea5f236a3bf2f59b19cb 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views_actor"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 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.3", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.14.4-rc.4", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.130", features = ["derive"] }
index 9128a955e8d4d4528920dd2511757a244c8e1c0b..f22435fa08569e1fd55b50c8a250e3346bd18171 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views_moderator"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 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.3", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.14.4-rc.4", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.130", features = ["derive"] }
index eee841846abd61fd3414470fe5027ed0bd6139df..c187ead6507473b80069fdc604e85869b17b1ffa 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_routes"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 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.3", path = "../utils" }
-lemmy_websocket = { version = "=0.14.3", path = "../websocket" }
-lemmy_db_views = { version = "=0.14.3", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.14.3", path = "../db_views_actor" }
-lemmy_db_schema = { version = "=0.14.3", path = "../db_schema" }
-lemmy_api_common = { version = "=0.14.3", path = "../api_common" }
-lemmy_apub = { version = "=0.14.3", path = "../apub" }
+lemmy_utils = { version = "=0.14.4-rc.4", path = "../utils" }
+lemmy_websocket = { version = "=0.14.4-rc.4", path = "../websocket" }
+lemmy_db_views = { version = "=0.14.4-rc.4", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.14.4-rc.4", path = "../db_views_actor" }
+lemmy_db_schema = { version = "=0.14.4-rc.4", path = "../db_schema" }
+lemmy_api_common = { version = "=0.14.4-rc.4", path = "../api_common" }
+lemmy_apub = { version = "=0.14.4-rc.4", path = "../apub" }
 diesel = "1.4.8"
 actix = "0.12.0"
 actix-web = { version = "4.0.0-beta.9", default-features = false, features = ["rustls"] }
index b30b9f977dcb038aa71123dd5ead263e2bb9d35b..0f2cf04c3da063cc3c7263990c67d3b05c526cf1 100644 (file)
@@ -1,4 +1,4 @@
-use actix_web::{body::Body, error::ErrorBadRequest, *};
+use actix_web::{body::AnyBody, error::ErrorBadRequest, *};
 use anyhow::anyhow;
 use lemmy_api_common::blocking;
 use lemmy_db_views::site_view::SiteView;
@@ -15,7 +15,7 @@ pub fn config(cfg: &mut web::ServiceConfig) {
 
 async fn node_info_well_known(
   context: web::Data<LemmyContext>,
-) -> Result<HttpResponse<Body>, LemmyError> {
+) -> Result<HttpResponse<AnyBody>, LemmyError> {
   let node_info = NodeInfoWellKnown {
     links: vec![NodeInfoWellKnownLinks {
       rel: Url::parse("http://nodeinfo.diaspora.software/ns/schema/2.0")?,
index e30df04819f288557e7c6633cd2ee1fd62161ced..3bd4a0ea8093b96e2b108dd5b9c0582bb2ee53c2 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_utils"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 edition = "2018"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
index 6e9a7bf918ecebf02f66278ddf48d161efe88739..0ee04c86ec42dca30d705c33dbfb8a8bc66a4d51 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_websocket"
-version = "0.14.3"
+version = "0.14.4-rc.4"
 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.3", path = "../utils" }
-lemmy_api_common = { version = "=0.14.3", path = "../api_common" }
-lemmy_db_schema = { version = "=0.14.3", path = "../db_schema" }
-lemmy_db_views = { version = "=0.14.3", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.14.3", path = "../db_views_actor" }
+lemmy_utils = { version = "=0.14.4-rc.4", path = "../utils" }
+lemmy_api_common = { version = "=0.14.4-rc.4", path = "../api_common" }
+lemmy_db_schema = { version = "=0.14.4-rc.4", path = "../db_schema" }
+lemmy_db_views = { version = "=0.14.4-rc.4", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.14.4-rc.4", path = "../db_views_actor" }
 reqwest = { version = "0.11.4", features = ["json"] }
 tracing = "0.1.29"
 rand = "0.8.4"