Skip to content

Commit

Permalink
documented changes
Browse files Browse the repository at this point in the history
  • Loading branch information
MDobransky committed Aug 23, 2024
1 parent a49b06c commit 8e18da2
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
# Change Log
All notable changes to this project will be documented in this file.

## 2.0.0 - 2024-mm-dd
#### Runner
- runner config now accepts environment variables
- restructured runner config
- added metadata and feature loader sections
- target moved to pipeline
- dependency date_col is mandatory
- custom extras config is available in each pipeline and will be passed as dictionary
- general section is renamed to runner
- transformation header changed
- added argument to skip dependency checking
#### Jobs
- config holder removed from jobs
- metadata_manager and feature_loader are now available arguments, depending on configuration
#### TableReader
- function signatures changed
- until -> date_until
- info_date_from -> date_from, info_date_to -> date_to
- date_column is now mandatory
- removed TableReaders ability to infer schema from partitions or properties


## 1.3.0 - 2024-06-07

Expand Down
2 changes: 1 addition & 1 deletion rialto/jobs/decorators/decorators.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def job(*args, custom_name=None, disable_version=False):
:param *args: list of positional arguments. Empty in case custom_name or disable_version is specified.
:param custom_name: str for custom job name.
:param disable_version: bool for disabling automobiling the VERSION column in the job's outputs.
:param disable_version: bool for disabling automatically filling the VERSION column in the job's outputs.
:return: One more job wrapper for run function (if custom name or version override specified).
Otherwise, generates Rialto Transformation Type and returns it for in-module registration.
"""
Expand Down

0 comments on commit 8e18da2

Please sign in to comment.