Skip to content
Snippets Groups Projects
Commit 915e126e authored by Alexander Schlemmer's avatar Alexander Schlemmer
Browse files

DOC: Changelog and source code doc updated.

parent 97627a96
No related branches found
No related tags found
1 merge request!109Detection of cyclic references for high level API
Pipeline #38610 failed
......@@ -20,6 +20,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ###
- Detection for cyclic references when converting entites using the high level API.
### Security ###
### Documentation ###
......
......@@ -649,4 +649,6 @@ def test_cyclic_references():
r1.add_property(name="ref_to_two", value=r2)
r2.add_property(name="ref_to_one", value=r1)
# This would have lead to a recursion error before adding the detection for
# cyclic references:
r = convert_to_python_object(r1)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment