Skip to content
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

🐛 Source Google Analytics Data API: deprecate authSpecification #26887

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
92b7e1f
Connector health: source hubspot, gitlab, snapchat-marketing: fix builds
davydov-d May 10, 2023
01ee45e
Merge branch 'master' of github.com:airbytehq/airbyte
davydov-d May 10, 2023
4ae17ec
Merge branch 'master' of github.com:airbytehq/airbyte
davydov-d May 12, 2023
3fadfe3
Merge branch 'master' of github.com:airbytehq/airbyte
davydov-d May 12, 2023
a51c998
Merge branch 'master' of github.com:airbytehq/airbyte
davydov-d May 15, 2023
afd1fae
Merge branch 'master' of github.com:airbytehq/airbyte
davydov-d May 16, 2023
72efed0
Merge branch 'master' of github.com:airbytehq/airbyte
davydov-d May 17, 2023
db47568
Merge branch 'master' of github.com:airbytehq/airbyte
davydov-d May 17, 2023
7880cf0
Merge branch 'master' of github.com:airbytehq/airbyte
davydov-d May 19, 2023
d1d08dc
Merge branch 'master' of github.com:airbytehq/airbyte
davydov-d May 19, 2023
5e731f7
Merge branch 'master' of github.com:airbytehq/airbyte
davydov-d May 22, 2023
a8780f9
Merge branch 'master' of github.com:airbytehq/airbyte
davydov-d May 23, 2023
cac6c95
Merge branch 'master' of github.com:airbytehq/airbyte
davydov-d May 24, 2023
c772743
Merge branch 'master' of github.com:airbytehq/airbyte
davydov-d May 24, 2023
ebf235c
Merge branch 'master' of github.com:airbytehq/airbyte
davydov-d May 24, 2023
313db7d
Merge branch 'master' of github.com:airbytehq/airbyte
davydov-d May 25, 2023
779dfee
Merge branch 'master' of github.com:airbytehq/airbyte
davydov-d May 26, 2023
92995de
Merge branch 'master' of github.com:airbytehq/airbyte
davydov-d May 26, 2023
986f29e
Merge branch 'master' of github.com:airbytehq/airbyte
davydov-d May 29, 2023
2705474
Merge branch 'master' of github.com:airbytehq/airbyte
davydov-d May 30, 2023
265a5b4
Merge branch 'master' of github.com:airbytehq/airbyte
davydov-d May 30, 2023
2e9ed46
Merge branch 'master' of github.com:airbytehq/airbyte
davydov-d May 31, 2023
6711afb
Merge branch 'master' of github.com:airbytehq/airbyte
davydov-d Jun 1, 2023
8f9656c
#26230 source GA data api: deprecate authSpecification
davydov-d Jun 1, 2023
992c70f
source GA data API: update changelog
davydov-d Jun 1, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ COPY source_google_analytics_data_api ./source_google_analytics_data_api
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.2.3
LABEL io.airbyte.version=0.2.4
LABEL io.airbyte.name=airbyte/source-google-analytics-data-api
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: 3cc2eafd-84aa-4dca-93af-322d9dfeec1a
dockerImageTag: 0.2.3
dockerImageTag: 0.2.4
dockerRepository: airbyte/source-google-analytics-data-api
githubIssueLabel: source-google-analytics-data-api
icon: google-analytics.svg
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,63 @@
}
}
},
"authSpecification": {
"auth_type": "oauth2.0",
"oauth2Specification": {
"rootObject": ["credentials", 0],
"oauthFlowInitParameters": [["client_id"], ["client_secret"]],
"oauthFlowOutputParameters": [["access_token"], ["refresh_token"]]
"advanced_auth": {
"auth_flow_type": "oauth2.0",
"predicate_key": [
"credentials",
"auth_type"
],
"predicate_value": "Client",
"oauth_config_specification": {
"complete_oauth_output_specification": {
"type": "object",
"properties": {
"access_token": {
"type": "string",
"path_in_connector_config": [
"credentials",
"access_token"
]
},
"refresh_token": {
"type": "string",
"path_in_connector_config": [
"credentials",
"refresh_token"
]
}
}
},
"complete_oauth_server_input_specification": {
"type": "object",
"properties": {
"client_id": {
"type": "string"
},
"client_secret": {
"type": "string"
}
}
},
"complete_oauth_server_output_specification": {
"type": "object",
"properties": {
"client_id": {
"type": "string",
"path_in_connector_config": [
"credentials",
"client_id"
]
},
"client_secret": {
"type": "string",
"path_in_connector_config": [
"credentials",
"client_secret"
]
}
}
}
}
}
}
1 change: 1 addition & 0 deletions docs/integrations/sources/google-analytics-data-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ This connector outputs the following incremental streams:

| Version | Date | Pull Request | Subject |
|:--------|:-----------|:---------------------------------------------------------|:------------------------------------------------------------------------------|
| 0.2.4 | 2023-06-01 | [26887](https://github.com/airbytehq/airbyte/pull/26887) | Remove `authSpecification` from connector spec in favour of `advancedAuth` |
| 0.2.3 | 2023-05-16 | [26126](https://github.com/airbytehq/airbyte/pull/26126) | Fix pagination |
| 0.2.2 | 2023-05-12 | [25987](https://github.com/airbytehq/airbyte/pull/25987) | Categorized Config Errors Accurately |
| 0.2.1 | 2023-05-11 | [26008](https://github.com/airbytehq/airbyte/pull/26008) | Added handling for `429 - potentiallyThresholdedRequestsPerHour` error |
Expand Down
Loading