Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .dialyzer_ignore.exs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[
{"lib/lightning/task_worker.ex", :call_with_opaque}
{"lib/lightning/task_worker.ex", :call_with_opaque},
{"lib/lightning/auth_providers/well_known.ex", :invalid_contract},
{"lib/mix/tasks/install_schemas.ex", :invalid_contract}
]
5 changes: 5 additions & 0 deletions config/config.exs
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,11 @@ config :lightning, LightningWeb.CollectionsController,
default_stream_limit: 1_000,
max_database_limit: 500

# Currently there is not a version of tzdata that supports a secure version of Hackney, so we
# disable the only part of tzdata that would use Hackney. This does mean that auto-updating
# of timezone data is dependent on package updates.
config :tzdata, :autoupdate, :disabled

# Configuration for injecting a custom feedback mechanism or component collection
# for the AI Assistant. This can include interactive elements such as a button
# that triggers a modal with a survey form, or a PostHog component to capture
Expand Down
2 changes: 1 addition & 1 deletion lib/lightning/config/bootstrap.ex
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ defmodule Lightning.Config.Bootstrap do
tags: %{host: host},
release: release[:label],
enable_source_code_context: true,
root_source_code_path: File.cwd!()
root_source_code_paths: [File.cwd!()]

config :lightning, Lightning.PromEx,
disabled: not env!("PROMEX_ENABLED", &Utils.ensure_boolean/1, false),
Expand Down
6 changes: 3 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ defmodule Lightning.MixProject do
{:gettext, "~> 0.26"},
{:git_hooks, "~> 0.8.0", only: [:dev], runtime: false},
{:google_api_storage, "~> 0.46.0"},
{:hackney, "~> 1.18"},
{:hackney, "~> 4.4.5", override: true},
{:heroicons, "~> 0.5.3"},
{:httpoison, "~> 2.0"},
{:httpoison, "~> 3.0.0", override: true},
{:jason, "~> 1.4"},
{:joken, "~> 2.6.0"},
{:jsonpatch, "~> 2.2"},
Expand Down Expand Up @@ -127,7 +127,7 @@ defmodule Lightning.MixProject do
{:rambo, "~> 0.3.4"},
{:retry, "~> 0.18"},
{:scrivener, "~> 2.7"},
{:sentry, "~> 10.9.0"},
{:sentry, "~> 13.2.0"},
{:sobelow, "~> 0.14.1", only: [:test, :dev]},
{:sweet_xml, "~> 0.7.1", only: [:test]},
{:swoosh, "~> 1.17"},
Expand Down
Loading