chore: drop archived exjsx JSON engine#891
Merged
yordis merged 1 commit intoJun 25, 2026
Merged
Conversation
Member
|
Hey @gilbertwong96 thank you so much for the contribution. They are few things happening in this PR, ideally, we can keep the changes around a singular subject. About |
yordis
reviewed
Jun 25, 2026
Contributor
Author
Sure, I will split them into different PRs later. |
The exjsx project is archived, so drop direct support for it as a JSON engine in Tesla: remove the optional dependency, the engine example in the JSON middleware doc, and the engine test block. The remaining decode/encode function example in the doc now references Jason.decode/Jason.encode (maintained) instead of the archived JSX.decode/JSX.encode. exjsx remains in the lockfile only as a transitive dependency of the test-only httparrot server.
5737b87 to
6ab5869
Compare
Contributor
Author
|
Just force pushed |
Contributor
Author
|
Opened #892 for silence warnings in Elixir 1.20 |
yordis
approved these changes
Jun 25, 2026
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.
The
exjsxJSON library is archived and no longer maintained, so drop direct support for it as an engine in Tesla:exjsxdependencyengine: JSXexample and update the:enginedoc inTesla.Middleware.JSONdecode: &JSX.decode/1, encode: &JSX.encode/1doc example with&Jason.decode/1/&Jason.encode/1(a maintained engine) to keep the:decode/:encodefunction exampleEngine: exjsxtest blockexjsxremains in the lockfile only as a transitive dependency of the test-onlyhttparrotserver. The Elixir 1.20.1 compilation warning fixes (preferred_cli_env, unused require, gun adapter) are split into a separate PR.