-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGELOG
220 lines (169 loc) · 6.14 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
Changes are grouped as follows
- `Added` for new features.
- `Changed` for changes in existing functionality.
- `Deprecated` for soon-to-be removed features.
- `Removed` for now removed features.
- `Fixed` for any bug fixes.
- `Security` in case of vulnerabilities.
# [2.3.12] - 2025-01-08
# [2.3.11] - 2024-07-23
- TODO: write down the changes
# [2.3.10] - 2023-11-22
- TODO: write down the changes
# [2.3.9] - 2023-05-26
### Fixed
- Data model centric support in transformation. Deployed InstancesDestinationConfig class and unit test cases.
# [2.3.8] - 2023-05-23
- Data model centric support in transformation, cognite-sdk version 6.2.1 release
# [2.3.7] - 2023-05-12
### Fixed
- Renaming instance_nodes -> nodes and instance_edges -> edges. Because the SDK is not consistent with the destination in the Transformation API and CLI
# [2.3.6] - 2023-05-12
- Removed DMS v2 destination in transformations
# [2.3.5] - 2023-05-10
### Fixed
- When creating a transformation with a different source- and destination CDF project, the project setting is no longer overridden by the setting in the CogniteClient configuration allowing the user to read from the specified source project and write to the specified and potentially different destination project.
# [2.3.3] - 2023-03-17
### Fixed
- Match on type instead of isinstance for `Nodes` and `Edges`.
# [2.3.2] - 2023-03-16
### Changed
- Split `Instances` destination type to `Nodes` and `Edges`.
# [2.3.1] - 2023-03-14
### Fixed
- Use old sdk version 5.5.* to continue support instances.
# [2.3.0] - 2023-02-10
### Added
- Support `Instances` destination type.
## [2.2.2] - 2022-10-26
### Added
- `DestinationConfigType` for `raw` to accept `database` and `table` fields in addition to `rawDatabase` and `rawTable`.
## [2.2.1] - 2022-10-07
### Fixed
- Upgrade cognite-sdk after `TransformationSchedule.dump()` fix.
## [2.2.0] - 2022-09-29
### Added
- Support tags on transformations.
## [2.1.4] - 2022-09-16
### Fixed
- Upgrade cognite-sdk to fix the nonce updates for manifest authentication.
## [2.1.3] - 2022-08-22
### Fixed
- Fix unexpected breaking change when authenticating with API keys. Cognite SDK 4.1.1 also removed project inference from the API keys so `cdf-project-name` became a required option.
Tranformations CLI now infers it using Login API to keep backward compatibility.
## [2.1.2] - 2022-08-18
### Fixed
- Update to cognite-sdk v4.1.1, removes the support for reserved environment variables such as `COGNITE_API_KEY` and `COGNITE_CLIENT_ID`.
## [2.1.1] - 2022-08-09
### Fixed
- Fix issue on reading transformations with job details.
## [2.1.0] - 2022-06-21
### Added
- support for loading `.env` file for local testing (not CI/CD)
- `.env_example` provided as template
- this can simplify providing your local tests with all required env-variables
## [2.0.0] - 2022-08-02
### Removed
- Python 3.7 support
## Added
- Compatibility with Cognite SDK ^3.0
## [1.6.2] - 2022-06-17
### Added
- Separate special destination config classes for sequences and raw
- Make updates to experimental destination type to work with transformations backend
## [1.6.1] - 2022-05-09
### Added
- Support `TRANSFORMATIONS_LEGACY_MODE` environment variable besides `legacy-mode` flag.
## [1.6.0] - 2022-05-09
### Added
- Add a global `legacy-mode` flag for transformation deployment to parse all manifests into legacy config structure.
### Fixed
- Fix legacy style destination config to fit the old config structure.
## [1.5.1] - 2022-03-28
### Fixed
- Accept destination types with or without "_" in list with filter. Example: "sequence_rows" and "sequencerows" will work.
- Tag experimental destination type with alpha.
## [1.5.0] - 2022-03-25
### Added
- Support `SequenceRows` destination type.
- Support filter by data set IDs, data set external IDs, conflict mode and destination type on `transformation.list`.
## [1.4.2] - 2022-03-09
### Fixed
- Handle missing values in rows of the query response.
## [1.4.1] - 2022-03-08
### Added
- Perform text wrapping when tabulating queried data.
### Fixed
- Handle `struct` types in preview dataframe schema.
## [1.4.0] - 2022-02-14
### Added
- Support clearing data set ids on transformations.
## [1.3.2] - 2022-02-14
### Added
- Support setting data set ids on transformations.
## [1.3.1] - 2022-01-31
### Fixed
- Chunk items before calling Transformation API
## [1.3.0] - 2022-01-21
### Fixed
- Support parsing environment variables as booleans.
## [1.2.11] - 2021-12-16
### Fixed
- Use single schedule creates until fixed in API.
## [1.2.10] - 2021-12-10
### Fixed
- Use single schedule updates until fixed in API.
## [1.2.9] - 2021-12-09
### Fixed
- Fix result printing on tuples.
## [1.2.8] - 2021-12-09
### Fixed
- Do not flatten SQL queries, preserve newlines.
## [1.2.7] - 2021-12-09
### Fixed
- Fix flat destination type style in transformation config
### Added
- Added styled logs on deploy command
## [1.2.6] - 2021-12-09
### Added
- Support for the is_paused parameter with schedules
## [1.2.5] - 2021-12-07
### Fixed
- Use official cognite-sdk
## [1.2.4] - 2021-12-06
### Fixed
- Use SDK version 0.60.30
## [1.2.3] - 2021-12-01
### Fixed
- Use new SDK version
## [1.2.2] - 2021-11-22
### Added
- Support validating read/write credentials
## [1.2.1] - 2021-11-17
### Fixed
- Fix transformation list by upgrading to cognite-sdk with fixed TransformationBlockedInfo class
### Added
- Add GitHub Action `--debug` option to make it easier to follow the progress.
## [1.2.0] - 2021-11-16
### Added
- Add support for simple pagination in jobs and transformations
## [1.1.0] - 2021-11-12
### Added
- Support str on TransformationConfig.destination when the target is not raw.
## [1.0.1] - 2021-11-09
### Fixed
- Make query file path relative to the manifest path.
### Added
- Add migration guide
- Restructure the README.md
- Publish documentation on Read The Docs.
## [1.0.0] - 2021-11-08
### Added
- Add Quickstart documentation
## [0.1.O] - 2021-11-03
### Added
- Everything