Skip to content

Commit

Permalink
🐛 Source Google Search Console: Fix data_state config typo (#27307)
Browse files Browse the repository at this point in the history
* Fix data_state typo in Google Search Console src

* Increment version

* Update changelog

---------

Co-authored-by: Sajarin <sajarindider@gmail.com>
  • Loading branch information
ciancullinan and sajarin authored Jun 14, 2023
1 parent 9dc8bb7 commit ce5170d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ RUN pip install .
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=1.0.1
LABEL io.airbyte.version=1.0.2
LABEL io.airbyte.name=airbyte/source-google-search-console
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: eb4c9e00-db83-4d63-a386-39cfa91012a8
dockerImageTag: 1.0.1
dockerImageTag: 1.0.2
dockerRepository: airbyte/source-google-search-console
githubIssueLabel: source-google-search-console
icon: googlesearchconsole.svg
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def _validate_and_transform(self, config: Mapping[str, Any]):

config["site_urls"] = [self.normalize_url(url) for url in config["site_urls"]]

config["data_state"] = config.get("date_state", "final")
config["data_state"] = config.get("data_state", "final")
return config

def check_connection(self, logger: AirbyteLogger, config: Mapping[str, Any]) -> Tuple[bool, Any]:
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/google-search-console.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ This connector attempts to back off gracefully when it hits Reports API's rate l

| Version | Date | Pull Request | Subject |
|:---------|:-----------|:--------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------|
| `1.0.2` | 2023-06-13 | [27307](https://github.com/airbytehq/airbyte/pull/27307) | Fix `data_state` config typo |
| `1.0.1` | 2023-05-30 | [26746](https://github.com/airbytehq/airbyte/pull/26746) | Remove `authSpecification` from connector spec in favour of advancedAuth |
| `1.0.0` | 2023-05-24 | [26452](https://github.com/airbytehq/airbyte/pull/26452) | Add data_state parameter to specification |
| `0.1.22` | 2023-03-20 | [22295](https://github.com/airbytehq/airbyte/pull/22295) | Update specification examples |
Expand Down

0 comments on commit ce5170d

Please sign in to comment.