mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
Bumps [hammer](https://github.com/ExHammer/hammer) from 7.0.1 to 7.1.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/ExHammer/hammer/blob/master/CHANGELOG.md">hammer's changelog</a>.</em></p> <blockquote> <h2>7.1.0 - 2025-07-18</h2> <ul> <li>Fix key type inconsistency in backend implementations - all backends now accept <code>term()</code> keys instead of <code>String.t()</code> (<a href="https://redirect.github.com/ExHammer/hammer/issues/143">#143</a>)</li> <li>Add comprehensive test coverage for various key types (atoms, tuples, integers, lists, maps)</li> <li>Fix race conditions in atomic backend tests (FixWindow, LeakyBucket, TokenBucket)</li> <li>Replace timing-dependent tests with polling-based <code>eventually</code> helper for better CI reliability</li> <li>Add documentation warning about Redis backend string key requirement</li> <li>Fix typo in <code>inc/3</code> optional callback documentation (<a href="https://redirect.github.com/ExHammer/hammer/issues/142">#142</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="a57bdecdc1"><code>a57bdec</code></a> improve changelog last commit (<a href="https://redirect.github.com/ExHammer/hammer/issues/145">#145</a>)</li> <li><a href="bb061c5334"><code>bb061c5</code></a> Bump version to 7.1.0 (<a href="https://redirect.github.com/ExHammer/hammer/issues/144">#144</a>)</li> <li><a href="7d7967f898"><code>7d7967f</code></a> Fix key type inconsistency in backend implementations (<a href="https://redirect.github.com/ExHammer/hammer/issues/143">#143</a>)</li> <li><a href="94d39525e8"><code>94d3952</code></a> Fixes typo for inc/3 optional callback <code>@doc</code> (<a href="https://redirect.github.com/ExHammer/hammer/issues/142">#142</a>)</li> <li><a href="79ca221876"><code>79ca221</code></a> Bump benchee from 1.3.1 to 1.4.0 (<a href="https://redirect.github.com/ExHammer/hammer/issues/135">#135</a>)</li> <li><a href="a09bbd0d42"><code>a09bbd0</code></a> Bump ex_doc from 0.37.3 to 0.38.2 (<a href="https://redirect.github.com/ExHammer/hammer/issues/141">#141</a>)</li> <li><a href="d06a17b6be"><code>d06a17b</code></a> Bump credo from 1.7.11 to 1.7.12 (<a href="https://redirect.github.com/ExHammer/hammer/issues/134">#134</a>)</li> <li><a href="26df742620"><code>26df742</code></a> Update bug_report.md (<a href="https://redirect.github.com/ExHammer/hammer/issues/133">#133</a>)</li> <li><a href="b8765fe216"><code>b8765fe</code></a> Bump ex_doc from 0.37.2 to 0.37.3 (<a href="https://redirect.github.com/ExHammer/hammer/issues/131">#131</a>)</li> <li>See full diff in <a href="https://github.com/ExHammer/hammer/compare/7.0.1...7.1.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
90 lines
2.2 KiB
Elixir
90 lines
2.2 KiB
Elixir
defmodule API.MixProject do
|
|
use Mix.Project
|
|
|
|
def project do
|
|
[
|
|
app: :api,
|
|
version: version(),
|
|
build_path: "../../_build",
|
|
config_path: "../../config/config.exs",
|
|
deps_path: "../../deps",
|
|
lockfile: "../../mix.lock",
|
|
elixir: "~> 1.14",
|
|
elixirc_paths: elixirc_paths(Mix.env()),
|
|
start_permanent: Mix.env() == :prod,
|
|
test_coverage: [tool: ExCoveralls],
|
|
preferred_cli_env: [
|
|
coveralls: :test,
|
|
"coveralls.detail": :test,
|
|
"coveralls.post": :test,
|
|
"coveralls.html": :test
|
|
],
|
|
aliases: aliases(),
|
|
deps: deps()
|
|
]
|
|
end
|
|
|
|
def application do
|
|
[
|
|
mod: {API.Application, []},
|
|
extra_applications: [
|
|
:logger,
|
|
:runtime_tools
|
|
]
|
|
]
|
|
end
|
|
|
|
defp elixirc_paths(:test), do: ["lib", "test/support"]
|
|
defp elixirc_paths(_), do: ["lib"]
|
|
|
|
defp deps do
|
|
[
|
|
# Umbrella deps
|
|
{:domain, in_umbrella: true},
|
|
|
|
# Phoenix deps
|
|
{:phoenix, "~> 1.7.0"},
|
|
{:phoenix_ecto, "~> 4.4"},
|
|
{:plug_cowboy, "~> 2.7"},
|
|
|
|
# Observability deps
|
|
{:telemetry_metrics, "~> 1.0"},
|
|
{:telemetry_poller, "~> 1.0"},
|
|
{:opentelemetry_telemetry, "~> 1.1.1", override: true},
|
|
{:opentelemetry_cowboy, "~> 1.0"},
|
|
{:opentelemetry_phoenix, "~> 2.0"},
|
|
{:sentry, "~> 10.0"},
|
|
{:hackney, "~> 1.19"},
|
|
{:logger_json, "~> 7.0"},
|
|
|
|
# Other deps
|
|
{:jason, "~> 1.2"},
|
|
{:remote_ip, "~> 1.1"},
|
|
{:open_api_spex, "~> 3.21.2"},
|
|
{:ymlr, "~> 5.0"},
|
|
{:hammer, "~> 7.1.0"},
|
|
|
|
# Test deps
|
|
{:credo, "~> 1.5", only: [:dev, :test], runtime: false},
|
|
{:dialyxir, "~> 1.1", only: [:dev], runtime: false},
|
|
{:junit_formatter, "~> 3.3", only: [:test]},
|
|
{:mix_audit, "~> 2.1", only: [:dev, :test]},
|
|
{:sobelow, "~> 0.12", only: [:dev, :test]}
|
|
]
|
|
end
|
|
|
|
defp aliases do
|
|
[
|
|
"ecto.seed": ["ecto.create", "ecto.migrate", "run ../domain/priv/repo/seeds.exs"],
|
|
"ecto.setup": ["ecto.create", "ecto.migrate"],
|
|
"ecto.reset": ["ecto.drop", "ecto.setup"],
|
|
test: ["ecto.create --quiet", "ecto.migrate", "test"]
|
|
]
|
|
end
|
|
|
|
defp version do
|
|
sha = System.get_env("GIT_SHA", "dev") |> String.trim()
|
|
"0.1.0+#{sha}"
|
|
end
|
|
end
|