Fix Elixir 1.19.0-rc.0 formatter compatibility #767
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.
Description
Fixes Surface formatter compatibility with Elixir 1.19.0-rc.0 while maintaining backward compatibility with Elixir 1.18.
Problem
When running
mix formaton.sfacefiles with Elixir 1.19.0-rc.0, the Surface formatter crashes with:Root Cause
In
lib/surface/formatter/phases/render.ex, the formatter tries to useEnum.sliceon the result ofCode.format_string!, which returns iodata (not a list). Elixir 1.19 is stricter about this type mismatch.Solution
Changed from:
To:
Also removed the redundant
to_string()call in the else branch sinceIO.iodata_to_binary()already returns a binary.Compatibility
This fix is fully backward compatible with Elixir 1.18:
IO.iodata_to_binary/1exists in both Elixir 1.18 and 1.19String.slice/2exists in both versionsTesting
Tested formatting Surface templates with:
Fixes #766