Skip to content

Commit c2617e9

Browse files
authored
refactor(source-notion): Replace AirbyteLogger with logging.Logger (#38266)
1 parent 906d7a4 commit c2617e9

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

airbyte-integrations/connectors/source-notion/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: 6e00b415-b02e-4160-bf02-58176a0ae687
13-
dockerImageTag: 3.0.1
13+
dockerImageTag: 3.0.2
1414
dockerRepository: airbyte/source-notion
1515
documentationUrl: https://docs.airbyte.com/integrations/sources/notion
1616
githubIssueLabel: source-notion

airbyte-integrations/connectors/source-notion/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 = "3.0.1"
6+
version = "3.0.2"
77
name = "source-notion"
88
description = "Source implementation for Notion."
99
authors = [ "Airbyte <[email protected]>",]

airbyte-integrations/connectors/source-notion/source_notion/streams.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
33
#
44

5+
import logging as Logger
56
from abc import ABC
67
from typing import Any, Dict, Iterable, List, Mapping, MutableMapping, Optional, TypeVar
78

89
import pendulum
910
import pydantic
1011
import requests
11-
from airbyte_cdk.logger import AirbyteLogger as Logger
1212
from airbyte_cdk.models import SyncMode
1313
from airbyte_cdk.sources import Source
1414
from airbyte_cdk.sources.streams import Stream

docs/integrations/sources/notion.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ The connector is restricted by Notion [request limits](https://developers.notion
116116

117117
| Version | Date | Pull Request | Subject |
118118
| :------ | :--------- | :------------------------------------------------------- | :--------------------------------------------------------------------------------------------------- |
119-
| 3.0.1 | 2024-04-24 | [36653](https://github.com/airbytehq/airbyte/pull/36653) | Schema descriptions and CDK 0.80.0 |
119+
| 3.0.2 | 2024-05-20 | [38266](https://github.com/airbytehq/airbyte/pull/38266) | Replace AirbyteLogger with logging.Logger |
120+
| 3.0.1 | 2024-04-24 | [36653](https://github.com/airbytehq/airbyte/pull/36653) | Schema descriptions and CDK 0.80.0 |
120121
| 3.0.0 | 2024-04-12 | [35794](https://github.com/airbytehq/airbyte/pull/35974) | Migrate to low-code CDK (python CDK for Blocks stream) |
121122
| 2.2.0 | 2024-04-08 | [36890](https://github.com/airbytehq/airbyte/pull/36890) | Unpin CDK version |
122123
| 2.1.0 | 2024-02-19 | [35409](https://github.com/airbytehq/airbyte/pull/35409) | Update users stream schema with bot type info fields and block schema with mention type info fields. |

0 commit comments

Comments
 (0)