Merge branch 'deprecations' into 'develop'
More deprecation fixes/cleanup See merge request pleroma/pleroma!4012
This commit is contained in:
commit
56618873af
0
changelog.d/deprecations2.skip
Normal file
0
changelog.d/deprecations2.skip
Normal file
@ -14,7 +14,7 @@ config :pleroma, Pleroma.Captcha,
|
|||||||
method: Pleroma.Captcha.Mock
|
method: Pleroma.Captcha.Mock
|
||||||
|
|
||||||
# Print only warnings and errors during test
|
# Print only warnings and errors during test
|
||||||
config :logger, level: :warn
|
config :logger, level: :warning
|
||||||
|
|
||||||
config :pleroma, :auth, oauth_consumer_strategies: []
|
config :pleroma, :auth, oauth_consumer_strategies: []
|
||||||
|
|
||||||
|
@ -1187,7 +1187,7 @@ config :pleroma, :config_description, [
|
|||||||
type: [:atom, :tuple, :module],
|
type: [:atom, :tuple, :module],
|
||||||
description:
|
description:
|
||||||
"Where logs will be sent, :console - send logs to stdout, { ExSyslogger, :ex_syslogger } - to syslog, Quack.Logger - to Slack.",
|
"Where logs will be sent, :console - send logs to stdout, { ExSyslogger, :ex_syslogger } - to syslog, Quack.Logger - to Slack.",
|
||||||
suggestions: [:console, {ExSyslogger, :ex_syslogger}, Quack.Logger]
|
suggestions: [:console, {ExSyslogger, :ex_syslogger}]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -1202,7 +1202,7 @@ config :pleroma, :config_description, [
|
|||||||
key: :level,
|
key: :level,
|
||||||
type: {:dropdown, :atom},
|
type: {:dropdown, :atom},
|
||||||
description: "Log level",
|
description: "Log level",
|
||||||
suggestions: [:debug, :info, :warn, :error]
|
suggestions: [:debug, :info, :warning, :error]
|
||||||
},
|
},
|
||||||
%{
|
%{
|
||||||
key: :ident,
|
key: :ident,
|
||||||
@ -1235,7 +1235,7 @@ config :pleroma, :config_description, [
|
|||||||
key: :level,
|
key: :level,
|
||||||
type: {:dropdown, :atom},
|
type: {:dropdown, :atom},
|
||||||
description: "Log level",
|
description: "Log level",
|
||||||
suggestions: [:debug, :info, :warn, :error]
|
suggestions: [:debug, :info, :warning, :error]
|
||||||
},
|
},
|
||||||
%{
|
%{
|
||||||
key: :format,
|
key: :format,
|
||||||
@ -1937,7 +1937,7 @@ config :pleroma, :config_description, [
|
|||||||
key: :log,
|
key: :log,
|
||||||
type: {:dropdown, :atom},
|
type: {:dropdown, :atom},
|
||||||
description: "Logs verbose mode",
|
description: "Logs verbose mode",
|
||||||
suggestions: [false, :error, :warn, :info, :debug]
|
suggestions: [false, :error, :warning, :info, :debug]
|
||||||
},
|
},
|
||||||
%{
|
%{
|
||||||
key: :queues,
|
key: :queues,
|
||||||
|
@ -16,7 +16,7 @@ config :pleroma, Pleroma.Captcha,
|
|||||||
|
|
||||||
# Print only warnings and errors during test
|
# Print only warnings and errors during test
|
||||||
config :logger, :console,
|
config :logger, :console,
|
||||||
level: :warn,
|
level: :warning,
|
||||||
format: "\n[$level] $message\n"
|
format: "\n[$level] $message\n"
|
||||||
|
|
||||||
config :pleroma, :auth, oauth_consumer_strategies: []
|
config :pleroma, :auth, oauth_consumer_strategies: []
|
||||||
|
@ -7,13 +7,13 @@ defmodule Pleroma.Repo.Migrations.AddTrigramExtension do
|
|||||||
require Logger
|
require Logger
|
||||||
|
|
||||||
def up do
|
def up do
|
||||||
Logger.warn("ATTENTION ATTENTION ATTENTION\n")
|
Logger.warning("ATTENTION ATTENTION ATTENTION\n")
|
||||||
|
|
||||||
Logger.warn(
|
Logger.warning(
|
||||||
"This will try to create the pg_trgm extension on your database. If your database user does NOT have the necessary rights, you will have to do it manually and re-run the migrations.\nYou can probably do this by running the following:\n"
|
"This will try to create the pg_trgm extension on your database. If your database user does NOT have the necessary rights, you will have to do it manually and re-run the migrations.\nYou can probably do this by running the following:\n"
|
||||||
)
|
)
|
||||||
|
|
||||||
Logger.warn(
|
Logger.warning(
|
||||||
"sudo -u postgres psql pleroma_dev -c \"create extension if not exists pg_trgm\"\n"
|
"sudo -u postgres psql pleroma_dev -c \"create extension if not exists pg_trgm\"\n"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@ defmodule Pleroma.Repo.Migrations.AddFollowingAddressFromSourceData do
|
|||||||
|> Pleroma.Repo.update()
|
|> Pleroma.Repo.update()
|
||||||
|
|
||||||
user ->
|
user ->
|
||||||
Logger.warn("User #{user.id} / #{user.nickname} does not seem to have source_data")
|
Logger.warning("User #{user.id} / #{user.nickname} does not seem to have source_data")
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -63,7 +63,7 @@ defmodule Pleroma.Repo.Migrations.DataMigrationPopulateUserRelationships do
|
|||||||
ON CONFLICT (source_id, relationship_type, target_id) DO NOTHING
|
ON CONFLICT (source_id, relationship_type, target_id) DO NOTHING
|
||||||
""")
|
""")
|
||||||
else
|
else
|
||||||
_ -> Logger.warn("Unresolved #{field} reference: (#{source_uuid}, #{target_id})")
|
_ -> Logger.warning("Unresolved #{field} reference: (#{source_uuid}, #{target_id})")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -8,7 +8,7 @@ defmodule Pleroma.Repo.Migrations.ApIdNotNull do
|
|||||||
require Logger
|
require Logger
|
||||||
|
|
||||||
def up do
|
def up do
|
||||||
Logger.warn(
|
Logger.warning(
|
||||||
"If this migration fails please open an issue at https://git.pleroma.social/pleroma/pleroma/-/issues/new \n"
|
"If this migration fails please open an issue at https://git.pleroma.social/pleroma/pleroma/-/issues/new \n"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ defmodule Mix.Tasks.Pleroma.Ecto.MigrateTest do
|
|||||||
|
|
||||||
test "ecto.migrate info message" do
|
test "ecto.migrate info message" do
|
||||||
level = Logger.level()
|
level = Logger.level()
|
||||||
Logger.configure(level: :warn)
|
Logger.configure(level: :warning)
|
||||||
|
|
||||||
assert capture_log(fn ->
|
assert capture_log(fn ->
|
||||||
Mix.Tasks.Pleroma.Ecto.Migrate.run()
|
Mix.Tasks.Pleroma.Ecto.Migrate.run()
|
||||||
|
@ -9,7 +9,7 @@ defmodule Mix.Tasks.Pleroma.Ecto.RollbackTest do
|
|||||||
|
|
||||||
test "ecto.rollback info message" do
|
test "ecto.rollback info message" do
|
||||||
level = Logger.level()
|
level = Logger.level()
|
||||||
Logger.configure(level: :warn)
|
Logger.configure(level: :warning)
|
||||||
|
|
||||||
assert capture_log(fn ->
|
assert capture_log(fn ->
|
||||||
Mix.Tasks.Pleroma.Ecto.Rollback.run(["--env", "test"])
|
Mix.Tasks.Pleroma.Ecto.Rollback.run(["--env", "test"])
|
||||||
|
@ -443,13 +443,13 @@ defmodule Pleroma.ConfigDBTest do
|
|||||||
|
|
||||||
test "common keyword" do
|
test "common keyword" do
|
||||||
assert ConfigDB.to_elixir_types([
|
assert ConfigDB.to_elixir_types([
|
||||||
%{"tuple" => [":level", ":warn"]},
|
%{"tuple" => [":level", ":warning"]},
|
||||||
%{"tuple" => [":meta", [":all"]]},
|
%{"tuple" => [":meta", [":all"]]},
|
||||||
%{"tuple" => [":path", ""]},
|
%{"tuple" => [":path", ""]},
|
||||||
%{"tuple" => [":val", nil]},
|
%{"tuple" => [":val", nil]},
|
||||||
%{"tuple" => [":webhook_url", "https://hooks.slack.com/services/YOUR-KEY-HERE"]}
|
%{"tuple" => [":webhook_url", "https://hooks.slack.com/services/YOUR-KEY-HERE"]}
|
||||||
]) == [
|
]) == [
|
||||||
level: :warn,
|
level: :warning,
|
||||||
meta: [:all],
|
meta: [:all],
|
||||||
path: "",
|
path: "",
|
||||||
val: nil,
|
val: nil,
|
||||||
|
Loading…
Reference in New Issue
Block a user