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-confluence] 'expand' request parameter converted to comma separated string #36339

Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
File filter

Filter by extension

Filter by extension

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

LABEL io.airbyte.version=0.2.0
LABEL io.airbyte.version=0.2.1
LABEL io.airbyte.name=airbyte/source-confluence
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: cf40a7f8-71f8-45ce-a7fa-fca053e4028c
dockerImageTag: 0.2.0
dockerImageTag: 0.2.1
dockerRepository: airbyte/source-confluence
documentationUrl: https://docs.airbyte.com/integrations/sources/confluence
githubIssueLabel: source-confluence
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,7 @@ definitions:
requester:
$ref: "#/definitions/requester"
request_parameters:
expand: >-
["history","history.lastUpdated","history.previousVersion","history.contributors","restrictions.read.restrictions.user","version","descendants.comment","body","body.storage","body.view",]
expand: "history,history.lastUpdated,history.previousVersion,history.contributors,restrictions.read.restrictions.user,version,descendants.comment,body,body.storage,body.view"
primary_key: "id"
$parameters:
name: "blog_posts"
Expand All @@ -101,8 +100,7 @@ definitions:
requester:
$ref: "#/definitions/requester"
request_parameters:
expand: >-
["history","history.lastUpdated","history.previousVersion","history.contributors","restrictions.read.restrictions.user","version","descendants.comment","body","body.storage","body.view",]
expand: "history,history.lastUpdated,history.previousVersion,history.contributors,restrictions.read.restrictions.user,version,descendants.comment,body,body.storage,body.view"
primary_key: "id"
$parameters:
name: "pages"
Expand All @@ -115,7 +113,7 @@ definitions:
requester:
$ref: "#/definitions/requester"
request_parameters:
expand: '["permissions","icon","description.plain","description.view"]'
expand: "permissions,icon,description.plain,description.view"
primary_key: "id"
$parameters:
name: "space"
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/confluence.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ The Confluence connector should not run into Confluence API limitations under no

| Version | Date | Pull Request | Subject |
| :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------- |
| 0.2.1 | 2024-03-20 | [36339](https://github.com/airbytehq/airbyte/pull/36339) | 🐛 Source Confluence: 'expand' request parameter converted to comma separated string
| 0.2.0 | 2023-08-14 | [29125](https://github.com/airbytehq/airbyte/pull/29125) | Migrate Confluence Source Connector to Low Code |
| 0.1.3 | 2023-03-13 | [23988](https://github.com/airbytehq/airbyte/pull/23988) | Add view and storage to pages body, add check for stream Audit |
| 0.1.2 | 2023-03-06 | [23775](https://github.com/airbytehq/airbyte/pull/23775) | Set additionalProperties: true, update docs and spec |
Expand Down