Upgrade Elixir and Outdated Dependencies #7
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This PR modernizes the Elixir SDK to work with current Elixir versions (1.14+) and updates dependencies that haven't been maintained in 7 years.
Changes
Commit 1: Update to Elixir 1.14 and modernize critical dependencies
runtime: falseto dev/test dependencies (modern best practice)Commit 2: Migrate from Poison to Jason
Commit 3: Use modern extra_applications pattern
applicationslist withextra_applicationsCommit 4: Remove obsolete dependencies
dialyze(outdated, last updated 2017)inch_ex(Inch CI service shut down)Commit 5: Update README
Testing
All quality checks pass:
mix format --check-formattedmix compile --warnings-as-errorsmix credo --strictmix docsmix test(15 tests, 0 failures)Compatibility
Context
The project hasn't been updated in 7 years and won't compile on modern systems due to:
This PR brings the project up to current standards while maintaining all existing functionality.