Skip to content

Commit

Permalink
refactor: passing all tests on pydantic v1
Browse files Browse the repository at this point in the history
  • Loading branch information
doctrino committed Aug 18, 2024
1 parent 4d665bd commit 321d1e8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ Changes are grouped as follows
- `Security` in case of vulnerabilities.

## [0.99.32] - 24-08-17
### Added
- Support for files and sequences in the generated SDK.
### Changed
- When generating an SDK if the `default_instance_space` parameter, `pygen` will no longer use the space of the
data model as the default space for nodes and edges. Instead, the generated SDK will be without a default space,
Expand All @@ -25,6 +27,10 @@ Changes are grouped as follows
This is to ensure that the user must specify the space when creating or querying nodes and edges, and not introdcue
a bug where the space is not set correctly.

### Fixed
- In the generated SDK, fields of `TimeSeries` as now set to `TimeSeriesWrite` in the write format of the generated
SDK.

## [0.99.31] - 24-08-16
### Added
- Support for edges with properties of type `single_edge_connection`.
Expand Down
2 changes: 1 addition & 1 deletion tests/test_integration/test_query_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from omni._api._core import EdgeQueryStep, NodeQueryStep, QueryBuilder
else:
from omni_pydantic_v1 import data_classes as dc
from omni_pydantic_v1._api._core import QueryBuilder
from omni_pydantic_v1._api._core import EdgeQueryStep, NodeQueryStep, QueryBuilder


class TestQueryBuilder:
Expand Down

0 comments on commit 321d1e8

Please sign in to comment.