Skip to content

Commit

Permalink
Merge branch 'rabbitMQ_version_upgrade' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
zephyranthes03 committed Feb 10, 2025
2 parents e198871 + 850e7cb commit 02abbf5
Show file tree
Hide file tree
Showing 4 changed files with 95 additions and 90 deletions.
4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
elixir 1.14.1-otp-25
erlang 25.1.1
elixir 1.17.3
erlang 27.2.2
nodejs 14.20.1
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -----------------------------------------------
# 1) Build Elixir
# -----------------------------------------------
FROM elixir:1.13.3-slim as build-elixir
FROM elixir:1.18.2-slim as build-elixir

# ARG is available during the build and not in the final container
# https://vsupalov.com/docker-arg-vs-env/
Expand Down
76 changes: 39 additions & 37 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule Recognizer.MixProject do
[
app: :recognizer,
version: "0.1.0",
elixir: "~> 1.13",
elixir: "~> 1.17.3",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: Mix.compilers(),
start_permanent: Mix.env() == :prod,
Expand All @@ -32,50 +32,52 @@ defmodule Recognizer.MixProject do
# Type `mix help deps` for examples and options.
defp deps do
[
{:argon2_elixir, "~> 2.0"},
{:bottle, github: "system76/bottle", ref: "038790781d9065703218645cc851ff9680387170"},
{:cors_plug, "~> 2.0"},
{:cowboy, "~> 2.12.0", override: true},
{:argon2_elixir, "~> 4.1.2"},
{:bottle, github: "system76/bottle", ref: "465b429c7b341eb92dcfb7f210170a1e5265da41"},
{:cors_plug, "~> 3.0.3"},
# {:cowboy, "~> 2.12.0", override: true},
{:cowlib, "~> 2.13.0", override: true},
{:credo, "~> 1.7.11", only: [:dev, :test], runtime: false},
{:decorator, "~> 1.2"},
{:decorator, "~> 1.4.0"},
{:ecto_enum, "~> 1.4"},
{:ecto_sql, "~> 3.4"},
{:eqrcode, "~> 0.1.7"},
{:ex_machina, "~> 2.4", only: :test},
{:ex_aws_sqs, "~> 3.2"},
{:ex_aws, "~> 2.0"},
{:ex_oauth2_provider, "~> 0.5.6"},
{:gettext, "~> 0.11"},
{:ecto_sql, "~> 3.1"},
{:eqrcode, "~> 0.2.0"},
{:ex_machina, "~> 2.8", only: :test},
{:ex_aws_sqs, "~> 3.4"},
{:ex_aws, "~> 2.5.8"},
{:ex_oauth2_provider, "~> 0.5.7"},
{:gettext, "~> 0.26.2"},
{:guardian, "~> 2.0"},
{:guardian_db, "~> 2.1"},
{:hammer, "~> 6.0"},
{:hammer_backend_redis, "~> 6.1"},
{:hammer_plug, "~> 3.0"},
{:httpoison, "~> 1.8.2"},
{:jason, "~> 1.0"},
{:joken, "~> 2.6.0"},
{:logger_json, github: "Nebo15/logger_json", ref: "8e4290a"},
{:guardian_db, "~> 2.0"},
{:hammer, "~> 6.2.1"},
{:hammer_backend_redis, "~> 6.2"},
{:hammer_plug, "~> 3.2"},
{:httpoison, "~> 2.2.1"},
{:jason, "~> 1.4.4"},
{:joken, "~> 2.6.2"},
{:logger_json, "~> 5.1.2"},
# {:logger_json, github: "Nebo15/logger_json", ref: "8e4290a"},
{:myxql, ">= 0.0.0"},
{:ranch, "~> 2.1", override: true},
{:redix, ">= 0.0.0"},
{:phoenix_ecto, "~> 4.1"},
{:phoenix_html, "~> 4.1"},
{:phoenix_live_reload, "~> 1.2", only: :dev},
{:phoenix_ecto, "~> 4.6.3"},
{:phoenix_html, "~> 4.2"},
{:phoenix_live_reload, "~> 1.5.3", only: :dev},
{:phoenix_html_helpers, "~> 1.0.1"},
{:phoenix_view, "~> 2.0.3"},
{:phoenix, "~> 1.7.1"},
{:plug_cowboy, "~> 2.4"},
{:phoenix_view, "~> 2.0.4"},
{:phoenix, "~> 1.7.19"},
{:plug_cowboy, "~> 2.7.2"},
{:pot, "~> 1.0.2"},
{:saxy, "~> 1.1"},
{:spandex, "~> 3.0.3"},
{:spandex_datadog, "~> 1.1.0"},
{:spandex_ecto, "~> 0.6.2"},
{:spandex_phoenix, "~> 1.0.5"},
{:telemetry_metrics, "~> 0.4"},
{:telemetry_poller, "~> 0.4"},
{:ueberauth_github, "~> 0.8"},
{:ueberauth_google, "~> 0.10"},
{:mox, "~> 1.0", only: :test}
{:saxy, "~> 1.6"},
{:spandex, "~> 3.2"},
{:spandex_datadog, "~> 1.4"},
{:spandex_ecto, "~> 0.7"},
{:spandex_phoenix, "~> 1.1"},
{:telemetry_metrics, "~> 1.1.0"},
{:telemetry_poller, "~> 1.1.0"},
{:ueberauth_github, "~> 0.8.3"},
{:ueberauth_google, "~> 0.12.1"},
{:mox, "~> 1.2", only: :test}
]
end

Expand Down
Loading

0 comments on commit 02abbf5

Please sign in to comment.