1
0
mirror of synced 2025-12-25 02:09:19 -05:00

🐛Source Confluence - Change request parameter 'expand' to comma separated single string (#39495)

This commit is contained in:
btkcodedev
2024-06-15 02:35:20 +05:30
committed by GitHub
parent c29429dfe9
commit ba10a3b1a2
4 changed files with 6 additions and 7 deletions

View File

@@ -10,7 +10,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: cf40a7f8-71f8-45ce-a7fa-fca053e4028c
dockerImageTag: 0.2.5
dockerImageTag: 0.2.6
dockerRepository: airbyte/source-confluence
documentationUrl: https://docs.airbyte.com/integrations/sources/confluence
githubIssueLabel: source-confluence

View File

@@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
version = "0.2.5"
version = "0.2.6"
name = "source-confluence"
description = "Source implementation for Confluence."
authors = [ "Airbyte <contact@airbyte.io>",]

View File

@@ -55,8 +55,7 @@ definitions:
path: content?type=blogpost
http_method: GET
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"
record_selector:
type: RecordSelector
extractor:
@@ -126,8 +125,7 @@ definitions:
path: content?type=page
http_method: GET
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"
record_selector:
type: RecordSelector
extractor:
@@ -163,7 +161,7 @@ definitions:
path: space
http_method: GET
request_parameters:
expand: '["permissions","icon","description.plain","description.view"]'
expand: "permissions,icon,description.plain,description.view"
record_selector:
type: RecordSelector
extractor:

View File

@@ -63,6 +63,7 @@ The Confluence connector should not run into Confluence API limitations under no
| Version | Date | Pull Request | Subject |
| :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ |
| 0.2.6 | 2024-06-15 | [39495](https://github.com/airbytehq/airbyte/pull/39495) | Fix parameters as comma seperated single string |
| 0.2.5 | 2024-06-06 | [39261](https://github.com/airbytehq/airbyte/pull/39261) | [autopull] Upgrade base image to v1.2.2 |
| 0.2.4 | 2024-05-14 | [38137](https://github.com/airbytehq/airbyte/pull/38137) | Make connector compatible with the builder |
| 0.2.3 | 2024-04-19 | [37143](https://github.com/airbytehq/airbyte/pull/37143) | Upgrade to CDK 0.80.0 and manage dependencies with Poetry. |