Skip to content

Commit

Permalink
Add missing types to the registry (airbytehq#17763)
Browse files Browse the repository at this point in the history
* Add missing types to the registry

* bump
  • Loading branch information
girarda authored and jhammarstedt committed Oct 31, 2022
1 parent 8ef2b2a commit 010309d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
4 changes: 4 additions & 0 deletions airbyte-cdk/python/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.1.98

- Low-code: Expose WaitUntilTimeFromHeader strategy and WaitTimeFromHeader as component type

## 0.1.97

- Revert 0.1.96
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@
from airbyte_cdk.sources.declarative.requesters.error_handlers.backoff_strategies.exponential_backoff_strategy import (
ExponentialBackoffStrategy,
)
from airbyte_cdk.sources.declarative.requesters.error_handlers.backoff_strategies.wait_time_from_header_backoff_strategy import (
WaitTimeFromHeaderBackoffStrategy,
)
from airbyte_cdk.sources.declarative.requesters.error_handlers.backoff_strategies.wait_until_time_from_header_backoff_strategy import (
WaitUntilTimeFromHeaderBackoffStrategy,
)
from airbyte_cdk.sources.declarative.requesters.error_handlers.composite_error_handler import CompositeErrorHandler
from airbyte_cdk.sources.declarative.requesters.error_handlers.default_error_handler import DefaultErrorHandler
from airbyte_cdk.sources.declarative.requesters.http_requester import HttpRequester
Expand Down Expand Up @@ -69,4 +75,6 @@
"SimpleRetriever": SimpleRetriever,
"SingleSlice": SingleSlice,
"SubstreamSlicer": SubstreamSlicer,
"WaitUntilTimeFromHeader": WaitUntilTimeFromHeaderBackoffStrategy,
"WaitTimeFromHeader": WaitTimeFromHeaderBackoffStrategy,
}
5 changes: 3 additions & 2 deletions airbyte-cdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

setup(
name="airbyte-cdk",
version="0.1.97",
version="0.1.98",
description="A framework for writing Airbyte Connectors.",
long_description=README,
long_description_content_type="text/markdown",
Expand Down Expand Up @@ -44,7 +44,8 @@
packages=find_packages(exclude=("unit_tests",)),
install_requires=[
"backoff",
"dataclasses-jsonschema==2.15.1", # pinned to the last working version for us temporarily while we fix
# pinned to the last working version for us temporarily while we fix
"dataclasses-jsonschema==2.15.1",
"dpath~=2.0.1",
"jsonschema~=3.2.0",
"jsonref~=0.2",
Expand Down

0 comments on commit 010309d

Please sign in to comment.