Skip to content

Commit 4e6b43c

Browse files
JOYclaude
andcommitted
fix: restore all sub-app mix.exs from upstream v10.0.0
Merge auto-resolution failed to update sub-app mix.exs files. Dependencies like tesla were stuck at 1.15.3 instead of 1.16.0, causing build failure. Restored exact copies from upstream. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 35f82d2 commit 4e6b43c

6 files changed

Lines changed: 11 additions & 10 deletions

File tree

apps/block_scout_web/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ defmodule BlockScoutWeb.Mixfile do
1919
lockfile: "../../mix.lock",
2020
package: package(),
2121
start_permanent: Mix.env() == :prod,
22-
version: "9.3.5",
22+
version: "10.0.0",
2323
xref: [
2424
exclude: [
2525
Explorer.Chain.PolygonZkevm.Reader,

apps/ethereum_jsonrpc/mix.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ defmodule EthereumJSONRPC.MixProject do
1919
elixirc_paths: elixirc_paths(Mix.env()),
2020
lockfile: "../../mix.lock",
2121
start_permanent: Mix.env() == :prod,
22-
version: "9.3.5"
22+
version: "10.0.0"
2323
]
2424
end
2525

@@ -75,7 +75,7 @@ defmodule EthereumJSONRPC.MixProject do
7575
{:spandex, "~> 3.0"},
7676
# `:spandex` integration with Datadog
7777
{:spandex_datadog, "~> 1.0"},
78-
{:tesla, "~> 1.15.3"},
78+
{:tesla, "~> 1.16.0"},
7979
# Convert unix timestamps in JSONRPC to DateTimes
8080
{:timex, "~> 3.7.1"},
8181
# Encode/decode function names and arguments

apps/explorer/mix.exs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defmodule Explorer.Mixfile do
2020
lockfile: "../../mix.lock",
2121
package: package(),
2222
start_permanent: Mix.env() == :prod,
23-
version: "9.3.5",
23+
version: "10.0.0",
2424
xref: [exclude: [BlockScoutWeb.Routers.WebRouter.Helpers, Indexer.Helper, Indexer.Fetcher.InternalTransaction]]
2525
]
2626
end
@@ -115,7 +115,7 @@ defmodule Explorer.Mixfile do
115115
# `Timex.Duration` for `Explorer.Chain.Cache.Counters.AverageBlockTime.average_block_time/0`
116116
{:timex, "~> 3.7.1"},
117117
{:con_cache, "~> 1.0"},
118-
{:tesla, "~> 1.15.3"},
118+
{:tesla, "~> 1.16.0"},
119119
{:cbor, "~> 1.0"},
120120
{:cloak_ecto, "~> 1.3.0"},
121121
{:redix, "~> 1.1"},
@@ -129,6 +129,7 @@ defmodule Explorer.Mixfile do
129129
{:oauth2, "~> 2.0"},
130130
{:siwe, github: "royal-markets/siwe-ex", ref: "51c9c08240eb7eea3c35693011f8d260cd9bb3be"},
131131
{:joken, "~> 2.6"},
132+
{:joken_jwks, "~> 1.7.0"},
132133
{:utils, in_umbrella: true},
133134
{:dns, "~> 2.4.0"},
134135
{:inet_cidr, "~> 1.0.0"},

apps/indexer/mix.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ defmodule Indexer.MixProject do
1414
elixirc_paths: elixirc_paths(Mix.env()),
1515
lockfile: "../../mix.lock",
1616
start_permanent: Mix.env() == :prod,
17-
version: "9.3.5",
17+
version: "10.0.0",
1818
xref: [
1919
exclude: [
2020
Explorer.Chain.Optimism.Deposit,
@@ -60,7 +60,7 @@ defmodule Indexer.MixProject do
6060
# Importing to database
6161
{:explorer, in_umbrella: true},
6262
# ex_secp256k1 crypto functions
63-
{:ex_secp256k1, "~> 0.7.0"},
63+
{:ex_secp256k1, "~> 0.8.0"},
6464
# Log errors and application output to separate files
6565
{:logger_file_backend, "~> 0.0.10"},
6666
{:logger_json, "~> 7.0"},

apps/nft_media_handler/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule NFTMediaHandler.MixProject do
44
def project do
55
[
66
app: :nft_media_handler,
7-
version: "9.3.5",
7+
version: "10.0.0",
88
build_path: "../../_build",
99
config_path: "../../config/config.exs",
1010
deps_path: "../../deps",

apps/utils/mix.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule Utils.MixProject do
44
def project do
55
[
66
app: :utils,
7-
version: "9.3.5",
7+
version: "10.0.0",
88
build_path: "../../_build",
99
# config_path: "../../config/config.exs",
1010
deps_path: "../../deps",
@@ -33,7 +33,7 @@ defmodule Utils.MixProject do
3333
{:credo, "~> 1.5", only: [:test, :dev], runtime: false},
3434
{:httpoison, "~> 2.0"},
3535
{:mime, "~> 2.0"},
36-
{:tesla, "~> 1.15.3"}
36+
{:tesla, "~> 1.16.0"}
3737
]
3838
end
3939

0 commit comments

Comments
 (0)