We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WorkGraph
As pointed out by @unkcpz , there is a security risk when loading the WorkGraph from the database because the deserialize_unsafe function is used.
deserialize_unsafe
wg = WorkGraph.load(pk)
We may change the load to load_unsafe to let the user be aware of the risk and only load WorkGraph from a known source.
load
load_unsafe
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As pointed out by @unkcpz , there is a security risk when loading the WorkGraph from the database because the
deserialize_unsafe
function is used.We may change the
load
toload_unsafe
to let the user be aware of the risk and only load WorkGraph from a known source.The text was updated successfully, but these errors were encountered: