Skip to content
New issue

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

Updated core model to version with required keywords and docstrings #1864

Merged
merged 7 commits into from
Jul 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ Changes are grouped as follows
- `Fixed` for any bug fixes.
- `Security` in case of vulnerabilities.

## [7.54.9] - 2024-07-22
### Changed
- [Feature Preview] Updated the Core Model to require keyword arguments for all classes and include
docstring.

## [7.54.8] - 2024-07-22
### Added
- The method `client.functions.schedules.retrieve` now accepts the missing parameter `ignore_unknown_ids` as well
Expand Down
2 changes: 1 addition & 1 deletion cognite/client/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from __future__ import annotations

__version__ = "7.54.8"
__version__ = "7.54.9"
__api_subversion__ = "20230101"
4 changes: 4 additions & 0 deletions cognite/client/data_classes/cdm/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
from __future__ import annotations

from cognite.client.utils._experimental import FeaturePreviewWarning

FeaturePreviewWarning("alpha", "alpha", "Core Data Model").warn()
Loading