Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mayel committed Oct 19, 2024
1 parent 6afe6f5 commit b1a4efb
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 54 deletions.
6 changes: 3 additions & 3 deletions flavours/classic/config/deps.flavour.hex
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plug_crypto = "~> 2.0" # newer crypto for plug/phoenix
sourceror = "~> 1.6.0"
telemetry = "~> 1.2.0"
httpoison = "~> 2.1"
poison = "~> 5.0" # not our preferred one, but some libs use it
poison = "~> 6.0" # not our preferred one, but some libs use it
opentelemetry_process_propagator = "~> 0.2"
telemetry_metrics = "~> 1.0"
telemetry = "~> 1.2.0"
Expand All @@ -15,9 +15,9 @@ telemetry_poller = "~> 1.1"
ecto_sparkles = "~> 0.2"
owl = "~> 0.9.0" # command line UI
recase = "~> 0.8.0"
postgrex = "~> 0.18.0"
postgrex = "~> 0.19.1"
mogrify = "~> 0.9.3"
geo = "~> 3.6"
geo = "~> 4.0"
iconify_ex = "~> 0.5"
rustler_precompiled = "~> 0.8"

Expand Down
11 changes: 7 additions & 4 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -326,11 +326,11 @@ update-deps-bonfire:

# Update every single dependency (use with caution)
update-deps-all: _pre-update-deps
just update-deps-js
just _assets-ln
just update-forks
COMPILE_DISABLED_EXTENSIONS=all just mix-remote "deps.update --all"
just _deps-post-get
just update-deps-js
just _assets-ln
just js-ext-deps outdated
-just mix "hex.outdated --all"

Expand All @@ -341,11 +341,14 @@ update-deps-js:

# Update a specify dep (eg. `just update.dep needle`)
update-dep dep: _pre-update-deps
just update-fork $dep pull
COMPILE_DISABLED_EXTENSIONS=all just mix-remote "deps.update $dep"
just update-dep-simple $dep
just _deps-post-get
./js-deps-get.sh $dep

update-dep-simple dep:
just update-fork $dep pull
COMPILE_DISABLED_EXTENSIONS=all just mix-remote "deps.update $dep"

# Pull the latest commits from all forks
@update-forks:
(jungle git fetch && just update-forks-all rebase) || (echo "Jungle not available, will fetch one by one instead." && just update-forks-all pull)
Expand Down
Loading

0 comments on commit b1a4efb

Please sign in to comment.