Skip to content

Commit 77e42a7

Browse files
authored
Sources Jira, Github: update authenticator package (#38341)
1 parent d8db2c2 commit 77e42a7

File tree

8 files changed

+9
-7
lines changed

8 files changed

+9
-7
lines changed

airbyte-integrations/connectors/source-github/metadata.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ data:
1010
connectorSubtype: api
1111
connectorType: source
1212
definitionId: ef69ef6e-aa7f-4af1-a01d-ef775033524e
13-
dockerImageTag: 1.7.3
13+
dockerImageTag: 1.7.4
1414
dockerRepository: airbyte/source-github
1515
documentationUrl: https://docs.airbyte.com/integrations/sources/github
1616
githubIssueLabel: source-github

airbyte-integrations/connectors/source-github/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",]
33
build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
6-
version = "1.7.3"
6+
version = "1.7.4"
77
name = "source-github"
88
description = "Source implementation for GitHub."
99
authors = [ "Airbyte <[email protected]>",]

airbyte-integrations/connectors/source-github/source_github/source.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from airbyte_cdk.models import FailureType, SyncMode
1111
from airbyte_cdk.sources import AbstractSource
1212
from airbyte_cdk.sources.streams import Stream
13-
from airbyte_cdk.sources.streams.http.auth import MultipleTokenAuthenticator
13+
from airbyte_cdk.sources.streams.http.requests_native_auth import MultipleTokenAuthenticator
1414
from airbyte_cdk.utils.traced_exception import AirbyteTracedException
1515
from source_github.utils import MultipleTokenAuthenticatorWithRateLimiter
1616

airbyte-integrations/connectors/source-jira/metadata.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ data:
1010
connectorSubtype: api
1111
connectorType: source
1212
definitionId: 68e63de2-bb83-4c7e-93fa-a8a9051e3993
13-
dockerImageTag: 2.0.0
13+
dockerImageTag: 2.0.1
1414
dockerRepository: airbyte/source-jira
1515
documentationUrl: https://docs.airbyte.com/integrations/sources/jira
1616
githubIssueLabel: source-jira

airbyte-integrations/connectors/source-jira/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",]
33
build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
6-
version = "2.0.0"
6+
version = "2.0.1"
77
name = "source-jira"
88
description = "Source implementation for Jira."
99
authors = [ "Airbyte <[email protected]>",]

airbyte-integrations/connectors/source-jira/source_jira/source.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from airbyte_cdk.sources.declarative.exceptions import ReadException
1010
from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource
1111
from airbyte_cdk.sources.streams.core import Stream
12-
from airbyte_cdk.sources.streams.http.auth import BasicHttpAuthenticator
12+
from airbyte_cdk.sources.streams.http.requests_native_auth import BasicHttpAuthenticator
1313
from airbyte_cdk.utils.traced_exception import AirbyteTracedException
1414
from pydantic.error_wrappers import ValidationError
1515
from requests.exceptions import InvalidURL

docs/integrations/sources/github.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,8 @@ Your token should have at least the `repo` scope. Depending on which streams you
212212

213213
| Version | Date | Pull Request | Subject |
214214
| :------ | :--------- | :---------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
215-
| 1.7.3 | 2024-05-20 | [38299](https://github.com/airbytehq/airbyte/pull/38299) | Fixed spec typo |
215+
| 1.7.4 | 2024-05-21 | [38341](https://github.com/airbytehq/airbyte/pull/38341) | Update CDK authenticator package |
216+
| 1.7.3 | 2024-05-20 | [38299](https://github.com/airbytehq/airbyte/pull/38299) | Fixed spec typo |
216217
| 1.7.2 | 2024-04-19 | [36636](https://github.com/airbytehq/airbyte/pull/36636) | Updating to 0.80.0 CDK |
217218
| 1.7.1 | 2024-04-12 | [36636](https://github.com/airbytehq/airbyte/pull/36636) | schema descriptions |
218219
| 1.7.0 | 2024-03-19 | [36267](https://github.com/airbytehq/airbyte/pull/36267) | Pin airbyte-cdk version to `^0` |

docs/integrations/sources/jira.md

+1
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ The Jira connector should not run into Jira API limitations under normal usage.
124124

125125
| Version | Date | Pull Request | Subject |
126126
|:--------|:-----------|:-----------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------|
127+
| 2.0.1 | 2024-05-20 | [38341](https://github.com/airbytehq/airbyte/pull/38341) | Update CDK authenticator package |
127128
| 2.0.0 | 2024-04-20 | [37374](https://github.com/airbytehq/airbyte/pull/37374) | Migrate to low-code and fix `Project Avatars` stream |
128129
| 1.2.2 | 2024-04-19 | [36646](https://github.com/airbytehq/airbyte/pull/36646) | Updating to 0.80.0 CDK |
129130
| 1.2.1 | 2024-04-12 | [36646](https://github.com/airbytehq/airbyte/pull/36646) | schema descriptions |

0 commit comments

Comments
 (0)