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

Rename alpha data models #1050

Merged
merged 8 commits into from
Sep 28, 2022
Merged

Rename alpha data models #1050

merged 8 commits into from
Sep 28, 2022

Conversation

silvavelosa
Copy link
Contributor

Description

Remove the alpha prefix from data model storage refferences in transformations.

Checklist:

  • Tests added/updated.
  • Documentation updated. Documentation is generated from docstrings - these must be updated according to your change.
    If a new method has been added it should be referenced in cognite.rst in order to generate docs based on its docstring.
  • Changelog updated in CHANGELOG.md.
  • Version bumped. If triggering a new release is desired, bump the version number in _version.py per semantic versioning.

@silvavelosa silvavelosa requested review from a team as code owners September 26, 2022 12:23
@codecov
Copy link

codecov bot commented Sep 26, 2022

Codecov Report

Merging #1050 (e33ad17) into master (98f5033) will increase coverage by 1.01%.
The diff coverage is 98.00%.

@@            Coverage Diff             @@
##           master    #1050      +/-   ##
==========================================
+ Coverage   90.42%   91.43%   +1.01%     
==========================================
  Files          76       75       -1     
  Lines        7662     7669       +7     
==========================================
+ Hits         6928     7012      +84     
+ Misses        734      657      -77     
Impacted Files Coverage Δ
...ognite/client/data_classes/transformations/jobs.py 90.00% <85.71%> (+34.66%) ⬆️
cognite/client/_api/geospatial.py 89.78% <100.00%> (+0.15%) ⬆️
cognite/client/_api/transformations/schema.py 100.00% <100.00%> (+15.38%) ⬆️
cognite/client/_version.py 100.00% <100.00%> (ø)
...te/client/data_classes/transformations/__init__.py 91.30% <100.00%> (+3.42%) ⬆️
...nite/client/data_classes/transformations/common.py 90.00% <100.00%> (+3.40%) ⬆️
cognite/client/_api/transformations/__init__.py 81.60% <0.00%> (+13.79%) ⬆️
cognite/client/_api/transformations/jobs.py 100.00% <0.00%> (+42.10%) ⬆️

Copy link
Collaborator

@erlendvollset erlendvollset left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. But please do one of the following:

  1. Expose DMS related features only through the beta client

or

  1. When these features are used, raise a clear warning about these features being in beta and that they may be subject to breaking changes even between patch versions..

@silvavelosa
Copy link
Contributor Author

LGTM. But please do one of the following:

  1. Expose DMS related features only through the beta client

or

  1. When these features are used, raise a clear warning about these features being in beta and that they may be subject to breaking changes even between patch versions..

Thanks for the feedback! a warning stating "Feature DataModeStorage is in beta and still in development. Breaking changes can happen in between patch versions." was added and will be triggered the first time a user retrieves/creates/updates/runs a transformation with fdm destination.

@silvavelosa silvavelosa merged commit 7abd1c2 into master Sep 28, 2022
@silvavelosa silvavelosa deleted the rename-alpha-data-models branch September 28, 2022 08:55
haakonvt added a commit that referenced this pull request Oct 4, 2022
commit b317169
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:46:43 2022 +0200

    Dps Fetch Refactor #5: New dps fetch code (#1043)

    * New dps fetch code

    * typos and tweaks

    * Update cognite/client/_api/datapoint_tasks.py

    * forgot self arg...

    * Fix insertion of DatapointsArray

    * Make dps retrieve method kwargs only

    * fstring fix

    * Fix to avoid float dtype for count agg

commit 4e673cb
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:43:13 2022 +0200

    Dps Fetch Refactor #9: Unit tests, added, fixed and improved. (#1047)

    * Unit tests, added, fixed and improved.

    * add test for split_into_n_parts and find_duplicates

commit 8099cb3
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:42:49 2022 +0200

    Integration tests, added, fixed and improved (#1048)

commit a049ec4
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:42:30 2022 +0200

    Dps Fetch Refactor #11: Readme, docs and changelog (#1049)

    * Readme, docs and changelog

    * Improve changelog

    * Changelog almost done

    * Mooooooare changelog details

    * Apply 12 spell check suggestions from code review

    * Reword the note about `include_aggregate_name`

    * Update CHANGELOG.md

commit e74699e
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 00:21:33 2022 +0200

    Dps Fetch Refactor #12: Fix `ms_to_datetime` on windows (#1056)

    * Fix ms_to_datetime for windows

    * make single ms_to_datetime impl. work on all OSs. remove removed warnings from filterwarnings

commit 59aace9
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 00:11:57 2022 +0200

    Dps Fetch Refactor #6: Add array-based data classes. Change camel case defaults (#1044)

    * Add array-based data classes. Change camel case defaults

    * No copy in df constructor from numpy arrays yields another 100 x

    * Update cognite/client/data_classes/datapoints.py

    * Update cognite/client/data_classes/datapoints.py

    * remove unnecessary list conv

    * Remove _strip_aggregate_names entirely

commit f0b0525
Author: Håkon V. Treider <[email protected]>
Date:   Fri Sep 30 14:04:31 2022 +0200

    Dps Fetch Refactor #7: Extend utils with new functionality (#1045)

    * Extend utils with new functionality

    * add hashable bound to type var

commit c281ac0
Author: Håkon V. Treider <[email protected]>
Date:   Fri Sep 30 14:04:00 2022 +0200

    Dps Fetch Refactor #3: Add ThreadPoolExecutor with PriorityQueue (#1041)

    * Add ThreadPoolExecutor with PriorityQueue

    * move mypy ignore flag to ini file

commit 920cd84
Author: Håkon V. Treider <[email protected]>
Date:   Fri Sep 30 13:12:17 2022 +0200

    Dps Fetch Refactor #2: Update dependencies and version. Run poetry lock (#1040)

    * Update dependencies and version. Run poetry lock

    * relax and tighten dep. reqs

    * Trim pandas version (no-op)

commit f0a69d8
Merge: 6be4b44 7abd1c2
Author: Håkon V. Treider <[email protected]>
Date:   Thu Sep 29 02:22:23 2022 +0200

    Merge branch 'master' into v5-release

commit 7abd1c2
Author: Jaime Silva <[email protected]>
Date:   Wed Sep 28 03:55:39 2022 -0500

    Rename alpha data models destination in transformations (#1050)

    * rename alpha data models to data models

    * version bump

    * unskip dms and jobs tests

    * show warning when using FDMs on transformations

commit aa3f52b
Author: tuanng-cognite <[email protected]>
Date:   Tue Sep 27 14:00:50 2022 +0200

    geospatial aggregation to support output (#1032)

    * geospatial aggregation to support output

    * format

    * rename

    * fix deprecation message

    * improve example

commit 6be4b44
Merge: 88c3877 98f5033
Author: Håkon V. Treider <[email protected]>
Date:   Tue Sep 27 03:06:22 2022 +0200

    Merge branch 'master' into v5-release

commit 88c3877
Author: Håkon V. Treider <[email protected]>
Date:   Tue Sep 27 03:04:20 2022 +0200

    Cleanup of CogClient mock duplicates. Update with 20 missing APIs... (#1046)

commit 9b30dba
Author: Håkon V. Treider <[email protected]>
Date:   Tue Sep 27 02:48:55 2022 +0200

    Move DatapointsAPI to time_series.data. Many minor fixups. Bump max_workers to 20. (#1042)

commit 98f5033
Author: Håkon V. Treider <[email protected]>
Date:   Mon Sep 26 19:44:30 2022 +0200

    Simplify github workflows. Minor project linting settings changes (#1039)

    * Simplify GitHub workflows. Minor project linting settings changes
haakonvt added a commit that referenced this pull request Oct 7, 2022
commit b317169
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:46:43 2022 +0200

    Dps Fetch Refactor #5: New dps fetch code (#1043)

    * New dps fetch code

    * typos and tweaks

    * Update cognite/client/_api/datapoint_tasks.py

    * forgot self arg...

    * Fix insertion of DatapointsArray

    * Make dps retrieve method kwargs only

    * fstring fix

    * Fix to avoid float dtype for count agg

commit 4e673cb
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:43:13 2022 +0200

    Dps Fetch Refactor #9: Unit tests, added, fixed and improved. (#1047)

    * Unit tests, added, fixed and improved.

    * add test for split_into_n_parts and find_duplicates

commit 8099cb3
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:42:49 2022 +0200

    Integration tests, added, fixed and improved (#1048)

commit a049ec4
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:42:30 2022 +0200

    Dps Fetch Refactor #11: Readme, docs and changelog (#1049)

    * Readme, docs and changelog

    * Improve changelog

    * Changelog almost done

    * Mooooooare changelog details

    * Apply 12 spell check suggestions from code review

    * Reword the note about `include_aggregate_name`

    * Update CHANGELOG.md

commit e74699e
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 00:21:33 2022 +0200

    Dps Fetch Refactor #12: Fix `ms_to_datetime` on windows (#1056)

    * Fix ms_to_datetime for windows

    * make single ms_to_datetime impl. work on all OSs. remove removed warnings from filterwarnings

commit 59aace9
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 00:11:57 2022 +0200

    Dps Fetch Refactor #6: Add array-based data classes. Change camel case defaults (#1044)

    * Add array-based data classes. Change camel case defaults

    * No copy in df constructor from numpy arrays yields another 100 x

    * Update cognite/client/data_classes/datapoints.py

    * Update cognite/client/data_classes/datapoints.py

    * remove unnecessary list conv

    * Remove _strip_aggregate_names entirely

commit f0b0525
Author: Håkon V. Treider <[email protected]>
Date:   Fri Sep 30 14:04:31 2022 +0200

    Dps Fetch Refactor #7: Extend utils with new functionality (#1045)

    * Extend utils with new functionality

    * add hashable bound to type var

commit c281ac0
Author: Håkon V. Treider <[email protected]>
Date:   Fri Sep 30 14:04:00 2022 +0200

    Dps Fetch Refactor #3: Add ThreadPoolExecutor with PriorityQueue (#1041)

    * Add ThreadPoolExecutor with PriorityQueue

    * move mypy ignore flag to ini file

commit 920cd84
Author: Håkon V. Treider <[email protected]>
Date:   Fri Sep 30 13:12:17 2022 +0200

    Dps Fetch Refactor #2: Update dependencies and version. Run poetry lock (#1040)

    * Update dependencies and version. Run poetry lock

    * relax and tighten dep. reqs

    * Trim pandas version (no-op)

commit f0a69d8
Merge: 6be4b44 7abd1c2
Author: Håkon V. Treider <[email protected]>
Date:   Thu Sep 29 02:22:23 2022 +0200

    Merge branch 'master' into v5-release

commit 7abd1c2
Author: Jaime Silva <[email protected]>
Date:   Wed Sep 28 03:55:39 2022 -0500

    Rename alpha data models destination in transformations (#1050)

    * rename alpha data models to data models

    * version bump

    * unskip dms and jobs tests

    * show warning when using FDMs on transformations

commit aa3f52b
Author: tuanng-cognite <[email protected]>
Date:   Tue Sep 27 14:00:50 2022 +0200

    geospatial aggregation to support output (#1032)

    * geospatial aggregation to support output

    * format

    * rename

    * fix deprecation message

    * improve example

commit 6be4b44
Merge: 88c3877 98f5033
Author: Håkon V. Treider <[email protected]>
Date:   Tue Sep 27 03:06:22 2022 +0200

    Merge branch 'master' into v5-release

commit 88c3877
Author: Håkon V. Treider <[email protected]>
Date:   Tue Sep 27 03:04:20 2022 +0200

    Cleanup of CogClient mock duplicates. Update with 20 missing APIs... (#1046)

commit 9b30dba
Author: Håkon V. Treider <[email protected]>
Date:   Tue Sep 27 02:48:55 2022 +0200

    Move DatapointsAPI to time_series.data. Many minor fixups. Bump max_workers to 20. (#1042)

commit 98f5033
Author: Håkon V. Treider <[email protected]>
Date:   Mon Sep 26 19:44:30 2022 +0200

    Simplify github workflows. Minor project linting settings changes (#1039)

    * Simplify GitHub workflows. Minor project linting settings changes
haakonvt added a commit that referenced this pull request Oct 7, 2022
commit b317169
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:46:43 2022 +0200

    Dps Fetch Refactor #5: New dps fetch code (#1043)

    * New dps fetch code

    * typos and tweaks

    * Update cognite/client/_api/datapoint_tasks.py

    * forgot self arg...

    * Fix insertion of DatapointsArray

    * Make dps retrieve method kwargs only

    * fstring fix

    * Fix to avoid float dtype for count agg

commit 4e673cb
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:43:13 2022 +0200

    Dps Fetch Refactor #9: Unit tests, added, fixed and improved. (#1047)

    * Unit tests, added, fixed and improved.

    * add test for split_into_n_parts and find_duplicates

commit 8099cb3
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:42:49 2022 +0200

    Integration tests, added, fixed and improved (#1048)

commit a049ec4
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:42:30 2022 +0200

    Dps Fetch Refactor #11: Readme, docs and changelog (#1049)

    * Readme, docs and changelog

    * Improve changelog

    * Changelog almost done

    * Mooooooare changelog details

    * Apply 12 spell check suggestions from code review

    * Reword the note about `include_aggregate_name`

    * Update CHANGELOG.md

commit e74699e
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 00:21:33 2022 +0200

    Dps Fetch Refactor #12: Fix `ms_to_datetime` on windows (#1056)

    * Fix ms_to_datetime for windows

    * make single ms_to_datetime impl. work on all OSs. remove removed warnings from filterwarnings

commit 59aace9
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 00:11:57 2022 +0200

    Dps Fetch Refactor #6: Add array-based data classes. Change camel case defaults (#1044)

    * Add array-based data classes. Change camel case defaults

    * No copy in df constructor from numpy arrays yields another 100 x

    * Update cognite/client/data_classes/datapoints.py

    * Update cognite/client/data_classes/datapoints.py

    * remove unnecessary list conv

    * Remove _strip_aggregate_names entirely

commit f0b0525
Author: Håkon V. Treider <[email protected]>
Date:   Fri Sep 30 14:04:31 2022 +0200

    Dps Fetch Refactor #7: Extend utils with new functionality (#1045)

    * Extend utils with new functionality

    * add hashable bound to type var

commit c281ac0
Author: Håkon V. Treider <[email protected]>
Date:   Fri Sep 30 14:04:00 2022 +0200

    Dps Fetch Refactor #3: Add ThreadPoolExecutor with PriorityQueue (#1041)

    * Add ThreadPoolExecutor with PriorityQueue

    * move mypy ignore flag to ini file

commit 920cd84
Author: Håkon V. Treider <[email protected]>
Date:   Fri Sep 30 13:12:17 2022 +0200

    Dps Fetch Refactor #2: Update dependencies and version. Run poetry lock (#1040)

    * Update dependencies and version. Run poetry lock

    * relax and tighten dep. reqs

    * Trim pandas version (no-op)

commit f0a69d8
Merge: 6be4b44 7abd1c2
Author: Håkon V. Treider <[email protected]>
Date:   Thu Sep 29 02:22:23 2022 +0200

    Merge branch 'master' into v5-release

commit 7abd1c2
Author: Jaime Silva <[email protected]>
Date:   Wed Sep 28 03:55:39 2022 -0500

    Rename alpha data models destination in transformations (#1050)

    * rename alpha data models to data models

    * version bump

    * unskip dms and jobs tests

    * show warning when using FDMs on transformations

commit aa3f52b
Author: tuanng-cognite <[email protected]>
Date:   Tue Sep 27 14:00:50 2022 +0200

    geospatial aggregation to support output (#1032)

    * geospatial aggregation to support output

    * format

    * rename

    * fix deprecation message

    * improve example

commit 6be4b44
Merge: 88c3877 98f5033
Author: Håkon V. Treider <[email protected]>
Date:   Tue Sep 27 03:06:22 2022 +0200

    Merge branch 'master' into v5-release

commit 88c3877
Author: Håkon V. Treider <[email protected]>
Date:   Tue Sep 27 03:04:20 2022 +0200

    Cleanup of CogClient mock duplicates. Update with 20 missing APIs... (#1046)

commit 9b30dba
Author: Håkon V. Treider <[email protected]>
Date:   Tue Sep 27 02:48:55 2022 +0200

    Move DatapointsAPI to time_series.data. Many minor fixups. Bump max_workers to 20. (#1042)

commit 98f5033
Author: Håkon V. Treider <[email protected]>
Date:   Mon Sep 26 19:44:30 2022 +0200

    Simplify github workflows. Minor project linting settings changes (#1039)

    * Simplify GitHub workflows. Minor project linting settings changes
haakonvt added a commit that referenced this pull request Oct 10, 2022
commit b317169
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:46:43 2022 +0200

    Dps Fetch Refactor #5: New dps fetch code (#1043)

    * New dps fetch code

    * typos and tweaks

    * Update cognite/client/_api/datapoint_tasks.py

    * forgot self arg...

    * Fix insertion of DatapointsArray

    * Make dps retrieve method kwargs only

    * fstring fix

    * Fix to avoid float dtype for count agg

commit 4e673cb
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:43:13 2022 +0200

    Dps Fetch Refactor #9: Unit tests, added, fixed and improved. (#1047)

    * Unit tests, added, fixed and improved.

    * add test for split_into_n_parts and find_duplicates

commit 8099cb3
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:42:49 2022 +0200

    Integration tests, added, fixed and improved (#1048)

commit a049ec4
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:42:30 2022 +0200

    Dps Fetch Refactor #11: Readme, docs and changelog (#1049)

    * Readme, docs and changelog

    * Improve changelog

    * Changelog almost done

    * Mooooooare changelog details

    * Apply 12 spell check suggestions from code review

    * Reword the note about `include_aggregate_name`

    * Update CHANGELOG.md

commit e74699e
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 00:21:33 2022 +0200

    Dps Fetch Refactor #12: Fix `ms_to_datetime` on windows (#1056)

    * Fix ms_to_datetime for windows

    * make single ms_to_datetime impl. work on all OSs. remove removed warnings from filterwarnings

commit 59aace9
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 00:11:57 2022 +0200

    Dps Fetch Refactor #6: Add array-based data classes. Change camel case defaults (#1044)

    * Add array-based data classes. Change camel case defaults

    * No copy in df constructor from numpy arrays yields another 100 x

    * Update cognite/client/data_classes/datapoints.py

    * Update cognite/client/data_classes/datapoints.py

    * remove unnecessary list conv

    * Remove _strip_aggregate_names entirely

commit f0b0525
Author: Håkon V. Treider <[email protected]>
Date:   Fri Sep 30 14:04:31 2022 +0200

    Dps Fetch Refactor #7: Extend utils with new functionality (#1045)

    * Extend utils with new functionality

    * add hashable bound to type var

commit c281ac0
Author: Håkon V. Treider <[email protected]>
Date:   Fri Sep 30 14:04:00 2022 +0200

    Dps Fetch Refactor #3: Add ThreadPoolExecutor with PriorityQueue (#1041)

    * Add ThreadPoolExecutor with PriorityQueue

    * move mypy ignore flag to ini file

commit 920cd84
Author: Håkon V. Treider <[email protected]>
Date:   Fri Sep 30 13:12:17 2022 +0200

    Dps Fetch Refactor #2: Update dependencies and version. Run poetry lock (#1040)

    * Update dependencies and version. Run poetry lock

    * relax and tighten dep. reqs

    * Trim pandas version (no-op)

commit f0a69d8
Merge: 6be4b44 7abd1c2
Author: Håkon V. Treider <[email protected]>
Date:   Thu Sep 29 02:22:23 2022 +0200

    Merge branch 'master' into v5-release

commit 7abd1c2
Author: Jaime Silva <[email protected]>
Date:   Wed Sep 28 03:55:39 2022 -0500

    Rename alpha data models destination in transformations (#1050)

    * rename alpha data models to data models

    * version bump

    * unskip dms and jobs tests

    * show warning when using FDMs on transformations

commit aa3f52b
Author: tuanng-cognite <[email protected]>
Date:   Tue Sep 27 14:00:50 2022 +0200

    geospatial aggregation to support output (#1032)

    * geospatial aggregation to support output

    * format

    * rename

    * fix deprecation message

    * improve example

commit 6be4b44
Merge: 88c3877 98f5033
Author: Håkon V. Treider <[email protected]>
Date:   Tue Sep 27 03:06:22 2022 +0200

    Merge branch 'master' into v5-release

commit 88c3877
Author: Håkon V. Treider <[email protected]>
Date:   Tue Sep 27 03:04:20 2022 +0200

    Cleanup of CogClient mock duplicates. Update with 20 missing APIs... (#1046)

commit 9b30dba
Author: Håkon V. Treider <[email protected]>
Date:   Tue Sep 27 02:48:55 2022 +0200

    Move DatapointsAPI to time_series.data. Many minor fixups. Bump max_workers to 20. (#1042)

commit 98f5033
Author: Håkon V. Treider <[email protected]>
Date:   Mon Sep 26 19:44:30 2022 +0200

    Simplify github workflows. Minor project linting settings changes (#1039)

    * Simplify GitHub workflows. Minor project linting settings changes
haakonvt added a commit that referenced this pull request Oct 13, 2022
commit b317169
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:46:43 2022 +0200

    Dps Fetch Refactor #5: New dps fetch code (#1043)

    * New dps fetch code

    * typos and tweaks

    * Update cognite/client/_api/datapoint_tasks.py

    * forgot self arg...

    * Fix insertion of DatapointsArray

    * Make dps retrieve method kwargs only

    * fstring fix

    * Fix to avoid float dtype for count agg

commit 4e673cb
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:43:13 2022 +0200

    Dps Fetch Refactor #9: Unit tests, added, fixed and improved. (#1047)

    * Unit tests, added, fixed and improved.

    * add test for split_into_n_parts and find_duplicates

commit 8099cb3
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:42:49 2022 +0200

    Integration tests, added, fixed and improved (#1048)

commit a049ec4
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:42:30 2022 +0200

    Dps Fetch Refactor #11: Readme, docs and changelog (#1049)

    * Readme, docs and changelog

    * Improve changelog

    * Changelog almost done

    * Mooooooare changelog details

    * Apply 12 spell check suggestions from code review

    * Reword the note about `include_aggregate_name`

    * Update CHANGELOG.md

commit e74699e
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 00:21:33 2022 +0200

    Dps Fetch Refactor #12: Fix `ms_to_datetime` on windows (#1056)

    * Fix ms_to_datetime for windows

    * make single ms_to_datetime impl. work on all OSs. remove removed warnings from filterwarnings

commit 59aace9
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 00:11:57 2022 +0200

    Dps Fetch Refactor #6: Add array-based data classes. Change camel case defaults (#1044)

    * Add array-based data classes. Change camel case defaults

    * No copy in df constructor from numpy arrays yields another 100 x

    * Update cognite/client/data_classes/datapoints.py

    * Update cognite/client/data_classes/datapoints.py

    * remove unnecessary list conv

    * Remove _strip_aggregate_names entirely

commit f0b0525
Author: Håkon V. Treider <[email protected]>
Date:   Fri Sep 30 14:04:31 2022 +0200

    Dps Fetch Refactor #7: Extend utils with new functionality (#1045)

    * Extend utils with new functionality

    * add hashable bound to type var

commit c281ac0
Author: Håkon V. Treider <[email protected]>
Date:   Fri Sep 30 14:04:00 2022 +0200

    Dps Fetch Refactor #3: Add ThreadPoolExecutor with PriorityQueue (#1041)

    * Add ThreadPoolExecutor with PriorityQueue

    * move mypy ignore flag to ini file

commit 920cd84
Author: Håkon V. Treider <[email protected]>
Date:   Fri Sep 30 13:12:17 2022 +0200

    Dps Fetch Refactor #2: Update dependencies and version. Run poetry lock (#1040)

    * Update dependencies and version. Run poetry lock

    * relax and tighten dep. reqs

    * Trim pandas version (no-op)

commit f0a69d8
Merge: 6be4b44 7abd1c2
Author: Håkon V. Treider <[email protected]>
Date:   Thu Sep 29 02:22:23 2022 +0200

    Merge branch 'master' into v5-release

commit 7abd1c2
Author: Jaime Silva <[email protected]>
Date:   Wed Sep 28 03:55:39 2022 -0500

    Rename alpha data models destination in transformations (#1050)

    * rename alpha data models to data models

    * version bump

    * unskip dms and jobs tests

    * show warning when using FDMs on transformations

commit aa3f52b
Author: tuanng-cognite <[email protected]>
Date:   Tue Sep 27 14:00:50 2022 +0200

    geospatial aggregation to support output (#1032)

    * geospatial aggregation to support output

    * format

    * rename

    * fix deprecation message

    * improve example

commit 6be4b44
Merge: 88c3877 98f5033
Author: Håkon V. Treider <[email protected]>
Date:   Tue Sep 27 03:06:22 2022 +0200

    Merge branch 'master' into v5-release

commit 88c3877
Author: Håkon V. Treider <[email protected]>
Date:   Tue Sep 27 03:04:20 2022 +0200

    Cleanup of CogClient mock duplicates. Update with 20 missing APIs... (#1046)

commit 9b30dba
Author: Håkon V. Treider <[email protected]>
Date:   Tue Sep 27 02:48:55 2022 +0200

    Move DatapointsAPI to time_series.data. Many minor fixups. Bump max_workers to 20. (#1042)

commit 98f5033
Author: Håkon V. Treider <[email protected]>
Date:   Mon Sep 26 19:44:30 2022 +0200

    Simplify github workflows. Minor project linting settings changes (#1039)

    * Simplify GitHub workflows. Minor project linting settings changes
haakonvt added a commit that referenced this pull request Oct 17, 2022
commit b317169
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:46:43 2022 +0200

    Dps Fetch Refactor #5: New dps fetch code (#1043)

    * New dps fetch code

    * typos and tweaks

    * Update cognite/client/_api/datapoint_tasks.py

    * forgot self arg...

    * Fix insertion of DatapointsArray

    * Make dps retrieve method kwargs only

    * fstring fix

    * Fix to avoid float dtype for count agg

commit 4e673cb
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:43:13 2022 +0200

    Dps Fetch Refactor #9: Unit tests, added, fixed and improved. (#1047)

    * Unit tests, added, fixed and improved.

    * add test for split_into_n_parts and find_duplicates

commit 8099cb3
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:42:49 2022 +0200

    Integration tests, added, fixed and improved (#1048)

commit a049ec4
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:42:30 2022 +0200

    Dps Fetch Refactor #11: Readme, docs and changelog (#1049)

    * Readme, docs and changelog

    * Improve changelog

    * Changelog almost done

    * Mooooooare changelog details

    * Apply 12 spell check suggestions from code review

    * Reword the note about `include_aggregate_name`

    * Update CHANGELOG.md

commit e74699e
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 00:21:33 2022 +0200

    Dps Fetch Refactor #12: Fix `ms_to_datetime` on windows (#1056)

    * Fix ms_to_datetime for windows

    * make single ms_to_datetime impl. work on all OSs. remove removed warnings from filterwarnings

commit 59aace9
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 00:11:57 2022 +0200

    Dps Fetch Refactor #6: Add array-based data classes. Change camel case defaults (#1044)

    * Add array-based data classes. Change camel case defaults

    * No copy in df constructor from numpy arrays yields another 100 x

    * Update cognite/client/data_classes/datapoints.py

    * Update cognite/client/data_classes/datapoints.py

    * remove unnecessary list conv

    * Remove _strip_aggregate_names entirely

commit f0b0525
Author: Håkon V. Treider <[email protected]>
Date:   Fri Sep 30 14:04:31 2022 +0200

    Dps Fetch Refactor #7: Extend utils with new functionality (#1045)

    * Extend utils with new functionality

    * add hashable bound to type var

commit c281ac0
Author: Håkon V. Treider <[email protected]>
Date:   Fri Sep 30 14:04:00 2022 +0200

    Dps Fetch Refactor #3: Add ThreadPoolExecutor with PriorityQueue (#1041)

    * Add ThreadPoolExecutor with PriorityQueue

    * move mypy ignore flag to ini file

commit 920cd84
Author: Håkon V. Treider <[email protected]>
Date:   Fri Sep 30 13:12:17 2022 +0200

    Dps Fetch Refactor #2: Update dependencies and version. Run poetry lock (#1040)

    * Update dependencies and version. Run poetry lock

    * relax and tighten dep. reqs

    * Trim pandas version (no-op)

commit f0a69d8
Merge: 6be4b44 7abd1c2
Author: Håkon V. Treider <[email protected]>
Date:   Thu Sep 29 02:22:23 2022 +0200

    Merge branch 'master' into v5-release

commit 7abd1c2
Author: Jaime Silva <[email protected]>
Date:   Wed Sep 28 03:55:39 2022 -0500

    Rename alpha data models destination in transformations (#1050)

    * rename alpha data models to data models

    * version bump

    * unskip dms and jobs tests

    * show warning when using FDMs on transformations

commit aa3f52b
Author: tuanng-cognite <[email protected]>
Date:   Tue Sep 27 14:00:50 2022 +0200

    geospatial aggregation to support output (#1032)

    * geospatial aggregation to support output

    * format

    * rename

    * fix deprecation message

    * improve example

commit 6be4b44
Merge: 88c3877 98f5033
Author: Håkon V. Treider <[email protected]>
Date:   Tue Sep 27 03:06:22 2022 +0200

    Merge branch 'master' into v5-release

commit 88c3877
Author: Håkon V. Treider <[email protected]>
Date:   Tue Sep 27 03:04:20 2022 +0200

    Cleanup of CogClient mock duplicates. Update with 20 missing APIs... (#1046)

commit 9b30dba
Author: Håkon V. Treider <[email protected]>
Date:   Tue Sep 27 02:48:55 2022 +0200

    Move DatapointsAPI to time_series.data. Many minor fixups. Bump max_workers to 20. (#1042)

commit 98f5033
Author: Håkon V. Treider <[email protected]>
Date:   Mon Sep 26 19:44:30 2022 +0200

    Simplify github workflows. Minor project linting settings changes (#1039)

    * Simplify GitHub workflows. Minor project linting settings changes
haakonvt added a commit that referenced this pull request Nov 20, 2022
commit b317169
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:46:43 2022 +0200

    Dps Fetch Refactor #5: New dps fetch code (#1043)

    * New dps fetch code

    * typos and tweaks

    * Update cognite/client/_api/datapoint_tasks.py

    * forgot self arg...

    * Fix insertion of DatapointsArray

    * Make dps retrieve method kwargs only

    * fstring fix

    * Fix to avoid float dtype for count agg

commit 4e673cb
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:43:13 2022 +0200

    Dps Fetch Refactor #9: Unit tests, added, fixed and improved. (#1047)

    * Unit tests, added, fixed and improved.

    * add test for split_into_n_parts and find_duplicates

commit 8099cb3
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:42:49 2022 +0200

    Integration tests, added, fixed and improved (#1048)

commit a049ec4
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:42:30 2022 +0200

    Dps Fetch Refactor #11: Readme, docs and changelog (#1049)

    * Readme, docs and changelog

    * Improve changelog

    * Changelog almost done

    * Mooooooare changelog details

    * Apply 12 spell check suggestions from code review

    * Reword the note about `include_aggregate_name`

    * Update CHANGELOG.md

commit e74699e
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 00:21:33 2022 +0200

    Dps Fetch Refactor #12: Fix `ms_to_datetime` on windows (#1056)

    * Fix ms_to_datetime for windows

    * make single ms_to_datetime impl. work on all OSs. remove removed warnings from filterwarnings

commit 59aace9
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 00:11:57 2022 +0200

    Dps Fetch Refactor #6: Add array-based data classes. Change camel case defaults (#1044)

    * Add array-based data classes. Change camel case defaults

    * No copy in df constructor from numpy arrays yields another 100 x

    * Update cognite/client/data_classes/datapoints.py

    * Update cognite/client/data_classes/datapoints.py

    * remove unnecessary list conv

    * Remove _strip_aggregate_names entirely

commit f0b0525
Author: Håkon V. Treider <[email protected]>
Date:   Fri Sep 30 14:04:31 2022 +0200

    Dps Fetch Refactor #7: Extend utils with new functionality (#1045)

    * Extend utils with new functionality

    * add hashable bound to type var

commit c281ac0
Author: Håkon V. Treider <[email protected]>
Date:   Fri Sep 30 14:04:00 2022 +0200

    Dps Fetch Refactor #3: Add ThreadPoolExecutor with PriorityQueue (#1041)

    * Add ThreadPoolExecutor with PriorityQueue

    * move mypy ignore flag to ini file

commit 920cd84
Author: Håkon V. Treider <[email protected]>
Date:   Fri Sep 30 13:12:17 2022 +0200

    Dps Fetch Refactor #2: Update dependencies and version. Run poetry lock (#1040)

    * Update dependencies and version. Run poetry lock

    * relax and tighten dep. reqs

    * Trim pandas version (no-op)

commit f0a69d8
Merge: 6be4b44 7abd1c2
Author: Håkon V. Treider <[email protected]>
Date:   Thu Sep 29 02:22:23 2022 +0200

    Merge branch 'master' into v5-release

commit 7abd1c2
Author: Jaime Silva <[email protected]>
Date:   Wed Sep 28 03:55:39 2022 -0500

    Rename alpha data models destination in transformations (#1050)

    * rename alpha data models to data models

    * version bump

    * unskip dms and jobs tests

    * show warning when using FDMs on transformations

commit aa3f52b
Author: tuanng-cognite <[email protected]>
Date:   Tue Sep 27 14:00:50 2022 +0200

    geospatial aggregation to support output (#1032)

    * geospatial aggregation to support output

    * format

    * rename

    * fix deprecation message

    * improve example

commit 6be4b44
Merge: 88c3877 98f5033
Author: Håkon V. Treider <[email protected]>
Date:   Tue Sep 27 03:06:22 2022 +0200

    Merge branch 'master' into v5-release

commit 88c3877
Author: Håkon V. Treider <[email protected]>
Date:   Tue Sep 27 03:04:20 2022 +0200

    Cleanup of CogClient mock duplicates. Update with 20 missing APIs... (#1046)

commit 9b30dba
Author: Håkon V. Treider <[email protected]>
Date:   Tue Sep 27 02:48:55 2022 +0200

    Move DatapointsAPI to time_series.data. Many minor fixups. Bump max_workers to 20. (#1042)

commit 98f5033
Author: Håkon V. Treider <[email protected]>
Date:   Mon Sep 26 19:44:30 2022 +0200

    Simplify github workflows. Minor project linting settings changes (#1039)

    * Simplify GitHub workflows. Minor project linting settings changes
haakonvt added a commit that referenced this pull request Nov 29, 2022
commit b317169
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:46:43 2022 +0200

    Dps Fetch Refactor #5: New dps fetch code (#1043)

    * New dps fetch code

    * typos and tweaks

    * Update cognite/client/_api/datapoint_tasks.py

    * forgot self arg...

    * Fix insertion of DatapointsArray

    * Make dps retrieve method kwargs only

    * fstring fix

    * Fix to avoid float dtype for count agg

commit 4e673cb
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:43:13 2022 +0200

    Dps Fetch Refactor #9: Unit tests, added, fixed and improved. (#1047)

    * Unit tests, added, fixed and improved.

    * add test for split_into_n_parts and find_duplicates

commit 8099cb3
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:42:49 2022 +0200

    Integration tests, added, fixed and improved (#1048)

commit a049ec4
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 01:42:30 2022 +0200

    Dps Fetch Refactor #11: Readme, docs and changelog (#1049)

    * Readme, docs and changelog

    * Improve changelog

    * Changelog almost done

    * Mooooooare changelog details

    * Apply 12 spell check suggestions from code review

    * Reword the note about `include_aggregate_name`

    * Update CHANGELOG.md

commit e74699e
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 00:21:33 2022 +0200

    Dps Fetch Refactor #12: Fix `ms_to_datetime` on windows (#1056)

    * Fix ms_to_datetime for windows

    * make single ms_to_datetime impl. work on all OSs. remove removed warnings from filterwarnings

commit 59aace9
Author: Håkon V. Treider <[email protected]>
Date:   Tue Oct 4 00:11:57 2022 +0200

    Dps Fetch Refactor #6: Add array-based data classes. Change camel case defaults (#1044)

    * Add array-based data classes. Change camel case defaults

    * No copy in df constructor from numpy arrays yields another 100 x

    * Update cognite/client/data_classes/datapoints.py

    * Update cognite/client/data_classes/datapoints.py

    * remove unnecessary list conv

    * Remove _strip_aggregate_names entirely

commit f0b0525
Author: Håkon V. Treider <[email protected]>
Date:   Fri Sep 30 14:04:31 2022 +0200

    Dps Fetch Refactor #7: Extend utils with new functionality (#1045)

    * Extend utils with new functionality

    * add hashable bound to type var

commit c281ac0
Author: Håkon V. Treider <[email protected]>
Date:   Fri Sep 30 14:04:00 2022 +0200

    Dps Fetch Refactor #3: Add ThreadPoolExecutor with PriorityQueue (#1041)

    * Add ThreadPoolExecutor with PriorityQueue

    * move mypy ignore flag to ini file

commit 920cd84
Author: Håkon V. Treider <[email protected]>
Date:   Fri Sep 30 13:12:17 2022 +0200

    Dps Fetch Refactor #2: Update dependencies and version. Run poetry lock (#1040)

    * Update dependencies and version. Run poetry lock

    * relax and tighten dep. reqs

    * Trim pandas version (no-op)

commit f0a69d8
Merge: 6be4b44 7abd1c2
Author: Håkon V. Treider <[email protected]>
Date:   Thu Sep 29 02:22:23 2022 +0200

    Merge branch 'master' into v5-release

commit 7abd1c2
Author: Jaime Silva <[email protected]>
Date:   Wed Sep 28 03:55:39 2022 -0500

    Rename alpha data models destination in transformations (#1050)

    * rename alpha data models to data models

    * version bump

    * unskip dms and jobs tests

    * show warning when using FDMs on transformations

commit aa3f52b
Author: tuanng-cognite <[email protected]>
Date:   Tue Sep 27 14:00:50 2022 +0200

    geospatial aggregation to support output (#1032)

    * geospatial aggregation to support output

    * format

    * rename

    * fix deprecation message

    * improve example

commit 6be4b44
Merge: 88c3877 98f5033
Author: Håkon V. Treider <[email protected]>
Date:   Tue Sep 27 03:06:22 2022 +0200

    Merge branch 'master' into v5-release

commit 88c3877
Author: Håkon V. Treider <[email protected]>
Date:   Tue Sep 27 03:04:20 2022 +0200

    Cleanup of CogClient mock duplicates. Update with 20 missing APIs... (#1046)

commit 9b30dba
Author: Håkon V. Treider <[email protected]>
Date:   Tue Sep 27 02:48:55 2022 +0200

    Move DatapointsAPI to time_series.data. Many minor fixups. Bump max_workers to 20. (#1042)

commit 98f5033
Author: Håkon V. Treider <[email protected]>
Date:   Mon Sep 26 19:44:30 2022 +0200

    Simplify github workflows. Minor project linting settings changes (#1039)

    * Simplify GitHub workflows. Minor project linting settings changes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants