View Source Paraxial.io Changelog
2-2-0
2.2.0
mix paraxial.scan
now supports umbrella projects.- Requires you to add
sobelow: ["cmd mix sobelow"]
in your top-level mix file. https://github.com/nccgroup/sobelow/pull/108/files
2-1-0
2.1.0
- You can now disable the Paraxial.io agent. If there is no configuration set for
:paraxial_api_key
or:paraxial_url
, the agent will not start, and the Paraxial plugs will do nothing to conn. - To disable the agent in your
dev
ortest
environment, ensure there are no values set for your:paraxial
configuration. If:paraxial_api_key
and:paraxial_url
have non-nil values, the agent will start and the Paraxial plugs will function normally.
2-0-0
2.0.0
- WARNING: Breaking changes to the
only/except
configuration values. Previously these were read viaApplication.get_env
, and would not raise an error if runtime and compile time settings were different. only/except
are now read withApplication.compile_env/3
in2.0.0
. From the docs, "By using compile_env/3, tools like Mix will store the values used during compilation and compare the compilation values with the runtime values whenever your system starts, raising an error in case they differ."- There is no change in features from
1.1.0
to2.0.0
. The reason for this release is to make debugging CI/CD pipelines easier, becausecompile_env
will trigger an error if runtime and compile time configuration differs. - After changing
only/except
in your dev environment runmix deps.clean paraxial
. If you don't, you will get an error,ERROR! the application :paraxial has a different value set for key :except during runtime
.
1-1-0
1.1.0
- Add
mix paraxial.scan
, code scanning for vulnerabilities.
1-0-0
1.0.0
- If
fetch_cloud_ips
is set to true, and there is no internet connection,ip_trie
will be set to an empty trie. PARAXIAL_API_KEY
environment variable support added.