-
Notifications
You must be signed in to change notification settings - Fork 0
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
release v1.0.0 #14
Merged
Merged
release v1.0.0 #14
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Result gatherers are utilities for working with `concurrent.futures.Future` objects. They provide functionalities such as gathering results from ``Future`` objects and handling errors on failed futures.
Upgrade all dependencies except [coverage](https://github.com/nedbat/coveragepy). At the moment, `coverage` can't be upgraded to a version higher than 6.x as [coveralls-python](https://github.com/TheKevJames/coveralls-python) - a dependency of this project - has an upper bound on the supported `coverage` version. See this [issue](TheKevJames/coveralls-python#373) for details. Moving forward, we should consider dropping `coveralls-python` as a dependency since it no longer appears to be maintained.
Add `sghi.etl.commons.processors.processor`, a decorator that marks a callable as `Processor`. The decorated callable *MUST* accept at least one argument but have at *MOST* one required argument.
Add `sghi.etl.commons.sources.source`, a decorator that marks a callable as a `Source`. The decorated callable *MUST NOT* have any required arguments but *MUST* return a value (the drawn data).
Mark the `sghi.etl.commons.processors._ProcessorOfCallable` class as final.
Add `sghi.etl.commons.sinks.sink`, a decorator that marks a callable as a `Sink`. The decorated callable *MUST* accept at least one argument but have at *MOST* one required argument (the processed data to drain/consume).
Rename the private `sghi.etl.commons.sinks._SourceOfCallable` class to `sghi.etl.commons.sinks._SinkOfCallable`.
Add `sghi.etl.commons.processors.ProcessorPipe`, a `Processor` that pipes the raw data applied to it through a series of other `Processor` instances, passing the output of one `Processor` as the input to the next.
Add a simple, `sghi.etl.core.WorkflowDefinition` implementation.
Set up [semantic-release](https://semantic-release.gitbook.io/semantic-release/) version and release management tool. This will be used for automating releases and publishing new versions.
## [1.0.0-rc.1](...v1.0.0-rc.1) (2024-04-16) ### Dependency Updates * **deps:** upgrade project dependencies ([#2](#2)) ([6bee92c](6bee92c)) ### Features * **processors:** add a `ProcessorPipe` ([#10](#10)) ([82a006e](82a006e)) * **processors:** add a NOOP `Processor` ([#3](#3)) ([ecdf529](ecdf529)) * **processors:** add a processor decorator ([#4](#4)) ([9f3b039](9f3b039)) * **sinks:** add a `NullSink` ([#9](#9)) ([2794f6a](2794f6a)) * **sinks:** add a sink decorator ([#7](#7)) ([6a89c85](6a89c85)) * **sources:** add a source decorator ([#5](#5)) ([b42328e](b42328e)) * **utils:** add result gatherers ([#1](#1)) ([7c4e34f](7c4e34f)) * **worflow_def:** add a `SimpleWorkflowDefinition` ([#11](#11)) ([ce1a9b0](ce1a9b0)) ### Refactors * **processors:** mark `processors._ProcessorOfCallable` as final ([#6](#6)) ([9e5d6c6](9e5d6c6)) * **sinks:** rename `sinks._SourceOfCallable` class ([#8](#8)) ([e6f08e5](e6f08e5))
Update README badges to show the status of the project better.
🎉 This PR is included in version 1.0.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.