Update dev/test deps and fix Elixir compatibility issues#47
Open
nshkrdotcom wants to merge 1 commit intobitwalker:mainfrom
Open
Update dev/test deps and fix Elixir compatibility issues#47nshkrdotcom wants to merge 1 commit intobitwalker:mainfrom
nshkrdotcom wants to merge 1 commit intobitwalker:mainfrom
Conversation
Update test and development dependencies to current versions: - dialyxir ~> 1.0 to ~> 1.4 - excoveralls ~> 0.9 to ~> 0.18 - Add castore ~> 1.0 for SSL certificate handling - Add erlex ~> 0.2.8 override for dialyxir compatibility Remove deprecated hackney dependency chain in favor of lighter alternatives using castore for certificate verification. Fix Elixir compatibility issues: - Replace deprecated Module.eval_quoted/2 with Code.eval_quoted/3 in test modules for compatibility with recent Elixir versions - Add missing fail!/1 clause for binary error messages in CLI Clean up decoder.ex: - Remove unreachable pattern match clauses in datetime parsing - Remove dead code paths in array and inline table parsing - Fix tuple arity in close error handling patterns Remove dialyzer.ignore configuration as warnings have been resolved.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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
Module.eval_quoted/2withCode.eval_quoted/3in tests.fail!/1clause for CLI error handling.dialyzer.ignorenow that warnings are resolved.Fixes #46